@n8n/stores 2.35.3 → 2.36.1
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/rbac.store.d.cts +9 -9
- package/dist/rbac.store.d.mts +27 -27
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +18 -3
- package/dist/settings.store.d.mts +257 -242
- 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 +2 -2
- package/dist/useRootStore.d.cts +85 -72
- package/dist/useRootStore.d.mts +87 -74
- 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 +49 -49
- 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 +28 -28
- package/dist/versions.store.d.mts +40 -40
- package/package.json +11 -11
|
@@ -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
|
-
import * as
|
|
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;
|
|
@@ -126,7 +126,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
126
126
|
workflowTagsDisabled: boolean;
|
|
127
127
|
workflowsAutosaveDisabled: boolean;
|
|
128
128
|
useWorkflowPublicationService: boolean;
|
|
129
|
-
logLevel:
|
|
129
|
+
logLevel: n8n_workflow0.LogLevel;
|
|
130
130
|
hiringBannerEnabled: boolean;
|
|
131
131
|
previewMode: boolean;
|
|
132
132
|
templates: {
|
|
@@ -226,6 +226,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -371,7 +372,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
371
372
|
workflowTagsDisabled: boolean;
|
|
372
373
|
workflowsAutosaveDisabled: boolean;
|
|
373
374
|
useWorkflowPublicationService: boolean;
|
|
374
|
-
logLevel:
|
|
375
|
+
logLevel: n8n_workflow0.LogLevel;
|
|
375
376
|
hiringBannerEnabled: boolean;
|
|
376
377
|
previewMode: boolean;
|
|
377
378
|
templates: {
|
|
@@ -471,6 +472,7 @@ declare const useSettingsStore: pinia7.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: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
498
500
|
canvasOnly: boolean;
|
|
499
501
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
500
502
|
}>;
|
|
501
|
-
userManagement:
|
|
503
|
+
userManagement: vue62.Ref<{
|
|
502
504
|
quota: number;
|
|
503
505
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
504
506
|
smtpSetup: boolean;
|
|
@@ -511,8 +513,8 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
511
513
|
authenticationMethod: AuthenticationMethod;
|
|
512
514
|
passwordMinLength: number;
|
|
513
515
|
}>;
|
|
514
|
-
templatesEndpointHealthy:
|
|
515
|
-
api:
|
|
516
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
517
|
+
api: vue62.Ref<{
|
|
516
518
|
enabled: boolean;
|
|
517
519
|
latestVersion: number;
|
|
518
520
|
path: string;
|
|
@@ -534,17 +536,17 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
534
536
|
enabled: boolean;
|
|
535
537
|
};
|
|
536
538
|
}>;
|
|
537
|
-
mfa:
|
|
539
|
+
mfa: vue62.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: vue62.ComputedRef<boolean>;
|
|
547
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
548
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
549
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
548
550
|
sharing: boolean;
|
|
549
551
|
ldap: boolean;
|
|
550
552
|
saml: boolean;
|
|
@@ -575,37 +577,37 @@ declare const useSettingsStore: pinia7.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: 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<{
|
|
583
585
|
isEnabled: boolean;
|
|
584
586
|
maxAge: number;
|
|
585
587
|
maxCount: number;
|
|
586
588
|
} | undefined>;
|
|
587
|
-
security:
|
|
589
|
+
security: vue62.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: 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<{
|
|
609
611
|
enabled: boolean;
|
|
610
612
|
config?: {
|
|
611
613
|
url: string;
|
|
@@ -614,43 +616,44 @@ declare const useSettingsStore: pinia7.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: 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<{
|
|
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: vue62.ComputedRef<boolean>;
|
|
639
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
640
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
641
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
642
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
643
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
644
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
645
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
646
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
647
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
648
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
649
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
650
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
651
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
652
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
653
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
654
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
655
|
+
isAiGatewayCloudUbbEnabled: vue62.ComputedRef<boolean>;
|
|
656
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
654
657
|
reset: () => void;
|
|
655
658
|
getTimezones: () => Promise<IDataObject>;
|
|
656
659
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -661,7 +664,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
661
664
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
662
665
|
initialize: () => Promise<void>;
|
|
663
666
|
getModuleSettings: () => Promise<void>;
|
|
664
|
-
moduleSettings:
|
|
667
|
+
moduleSettings: vue62.Ref<{
|
|
665
668
|
insights?: {
|
|
666
669
|
summary: boolean;
|
|
667
670
|
dashboard: boolean;
|
|
@@ -676,6 +679,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -976,6 +980,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -1263,19 +1268,19 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1263
1268
|
} | undefined;
|
|
1264
1269
|
}>;
|
|
1265
1270
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1266
|
-
isMFAEnforcementLicensed:
|
|
1267
|
-
isMFAEnforced:
|
|
1268
|
-
activeModules:
|
|
1271
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
1272
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
1273
|
+
activeModules: vue62.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: vue62.ComputedRef<boolean>;
|
|
1277
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1278
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
1279
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1280
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
1281
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
1277
1282
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1278
|
-
settings:
|
|
1283
|
+
settings: vue62.Ref<{
|
|
1279
1284
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1280
1285
|
inE2ETests: boolean;
|
|
1281
1286
|
isDocker: boolean;
|
|
@@ -1394,7 +1399,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1394
1399
|
workflowTagsDisabled: boolean;
|
|
1395
1400
|
workflowsAutosaveDisabled: boolean;
|
|
1396
1401
|
useWorkflowPublicationService: boolean;
|
|
1397
|
-
logLevel:
|
|
1402
|
+
logLevel: n8n_workflow0.LogLevel;
|
|
1398
1403
|
hiringBannerEnabled: boolean;
|
|
1399
1404
|
previewMode: boolean;
|
|
1400
1405
|
templates: {
|
|
@@ -1494,6 +1499,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -1639,7 +1645,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1639
1645
|
workflowTagsDisabled: boolean;
|
|
1640
1646
|
workflowsAutosaveDisabled: boolean;
|
|
1641
1647
|
useWorkflowPublicationService: boolean;
|
|
1642
|
-
logLevel:
|
|
1648
|
+
logLevel: n8n_workflow0.LogLevel;
|
|
1643
1649
|
hiringBannerEnabled: boolean;
|
|
1644
1650
|
previewMode: boolean;
|
|
1645
1651
|
templates: {
|
|
@@ -1739,6 +1745,7 @@ declare const useSettingsStore: pinia7.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: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1766
1773
|
canvasOnly: boolean;
|
|
1767
1774
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1768
1775
|
}>;
|
|
1769
|
-
userManagement:
|
|
1776
|
+
userManagement: vue62.Ref<{
|
|
1770
1777
|
quota: number;
|
|
1771
1778
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1772
1779
|
smtpSetup: boolean;
|
|
@@ -1779,8 +1786,8 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1779
1786
|
authenticationMethod: AuthenticationMethod;
|
|
1780
1787
|
passwordMinLength: number;
|
|
1781
1788
|
}>;
|
|
1782
|
-
templatesEndpointHealthy:
|
|
1783
|
-
api:
|
|
1789
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
1790
|
+
api: vue62.Ref<{
|
|
1784
1791
|
enabled: boolean;
|
|
1785
1792
|
latestVersion: number;
|
|
1786
1793
|
path: string;
|
|
@@ -1802,17 +1809,17 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1802
1809
|
enabled: boolean;
|
|
1803
1810
|
};
|
|
1804
1811
|
}>;
|
|
1805
|
-
mfa:
|
|
1812
|
+
mfa: vue62.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: vue62.ComputedRef<boolean>;
|
|
1820
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
1821
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
1822
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
1816
1823
|
sharing: boolean;
|
|
1817
1824
|
ldap: boolean;
|
|
1818
1825
|
saml: boolean;
|
|
@@ -1843,37 +1850,37 @@ declare const useSettingsStore: pinia7.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: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
1854
|
+
planName: vue62.ComputedRef<string>;
|
|
1855
|
+
consumerId: vue62.ComputedRef<string>;
|
|
1856
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1857
|
+
pruning: vue62.ComputedRef<{
|
|
1851
1858
|
isEnabled: boolean;
|
|
1852
1859
|
maxAge: number;
|
|
1853
1860
|
maxCount: number;
|
|
1854
1861
|
} | undefined>;
|
|
1855
|
-
security:
|
|
1862
|
+
security: vue62.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: vue62.ComputedRef<string>;
|
|
1867
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
1868
|
+
concurrency: vue62.ComputedRef<number>;
|
|
1869
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
1870
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
1871
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
1872
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
1873
|
+
isE2ETestMode: vue62.ComputedRef<boolean>;
|
|
1874
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
1875
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
1876
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
1877
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
1878
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
1879
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
1880
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
1881
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
1882
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
1883
|
+
telemetry: vue62.ComputedRef<{
|
|
1877
1884
|
enabled: boolean;
|
|
1878
1885
|
config?: {
|
|
1879
1886
|
url: string;
|
|
@@ -1882,43 +1889,44 @@ declare const useSettingsStore: pinia7.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: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1893
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
1894
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1895
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1896
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
1897
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1898
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
1899
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
1900
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
1901
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
1902
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
1903
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
1904
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
1905
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1906
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
1907
|
+
allowedModules: vue62.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: vue62.ComputedRef<boolean>;
|
|
1912
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
1913
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
1914
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1915
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
1916
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1917
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1918
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
1919
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
1920
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
1921
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
1922
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
1923
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
1924
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
1925
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
1926
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
1927
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
1928
|
+
isAiGatewayCloudUbbEnabled: vue62.ComputedRef<boolean>;
|
|
1929
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
1922
1930
|
reset: () => void;
|
|
1923
1931
|
getTimezones: () => Promise<IDataObject>;
|
|
1924
1932
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1929,7 +1937,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
1929
1937
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1930
1938
|
initialize: () => Promise<void>;
|
|
1931
1939
|
getModuleSettings: () => Promise<void>;
|
|
1932
|
-
moduleSettings:
|
|
1940
|
+
moduleSettings: vue62.Ref<{
|
|
1933
1941
|
insights?: {
|
|
1934
1942
|
summary: boolean;
|
|
1935
1943
|
dashboard: boolean;
|
|
@@ -1944,6 +1952,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -2244,6 +2253,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -2531,19 +2541,19 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
2531
2541
|
} | undefined;
|
|
2532
2542
|
}>;
|
|
2533
2543
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2534
|
-
isMFAEnforcementLicensed:
|
|
2535
|
-
isMFAEnforced:
|
|
2536
|
-
activeModules:
|
|
2544
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
2545
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
2546
|
+
activeModules: vue62.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: vue62.ComputedRef<boolean>;
|
|
2550
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2551
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
2552
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2553
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
2554
|
+
isWorkflowPublicationServiceEnabled: vue62.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: vue62.Ref<{
|
|
2547
2557
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2548
2558
|
inE2ETests: boolean;
|
|
2549
2559
|
isDocker: boolean;
|
|
@@ -2662,7 +2672,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
2662
2672
|
workflowTagsDisabled: boolean;
|
|
2663
2673
|
workflowsAutosaveDisabled: boolean;
|
|
2664
2674
|
useWorkflowPublicationService: boolean;
|
|
2665
|
-
logLevel:
|
|
2675
|
+
logLevel: n8n_workflow0.LogLevel;
|
|
2666
2676
|
hiringBannerEnabled: boolean;
|
|
2667
2677
|
previewMode: boolean;
|
|
2668
2678
|
templates: {
|
|
@@ -2762,6 +2772,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -2907,7 +2918,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
2907
2918
|
workflowTagsDisabled: boolean;
|
|
2908
2919
|
workflowsAutosaveDisabled: boolean;
|
|
2909
2920
|
useWorkflowPublicationService: boolean;
|
|
2910
|
-
logLevel:
|
|
2921
|
+
logLevel: n8n_workflow0.LogLevel;
|
|
2911
2922
|
hiringBannerEnabled: boolean;
|
|
2912
2923
|
previewMode: boolean;
|
|
2913
2924
|
templates: {
|
|
@@ -3007,6 +3018,7 @@ declare const useSettingsStore: pinia7.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: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
3034
3046
|
canvasOnly: boolean;
|
|
3035
3047
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3036
3048
|
}>;
|
|
3037
|
-
userManagement:
|
|
3049
|
+
userManagement: vue62.Ref<{
|
|
3038
3050
|
quota: number;
|
|
3039
3051
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3040
3052
|
smtpSetup: boolean;
|
|
@@ -3047,8 +3059,8 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
3047
3059
|
authenticationMethod: AuthenticationMethod;
|
|
3048
3060
|
passwordMinLength: number;
|
|
3049
3061
|
}>;
|
|
3050
|
-
templatesEndpointHealthy:
|
|
3051
|
-
api:
|
|
3062
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
3063
|
+
api: vue62.Ref<{
|
|
3052
3064
|
enabled: boolean;
|
|
3053
3065
|
latestVersion: number;
|
|
3054
3066
|
path: string;
|
|
@@ -3070,17 +3082,17 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
3070
3082
|
enabled: boolean;
|
|
3071
3083
|
};
|
|
3072
3084
|
}>;
|
|
3073
|
-
mfa:
|
|
3085
|
+
mfa: vue62.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: vue62.ComputedRef<boolean>;
|
|
3093
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
3094
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
3095
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
3084
3096
|
sharing: boolean;
|
|
3085
3097
|
ldap: boolean;
|
|
3086
3098
|
saml: boolean;
|
|
@@ -3111,37 +3123,37 @@ declare const useSettingsStore: pinia7.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: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
3127
|
+
planName: vue62.ComputedRef<string>;
|
|
3128
|
+
consumerId: vue62.ComputedRef<string>;
|
|
3129
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3130
|
+
pruning: vue62.ComputedRef<{
|
|
3119
3131
|
isEnabled: boolean;
|
|
3120
3132
|
maxAge: number;
|
|
3121
3133
|
maxCount: number;
|
|
3122
3134
|
} | undefined>;
|
|
3123
|
-
security:
|
|
3135
|
+
security: vue62.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: vue62.ComputedRef<string>;
|
|
3140
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
3141
|
+
concurrency: vue62.ComputedRef<number>;
|
|
3142
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
3143
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
3144
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
3145
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
3146
|
+
isE2ETestMode: vue62.ComputedRef<boolean>;
|
|
3147
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
3148
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
3149
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
3150
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
3151
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
3152
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
3153
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
3154
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
3155
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
3156
|
+
telemetry: vue62.ComputedRef<{
|
|
3145
3157
|
enabled: boolean;
|
|
3146
3158
|
config?: {
|
|
3147
3159
|
url: string;
|
|
@@ -3150,43 +3162,44 @@ declare const useSettingsStore: pinia7.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: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3166
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
3167
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3168
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3169
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
3170
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3171
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
3172
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
3173
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
3174
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
3175
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
3176
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
3177
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
3178
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3179
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
3180
|
+
allowedModules: vue62.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: vue62.ComputedRef<boolean>;
|
|
3185
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
3186
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
3187
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3188
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
3189
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3190
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3191
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
3192
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
3193
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
3194
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
3195
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
3196
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
3197
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
3198
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
3199
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
3200
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
3201
|
+
isAiGatewayCloudUbbEnabled: vue62.ComputedRef<boolean>;
|
|
3202
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
3190
3203
|
reset: () => void;
|
|
3191
3204
|
getTimezones: () => Promise<IDataObject>;
|
|
3192
3205
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3197,7 +3210,7 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
3197
3210
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3198
3211
|
initialize: () => Promise<void>;
|
|
3199
3212
|
getModuleSettings: () => Promise<void>;
|
|
3200
|
-
moduleSettings:
|
|
3213
|
+
moduleSettings: vue62.Ref<{
|
|
3201
3214
|
insights?: {
|
|
3202
3215
|
summary: boolean;
|
|
3203
3216
|
dashboard: boolean;
|
|
@@ -3212,6 +3225,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -3512,6 +3526,7 @@ declare const useSettingsStore: pinia7.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;
|
|
@@ -3799,17 +3814,17 @@ declare const useSettingsStore: pinia7.StoreDefinition<"settings", Pick<{
|
|
|
3799
3814
|
} | undefined;
|
|
3800
3815
|
}>;
|
|
3801
3816
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3802
|
-
isMFAEnforcementLicensed:
|
|
3803
|
-
isMFAEnforced:
|
|
3804
|
-
activeModules:
|
|
3817
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
3818
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
3819
|
+
activeModules: vue62.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: vue62.ComputedRef<boolean>;
|
|
3823
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3824
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
3825
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3826
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
3827
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
3813
3828
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3814
3829
|
//#endregion
|
|
3815
3830
|
export { useSettingsStore };
|