@n8n/stores 2.35.1 → 2.36.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/cloudPlan.store.d.cts +66 -66
- package/dist/cloudPlan.store.d.mts +66 -66
- package/dist/notifications.store.d.cts +2 -2
- package/dist/rbac.store.d.cts +33 -33
- package/dist/rbac.store.d.mts +31 -31
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +19 -19
- package/dist/settings.store.d.cts +256 -241
- package/dist/settings.store.d.mts +256 -241
- package/dist/settings2.store.cjs +3 -0
- package/dist/settings2.store.cjs.map +1 -1
- package/dist/settings2.store.mjs +3 -0
- package/dist/settings2.store.mjs.map +1 -1
- package/dist/useAgentRequestStore.d.cts +6 -6
- package/dist/useAgentRequestStore.d.mts +2 -2
- package/dist/useRootStore.d.cts +87 -74
- package/dist/useRootStore.d.mts +85 -72
- package/dist/useRootStore2.cjs +8 -1
- package/dist/useRootStore2.cjs.map +1 -1
- package/dist/useRootStore2.mjs +8 -1
- package/dist/useRootStore2.mjs.map +1 -1
- package/dist/users.store.d.cts +55 -55
- package/dist/users.store.d.mts +51 -51
- package/dist/users2.store.cjs +11 -2
- package/dist/users2.store.cjs.map +1 -1
- package/dist/users2.store.mjs +11 -2
- package/dist/users2.store.mjs.map +1 -1
- package/dist/versions.store.d.cts +30 -30
- package/dist/versions.store.d.mts +30 -30
- package/package.json +12 -12
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue242 from "vue";
|
|
2
|
+
import * as pinia7 from "pinia";
|
|
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_workflow8 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: pinia7.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue242.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -226,6 +226,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
226
226
|
aiGateway?: {
|
|
227
227
|
enabled: boolean;
|
|
228
228
|
budget: number;
|
|
229
|
+
cloudUbbEnabled: boolean;
|
|
229
230
|
} | undefined;
|
|
230
231
|
ai: {
|
|
231
232
|
allowSendingParameterValues: boolean;
|
|
@@ -471,6 +472,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
471
472
|
aiGateway?: {
|
|
472
473
|
enabled: boolean;
|
|
473
474
|
budget: number;
|
|
475
|
+
cloudUbbEnabled: boolean;
|
|
474
476
|
} | undefined;
|
|
475
477
|
ai: {
|
|
476
478
|
allowSendingParameterValues: boolean;
|
|
@@ -498,7 +500,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
498
500
|
canvasOnly: boolean;
|
|
499
501
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
500
502
|
}>;
|
|
501
|
-
userManagement:
|
|
503
|
+
userManagement: vue242.Ref<{
|
|
502
504
|
quota: number;
|
|
503
505
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
504
506
|
smtpSetup: boolean;
|
|
@@ -511,8 +513,8 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
511
513
|
authenticationMethod: AuthenticationMethod;
|
|
512
514
|
passwordMinLength: number;
|
|
513
515
|
}>;
|
|
514
|
-
templatesEndpointHealthy:
|
|
515
|
-
api:
|
|
516
|
+
templatesEndpointHealthy: vue242.Ref<boolean, boolean>;
|
|
517
|
+
api: vue242.Ref<{
|
|
516
518
|
enabled: boolean;
|
|
517
519
|
latestVersion: number;
|
|
518
520
|
path: string;
|
|
@@ -534,17 +536,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
534
536
|
enabled: boolean;
|
|
535
537
|
};
|
|
536
538
|
}>;
|
|
537
|
-
mfa:
|
|
539
|
+
mfa: vue242.Ref<{
|
|
538
540
|
enabled: boolean;
|
|
539
541
|
}, {
|
|
540
542
|
enabled: boolean;
|
|
541
543
|
} | {
|
|
542
544
|
enabled: boolean;
|
|
543
545
|
}>;
|
|
544
|
-
isDocker:
|
|
545
|
-
isDevRelease:
|
|
546
|
-
endpointHealth:
|
|
547
|
-
isEnterpriseFeatureEnabled:
|
|
546
|
+
isDocker: vue242.ComputedRef<boolean>;
|
|
547
|
+
isDevRelease: vue242.ComputedRef<boolean>;
|
|
548
|
+
endpointHealth: vue242.ComputedRef<string>;
|
|
549
|
+
isEnterpriseFeatureEnabled: vue242.ComputedRef<{
|
|
548
550
|
sharing: boolean;
|
|
549
551
|
ldap: boolean;
|
|
550
552
|
saml: boolean;
|
|
@@ -575,37 +577,37 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
575
577
|
otelCustomSpanAttributes: boolean;
|
|
576
578
|
workflowReviews: boolean;
|
|
577
579
|
}>;
|
|
578
|
-
databaseType:
|
|
579
|
-
planName:
|
|
580
|
-
consumerId:
|
|
581
|
-
binaryDataMode:
|
|
582
|
-
pruning:
|
|
580
|
+
databaseType: vue242.ComputedRef<"sqlite" | "postgresdb">;
|
|
581
|
+
planName: vue242.ComputedRef<string>;
|
|
582
|
+
consumerId: vue242.ComputedRef<string>;
|
|
583
|
+
binaryDataMode: vue242.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
584
|
+
pruning: vue242.ComputedRef<{
|
|
583
585
|
isEnabled: boolean;
|
|
584
586
|
maxAge: number;
|
|
585
587
|
maxCount: number;
|
|
586
588
|
} | undefined>;
|
|
587
|
-
security:
|
|
589
|
+
security: vue242.ComputedRef<{
|
|
588
590
|
blockFileAccessToN8nFiles: boolean;
|
|
589
591
|
secureCookie: boolean;
|
|
590
592
|
}>;
|
|
591
|
-
nodeJsVersion:
|
|
592
|
-
nodeEnv:
|
|
593
|
-
concurrency:
|
|
594
|
-
isConcurrencyEnabled:
|
|
595
|
-
isPublicApiEnabled:
|
|
596
|
-
isSwaggerUIEnabled:
|
|
597
|
-
isPreviewMode:
|
|
598
|
-
isE2ETestMode:
|
|
599
|
-
isCanvasOnly:
|
|
600
|
-
isCrdtCollaborationEnabled:
|
|
601
|
-
publicApiLatestVersion:
|
|
602
|
-
publicApiPath:
|
|
603
|
-
showSetupPage:
|
|
604
|
-
deploymentType:
|
|
605
|
-
isCloudDeployment:
|
|
606
|
-
isSmtpSetup:
|
|
607
|
-
isPersonalizationSurveyEnabled:
|
|
608
|
-
telemetry:
|
|
593
|
+
nodeJsVersion: vue242.ComputedRef<string>;
|
|
594
|
+
nodeEnv: vue242.ComputedRef<string | undefined>;
|
|
595
|
+
concurrency: vue242.ComputedRef<number>;
|
|
596
|
+
isConcurrencyEnabled: vue242.ComputedRef<boolean>;
|
|
597
|
+
isPublicApiEnabled: vue242.ComputedRef<boolean>;
|
|
598
|
+
isSwaggerUIEnabled: vue242.ComputedRef<boolean>;
|
|
599
|
+
isPreviewMode: vue242.ComputedRef<boolean>;
|
|
600
|
+
isE2ETestMode: vue242.ComputedRef<boolean>;
|
|
601
|
+
isCanvasOnly: vue242.ComputedRef<boolean>;
|
|
602
|
+
isCrdtCollaborationEnabled: vue242.ComputedRef<boolean>;
|
|
603
|
+
publicApiLatestVersion: vue242.ComputedRef<number>;
|
|
604
|
+
publicApiPath: vue242.ComputedRef<string>;
|
|
605
|
+
showSetupPage: vue242.ComputedRef<boolean | undefined>;
|
|
606
|
+
deploymentType: vue242.ComputedRef<string>;
|
|
607
|
+
isCloudDeployment: vue242.ComputedRef<boolean>;
|
|
608
|
+
isSmtpSetup: vue242.ComputedRef<boolean>;
|
|
609
|
+
isPersonalizationSurveyEnabled: vue242.ComputedRef<boolean>;
|
|
610
|
+
telemetry: vue242.ComputedRef<{
|
|
609
611
|
enabled: boolean;
|
|
610
612
|
config?: {
|
|
611
613
|
url: string;
|
|
@@ -614,43 +616,44 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
614
616
|
sourceConfig: string;
|
|
615
617
|
} | undefined;
|
|
616
618
|
}>;
|
|
617
|
-
logLevel:
|
|
618
|
-
isTelemetryEnabled:
|
|
619
|
-
isMfaFeatureEnabled:
|
|
620
|
-
isFoldersFeatureEnabled:
|
|
621
|
-
isAiAssistantEnabled:
|
|
622
|
-
isCustomRolesFeatureEnabled:
|
|
623
|
-
areTagsEnabled:
|
|
624
|
-
isAutosaveEnabled:
|
|
625
|
-
isHiringBannerEnabled:
|
|
626
|
-
isTemplatesEnabled:
|
|
627
|
-
isTemplatesEndpointReachable:
|
|
628
|
-
templatesHost:
|
|
629
|
-
pushBackend:
|
|
630
|
-
isCommunityNodesFeatureEnabled:
|
|
631
|
-
isUnverifiedPackagesEnabled:
|
|
632
|
-
allowedModules:
|
|
619
|
+
logLevel: vue242.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
620
|
+
isTelemetryEnabled: vue242.ComputedRef<boolean>;
|
|
621
|
+
isMfaFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
622
|
+
isFoldersFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
623
|
+
isAiAssistantEnabled: vue242.ComputedRef<boolean>;
|
|
624
|
+
isCustomRolesFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
625
|
+
areTagsEnabled: vue242.ComputedRef<boolean>;
|
|
626
|
+
isAutosaveEnabled: vue242.ComputedRef<boolean>;
|
|
627
|
+
isHiringBannerEnabled: vue242.ComputedRef<boolean>;
|
|
628
|
+
isTemplatesEnabled: vue242.ComputedRef<boolean>;
|
|
629
|
+
isTemplatesEndpointReachable: vue242.ComputedRef<boolean>;
|
|
630
|
+
templatesHost: vue242.ComputedRef<string>;
|
|
631
|
+
pushBackend: vue242.ComputedRef<"sse" | "websocket">;
|
|
632
|
+
isCommunityNodesFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
633
|
+
isUnverifiedPackagesEnabled: vue242.ComputedRef<boolean>;
|
|
634
|
+
allowedModules: vue242.ComputedRef<{
|
|
633
635
|
builtIn?: string[] | undefined;
|
|
634
636
|
external?: string[] | undefined;
|
|
635
637
|
}>;
|
|
636
|
-
isQueueModeEnabled:
|
|
637
|
-
isMultiMain:
|
|
638
|
-
isWorkerViewAvailable:
|
|
639
|
-
workflowCallerPolicyDefaultOption:
|
|
640
|
-
permanentlyDismissedBanners:
|
|
641
|
-
saveDataErrorExecution:
|
|
642
|
-
saveDataSuccessExecution:
|
|
643
|
-
saveManualExecutions:
|
|
644
|
-
saveDataProgressExecution:
|
|
645
|
-
isCommunityPlan:
|
|
646
|
-
isAskAiEnabled:
|
|
647
|
-
isAiBuilderEnabled:
|
|
648
|
-
isAiAssistantOrBuilderEnabled:
|
|
649
|
-
isAiCreditsEnabled:
|
|
650
|
-
aiCreditsQuota:
|
|
651
|
-
isAiDataSharingEnabled:
|
|
652
|
-
isAiGatewayEnabled:
|
|
653
|
-
|
|
638
|
+
isQueueModeEnabled: vue242.ComputedRef<boolean>;
|
|
639
|
+
isMultiMain: vue242.ComputedRef<boolean>;
|
|
640
|
+
isWorkerViewAvailable: vue242.ComputedRef<boolean>;
|
|
641
|
+
workflowCallerPolicyDefaultOption: vue242.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
642
|
+
permanentlyDismissedBanners: vue242.ComputedRef<string[]>;
|
|
643
|
+
saveDataErrorExecution: vue242.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
644
|
+
saveDataSuccessExecution: vue242.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
645
|
+
saveManualExecutions: vue242.Ref<boolean, boolean>;
|
|
646
|
+
saveDataProgressExecution: vue242.Ref<boolean, boolean>;
|
|
647
|
+
isCommunityPlan: vue242.ComputedRef<boolean>;
|
|
648
|
+
isAskAiEnabled: vue242.ComputedRef<boolean>;
|
|
649
|
+
isAiBuilderEnabled: vue242.ComputedRef<boolean>;
|
|
650
|
+
isAiAssistantOrBuilderEnabled: vue242.ComputedRef<boolean>;
|
|
651
|
+
isAiCreditsEnabled: vue242.ComputedRef<boolean>;
|
|
652
|
+
aiCreditsQuota: vue242.ComputedRef<number>;
|
|
653
|
+
isAiDataSharingEnabled: vue242.ComputedRef<boolean>;
|
|
654
|
+
isAiGatewayEnabled: vue242.ComputedRef<boolean>;
|
|
655
|
+
isAiGatewayCloudUbbEnabled: vue242.ComputedRef<boolean>;
|
|
656
|
+
aiGatewayBudget: vue242.ComputedRef<number>;
|
|
654
657
|
reset: () => void;
|
|
655
658
|
getTimezones: () => Promise<IDataObject>;
|
|
656
659
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -661,7 +664,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
661
664
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
662
665
|
initialize: () => Promise<void>;
|
|
663
666
|
getModuleSettings: () => Promise<void>;
|
|
664
|
-
moduleSettings:
|
|
667
|
+
moduleSettings: vue242.Ref<{
|
|
665
668
|
insights?: {
|
|
666
669
|
summary: boolean;
|
|
667
670
|
dashboard: boolean;
|
|
@@ -676,6 +679,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
676
679
|
mcpAccessEnabled: boolean;
|
|
677
680
|
mcpManagedByEnv: boolean;
|
|
678
681
|
serverUrl?: string | undefined;
|
|
682
|
+
autoExposeNewWorkflows: boolean;
|
|
679
683
|
} | undefined;
|
|
680
684
|
'chat-hub'?: {
|
|
681
685
|
enabled: boolean;
|
|
@@ -931,9 +935,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
931
935
|
} | undefined;
|
|
932
936
|
config?: never | undefined;
|
|
933
937
|
} | {
|
|
938
|
+
text: string;
|
|
934
939
|
packageName: string;
|
|
935
940
|
credentialType: string;
|
|
936
|
-
text: string;
|
|
937
941
|
quickConnectType: "pinecone";
|
|
938
942
|
consentText?: string | undefined;
|
|
939
943
|
consentCheckbox?: string | undefined;
|
|
@@ -976,6 +980,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
976
980
|
mcpAccessEnabled: boolean;
|
|
977
981
|
mcpManagedByEnv: boolean;
|
|
978
982
|
serverUrl?: string | undefined;
|
|
983
|
+
autoExposeNewWorkflows: boolean;
|
|
979
984
|
} | undefined;
|
|
980
985
|
'chat-hub'?: {
|
|
981
986
|
enabled: boolean;
|
|
@@ -1231,9 +1236,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1231
1236
|
} | undefined;
|
|
1232
1237
|
config?: never | undefined;
|
|
1233
1238
|
} | {
|
|
1239
|
+
text: string;
|
|
1234
1240
|
packageName: string;
|
|
1235
1241
|
credentialType: string;
|
|
1236
|
-
text: string;
|
|
1237
1242
|
quickConnectType: "pinecone";
|
|
1238
1243
|
consentText?: string | undefined;
|
|
1239
1244
|
consentCheckbox?: string | undefined;
|
|
@@ -1263,19 +1268,19 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1263
1268
|
} | undefined;
|
|
1264
1269
|
}>;
|
|
1265
1270
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1266
|
-
isMFAEnforcementLicensed:
|
|
1267
|
-
isMFAEnforced:
|
|
1268
|
-
activeModules:
|
|
1271
|
+
isMFAEnforcementLicensed: vue242.ComputedRef<boolean>;
|
|
1272
|
+
isMFAEnforced: vue242.Ref<boolean, boolean>;
|
|
1273
|
+
activeModules: vue242.ComputedRef<string[]>;
|
|
1269
1274
|
isModuleActive: (moduleName: string) => boolean;
|
|
1270
1275
|
isAgentModuleActive: (name: string) => boolean;
|
|
1271
|
-
isDataTableFeatureEnabled:
|
|
1272
|
-
isChatFeatureEnabled:
|
|
1273
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1274
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1275
|
-
isPublicChatTriggerDisabled:
|
|
1276
|
-
isWorkflowPublicationServiceEnabled:
|
|
1276
|
+
isDataTableFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1277
|
+
isChatFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1278
|
+
isOtelCustomSpanAttributesEnabled: vue242.ComputedRef<boolean>;
|
|
1279
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1280
|
+
isPublicChatTriggerDisabled: vue242.ComputedRef<boolean>;
|
|
1281
|
+
isWorkflowPublicationServiceEnabled: vue242.ComputedRef<boolean>;
|
|
1277
1282
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1278
|
-
settings:
|
|
1283
|
+
settings: vue242.Ref<{
|
|
1279
1284
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1280
1285
|
inE2ETests: boolean;
|
|
1281
1286
|
isDocker: boolean;
|
|
@@ -1494,6 +1499,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1494
1499
|
aiGateway?: {
|
|
1495
1500
|
enabled: boolean;
|
|
1496
1501
|
budget: number;
|
|
1502
|
+
cloudUbbEnabled: boolean;
|
|
1497
1503
|
} | undefined;
|
|
1498
1504
|
ai: {
|
|
1499
1505
|
allowSendingParameterValues: boolean;
|
|
@@ -1739,6 +1745,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1739
1745
|
aiGateway?: {
|
|
1740
1746
|
enabled: boolean;
|
|
1741
1747
|
budget: number;
|
|
1748
|
+
cloudUbbEnabled: boolean;
|
|
1742
1749
|
} | undefined;
|
|
1743
1750
|
ai: {
|
|
1744
1751
|
allowSendingParameterValues: boolean;
|
|
@@ -1766,7 +1773,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1766
1773
|
canvasOnly: boolean;
|
|
1767
1774
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1768
1775
|
}>;
|
|
1769
|
-
userManagement:
|
|
1776
|
+
userManagement: vue242.Ref<{
|
|
1770
1777
|
quota: number;
|
|
1771
1778
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1772
1779
|
smtpSetup: boolean;
|
|
@@ -1779,8 +1786,8 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1779
1786
|
authenticationMethod: AuthenticationMethod;
|
|
1780
1787
|
passwordMinLength: number;
|
|
1781
1788
|
}>;
|
|
1782
|
-
templatesEndpointHealthy:
|
|
1783
|
-
api:
|
|
1789
|
+
templatesEndpointHealthy: vue242.Ref<boolean, boolean>;
|
|
1790
|
+
api: vue242.Ref<{
|
|
1784
1791
|
enabled: boolean;
|
|
1785
1792
|
latestVersion: number;
|
|
1786
1793
|
path: string;
|
|
@@ -1802,17 +1809,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1802
1809
|
enabled: boolean;
|
|
1803
1810
|
};
|
|
1804
1811
|
}>;
|
|
1805
|
-
mfa:
|
|
1812
|
+
mfa: vue242.Ref<{
|
|
1806
1813
|
enabled: boolean;
|
|
1807
1814
|
}, {
|
|
1808
1815
|
enabled: boolean;
|
|
1809
1816
|
} | {
|
|
1810
1817
|
enabled: boolean;
|
|
1811
1818
|
}>;
|
|
1812
|
-
isDocker:
|
|
1813
|
-
isDevRelease:
|
|
1814
|
-
endpointHealth:
|
|
1815
|
-
isEnterpriseFeatureEnabled:
|
|
1819
|
+
isDocker: vue242.ComputedRef<boolean>;
|
|
1820
|
+
isDevRelease: vue242.ComputedRef<boolean>;
|
|
1821
|
+
endpointHealth: vue242.ComputedRef<string>;
|
|
1822
|
+
isEnterpriseFeatureEnabled: vue242.ComputedRef<{
|
|
1816
1823
|
sharing: boolean;
|
|
1817
1824
|
ldap: boolean;
|
|
1818
1825
|
saml: boolean;
|
|
@@ -1843,37 +1850,37 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1843
1850
|
otelCustomSpanAttributes: boolean;
|
|
1844
1851
|
workflowReviews: boolean;
|
|
1845
1852
|
}>;
|
|
1846
|
-
databaseType:
|
|
1847
|
-
planName:
|
|
1848
|
-
consumerId:
|
|
1849
|
-
binaryDataMode:
|
|
1850
|
-
pruning:
|
|
1853
|
+
databaseType: vue242.ComputedRef<"sqlite" | "postgresdb">;
|
|
1854
|
+
planName: vue242.ComputedRef<string>;
|
|
1855
|
+
consumerId: vue242.ComputedRef<string>;
|
|
1856
|
+
binaryDataMode: vue242.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1857
|
+
pruning: vue242.ComputedRef<{
|
|
1851
1858
|
isEnabled: boolean;
|
|
1852
1859
|
maxAge: number;
|
|
1853
1860
|
maxCount: number;
|
|
1854
1861
|
} | undefined>;
|
|
1855
|
-
security:
|
|
1862
|
+
security: vue242.ComputedRef<{
|
|
1856
1863
|
blockFileAccessToN8nFiles: boolean;
|
|
1857
1864
|
secureCookie: boolean;
|
|
1858
1865
|
}>;
|
|
1859
|
-
nodeJsVersion:
|
|
1860
|
-
nodeEnv:
|
|
1861
|
-
concurrency:
|
|
1862
|
-
isConcurrencyEnabled:
|
|
1863
|
-
isPublicApiEnabled:
|
|
1864
|
-
isSwaggerUIEnabled:
|
|
1865
|
-
isPreviewMode:
|
|
1866
|
-
isE2ETestMode:
|
|
1867
|
-
isCanvasOnly:
|
|
1868
|
-
isCrdtCollaborationEnabled:
|
|
1869
|
-
publicApiLatestVersion:
|
|
1870
|
-
publicApiPath:
|
|
1871
|
-
showSetupPage:
|
|
1872
|
-
deploymentType:
|
|
1873
|
-
isCloudDeployment:
|
|
1874
|
-
isSmtpSetup:
|
|
1875
|
-
isPersonalizationSurveyEnabled:
|
|
1876
|
-
telemetry:
|
|
1866
|
+
nodeJsVersion: vue242.ComputedRef<string>;
|
|
1867
|
+
nodeEnv: vue242.ComputedRef<string | undefined>;
|
|
1868
|
+
concurrency: vue242.ComputedRef<number>;
|
|
1869
|
+
isConcurrencyEnabled: vue242.ComputedRef<boolean>;
|
|
1870
|
+
isPublicApiEnabled: vue242.ComputedRef<boolean>;
|
|
1871
|
+
isSwaggerUIEnabled: vue242.ComputedRef<boolean>;
|
|
1872
|
+
isPreviewMode: vue242.ComputedRef<boolean>;
|
|
1873
|
+
isE2ETestMode: vue242.ComputedRef<boolean>;
|
|
1874
|
+
isCanvasOnly: vue242.ComputedRef<boolean>;
|
|
1875
|
+
isCrdtCollaborationEnabled: vue242.ComputedRef<boolean>;
|
|
1876
|
+
publicApiLatestVersion: vue242.ComputedRef<number>;
|
|
1877
|
+
publicApiPath: vue242.ComputedRef<string>;
|
|
1878
|
+
showSetupPage: vue242.ComputedRef<boolean | undefined>;
|
|
1879
|
+
deploymentType: vue242.ComputedRef<string>;
|
|
1880
|
+
isCloudDeployment: vue242.ComputedRef<boolean>;
|
|
1881
|
+
isSmtpSetup: vue242.ComputedRef<boolean>;
|
|
1882
|
+
isPersonalizationSurveyEnabled: vue242.ComputedRef<boolean>;
|
|
1883
|
+
telemetry: vue242.ComputedRef<{
|
|
1877
1884
|
enabled: boolean;
|
|
1878
1885
|
config?: {
|
|
1879
1886
|
url: string;
|
|
@@ -1882,43 +1889,44 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1882
1889
|
sourceConfig: string;
|
|
1883
1890
|
} | undefined;
|
|
1884
1891
|
}>;
|
|
1885
|
-
logLevel:
|
|
1886
|
-
isTelemetryEnabled:
|
|
1887
|
-
isMfaFeatureEnabled:
|
|
1888
|
-
isFoldersFeatureEnabled:
|
|
1889
|
-
isAiAssistantEnabled:
|
|
1890
|
-
isCustomRolesFeatureEnabled:
|
|
1891
|
-
areTagsEnabled:
|
|
1892
|
-
isAutosaveEnabled:
|
|
1893
|
-
isHiringBannerEnabled:
|
|
1894
|
-
isTemplatesEnabled:
|
|
1895
|
-
isTemplatesEndpointReachable:
|
|
1896
|
-
templatesHost:
|
|
1897
|
-
pushBackend:
|
|
1898
|
-
isCommunityNodesFeatureEnabled:
|
|
1899
|
-
isUnverifiedPackagesEnabled:
|
|
1900
|
-
allowedModules:
|
|
1892
|
+
logLevel: vue242.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1893
|
+
isTelemetryEnabled: vue242.ComputedRef<boolean>;
|
|
1894
|
+
isMfaFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1895
|
+
isFoldersFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1896
|
+
isAiAssistantEnabled: vue242.ComputedRef<boolean>;
|
|
1897
|
+
isCustomRolesFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1898
|
+
areTagsEnabled: vue242.ComputedRef<boolean>;
|
|
1899
|
+
isAutosaveEnabled: vue242.ComputedRef<boolean>;
|
|
1900
|
+
isHiringBannerEnabled: vue242.ComputedRef<boolean>;
|
|
1901
|
+
isTemplatesEnabled: vue242.ComputedRef<boolean>;
|
|
1902
|
+
isTemplatesEndpointReachable: vue242.ComputedRef<boolean>;
|
|
1903
|
+
templatesHost: vue242.ComputedRef<string>;
|
|
1904
|
+
pushBackend: vue242.ComputedRef<"sse" | "websocket">;
|
|
1905
|
+
isCommunityNodesFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
1906
|
+
isUnverifiedPackagesEnabled: vue242.ComputedRef<boolean>;
|
|
1907
|
+
allowedModules: vue242.ComputedRef<{
|
|
1901
1908
|
builtIn?: string[] | undefined;
|
|
1902
1909
|
external?: string[] | undefined;
|
|
1903
1910
|
}>;
|
|
1904
|
-
isQueueModeEnabled:
|
|
1905
|
-
isMultiMain:
|
|
1906
|
-
isWorkerViewAvailable:
|
|
1907
|
-
workflowCallerPolicyDefaultOption:
|
|
1908
|
-
permanentlyDismissedBanners:
|
|
1909
|
-
saveDataErrorExecution:
|
|
1910
|
-
saveDataSuccessExecution:
|
|
1911
|
-
saveManualExecutions:
|
|
1912
|
-
saveDataProgressExecution:
|
|
1913
|
-
isCommunityPlan:
|
|
1914
|
-
isAskAiEnabled:
|
|
1915
|
-
isAiBuilderEnabled:
|
|
1916
|
-
isAiAssistantOrBuilderEnabled:
|
|
1917
|
-
isAiCreditsEnabled:
|
|
1918
|
-
aiCreditsQuota:
|
|
1919
|
-
isAiDataSharingEnabled:
|
|
1920
|
-
isAiGatewayEnabled:
|
|
1921
|
-
|
|
1911
|
+
isQueueModeEnabled: vue242.ComputedRef<boolean>;
|
|
1912
|
+
isMultiMain: vue242.ComputedRef<boolean>;
|
|
1913
|
+
isWorkerViewAvailable: vue242.ComputedRef<boolean>;
|
|
1914
|
+
workflowCallerPolicyDefaultOption: vue242.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1915
|
+
permanentlyDismissedBanners: vue242.ComputedRef<string[]>;
|
|
1916
|
+
saveDataErrorExecution: vue242.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1917
|
+
saveDataSuccessExecution: vue242.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1918
|
+
saveManualExecutions: vue242.Ref<boolean, boolean>;
|
|
1919
|
+
saveDataProgressExecution: vue242.Ref<boolean, boolean>;
|
|
1920
|
+
isCommunityPlan: vue242.ComputedRef<boolean>;
|
|
1921
|
+
isAskAiEnabled: vue242.ComputedRef<boolean>;
|
|
1922
|
+
isAiBuilderEnabled: vue242.ComputedRef<boolean>;
|
|
1923
|
+
isAiAssistantOrBuilderEnabled: vue242.ComputedRef<boolean>;
|
|
1924
|
+
isAiCreditsEnabled: vue242.ComputedRef<boolean>;
|
|
1925
|
+
aiCreditsQuota: vue242.ComputedRef<number>;
|
|
1926
|
+
isAiDataSharingEnabled: vue242.ComputedRef<boolean>;
|
|
1927
|
+
isAiGatewayEnabled: vue242.ComputedRef<boolean>;
|
|
1928
|
+
isAiGatewayCloudUbbEnabled: vue242.ComputedRef<boolean>;
|
|
1929
|
+
aiGatewayBudget: vue242.ComputedRef<number>;
|
|
1922
1930
|
reset: () => void;
|
|
1923
1931
|
getTimezones: () => Promise<IDataObject>;
|
|
1924
1932
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1929,7 +1937,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1929
1937
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1930
1938
|
initialize: () => Promise<void>;
|
|
1931
1939
|
getModuleSettings: () => Promise<void>;
|
|
1932
|
-
moduleSettings:
|
|
1940
|
+
moduleSettings: vue242.Ref<{
|
|
1933
1941
|
insights?: {
|
|
1934
1942
|
summary: boolean;
|
|
1935
1943
|
dashboard: boolean;
|
|
@@ -1944,6 +1952,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1944
1952
|
mcpAccessEnabled: boolean;
|
|
1945
1953
|
mcpManagedByEnv: boolean;
|
|
1946
1954
|
serverUrl?: string | undefined;
|
|
1955
|
+
autoExposeNewWorkflows: boolean;
|
|
1947
1956
|
} | undefined;
|
|
1948
1957
|
'chat-hub'?: {
|
|
1949
1958
|
enabled: boolean;
|
|
@@ -2199,9 +2208,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2199
2208
|
} | undefined;
|
|
2200
2209
|
config?: never | undefined;
|
|
2201
2210
|
} | {
|
|
2211
|
+
text: string;
|
|
2202
2212
|
packageName: string;
|
|
2203
2213
|
credentialType: string;
|
|
2204
|
-
text: string;
|
|
2205
2214
|
quickConnectType: "pinecone";
|
|
2206
2215
|
consentText?: string | undefined;
|
|
2207
2216
|
consentCheckbox?: string | undefined;
|
|
@@ -2244,6 +2253,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2244
2253
|
mcpAccessEnabled: boolean;
|
|
2245
2254
|
mcpManagedByEnv: boolean;
|
|
2246
2255
|
serverUrl?: string | undefined;
|
|
2256
|
+
autoExposeNewWorkflows: boolean;
|
|
2247
2257
|
} | undefined;
|
|
2248
2258
|
'chat-hub'?: {
|
|
2249
2259
|
enabled: boolean;
|
|
@@ -2499,9 +2509,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2499
2509
|
} | undefined;
|
|
2500
2510
|
config?: never | undefined;
|
|
2501
2511
|
} | {
|
|
2512
|
+
text: string;
|
|
2502
2513
|
packageName: string;
|
|
2503
2514
|
credentialType: string;
|
|
2504
|
-
text: string;
|
|
2505
2515
|
quickConnectType: "pinecone";
|
|
2506
2516
|
consentText?: string | undefined;
|
|
2507
2517
|
consentCheckbox?: string | undefined;
|
|
@@ -2531,19 +2541,19 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2531
2541
|
} | undefined;
|
|
2532
2542
|
}>;
|
|
2533
2543
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2534
|
-
isMFAEnforcementLicensed:
|
|
2535
|
-
isMFAEnforced:
|
|
2536
|
-
activeModules:
|
|
2544
|
+
isMFAEnforcementLicensed: vue242.ComputedRef<boolean>;
|
|
2545
|
+
isMFAEnforced: vue242.Ref<boolean, boolean>;
|
|
2546
|
+
activeModules: vue242.ComputedRef<string[]>;
|
|
2537
2547
|
isModuleActive: (moduleName: string) => boolean;
|
|
2538
2548
|
isAgentModuleActive: (name: string) => boolean;
|
|
2539
|
-
isDataTableFeatureEnabled:
|
|
2540
|
-
isChatFeatureEnabled:
|
|
2541
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2542
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2543
|
-
isPublicChatTriggerDisabled:
|
|
2544
|
-
isWorkflowPublicationServiceEnabled:
|
|
2545
|
-
}, "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" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2546
|
-
settings:
|
|
2549
|
+
isDataTableFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
2550
|
+
isChatFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
2551
|
+
isOtelCustomSpanAttributesEnabled: vue242.ComputedRef<boolean>;
|
|
2552
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
2553
|
+
isPublicChatTriggerDisabled: vue242.ComputedRef<boolean>;
|
|
2554
|
+
isWorkflowPublicationServiceEnabled: vue242.ComputedRef<boolean>;
|
|
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: vue242.Ref<{
|
|
2547
2557
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2548
2558
|
inE2ETests: boolean;
|
|
2549
2559
|
isDocker: boolean;
|
|
@@ -2762,6 +2772,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2762
2772
|
aiGateway?: {
|
|
2763
2773
|
enabled: boolean;
|
|
2764
2774
|
budget: number;
|
|
2775
|
+
cloudUbbEnabled: boolean;
|
|
2765
2776
|
} | undefined;
|
|
2766
2777
|
ai: {
|
|
2767
2778
|
allowSendingParameterValues: boolean;
|
|
@@ -3007,6 +3018,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3007
3018
|
aiGateway?: {
|
|
3008
3019
|
enabled: boolean;
|
|
3009
3020
|
budget: number;
|
|
3021
|
+
cloudUbbEnabled: boolean;
|
|
3010
3022
|
} | undefined;
|
|
3011
3023
|
ai: {
|
|
3012
3024
|
allowSendingParameterValues: boolean;
|
|
@@ -3034,7 +3046,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3034
3046
|
canvasOnly: boolean;
|
|
3035
3047
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3036
3048
|
}>;
|
|
3037
|
-
userManagement:
|
|
3049
|
+
userManagement: vue242.Ref<{
|
|
3038
3050
|
quota: number;
|
|
3039
3051
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3040
3052
|
smtpSetup: boolean;
|
|
@@ -3047,8 +3059,8 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3047
3059
|
authenticationMethod: AuthenticationMethod;
|
|
3048
3060
|
passwordMinLength: number;
|
|
3049
3061
|
}>;
|
|
3050
|
-
templatesEndpointHealthy:
|
|
3051
|
-
api:
|
|
3062
|
+
templatesEndpointHealthy: vue242.Ref<boolean, boolean>;
|
|
3063
|
+
api: vue242.Ref<{
|
|
3052
3064
|
enabled: boolean;
|
|
3053
3065
|
latestVersion: number;
|
|
3054
3066
|
path: string;
|
|
@@ -3070,17 +3082,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3070
3082
|
enabled: boolean;
|
|
3071
3083
|
};
|
|
3072
3084
|
}>;
|
|
3073
|
-
mfa:
|
|
3085
|
+
mfa: vue242.Ref<{
|
|
3074
3086
|
enabled: boolean;
|
|
3075
3087
|
}, {
|
|
3076
3088
|
enabled: boolean;
|
|
3077
3089
|
} | {
|
|
3078
3090
|
enabled: boolean;
|
|
3079
3091
|
}>;
|
|
3080
|
-
isDocker:
|
|
3081
|
-
isDevRelease:
|
|
3082
|
-
endpointHealth:
|
|
3083
|
-
isEnterpriseFeatureEnabled:
|
|
3092
|
+
isDocker: vue242.ComputedRef<boolean>;
|
|
3093
|
+
isDevRelease: vue242.ComputedRef<boolean>;
|
|
3094
|
+
endpointHealth: vue242.ComputedRef<string>;
|
|
3095
|
+
isEnterpriseFeatureEnabled: vue242.ComputedRef<{
|
|
3084
3096
|
sharing: boolean;
|
|
3085
3097
|
ldap: boolean;
|
|
3086
3098
|
saml: boolean;
|
|
@@ -3111,37 +3123,37 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3111
3123
|
otelCustomSpanAttributes: boolean;
|
|
3112
3124
|
workflowReviews: boolean;
|
|
3113
3125
|
}>;
|
|
3114
|
-
databaseType:
|
|
3115
|
-
planName:
|
|
3116
|
-
consumerId:
|
|
3117
|
-
binaryDataMode:
|
|
3118
|
-
pruning:
|
|
3126
|
+
databaseType: vue242.ComputedRef<"sqlite" | "postgresdb">;
|
|
3127
|
+
planName: vue242.ComputedRef<string>;
|
|
3128
|
+
consumerId: vue242.ComputedRef<string>;
|
|
3129
|
+
binaryDataMode: vue242.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3130
|
+
pruning: vue242.ComputedRef<{
|
|
3119
3131
|
isEnabled: boolean;
|
|
3120
3132
|
maxAge: number;
|
|
3121
3133
|
maxCount: number;
|
|
3122
3134
|
} | undefined>;
|
|
3123
|
-
security:
|
|
3135
|
+
security: vue242.ComputedRef<{
|
|
3124
3136
|
blockFileAccessToN8nFiles: boolean;
|
|
3125
3137
|
secureCookie: boolean;
|
|
3126
3138
|
}>;
|
|
3127
|
-
nodeJsVersion:
|
|
3128
|
-
nodeEnv:
|
|
3129
|
-
concurrency:
|
|
3130
|
-
isConcurrencyEnabled:
|
|
3131
|
-
isPublicApiEnabled:
|
|
3132
|
-
isSwaggerUIEnabled:
|
|
3133
|
-
isPreviewMode:
|
|
3134
|
-
isE2ETestMode:
|
|
3135
|
-
isCanvasOnly:
|
|
3136
|
-
isCrdtCollaborationEnabled:
|
|
3137
|
-
publicApiLatestVersion:
|
|
3138
|
-
publicApiPath:
|
|
3139
|
-
showSetupPage:
|
|
3140
|
-
deploymentType:
|
|
3141
|
-
isCloudDeployment:
|
|
3142
|
-
isSmtpSetup:
|
|
3143
|
-
isPersonalizationSurveyEnabled:
|
|
3144
|
-
telemetry:
|
|
3139
|
+
nodeJsVersion: vue242.ComputedRef<string>;
|
|
3140
|
+
nodeEnv: vue242.ComputedRef<string | undefined>;
|
|
3141
|
+
concurrency: vue242.ComputedRef<number>;
|
|
3142
|
+
isConcurrencyEnabled: vue242.ComputedRef<boolean>;
|
|
3143
|
+
isPublicApiEnabled: vue242.ComputedRef<boolean>;
|
|
3144
|
+
isSwaggerUIEnabled: vue242.ComputedRef<boolean>;
|
|
3145
|
+
isPreviewMode: vue242.ComputedRef<boolean>;
|
|
3146
|
+
isE2ETestMode: vue242.ComputedRef<boolean>;
|
|
3147
|
+
isCanvasOnly: vue242.ComputedRef<boolean>;
|
|
3148
|
+
isCrdtCollaborationEnabled: vue242.ComputedRef<boolean>;
|
|
3149
|
+
publicApiLatestVersion: vue242.ComputedRef<number>;
|
|
3150
|
+
publicApiPath: vue242.ComputedRef<string>;
|
|
3151
|
+
showSetupPage: vue242.ComputedRef<boolean | undefined>;
|
|
3152
|
+
deploymentType: vue242.ComputedRef<string>;
|
|
3153
|
+
isCloudDeployment: vue242.ComputedRef<boolean>;
|
|
3154
|
+
isSmtpSetup: vue242.ComputedRef<boolean>;
|
|
3155
|
+
isPersonalizationSurveyEnabled: vue242.ComputedRef<boolean>;
|
|
3156
|
+
telemetry: vue242.ComputedRef<{
|
|
3145
3157
|
enabled: boolean;
|
|
3146
3158
|
config?: {
|
|
3147
3159
|
url: string;
|
|
@@ -3150,43 +3162,44 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3150
3162
|
sourceConfig: string;
|
|
3151
3163
|
} | undefined;
|
|
3152
3164
|
}>;
|
|
3153
|
-
logLevel:
|
|
3154
|
-
isTelemetryEnabled:
|
|
3155
|
-
isMfaFeatureEnabled:
|
|
3156
|
-
isFoldersFeatureEnabled:
|
|
3157
|
-
isAiAssistantEnabled:
|
|
3158
|
-
isCustomRolesFeatureEnabled:
|
|
3159
|
-
areTagsEnabled:
|
|
3160
|
-
isAutosaveEnabled:
|
|
3161
|
-
isHiringBannerEnabled:
|
|
3162
|
-
isTemplatesEnabled:
|
|
3163
|
-
isTemplatesEndpointReachable:
|
|
3164
|
-
templatesHost:
|
|
3165
|
-
pushBackend:
|
|
3166
|
-
isCommunityNodesFeatureEnabled:
|
|
3167
|
-
isUnverifiedPackagesEnabled:
|
|
3168
|
-
allowedModules:
|
|
3165
|
+
logLevel: vue242.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3166
|
+
isTelemetryEnabled: vue242.ComputedRef<boolean>;
|
|
3167
|
+
isMfaFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3168
|
+
isFoldersFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3169
|
+
isAiAssistantEnabled: vue242.ComputedRef<boolean>;
|
|
3170
|
+
isCustomRolesFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3171
|
+
areTagsEnabled: vue242.ComputedRef<boolean>;
|
|
3172
|
+
isAutosaveEnabled: vue242.ComputedRef<boolean>;
|
|
3173
|
+
isHiringBannerEnabled: vue242.ComputedRef<boolean>;
|
|
3174
|
+
isTemplatesEnabled: vue242.ComputedRef<boolean>;
|
|
3175
|
+
isTemplatesEndpointReachable: vue242.ComputedRef<boolean>;
|
|
3176
|
+
templatesHost: vue242.ComputedRef<string>;
|
|
3177
|
+
pushBackend: vue242.ComputedRef<"sse" | "websocket">;
|
|
3178
|
+
isCommunityNodesFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3179
|
+
isUnverifiedPackagesEnabled: vue242.ComputedRef<boolean>;
|
|
3180
|
+
allowedModules: vue242.ComputedRef<{
|
|
3169
3181
|
builtIn?: string[] | undefined;
|
|
3170
3182
|
external?: string[] | undefined;
|
|
3171
3183
|
}>;
|
|
3172
|
-
isQueueModeEnabled:
|
|
3173
|
-
isMultiMain:
|
|
3174
|
-
isWorkerViewAvailable:
|
|
3175
|
-
workflowCallerPolicyDefaultOption:
|
|
3176
|
-
permanentlyDismissedBanners:
|
|
3177
|
-
saveDataErrorExecution:
|
|
3178
|
-
saveDataSuccessExecution:
|
|
3179
|
-
saveManualExecutions:
|
|
3180
|
-
saveDataProgressExecution:
|
|
3181
|
-
isCommunityPlan:
|
|
3182
|
-
isAskAiEnabled:
|
|
3183
|
-
isAiBuilderEnabled:
|
|
3184
|
-
isAiAssistantOrBuilderEnabled:
|
|
3185
|
-
isAiCreditsEnabled:
|
|
3186
|
-
aiCreditsQuota:
|
|
3187
|
-
isAiDataSharingEnabled:
|
|
3188
|
-
isAiGatewayEnabled:
|
|
3189
|
-
|
|
3184
|
+
isQueueModeEnabled: vue242.ComputedRef<boolean>;
|
|
3185
|
+
isMultiMain: vue242.ComputedRef<boolean>;
|
|
3186
|
+
isWorkerViewAvailable: vue242.ComputedRef<boolean>;
|
|
3187
|
+
workflowCallerPolicyDefaultOption: vue242.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3188
|
+
permanentlyDismissedBanners: vue242.ComputedRef<string[]>;
|
|
3189
|
+
saveDataErrorExecution: vue242.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3190
|
+
saveDataSuccessExecution: vue242.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3191
|
+
saveManualExecutions: vue242.Ref<boolean, boolean>;
|
|
3192
|
+
saveDataProgressExecution: vue242.Ref<boolean, boolean>;
|
|
3193
|
+
isCommunityPlan: vue242.ComputedRef<boolean>;
|
|
3194
|
+
isAskAiEnabled: vue242.ComputedRef<boolean>;
|
|
3195
|
+
isAiBuilderEnabled: vue242.ComputedRef<boolean>;
|
|
3196
|
+
isAiAssistantOrBuilderEnabled: vue242.ComputedRef<boolean>;
|
|
3197
|
+
isAiCreditsEnabled: vue242.ComputedRef<boolean>;
|
|
3198
|
+
aiCreditsQuota: vue242.ComputedRef<number>;
|
|
3199
|
+
isAiDataSharingEnabled: vue242.ComputedRef<boolean>;
|
|
3200
|
+
isAiGatewayEnabled: vue242.ComputedRef<boolean>;
|
|
3201
|
+
isAiGatewayCloudUbbEnabled: vue242.ComputedRef<boolean>;
|
|
3202
|
+
aiGatewayBudget: vue242.ComputedRef<number>;
|
|
3190
3203
|
reset: () => void;
|
|
3191
3204
|
getTimezones: () => Promise<IDataObject>;
|
|
3192
3205
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3197,7 +3210,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3197
3210
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3198
3211
|
initialize: () => Promise<void>;
|
|
3199
3212
|
getModuleSettings: () => Promise<void>;
|
|
3200
|
-
moduleSettings:
|
|
3213
|
+
moduleSettings: vue242.Ref<{
|
|
3201
3214
|
insights?: {
|
|
3202
3215
|
summary: boolean;
|
|
3203
3216
|
dashboard: boolean;
|
|
@@ -3212,6 +3225,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3212
3225
|
mcpAccessEnabled: boolean;
|
|
3213
3226
|
mcpManagedByEnv: boolean;
|
|
3214
3227
|
serverUrl?: string | undefined;
|
|
3228
|
+
autoExposeNewWorkflows: boolean;
|
|
3215
3229
|
} | undefined;
|
|
3216
3230
|
'chat-hub'?: {
|
|
3217
3231
|
enabled: boolean;
|
|
@@ -3467,9 +3481,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3467
3481
|
} | undefined;
|
|
3468
3482
|
config?: never | undefined;
|
|
3469
3483
|
} | {
|
|
3484
|
+
text: string;
|
|
3470
3485
|
packageName: string;
|
|
3471
3486
|
credentialType: string;
|
|
3472
|
-
text: string;
|
|
3473
3487
|
quickConnectType: "pinecone";
|
|
3474
3488
|
consentText?: string | undefined;
|
|
3475
3489
|
consentCheckbox?: string | undefined;
|
|
@@ -3512,6 +3526,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3512
3526
|
mcpAccessEnabled: boolean;
|
|
3513
3527
|
mcpManagedByEnv: boolean;
|
|
3514
3528
|
serverUrl?: string | undefined;
|
|
3529
|
+
autoExposeNewWorkflows: boolean;
|
|
3515
3530
|
} | undefined;
|
|
3516
3531
|
'chat-hub'?: {
|
|
3517
3532
|
enabled: boolean;
|
|
@@ -3767,9 +3782,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3767
3782
|
} | undefined;
|
|
3768
3783
|
config?: never | undefined;
|
|
3769
3784
|
} | {
|
|
3785
|
+
text: string;
|
|
3770
3786
|
packageName: string;
|
|
3771
3787
|
credentialType: string;
|
|
3772
|
-
text: string;
|
|
3773
3788
|
quickConnectType: "pinecone";
|
|
3774
3789
|
consentText?: string | undefined;
|
|
3775
3790
|
consentCheckbox?: string | undefined;
|
|
@@ -3799,17 +3814,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3799
3814
|
} | undefined;
|
|
3800
3815
|
}>;
|
|
3801
3816
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3802
|
-
isMFAEnforcementLicensed:
|
|
3803
|
-
isMFAEnforced:
|
|
3804
|
-
activeModules:
|
|
3817
|
+
isMFAEnforcementLicensed: vue242.ComputedRef<boolean>;
|
|
3818
|
+
isMFAEnforced: vue242.Ref<boolean, boolean>;
|
|
3819
|
+
activeModules: vue242.ComputedRef<string[]>;
|
|
3805
3820
|
isModuleActive: (moduleName: string) => boolean;
|
|
3806
3821
|
isAgentModuleActive: (name: string) => boolean;
|
|
3807
|
-
isDataTableFeatureEnabled:
|
|
3808
|
-
isChatFeatureEnabled:
|
|
3809
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3810
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3811
|
-
isPublicChatTriggerDisabled:
|
|
3812
|
-
isWorkflowPublicationServiceEnabled:
|
|
3822
|
+
isDataTableFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3823
|
+
isChatFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3824
|
+
isOtelCustomSpanAttributesEnabled: vue242.ComputedRef<boolean>;
|
|
3825
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue242.ComputedRef<boolean>;
|
|
3826
|
+
isPublicChatTriggerDisabled: vue242.ComputedRef<boolean>;
|
|
3827
|
+
isWorkflowPublicationServiceEnabled: vue242.ComputedRef<boolean>;
|
|
3813
3828
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3814
3829
|
//#endregion
|
|
3815
3830
|
export { useSettingsStore };
|