@n8n/stores 2.36.2 → 2.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/composables/useBasePageRedirectionHelper.cjs +28 -8
- package/dist/composables/useBasePageRedirectionHelper.cjs.map +1 -1
- package/dist/composables/useBasePageRedirectionHelper.d.cts +7 -0
- package/dist/composables/useBasePageRedirectionHelper.d.mts +7 -0
- package/dist/composables/useBasePageRedirectionHelper.mjs +28 -8
- package/dist/composables/useBasePageRedirectionHelper.mjs.map +1 -1
- package/dist/constants2.cjs +1 -0
- package/dist/constants2.cjs.map +1 -1
- package/dist/constants2.d.cts +1 -0
- package/dist/constants2.d.mts +1 -0
- package/dist/constants2.mjs +1 -0
- package/dist/constants2.mjs.map +1 -1
- package/dist/notifications.store.d.cts +2 -2
- package/dist/pageRedirection.d.cts +2 -2
- package/dist/pageRedirection.d.mts +2 -2
- package/dist/rbac.store.cjs +1 -0
- package/dist/rbac.store.cjs.map +1 -1
- package/dist/rbac.store.d.cts +51 -45
- package/dist/rbac.store.d.mts +51 -45
- package/dist/rbac.store.mjs +1 -0
- package/dist/rbac.store.mjs.map +1 -1
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +250 -244
- package/dist/settings.store.d.mts +250 -244
- package/dist/settings2.store.cjs +9 -0
- package/dist/settings2.store.cjs.map +1 -1
- package/dist/settings2.store.mjs +9 -0
- package/dist/settings2.store.mjs.map +1 -1
- package/dist/useAgentRequestStore.d.cts +2 -2
- package/dist/useAgentRequestStore.d.mts +2 -2
- package/dist/useRootStore.d.cts +75 -75
- package/dist/useRootStore.d.mts +75 -75
- package/dist/users.store.d.cts +49 -49
- package/dist/users.store.d.mts +51 -51
- package/dist/versions.store.d.cts +30 -30
- package/dist/versions.store.d.mts +30 -30
- package/package.json +13 -13
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia1 from "pinia";
|
|
2
|
+
import * as vue62 from "vue";
|
|
3
3
|
import * as _n8n_api_types0 from "@n8n/api-types";
|
|
4
4
|
import { AuthenticationMethod, FrontendModuleSettings, FrontendSettings, IUserManagementSettings, WorkflowReviewsPolicy } from "@n8n/api-types";
|
|
5
5
|
import * as n8n_workflow0 from "n8n-workflow";
|
|
6
6
|
import { IDataObject, WorkflowSettings } from "n8n-workflow";
|
|
7
7
|
|
|
8
8
|
//#region src/settings.store.d.ts
|
|
9
|
-
declare const useSettingsStore:
|
|
10
|
-
settings:
|
|
9
|
+
declare const useSettingsStore: pinia1.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue62.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -28,6 +28,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
28
28
|
executionTimeout: number;
|
|
29
29
|
maxExecutionTimeout: number;
|
|
30
30
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
31
|
+
excludeNodes: string[];
|
|
31
32
|
oauthCallbackUrls: {
|
|
32
33
|
oauth1: string;
|
|
33
34
|
oauth2: string;
|
|
@@ -133,7 +134,6 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
133
134
|
enabled: boolean;
|
|
134
135
|
host: string;
|
|
135
136
|
};
|
|
136
|
-
missingPackages?: boolean | undefined;
|
|
137
137
|
executionMode: "regular" | "queue";
|
|
138
138
|
isMultiMain: boolean;
|
|
139
139
|
pushBackend: "sse" | "websocket";
|
|
@@ -274,6 +274,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
274
274
|
executionTimeout: number;
|
|
275
275
|
maxExecutionTimeout: number;
|
|
276
276
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
277
|
+
excludeNodes: string[];
|
|
277
278
|
oauthCallbackUrls: {
|
|
278
279
|
oauth1: string;
|
|
279
280
|
oauth2: string;
|
|
@@ -379,7 +380,6 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
379
380
|
enabled: boolean;
|
|
380
381
|
host: string;
|
|
381
382
|
};
|
|
382
|
-
missingPackages?: boolean | undefined;
|
|
383
383
|
executionMode: "regular" | "queue";
|
|
384
384
|
isMultiMain: boolean;
|
|
385
385
|
pushBackend: "sse" | "websocket";
|
|
@@ -500,7 +500,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
500
500
|
canvasOnly: boolean;
|
|
501
501
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
502
502
|
}>;
|
|
503
|
-
userManagement:
|
|
503
|
+
userManagement: vue62.Ref<{
|
|
504
504
|
quota: number;
|
|
505
505
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
506
506
|
smtpSetup: boolean;
|
|
@@ -513,8 +513,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
513
513
|
authenticationMethod: AuthenticationMethod;
|
|
514
514
|
passwordMinLength: number;
|
|
515
515
|
}>;
|
|
516
|
-
templatesEndpointHealthy:
|
|
517
|
-
api:
|
|
516
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
517
|
+
api: vue62.Ref<{
|
|
518
518
|
enabled: boolean;
|
|
519
519
|
latestVersion: number;
|
|
520
520
|
path: string;
|
|
@@ -536,17 +536,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
536
536
|
enabled: boolean;
|
|
537
537
|
};
|
|
538
538
|
}>;
|
|
539
|
-
mfa:
|
|
539
|
+
mfa: vue62.Ref<{
|
|
540
540
|
enabled: boolean;
|
|
541
541
|
}, {
|
|
542
542
|
enabled: boolean;
|
|
543
543
|
} | {
|
|
544
544
|
enabled: boolean;
|
|
545
545
|
}>;
|
|
546
|
-
isDocker:
|
|
547
|
-
isDevRelease:
|
|
548
|
-
endpointHealth:
|
|
549
|
-
isEnterpriseFeatureEnabled:
|
|
546
|
+
isDocker: vue62.ComputedRef<boolean>;
|
|
547
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
548
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
549
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
550
550
|
sharing: boolean;
|
|
551
551
|
ldap: boolean;
|
|
552
552
|
saml: boolean;
|
|
@@ -577,37 +577,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
577
577
|
otelCustomSpanAttributes: boolean;
|
|
578
578
|
workflowReviews: boolean;
|
|
579
579
|
}>;
|
|
580
|
-
databaseType:
|
|
581
|
-
planName:
|
|
582
|
-
consumerId:
|
|
583
|
-
binaryDataMode:
|
|
584
|
-
pruning:
|
|
580
|
+
databaseType: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
581
|
+
planName: vue62.ComputedRef<string>;
|
|
582
|
+
consumerId: vue62.ComputedRef<string>;
|
|
583
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
584
|
+
pruning: vue62.ComputedRef<{
|
|
585
585
|
isEnabled: boolean;
|
|
586
586
|
maxAge: number;
|
|
587
587
|
maxCount: number;
|
|
588
588
|
} | undefined>;
|
|
589
|
-
security:
|
|
589
|
+
security: vue62.ComputedRef<{
|
|
590
590
|
blockFileAccessToN8nFiles: boolean;
|
|
591
591
|
secureCookie: boolean;
|
|
592
592
|
}>;
|
|
593
|
-
nodeJsVersion:
|
|
594
|
-
nodeEnv:
|
|
595
|
-
concurrency:
|
|
596
|
-
isConcurrencyEnabled:
|
|
597
|
-
isPublicApiEnabled:
|
|
598
|
-
isSwaggerUIEnabled:
|
|
599
|
-
isPreviewMode:
|
|
600
|
-
isE2ETestMode:
|
|
601
|
-
isCanvasOnly:
|
|
602
|
-
isCrdtCollaborationEnabled:
|
|
603
|
-
publicApiLatestVersion:
|
|
604
|
-
publicApiPath:
|
|
605
|
-
showSetupPage:
|
|
606
|
-
deploymentType:
|
|
607
|
-
isCloudDeployment:
|
|
608
|
-
isSmtpSetup:
|
|
609
|
-
isPersonalizationSurveyEnabled:
|
|
610
|
-
telemetry:
|
|
593
|
+
nodeJsVersion: vue62.ComputedRef<string>;
|
|
594
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
595
|
+
concurrency: vue62.ComputedRef<number>;
|
|
596
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
597
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
598
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
599
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
600
|
+
isE2ETestMode: vue62.ComputedRef<boolean>;
|
|
601
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
602
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
603
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
604
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
605
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
606
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
607
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
608
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
609
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
610
|
+
telemetry: vue62.ComputedRef<{
|
|
611
611
|
enabled: boolean;
|
|
612
612
|
config?: {
|
|
613
613
|
url: string;
|
|
@@ -616,44 +616,46 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
616
616
|
sourceConfig: string;
|
|
617
617
|
} | undefined;
|
|
618
618
|
}>;
|
|
619
|
-
logLevel:
|
|
620
|
-
isTelemetryEnabled:
|
|
621
|
-
isMfaFeatureEnabled:
|
|
622
|
-
isFoldersFeatureEnabled:
|
|
623
|
-
isAiAssistantEnabled:
|
|
624
|
-
isCustomRolesFeatureEnabled:
|
|
625
|
-
areTagsEnabled:
|
|
626
|
-
isAutosaveEnabled:
|
|
627
|
-
isHiringBannerEnabled:
|
|
628
|
-
isTemplatesEnabled:
|
|
629
|
-
isTemplatesEndpointReachable:
|
|
630
|
-
templatesHost:
|
|
631
|
-
pushBackend:
|
|
632
|
-
isCommunityNodesFeatureEnabled:
|
|
633
|
-
isUnverifiedPackagesEnabled:
|
|
634
|
-
allowedModules:
|
|
619
|
+
logLevel: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
620
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
621
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
622
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
623
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
624
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
625
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
626
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
627
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
628
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
629
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
630
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
631
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
632
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
633
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
634
|
+
allowedModules: vue62.ComputedRef<{
|
|
635
635
|
builtIn?: string[] | undefined;
|
|
636
636
|
external?: string[] | undefined;
|
|
637
637
|
}>;
|
|
638
|
-
isQueueModeEnabled:
|
|
639
|
-
isMultiMain:
|
|
640
|
-
isWorkerViewAvailable:
|
|
641
|
-
workflowCallerPolicyDefaultOption:
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
638
|
+
isQueueModeEnabled: vue62.ComputedRef<boolean>;
|
|
639
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
640
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
641
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
642
|
+
isExecuteWorkflowNodeExcluded: vue62.ComputedRef<boolean>;
|
|
643
|
+
isSubworkflowConversionDisabled: vue62.ComputedRef<boolean>;
|
|
644
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
645
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
646
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
647
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
648
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
649
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
650
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
651
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
652
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
653
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
654
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
655
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
656
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
657
|
+
isAiGatewayCloudUbbEnabled: vue62.ComputedRef<boolean>;
|
|
658
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
657
659
|
reset: () => void;
|
|
658
660
|
getTimezones: () => Promise<IDataObject>;
|
|
659
661
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -664,7 +666,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
664
666
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
665
667
|
initialize: () => Promise<void>;
|
|
666
668
|
getModuleSettings: () => Promise<void>;
|
|
667
|
-
moduleSettings:
|
|
669
|
+
moduleSettings: vue62.Ref<{
|
|
668
670
|
insights?: {
|
|
669
671
|
summary: boolean;
|
|
670
672
|
dashboard: boolean;
|
|
@@ -1268,19 +1270,19 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1268
1270
|
} | undefined;
|
|
1269
1271
|
}>;
|
|
1270
1272
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1271
|
-
isMFAEnforcementLicensed:
|
|
1272
|
-
isMFAEnforced:
|
|
1273
|
-
activeModules:
|
|
1273
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
1274
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
1275
|
+
activeModules: vue62.ComputedRef<string[]>;
|
|
1274
1276
|
isModuleActive: (moduleName: string) => boolean;
|
|
1275
1277
|
isAgentModuleActive: (name: string) => boolean;
|
|
1276
|
-
isDataTableFeatureEnabled:
|
|
1277
|
-
isChatFeatureEnabled:
|
|
1278
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1279
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1280
|
-
isPublicChatTriggerDisabled:
|
|
1281
|
-
isWorkflowPublicationServiceEnabled:
|
|
1278
|
+
isDataTableFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1279
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1280
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
1281
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1282
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
1283
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
1282
1284
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1283
|
-
settings:
|
|
1285
|
+
settings: vue62.Ref<{
|
|
1284
1286
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1285
1287
|
inE2ETests: boolean;
|
|
1286
1288
|
isDocker: boolean;
|
|
@@ -1301,6 +1303,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1301
1303
|
executionTimeout: number;
|
|
1302
1304
|
maxExecutionTimeout: number;
|
|
1303
1305
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
1306
|
+
excludeNodes: string[];
|
|
1304
1307
|
oauthCallbackUrls: {
|
|
1305
1308
|
oauth1: string;
|
|
1306
1309
|
oauth2: string;
|
|
@@ -1406,7 +1409,6 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1406
1409
|
enabled: boolean;
|
|
1407
1410
|
host: string;
|
|
1408
1411
|
};
|
|
1409
|
-
missingPackages?: boolean | undefined;
|
|
1410
1412
|
executionMode: "regular" | "queue";
|
|
1411
1413
|
isMultiMain: boolean;
|
|
1412
1414
|
pushBackend: "sse" | "websocket";
|
|
@@ -1547,6 +1549,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1547
1549
|
executionTimeout: number;
|
|
1548
1550
|
maxExecutionTimeout: number;
|
|
1549
1551
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
1552
|
+
excludeNodes: string[];
|
|
1550
1553
|
oauthCallbackUrls: {
|
|
1551
1554
|
oauth1: string;
|
|
1552
1555
|
oauth2: string;
|
|
@@ -1652,7 +1655,6 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1652
1655
|
enabled: boolean;
|
|
1653
1656
|
host: string;
|
|
1654
1657
|
};
|
|
1655
|
-
missingPackages?: boolean | undefined;
|
|
1656
1658
|
executionMode: "regular" | "queue";
|
|
1657
1659
|
isMultiMain: boolean;
|
|
1658
1660
|
pushBackend: "sse" | "websocket";
|
|
@@ -1773,7 +1775,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1773
1775
|
canvasOnly: boolean;
|
|
1774
1776
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1775
1777
|
}>;
|
|
1776
|
-
userManagement:
|
|
1778
|
+
userManagement: vue62.Ref<{
|
|
1777
1779
|
quota: number;
|
|
1778
1780
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1779
1781
|
smtpSetup: boolean;
|
|
@@ -1786,8 +1788,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1786
1788
|
authenticationMethod: AuthenticationMethod;
|
|
1787
1789
|
passwordMinLength: number;
|
|
1788
1790
|
}>;
|
|
1789
|
-
templatesEndpointHealthy:
|
|
1790
|
-
api:
|
|
1791
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
1792
|
+
api: vue62.Ref<{
|
|
1791
1793
|
enabled: boolean;
|
|
1792
1794
|
latestVersion: number;
|
|
1793
1795
|
path: string;
|
|
@@ -1809,17 +1811,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1809
1811
|
enabled: boolean;
|
|
1810
1812
|
};
|
|
1811
1813
|
}>;
|
|
1812
|
-
mfa:
|
|
1814
|
+
mfa: vue62.Ref<{
|
|
1813
1815
|
enabled: boolean;
|
|
1814
1816
|
}, {
|
|
1815
1817
|
enabled: boolean;
|
|
1816
1818
|
} | {
|
|
1817
1819
|
enabled: boolean;
|
|
1818
1820
|
}>;
|
|
1819
|
-
isDocker:
|
|
1820
|
-
isDevRelease:
|
|
1821
|
-
endpointHealth:
|
|
1822
|
-
isEnterpriseFeatureEnabled:
|
|
1821
|
+
isDocker: vue62.ComputedRef<boolean>;
|
|
1822
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
1823
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
1824
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
1823
1825
|
sharing: boolean;
|
|
1824
1826
|
ldap: boolean;
|
|
1825
1827
|
saml: boolean;
|
|
@@ -1850,37 +1852,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1850
1852
|
otelCustomSpanAttributes: boolean;
|
|
1851
1853
|
workflowReviews: boolean;
|
|
1852
1854
|
}>;
|
|
1853
|
-
databaseType:
|
|
1854
|
-
planName:
|
|
1855
|
-
consumerId:
|
|
1856
|
-
binaryDataMode:
|
|
1857
|
-
pruning:
|
|
1855
|
+
databaseType: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
1856
|
+
planName: vue62.ComputedRef<string>;
|
|
1857
|
+
consumerId: vue62.ComputedRef<string>;
|
|
1858
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1859
|
+
pruning: vue62.ComputedRef<{
|
|
1858
1860
|
isEnabled: boolean;
|
|
1859
1861
|
maxAge: number;
|
|
1860
1862
|
maxCount: number;
|
|
1861
1863
|
} | undefined>;
|
|
1862
|
-
security:
|
|
1864
|
+
security: vue62.ComputedRef<{
|
|
1863
1865
|
blockFileAccessToN8nFiles: boolean;
|
|
1864
1866
|
secureCookie: boolean;
|
|
1865
1867
|
}>;
|
|
1866
|
-
nodeJsVersion:
|
|
1867
|
-
nodeEnv:
|
|
1868
|
-
concurrency:
|
|
1869
|
-
isConcurrencyEnabled:
|
|
1870
|
-
isPublicApiEnabled:
|
|
1871
|
-
isSwaggerUIEnabled:
|
|
1872
|
-
isPreviewMode:
|
|
1873
|
-
isE2ETestMode:
|
|
1874
|
-
isCanvasOnly:
|
|
1875
|
-
isCrdtCollaborationEnabled:
|
|
1876
|
-
publicApiLatestVersion:
|
|
1877
|
-
publicApiPath:
|
|
1878
|
-
showSetupPage:
|
|
1879
|
-
deploymentType:
|
|
1880
|
-
isCloudDeployment:
|
|
1881
|
-
isSmtpSetup:
|
|
1882
|
-
isPersonalizationSurveyEnabled:
|
|
1883
|
-
telemetry:
|
|
1868
|
+
nodeJsVersion: vue62.ComputedRef<string>;
|
|
1869
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
1870
|
+
concurrency: vue62.ComputedRef<number>;
|
|
1871
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
1872
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
1873
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
1874
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
1875
|
+
isE2ETestMode: vue62.ComputedRef<boolean>;
|
|
1876
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
1877
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
1878
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
1879
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
1880
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
1881
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
1882
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
1883
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
1884
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
1885
|
+
telemetry: vue62.ComputedRef<{
|
|
1884
1886
|
enabled: boolean;
|
|
1885
1887
|
config?: {
|
|
1886
1888
|
url: string;
|
|
@@ -1889,44 +1891,46 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1889
1891
|
sourceConfig: string;
|
|
1890
1892
|
} | undefined;
|
|
1891
1893
|
}>;
|
|
1892
|
-
logLevel:
|
|
1893
|
-
isTelemetryEnabled:
|
|
1894
|
-
isMfaFeatureEnabled:
|
|
1895
|
-
isFoldersFeatureEnabled:
|
|
1896
|
-
isAiAssistantEnabled:
|
|
1897
|
-
isCustomRolesFeatureEnabled:
|
|
1898
|
-
areTagsEnabled:
|
|
1899
|
-
isAutosaveEnabled:
|
|
1900
|
-
isHiringBannerEnabled:
|
|
1901
|
-
isTemplatesEnabled:
|
|
1902
|
-
isTemplatesEndpointReachable:
|
|
1903
|
-
templatesHost:
|
|
1904
|
-
pushBackend:
|
|
1905
|
-
isCommunityNodesFeatureEnabled:
|
|
1906
|
-
isUnverifiedPackagesEnabled:
|
|
1907
|
-
allowedModules:
|
|
1894
|
+
logLevel: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1895
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
1896
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1897
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1898
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
1899
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1900
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
1901
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
1902
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
1903
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
1904
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
1905
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
1906
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
1907
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1908
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
1909
|
+
allowedModules: vue62.ComputedRef<{
|
|
1908
1910
|
builtIn?: string[] | undefined;
|
|
1909
1911
|
external?: string[] | undefined;
|
|
1910
1912
|
}>;
|
|
1911
|
-
isQueueModeEnabled:
|
|
1912
|
-
isMultiMain:
|
|
1913
|
-
isWorkerViewAvailable:
|
|
1914
|
-
workflowCallerPolicyDefaultOption:
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1913
|
+
isQueueModeEnabled: vue62.ComputedRef<boolean>;
|
|
1914
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
1915
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
1916
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1917
|
+
isExecuteWorkflowNodeExcluded: vue62.ComputedRef<boolean>;
|
|
1918
|
+
isSubworkflowConversionDisabled: vue62.ComputedRef<boolean>;
|
|
1919
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
1920
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1921
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1922
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
1923
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
1924
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
1925
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
1926
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
1927
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
1928
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
1929
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
1930
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
1931
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
1932
|
+
isAiGatewayCloudUbbEnabled: vue62.ComputedRef<boolean>;
|
|
1933
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
1930
1934
|
reset: () => void;
|
|
1931
1935
|
getTimezones: () => Promise<IDataObject>;
|
|
1932
1936
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1937,7 +1941,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1937
1941
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1938
1942
|
initialize: () => Promise<void>;
|
|
1939
1943
|
getModuleSettings: () => Promise<void>;
|
|
1940
|
-
moduleSettings:
|
|
1944
|
+
moduleSettings: vue62.Ref<{
|
|
1941
1945
|
insights?: {
|
|
1942
1946
|
summary: boolean;
|
|
1943
1947
|
dashboard: boolean;
|
|
@@ -2541,19 +2545,19 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2541
2545
|
} | undefined;
|
|
2542
2546
|
}>;
|
|
2543
2547
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2544
|
-
isMFAEnforcementLicensed:
|
|
2545
|
-
isMFAEnforced:
|
|
2546
|
-
activeModules:
|
|
2548
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
2549
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
2550
|
+
activeModules: vue62.ComputedRef<string[]>;
|
|
2547
2551
|
isModuleActive: (moduleName: string) => boolean;
|
|
2548
2552
|
isAgentModuleActive: (name: string) => boolean;
|
|
2549
|
-
isDataTableFeatureEnabled:
|
|
2550
|
-
isChatFeatureEnabled:
|
|
2551
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2552
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2553
|
-
isPublicChatTriggerDisabled:
|
|
2554
|
-
isWorkflowPublicationServiceEnabled:
|
|
2555
|
-
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "isE2ETestMode" | "isCanvasOnly" | "isCrdtCollaborationEnabled" | "publicApiLatestVersion" | "publicApiPath" | "showSetupPage" | "deploymentType" | "isCloudDeployment" | "isSmtpSetup" | "isPersonalizationSurveyEnabled" | "isTelemetryEnabled" | "isMfaFeatureEnabled" | "isFoldersFeatureEnabled" | "isAiAssistantEnabled" | "isCustomRolesFeatureEnabled" | "areTagsEnabled" | "isAutosaveEnabled" | "isHiringBannerEnabled" | "isTemplatesEnabled" | "isTemplatesEndpointReachable" | "templatesHost" | "isCommunityNodesFeatureEnabled" | "isUnverifiedPackagesEnabled" | "isQueueModeEnabled" | "isWorkerViewAvailable" | "permanentlyDismissedBanners" | "isCommunityPlan" | "isAskAiEnabled" | "isAiBuilderEnabled" | "isAiAssistantOrBuilderEnabled" | "isAiCreditsEnabled" | "aiCreditsQuota" | "isAiDataSharingEnabled" | "isAiGatewayEnabled" | "isAiGatewayCloudUbbEnabled" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2556
|
-
settings:
|
|
2553
|
+
isDataTableFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2554
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2555
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
2556
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2557
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
2558
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
2559
|
+
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "isE2ETestMode" | "isCanvasOnly" | "isCrdtCollaborationEnabled" | "publicApiLatestVersion" | "publicApiPath" | "showSetupPage" | "deploymentType" | "isCloudDeployment" | "isSmtpSetup" | "isPersonalizationSurveyEnabled" | "isTelemetryEnabled" | "isMfaFeatureEnabled" | "isFoldersFeatureEnabled" | "isAiAssistantEnabled" | "isCustomRolesFeatureEnabled" | "areTagsEnabled" | "isAutosaveEnabled" | "isHiringBannerEnabled" | "isTemplatesEnabled" | "isTemplatesEndpointReachable" | "templatesHost" | "isCommunityNodesFeatureEnabled" | "isUnverifiedPackagesEnabled" | "isQueueModeEnabled" | "isWorkerViewAvailable" | "isExecuteWorkflowNodeExcluded" | "isSubworkflowConversionDisabled" | "permanentlyDismissedBanners" | "isCommunityPlan" | "isAskAiEnabled" | "isAiBuilderEnabled" | "isAiAssistantOrBuilderEnabled" | "isAiCreditsEnabled" | "aiCreditsQuota" | "isAiDataSharingEnabled" | "isAiGatewayEnabled" | "isAiGatewayCloudUbbEnabled" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2560
|
+
settings: vue62.Ref<{
|
|
2557
2561
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2558
2562
|
inE2ETests: boolean;
|
|
2559
2563
|
isDocker: boolean;
|
|
@@ -2574,6 +2578,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2574
2578
|
executionTimeout: number;
|
|
2575
2579
|
maxExecutionTimeout: number;
|
|
2576
2580
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
2581
|
+
excludeNodes: string[];
|
|
2577
2582
|
oauthCallbackUrls: {
|
|
2578
2583
|
oauth1: string;
|
|
2579
2584
|
oauth2: string;
|
|
@@ -2679,7 +2684,6 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2679
2684
|
enabled: boolean;
|
|
2680
2685
|
host: string;
|
|
2681
2686
|
};
|
|
2682
|
-
missingPackages?: boolean | undefined;
|
|
2683
2687
|
executionMode: "regular" | "queue";
|
|
2684
2688
|
isMultiMain: boolean;
|
|
2685
2689
|
pushBackend: "sse" | "websocket";
|
|
@@ -2820,6 +2824,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2820
2824
|
executionTimeout: number;
|
|
2821
2825
|
maxExecutionTimeout: number;
|
|
2822
2826
|
workflowCallerPolicyDefaultOption: WorkflowSettings.CallerPolicy;
|
|
2827
|
+
excludeNodes: string[];
|
|
2823
2828
|
oauthCallbackUrls: {
|
|
2824
2829
|
oauth1: string;
|
|
2825
2830
|
oauth2: string;
|
|
@@ -2925,7 +2930,6 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2925
2930
|
enabled: boolean;
|
|
2926
2931
|
host: string;
|
|
2927
2932
|
};
|
|
2928
|
-
missingPackages?: boolean | undefined;
|
|
2929
2933
|
executionMode: "regular" | "queue";
|
|
2930
2934
|
isMultiMain: boolean;
|
|
2931
2935
|
pushBackend: "sse" | "websocket";
|
|
@@ -3046,7 +3050,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3046
3050
|
canvasOnly: boolean;
|
|
3047
3051
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3048
3052
|
}>;
|
|
3049
|
-
userManagement:
|
|
3053
|
+
userManagement: vue62.Ref<{
|
|
3050
3054
|
quota: number;
|
|
3051
3055
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3052
3056
|
smtpSetup: boolean;
|
|
@@ -3059,8 +3063,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3059
3063
|
authenticationMethod: AuthenticationMethod;
|
|
3060
3064
|
passwordMinLength: number;
|
|
3061
3065
|
}>;
|
|
3062
|
-
templatesEndpointHealthy:
|
|
3063
|
-
api:
|
|
3066
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
3067
|
+
api: vue62.Ref<{
|
|
3064
3068
|
enabled: boolean;
|
|
3065
3069
|
latestVersion: number;
|
|
3066
3070
|
path: string;
|
|
@@ -3082,17 +3086,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3082
3086
|
enabled: boolean;
|
|
3083
3087
|
};
|
|
3084
3088
|
}>;
|
|
3085
|
-
mfa:
|
|
3089
|
+
mfa: vue62.Ref<{
|
|
3086
3090
|
enabled: boolean;
|
|
3087
3091
|
}, {
|
|
3088
3092
|
enabled: boolean;
|
|
3089
3093
|
} | {
|
|
3090
3094
|
enabled: boolean;
|
|
3091
3095
|
}>;
|
|
3092
|
-
isDocker:
|
|
3093
|
-
isDevRelease:
|
|
3094
|
-
endpointHealth:
|
|
3095
|
-
isEnterpriseFeatureEnabled:
|
|
3096
|
+
isDocker: vue62.ComputedRef<boolean>;
|
|
3097
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
3098
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
3099
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
3096
3100
|
sharing: boolean;
|
|
3097
3101
|
ldap: boolean;
|
|
3098
3102
|
saml: boolean;
|
|
@@ -3123,37 +3127,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3123
3127
|
otelCustomSpanAttributes: boolean;
|
|
3124
3128
|
workflowReviews: boolean;
|
|
3125
3129
|
}>;
|
|
3126
|
-
databaseType:
|
|
3127
|
-
planName:
|
|
3128
|
-
consumerId:
|
|
3129
|
-
binaryDataMode:
|
|
3130
|
-
pruning:
|
|
3130
|
+
databaseType: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
3131
|
+
planName: vue62.ComputedRef<string>;
|
|
3132
|
+
consumerId: vue62.ComputedRef<string>;
|
|
3133
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3134
|
+
pruning: vue62.ComputedRef<{
|
|
3131
3135
|
isEnabled: boolean;
|
|
3132
3136
|
maxAge: number;
|
|
3133
3137
|
maxCount: number;
|
|
3134
3138
|
} | undefined>;
|
|
3135
|
-
security:
|
|
3139
|
+
security: vue62.ComputedRef<{
|
|
3136
3140
|
blockFileAccessToN8nFiles: boolean;
|
|
3137
3141
|
secureCookie: boolean;
|
|
3138
3142
|
}>;
|
|
3139
|
-
nodeJsVersion:
|
|
3140
|
-
nodeEnv:
|
|
3141
|
-
concurrency:
|
|
3142
|
-
isConcurrencyEnabled:
|
|
3143
|
-
isPublicApiEnabled:
|
|
3144
|
-
isSwaggerUIEnabled:
|
|
3145
|
-
isPreviewMode:
|
|
3146
|
-
isE2ETestMode:
|
|
3147
|
-
isCanvasOnly:
|
|
3148
|
-
isCrdtCollaborationEnabled:
|
|
3149
|
-
publicApiLatestVersion:
|
|
3150
|
-
publicApiPath:
|
|
3151
|
-
showSetupPage:
|
|
3152
|
-
deploymentType:
|
|
3153
|
-
isCloudDeployment:
|
|
3154
|
-
isSmtpSetup:
|
|
3155
|
-
isPersonalizationSurveyEnabled:
|
|
3156
|
-
telemetry:
|
|
3143
|
+
nodeJsVersion: vue62.ComputedRef<string>;
|
|
3144
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
3145
|
+
concurrency: vue62.ComputedRef<number>;
|
|
3146
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
3147
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
3148
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
3149
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
3150
|
+
isE2ETestMode: vue62.ComputedRef<boolean>;
|
|
3151
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
3152
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
3153
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
3154
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
3155
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
3156
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
3157
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
3158
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
3159
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
3160
|
+
telemetry: vue62.ComputedRef<{
|
|
3157
3161
|
enabled: boolean;
|
|
3158
3162
|
config?: {
|
|
3159
3163
|
url: string;
|
|
@@ -3162,44 +3166,46 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3162
3166
|
sourceConfig: string;
|
|
3163
3167
|
} | undefined;
|
|
3164
3168
|
}>;
|
|
3165
|
-
logLevel:
|
|
3166
|
-
isTelemetryEnabled:
|
|
3167
|
-
isMfaFeatureEnabled:
|
|
3168
|
-
isFoldersFeatureEnabled:
|
|
3169
|
-
isAiAssistantEnabled:
|
|
3170
|
-
isCustomRolesFeatureEnabled:
|
|
3171
|
-
areTagsEnabled:
|
|
3172
|
-
isAutosaveEnabled:
|
|
3173
|
-
isHiringBannerEnabled:
|
|
3174
|
-
isTemplatesEnabled:
|
|
3175
|
-
isTemplatesEndpointReachable:
|
|
3176
|
-
templatesHost:
|
|
3177
|
-
pushBackend:
|
|
3178
|
-
isCommunityNodesFeatureEnabled:
|
|
3179
|
-
isUnverifiedPackagesEnabled:
|
|
3180
|
-
allowedModules:
|
|
3169
|
+
logLevel: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3170
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
3171
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3172
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3173
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
3174
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3175
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
3176
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
3177
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
3178
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
3179
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
3180
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
3181
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
3182
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3183
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
3184
|
+
allowedModules: vue62.ComputedRef<{
|
|
3181
3185
|
builtIn?: string[] | undefined;
|
|
3182
3186
|
external?: string[] | undefined;
|
|
3183
3187
|
}>;
|
|
3184
|
-
isQueueModeEnabled:
|
|
3185
|
-
isMultiMain:
|
|
3186
|
-
isWorkerViewAvailable:
|
|
3187
|
-
workflowCallerPolicyDefaultOption:
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3195
|
-
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3188
|
+
isQueueModeEnabled: vue62.ComputedRef<boolean>;
|
|
3189
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
3190
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
3191
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3192
|
+
isExecuteWorkflowNodeExcluded: vue62.ComputedRef<boolean>;
|
|
3193
|
+
isSubworkflowConversionDisabled: vue62.ComputedRef<boolean>;
|
|
3194
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
3195
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3196
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3197
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
3198
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
3199
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
3200
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
3201
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
3202
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
3203
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
3204
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
3205
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
3206
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
3207
|
+
isAiGatewayCloudUbbEnabled: vue62.ComputedRef<boolean>;
|
|
3208
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
3203
3209
|
reset: () => void;
|
|
3204
3210
|
getTimezones: () => Promise<IDataObject>;
|
|
3205
3211
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3210,7 +3216,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3210
3216
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3211
3217
|
initialize: () => Promise<void>;
|
|
3212
3218
|
getModuleSettings: () => Promise<void>;
|
|
3213
|
-
moduleSettings:
|
|
3219
|
+
moduleSettings: vue62.Ref<{
|
|
3214
3220
|
insights?: {
|
|
3215
3221
|
summary: boolean;
|
|
3216
3222
|
dashboard: boolean;
|
|
@@ -3814,17 +3820,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3814
3820
|
} | undefined;
|
|
3815
3821
|
}>;
|
|
3816
3822
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3817
|
-
isMFAEnforcementLicensed:
|
|
3818
|
-
isMFAEnforced:
|
|
3819
|
-
activeModules:
|
|
3823
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
3824
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
3825
|
+
activeModules: vue62.ComputedRef<string[]>;
|
|
3820
3826
|
isModuleActive: (moduleName: string) => boolean;
|
|
3821
3827
|
isAgentModuleActive: (name: string) => boolean;
|
|
3822
|
-
isDataTableFeatureEnabled:
|
|
3823
|
-
isChatFeatureEnabled:
|
|
3824
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3825
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3826
|
-
isPublicChatTriggerDisabled:
|
|
3827
|
-
isWorkflowPublicationServiceEnabled:
|
|
3828
|
+
isDataTableFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3829
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3830
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
3831
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3832
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
3833
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
3828
3834
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3829
3835
|
//#endregion
|
|
3830
3836
|
export { useSettingsStore };
|