@n8n/stores 2.34.2 → 2.35.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/cloudPlan.store.d.mts +66 -66
- 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/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 +260 -245
- package/dist/settings.store.d.mts +253 -238
- package/dist/settings2.store.cjs +2 -0
- package/dist/settings2.store.cjs.map +1 -1
- package/dist/settings2.store.mjs +2 -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 +72 -72
- package/dist/useRootStore.d.mts +72 -72
- package/dist/users.store.d.cts +53 -53
- package/dist/users.store.d.mts +51 -51
- package/dist/versions.store.d.cts +40 -40
- 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 vue176 from "vue";
|
|
2
|
+
import * as pinia4 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
|
-
import * as
|
|
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: pinia4.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue176.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -126,7 +126,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
126
126
|
workflowTagsDisabled: boolean;
|
|
127
127
|
workflowsAutosaveDisabled: boolean;
|
|
128
128
|
useWorkflowPublicationService: boolean;
|
|
129
|
-
logLevel:
|
|
129
|
+
logLevel: n8n_workflow8.LogLevel;
|
|
130
130
|
hiringBannerEnabled: boolean;
|
|
131
131
|
previewMode: boolean;
|
|
132
132
|
templates: {
|
|
@@ -371,7 +371,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
371
371
|
workflowTagsDisabled: boolean;
|
|
372
372
|
workflowsAutosaveDisabled: boolean;
|
|
373
373
|
useWorkflowPublicationService: boolean;
|
|
374
|
-
logLevel:
|
|
374
|
+
logLevel: n8n_workflow8.LogLevel;
|
|
375
375
|
hiringBannerEnabled: boolean;
|
|
376
376
|
previewMode: boolean;
|
|
377
377
|
templates: {
|
|
@@ -498,7 +498,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
498
498
|
canvasOnly: boolean;
|
|
499
499
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
500
500
|
}>;
|
|
501
|
-
userManagement:
|
|
501
|
+
userManagement: vue176.Ref<{
|
|
502
502
|
quota: number;
|
|
503
503
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
504
504
|
smtpSetup: boolean;
|
|
@@ -511,8 +511,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
511
511
|
authenticationMethod: AuthenticationMethod;
|
|
512
512
|
passwordMinLength: number;
|
|
513
513
|
}>;
|
|
514
|
-
templatesEndpointHealthy:
|
|
515
|
-
api:
|
|
514
|
+
templatesEndpointHealthy: vue176.Ref<boolean, boolean>;
|
|
515
|
+
api: vue176.Ref<{
|
|
516
516
|
enabled: boolean;
|
|
517
517
|
latestVersion: number;
|
|
518
518
|
path: string;
|
|
@@ -534,17 +534,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
534
534
|
enabled: boolean;
|
|
535
535
|
};
|
|
536
536
|
}>;
|
|
537
|
-
mfa:
|
|
537
|
+
mfa: vue176.Ref<{
|
|
538
538
|
enabled: boolean;
|
|
539
539
|
}, {
|
|
540
540
|
enabled: boolean;
|
|
541
541
|
} | {
|
|
542
542
|
enabled: boolean;
|
|
543
543
|
}>;
|
|
544
|
-
isDocker:
|
|
545
|
-
isDevRelease:
|
|
546
|
-
endpointHealth:
|
|
547
|
-
isEnterpriseFeatureEnabled:
|
|
544
|
+
isDocker: vue176.ComputedRef<boolean>;
|
|
545
|
+
isDevRelease: vue176.ComputedRef<boolean>;
|
|
546
|
+
endpointHealth: vue176.ComputedRef<string>;
|
|
547
|
+
isEnterpriseFeatureEnabled: vue176.ComputedRef<{
|
|
548
548
|
sharing: boolean;
|
|
549
549
|
ldap: boolean;
|
|
550
550
|
saml: boolean;
|
|
@@ -575,36 +575,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
575
575
|
otelCustomSpanAttributes: boolean;
|
|
576
576
|
workflowReviews: boolean;
|
|
577
577
|
}>;
|
|
578
|
-
databaseType:
|
|
579
|
-
planName:
|
|
580
|
-
consumerId:
|
|
581
|
-
binaryDataMode:
|
|
582
|
-
pruning:
|
|
578
|
+
databaseType: vue176.ComputedRef<"sqlite" | "postgresdb">;
|
|
579
|
+
planName: vue176.ComputedRef<string>;
|
|
580
|
+
consumerId: vue176.ComputedRef<string>;
|
|
581
|
+
binaryDataMode: vue176.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
582
|
+
pruning: vue176.ComputedRef<{
|
|
583
583
|
isEnabled: boolean;
|
|
584
584
|
maxAge: number;
|
|
585
585
|
maxCount: number;
|
|
586
586
|
} | undefined>;
|
|
587
|
-
security:
|
|
587
|
+
security: vue176.ComputedRef<{
|
|
588
588
|
blockFileAccessToN8nFiles: boolean;
|
|
589
589
|
secureCookie: boolean;
|
|
590
590
|
}>;
|
|
591
|
-
nodeJsVersion:
|
|
592
|
-
nodeEnv:
|
|
593
|
-
concurrency:
|
|
594
|
-
isConcurrencyEnabled:
|
|
595
|
-
isPublicApiEnabled:
|
|
596
|
-
isSwaggerUIEnabled:
|
|
597
|
-
isPreviewMode:
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
591
|
+
nodeJsVersion: vue176.ComputedRef<string>;
|
|
592
|
+
nodeEnv: vue176.ComputedRef<string | undefined>;
|
|
593
|
+
concurrency: vue176.ComputedRef<number>;
|
|
594
|
+
isConcurrencyEnabled: vue176.ComputedRef<boolean>;
|
|
595
|
+
isPublicApiEnabled: vue176.ComputedRef<boolean>;
|
|
596
|
+
isSwaggerUIEnabled: vue176.ComputedRef<boolean>;
|
|
597
|
+
isPreviewMode: vue176.ComputedRef<boolean>;
|
|
598
|
+
isE2ETestMode: vue176.ComputedRef<boolean>;
|
|
599
|
+
isCanvasOnly: vue176.ComputedRef<boolean>;
|
|
600
|
+
isCrdtCollaborationEnabled: vue176.ComputedRef<boolean>;
|
|
601
|
+
publicApiLatestVersion: vue176.ComputedRef<number>;
|
|
602
|
+
publicApiPath: vue176.ComputedRef<string>;
|
|
603
|
+
showSetupPage: vue176.ComputedRef<boolean | undefined>;
|
|
604
|
+
deploymentType: vue176.ComputedRef<string>;
|
|
605
|
+
isCloudDeployment: vue176.ComputedRef<boolean>;
|
|
606
|
+
isSmtpSetup: vue176.ComputedRef<boolean>;
|
|
607
|
+
isPersonalizationSurveyEnabled: vue176.ComputedRef<boolean>;
|
|
608
|
+
telemetry: vue176.ComputedRef<{
|
|
608
609
|
enabled: boolean;
|
|
609
610
|
config?: {
|
|
610
611
|
url: string;
|
|
@@ -613,43 +614,43 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
613
614
|
sourceConfig: string;
|
|
614
615
|
} | undefined;
|
|
615
616
|
}>;
|
|
616
|
-
logLevel:
|
|
617
|
-
isTelemetryEnabled:
|
|
618
|
-
isMfaFeatureEnabled:
|
|
619
|
-
isFoldersFeatureEnabled:
|
|
620
|
-
isAiAssistantEnabled:
|
|
621
|
-
isCustomRolesFeatureEnabled:
|
|
622
|
-
areTagsEnabled:
|
|
623
|
-
isAutosaveEnabled:
|
|
624
|
-
isHiringBannerEnabled:
|
|
625
|
-
isTemplatesEnabled:
|
|
626
|
-
isTemplatesEndpointReachable:
|
|
627
|
-
templatesHost:
|
|
628
|
-
pushBackend:
|
|
629
|
-
isCommunityNodesFeatureEnabled:
|
|
630
|
-
isUnverifiedPackagesEnabled:
|
|
631
|
-
allowedModules:
|
|
617
|
+
logLevel: vue176.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
618
|
+
isTelemetryEnabled: vue176.ComputedRef<boolean>;
|
|
619
|
+
isMfaFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
620
|
+
isFoldersFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
621
|
+
isAiAssistantEnabled: vue176.ComputedRef<boolean>;
|
|
622
|
+
isCustomRolesFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
623
|
+
areTagsEnabled: vue176.ComputedRef<boolean>;
|
|
624
|
+
isAutosaveEnabled: vue176.ComputedRef<boolean>;
|
|
625
|
+
isHiringBannerEnabled: vue176.ComputedRef<boolean>;
|
|
626
|
+
isTemplatesEnabled: vue176.ComputedRef<boolean>;
|
|
627
|
+
isTemplatesEndpointReachable: vue176.ComputedRef<boolean>;
|
|
628
|
+
templatesHost: vue176.ComputedRef<string>;
|
|
629
|
+
pushBackend: vue176.ComputedRef<"sse" | "websocket">;
|
|
630
|
+
isCommunityNodesFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
631
|
+
isUnverifiedPackagesEnabled: vue176.ComputedRef<boolean>;
|
|
632
|
+
allowedModules: vue176.ComputedRef<{
|
|
632
633
|
builtIn?: string[] | undefined;
|
|
633
634
|
external?: string[] | undefined;
|
|
634
635
|
}>;
|
|
635
|
-
isQueueModeEnabled:
|
|
636
|
-
isMultiMain:
|
|
637
|
-
isWorkerViewAvailable:
|
|
638
|
-
workflowCallerPolicyDefaultOption:
|
|
639
|
-
permanentlyDismissedBanners:
|
|
640
|
-
saveDataErrorExecution:
|
|
641
|
-
saveDataSuccessExecution:
|
|
642
|
-
saveManualExecutions:
|
|
643
|
-
saveDataProgressExecution:
|
|
644
|
-
isCommunityPlan:
|
|
645
|
-
isAskAiEnabled:
|
|
646
|
-
isAiBuilderEnabled:
|
|
647
|
-
isAiAssistantOrBuilderEnabled:
|
|
648
|
-
isAiCreditsEnabled:
|
|
649
|
-
aiCreditsQuota:
|
|
650
|
-
isAiDataSharingEnabled:
|
|
651
|
-
isAiGatewayEnabled:
|
|
652
|
-
aiGatewayBudget:
|
|
636
|
+
isQueueModeEnabled: vue176.ComputedRef<boolean>;
|
|
637
|
+
isMultiMain: vue176.ComputedRef<boolean>;
|
|
638
|
+
isWorkerViewAvailable: vue176.ComputedRef<boolean>;
|
|
639
|
+
workflowCallerPolicyDefaultOption: vue176.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
640
|
+
permanentlyDismissedBanners: vue176.ComputedRef<string[]>;
|
|
641
|
+
saveDataErrorExecution: vue176.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
642
|
+
saveDataSuccessExecution: vue176.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
643
|
+
saveManualExecutions: vue176.Ref<boolean, boolean>;
|
|
644
|
+
saveDataProgressExecution: vue176.Ref<boolean, boolean>;
|
|
645
|
+
isCommunityPlan: vue176.ComputedRef<boolean>;
|
|
646
|
+
isAskAiEnabled: vue176.ComputedRef<boolean>;
|
|
647
|
+
isAiBuilderEnabled: vue176.ComputedRef<boolean>;
|
|
648
|
+
isAiAssistantOrBuilderEnabled: vue176.ComputedRef<boolean>;
|
|
649
|
+
isAiCreditsEnabled: vue176.ComputedRef<boolean>;
|
|
650
|
+
aiCreditsQuota: vue176.ComputedRef<number>;
|
|
651
|
+
isAiDataSharingEnabled: vue176.ComputedRef<boolean>;
|
|
652
|
+
isAiGatewayEnabled: vue176.ComputedRef<boolean>;
|
|
653
|
+
aiGatewayBudget: vue176.ComputedRef<number>;
|
|
653
654
|
reset: () => void;
|
|
654
655
|
getTimezones: () => Promise<IDataObject>;
|
|
655
656
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -660,7 +661,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
660
661
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
661
662
|
initialize: () => Promise<void>;
|
|
662
663
|
getModuleSettings: () => Promise<void>;
|
|
663
|
-
moduleSettings:
|
|
664
|
+
moduleSettings: vue176.Ref<{
|
|
664
665
|
insights?: {
|
|
665
666
|
summary: boolean;
|
|
666
667
|
dashboard: boolean;
|
|
@@ -908,10 +909,12 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
908
909
|
browserUseEnabled: boolean;
|
|
909
910
|
proxyEnabled: boolean;
|
|
910
911
|
cloudManaged: boolean;
|
|
912
|
+
setupCompleted?: boolean | undefined;
|
|
911
913
|
sandboxEnabled: boolean;
|
|
912
914
|
workflowBuilderAvailable: boolean;
|
|
913
915
|
sandboxUnavailableReason: string | null;
|
|
914
916
|
runDebugEnabled: boolean;
|
|
917
|
+
activationCapped?: boolean | undefined;
|
|
915
918
|
} | undefined;
|
|
916
919
|
'quick-connect'?: {
|
|
917
920
|
options: ({
|
|
@@ -928,9 +931,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
928
931
|
} | undefined;
|
|
929
932
|
config?: never | undefined;
|
|
930
933
|
} | {
|
|
931
|
-
text: string;
|
|
932
934
|
packageName: string;
|
|
933
935
|
credentialType: string;
|
|
936
|
+
text: string;
|
|
934
937
|
quickConnectType: "pinecone";
|
|
935
938
|
consentText?: string | undefined;
|
|
936
939
|
consentCheckbox?: string | undefined;
|
|
@@ -1206,10 +1209,12 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1206
1209
|
browserUseEnabled: boolean;
|
|
1207
1210
|
proxyEnabled: boolean;
|
|
1208
1211
|
cloudManaged: boolean;
|
|
1212
|
+
setupCompleted?: boolean | undefined;
|
|
1209
1213
|
sandboxEnabled: boolean;
|
|
1210
1214
|
workflowBuilderAvailable: boolean;
|
|
1211
1215
|
sandboxUnavailableReason: string | null;
|
|
1212
1216
|
runDebugEnabled: boolean;
|
|
1217
|
+
activationCapped?: boolean | undefined;
|
|
1213
1218
|
} | undefined;
|
|
1214
1219
|
'quick-connect'?: {
|
|
1215
1220
|
options: ({
|
|
@@ -1226,9 +1231,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1226
1231
|
} | undefined;
|
|
1227
1232
|
config?: never | undefined;
|
|
1228
1233
|
} | {
|
|
1229
|
-
text: string;
|
|
1230
1234
|
packageName: string;
|
|
1231
1235
|
credentialType: string;
|
|
1236
|
+
text: string;
|
|
1232
1237
|
quickConnectType: "pinecone";
|
|
1233
1238
|
consentText?: string | undefined;
|
|
1234
1239
|
consentCheckbox?: string | undefined;
|
|
@@ -1258,19 +1263,19 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1258
1263
|
} | undefined;
|
|
1259
1264
|
}>;
|
|
1260
1265
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1261
|
-
isMFAEnforcementLicensed:
|
|
1262
|
-
isMFAEnforced:
|
|
1263
|
-
activeModules:
|
|
1266
|
+
isMFAEnforcementLicensed: vue176.ComputedRef<boolean>;
|
|
1267
|
+
isMFAEnforced: vue176.Ref<boolean, boolean>;
|
|
1268
|
+
activeModules: vue176.ComputedRef<string[]>;
|
|
1264
1269
|
isModuleActive: (moduleName: string) => boolean;
|
|
1265
1270
|
isAgentModuleActive: (name: string) => boolean;
|
|
1266
|
-
isDataTableFeatureEnabled:
|
|
1267
|
-
isChatFeatureEnabled:
|
|
1268
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1269
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1270
|
-
isPublicChatTriggerDisabled:
|
|
1271
|
-
isWorkflowPublicationServiceEnabled:
|
|
1271
|
+
isDataTableFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1272
|
+
isChatFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1273
|
+
isOtelCustomSpanAttributesEnabled: vue176.ComputedRef<boolean>;
|
|
1274
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1275
|
+
isPublicChatTriggerDisabled: vue176.ComputedRef<boolean>;
|
|
1276
|
+
isWorkflowPublicationServiceEnabled: vue176.ComputedRef<boolean>;
|
|
1272
1277
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1273
|
-
settings:
|
|
1278
|
+
settings: vue176.Ref<{
|
|
1274
1279
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1275
1280
|
inE2ETests: boolean;
|
|
1276
1281
|
isDocker: boolean;
|
|
@@ -1389,7 +1394,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1389
1394
|
workflowTagsDisabled: boolean;
|
|
1390
1395
|
workflowsAutosaveDisabled: boolean;
|
|
1391
1396
|
useWorkflowPublicationService: boolean;
|
|
1392
|
-
logLevel:
|
|
1397
|
+
logLevel: n8n_workflow8.LogLevel;
|
|
1393
1398
|
hiringBannerEnabled: boolean;
|
|
1394
1399
|
previewMode: boolean;
|
|
1395
1400
|
templates: {
|
|
@@ -1634,7 +1639,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1634
1639
|
workflowTagsDisabled: boolean;
|
|
1635
1640
|
workflowsAutosaveDisabled: boolean;
|
|
1636
1641
|
useWorkflowPublicationService: boolean;
|
|
1637
|
-
logLevel:
|
|
1642
|
+
logLevel: n8n_workflow8.LogLevel;
|
|
1638
1643
|
hiringBannerEnabled: boolean;
|
|
1639
1644
|
previewMode: boolean;
|
|
1640
1645
|
templates: {
|
|
@@ -1761,7 +1766,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1761
1766
|
canvasOnly: boolean;
|
|
1762
1767
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1763
1768
|
}>;
|
|
1764
|
-
userManagement:
|
|
1769
|
+
userManagement: vue176.Ref<{
|
|
1765
1770
|
quota: number;
|
|
1766
1771
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1767
1772
|
smtpSetup: boolean;
|
|
@@ -1774,8 +1779,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1774
1779
|
authenticationMethod: AuthenticationMethod;
|
|
1775
1780
|
passwordMinLength: number;
|
|
1776
1781
|
}>;
|
|
1777
|
-
templatesEndpointHealthy:
|
|
1778
|
-
api:
|
|
1782
|
+
templatesEndpointHealthy: vue176.Ref<boolean, boolean>;
|
|
1783
|
+
api: vue176.Ref<{
|
|
1779
1784
|
enabled: boolean;
|
|
1780
1785
|
latestVersion: number;
|
|
1781
1786
|
path: string;
|
|
@@ -1797,17 +1802,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1797
1802
|
enabled: boolean;
|
|
1798
1803
|
};
|
|
1799
1804
|
}>;
|
|
1800
|
-
mfa:
|
|
1805
|
+
mfa: vue176.Ref<{
|
|
1801
1806
|
enabled: boolean;
|
|
1802
1807
|
}, {
|
|
1803
1808
|
enabled: boolean;
|
|
1804
1809
|
} | {
|
|
1805
1810
|
enabled: boolean;
|
|
1806
1811
|
}>;
|
|
1807
|
-
isDocker:
|
|
1808
|
-
isDevRelease:
|
|
1809
|
-
endpointHealth:
|
|
1810
|
-
isEnterpriseFeatureEnabled:
|
|
1812
|
+
isDocker: vue176.ComputedRef<boolean>;
|
|
1813
|
+
isDevRelease: vue176.ComputedRef<boolean>;
|
|
1814
|
+
endpointHealth: vue176.ComputedRef<string>;
|
|
1815
|
+
isEnterpriseFeatureEnabled: vue176.ComputedRef<{
|
|
1811
1816
|
sharing: boolean;
|
|
1812
1817
|
ldap: boolean;
|
|
1813
1818
|
saml: boolean;
|
|
@@ -1838,36 +1843,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1838
1843
|
otelCustomSpanAttributes: boolean;
|
|
1839
1844
|
workflowReviews: boolean;
|
|
1840
1845
|
}>;
|
|
1841
|
-
databaseType:
|
|
1842
|
-
planName:
|
|
1843
|
-
consumerId:
|
|
1844
|
-
binaryDataMode:
|
|
1845
|
-
pruning:
|
|
1846
|
+
databaseType: vue176.ComputedRef<"sqlite" | "postgresdb">;
|
|
1847
|
+
planName: vue176.ComputedRef<string>;
|
|
1848
|
+
consumerId: vue176.ComputedRef<string>;
|
|
1849
|
+
binaryDataMode: vue176.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1850
|
+
pruning: vue176.ComputedRef<{
|
|
1846
1851
|
isEnabled: boolean;
|
|
1847
1852
|
maxAge: number;
|
|
1848
1853
|
maxCount: number;
|
|
1849
1854
|
} | undefined>;
|
|
1850
|
-
security:
|
|
1855
|
+
security: vue176.ComputedRef<{
|
|
1851
1856
|
blockFileAccessToN8nFiles: boolean;
|
|
1852
1857
|
secureCookie: boolean;
|
|
1853
1858
|
}>;
|
|
1854
|
-
nodeJsVersion:
|
|
1855
|
-
nodeEnv:
|
|
1856
|
-
concurrency:
|
|
1857
|
-
isConcurrencyEnabled:
|
|
1858
|
-
isPublicApiEnabled:
|
|
1859
|
-
isSwaggerUIEnabled:
|
|
1860
|
-
isPreviewMode:
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1859
|
+
nodeJsVersion: vue176.ComputedRef<string>;
|
|
1860
|
+
nodeEnv: vue176.ComputedRef<string | undefined>;
|
|
1861
|
+
concurrency: vue176.ComputedRef<number>;
|
|
1862
|
+
isConcurrencyEnabled: vue176.ComputedRef<boolean>;
|
|
1863
|
+
isPublicApiEnabled: vue176.ComputedRef<boolean>;
|
|
1864
|
+
isSwaggerUIEnabled: vue176.ComputedRef<boolean>;
|
|
1865
|
+
isPreviewMode: vue176.ComputedRef<boolean>;
|
|
1866
|
+
isE2ETestMode: vue176.ComputedRef<boolean>;
|
|
1867
|
+
isCanvasOnly: vue176.ComputedRef<boolean>;
|
|
1868
|
+
isCrdtCollaborationEnabled: vue176.ComputedRef<boolean>;
|
|
1869
|
+
publicApiLatestVersion: vue176.ComputedRef<number>;
|
|
1870
|
+
publicApiPath: vue176.ComputedRef<string>;
|
|
1871
|
+
showSetupPage: vue176.ComputedRef<boolean | undefined>;
|
|
1872
|
+
deploymentType: vue176.ComputedRef<string>;
|
|
1873
|
+
isCloudDeployment: vue176.ComputedRef<boolean>;
|
|
1874
|
+
isSmtpSetup: vue176.ComputedRef<boolean>;
|
|
1875
|
+
isPersonalizationSurveyEnabled: vue176.ComputedRef<boolean>;
|
|
1876
|
+
telemetry: vue176.ComputedRef<{
|
|
1871
1877
|
enabled: boolean;
|
|
1872
1878
|
config?: {
|
|
1873
1879
|
url: string;
|
|
@@ -1876,43 +1882,43 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1876
1882
|
sourceConfig: string;
|
|
1877
1883
|
} | undefined;
|
|
1878
1884
|
}>;
|
|
1879
|
-
logLevel:
|
|
1880
|
-
isTelemetryEnabled:
|
|
1881
|
-
isMfaFeatureEnabled:
|
|
1882
|
-
isFoldersFeatureEnabled:
|
|
1883
|
-
isAiAssistantEnabled:
|
|
1884
|
-
isCustomRolesFeatureEnabled:
|
|
1885
|
-
areTagsEnabled:
|
|
1886
|
-
isAutosaveEnabled:
|
|
1887
|
-
isHiringBannerEnabled:
|
|
1888
|
-
isTemplatesEnabled:
|
|
1889
|
-
isTemplatesEndpointReachable:
|
|
1890
|
-
templatesHost:
|
|
1891
|
-
pushBackend:
|
|
1892
|
-
isCommunityNodesFeatureEnabled:
|
|
1893
|
-
isUnverifiedPackagesEnabled:
|
|
1894
|
-
allowedModules:
|
|
1885
|
+
logLevel: vue176.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1886
|
+
isTelemetryEnabled: vue176.ComputedRef<boolean>;
|
|
1887
|
+
isMfaFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1888
|
+
isFoldersFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1889
|
+
isAiAssistantEnabled: vue176.ComputedRef<boolean>;
|
|
1890
|
+
isCustomRolesFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1891
|
+
areTagsEnabled: vue176.ComputedRef<boolean>;
|
|
1892
|
+
isAutosaveEnabled: vue176.ComputedRef<boolean>;
|
|
1893
|
+
isHiringBannerEnabled: vue176.ComputedRef<boolean>;
|
|
1894
|
+
isTemplatesEnabled: vue176.ComputedRef<boolean>;
|
|
1895
|
+
isTemplatesEndpointReachable: vue176.ComputedRef<boolean>;
|
|
1896
|
+
templatesHost: vue176.ComputedRef<string>;
|
|
1897
|
+
pushBackend: vue176.ComputedRef<"sse" | "websocket">;
|
|
1898
|
+
isCommunityNodesFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
1899
|
+
isUnverifiedPackagesEnabled: vue176.ComputedRef<boolean>;
|
|
1900
|
+
allowedModules: vue176.ComputedRef<{
|
|
1895
1901
|
builtIn?: string[] | undefined;
|
|
1896
1902
|
external?: string[] | undefined;
|
|
1897
1903
|
}>;
|
|
1898
|
-
isQueueModeEnabled:
|
|
1899
|
-
isMultiMain:
|
|
1900
|
-
isWorkerViewAvailable:
|
|
1901
|
-
workflowCallerPolicyDefaultOption:
|
|
1902
|
-
permanentlyDismissedBanners:
|
|
1903
|
-
saveDataErrorExecution:
|
|
1904
|
-
saveDataSuccessExecution:
|
|
1905
|
-
saveManualExecutions:
|
|
1906
|
-
saveDataProgressExecution:
|
|
1907
|
-
isCommunityPlan:
|
|
1908
|
-
isAskAiEnabled:
|
|
1909
|
-
isAiBuilderEnabled:
|
|
1910
|
-
isAiAssistantOrBuilderEnabled:
|
|
1911
|
-
isAiCreditsEnabled:
|
|
1912
|
-
aiCreditsQuota:
|
|
1913
|
-
isAiDataSharingEnabled:
|
|
1914
|
-
isAiGatewayEnabled:
|
|
1915
|
-
aiGatewayBudget:
|
|
1904
|
+
isQueueModeEnabled: vue176.ComputedRef<boolean>;
|
|
1905
|
+
isMultiMain: vue176.ComputedRef<boolean>;
|
|
1906
|
+
isWorkerViewAvailable: vue176.ComputedRef<boolean>;
|
|
1907
|
+
workflowCallerPolicyDefaultOption: vue176.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1908
|
+
permanentlyDismissedBanners: vue176.ComputedRef<string[]>;
|
|
1909
|
+
saveDataErrorExecution: vue176.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1910
|
+
saveDataSuccessExecution: vue176.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1911
|
+
saveManualExecutions: vue176.Ref<boolean, boolean>;
|
|
1912
|
+
saveDataProgressExecution: vue176.Ref<boolean, boolean>;
|
|
1913
|
+
isCommunityPlan: vue176.ComputedRef<boolean>;
|
|
1914
|
+
isAskAiEnabled: vue176.ComputedRef<boolean>;
|
|
1915
|
+
isAiBuilderEnabled: vue176.ComputedRef<boolean>;
|
|
1916
|
+
isAiAssistantOrBuilderEnabled: vue176.ComputedRef<boolean>;
|
|
1917
|
+
isAiCreditsEnabled: vue176.ComputedRef<boolean>;
|
|
1918
|
+
aiCreditsQuota: vue176.ComputedRef<number>;
|
|
1919
|
+
isAiDataSharingEnabled: vue176.ComputedRef<boolean>;
|
|
1920
|
+
isAiGatewayEnabled: vue176.ComputedRef<boolean>;
|
|
1921
|
+
aiGatewayBudget: vue176.ComputedRef<number>;
|
|
1916
1922
|
reset: () => void;
|
|
1917
1923
|
getTimezones: () => Promise<IDataObject>;
|
|
1918
1924
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1923,7 +1929,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1923
1929
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1924
1930
|
initialize: () => Promise<void>;
|
|
1925
1931
|
getModuleSettings: () => Promise<void>;
|
|
1926
|
-
moduleSettings:
|
|
1932
|
+
moduleSettings: vue176.Ref<{
|
|
1927
1933
|
insights?: {
|
|
1928
1934
|
summary: boolean;
|
|
1929
1935
|
dashboard: boolean;
|
|
@@ -2171,10 +2177,12 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2171
2177
|
browserUseEnabled: boolean;
|
|
2172
2178
|
proxyEnabled: boolean;
|
|
2173
2179
|
cloudManaged: boolean;
|
|
2180
|
+
setupCompleted?: boolean | undefined;
|
|
2174
2181
|
sandboxEnabled: boolean;
|
|
2175
2182
|
workflowBuilderAvailable: boolean;
|
|
2176
2183
|
sandboxUnavailableReason: string | null;
|
|
2177
2184
|
runDebugEnabled: boolean;
|
|
2185
|
+
activationCapped?: boolean | undefined;
|
|
2178
2186
|
} | undefined;
|
|
2179
2187
|
'quick-connect'?: {
|
|
2180
2188
|
options: ({
|
|
@@ -2191,9 +2199,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2191
2199
|
} | undefined;
|
|
2192
2200
|
config?: never | undefined;
|
|
2193
2201
|
} | {
|
|
2194
|
-
text: string;
|
|
2195
2202
|
packageName: string;
|
|
2196
2203
|
credentialType: string;
|
|
2204
|
+
text: string;
|
|
2197
2205
|
quickConnectType: "pinecone";
|
|
2198
2206
|
consentText?: string | undefined;
|
|
2199
2207
|
consentCheckbox?: string | undefined;
|
|
@@ -2469,10 +2477,12 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2469
2477
|
browserUseEnabled: boolean;
|
|
2470
2478
|
proxyEnabled: boolean;
|
|
2471
2479
|
cloudManaged: boolean;
|
|
2480
|
+
setupCompleted?: boolean | undefined;
|
|
2472
2481
|
sandboxEnabled: boolean;
|
|
2473
2482
|
workflowBuilderAvailable: boolean;
|
|
2474
2483
|
sandboxUnavailableReason: string | null;
|
|
2475
2484
|
runDebugEnabled: boolean;
|
|
2485
|
+
activationCapped?: boolean | undefined;
|
|
2476
2486
|
} | undefined;
|
|
2477
2487
|
'quick-connect'?: {
|
|
2478
2488
|
options: ({
|
|
@@ -2489,9 +2499,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2489
2499
|
} | undefined;
|
|
2490
2500
|
config?: never | undefined;
|
|
2491
2501
|
} | {
|
|
2492
|
-
text: string;
|
|
2493
2502
|
packageName: string;
|
|
2494
2503
|
credentialType: string;
|
|
2504
|
+
text: string;
|
|
2495
2505
|
quickConnectType: "pinecone";
|
|
2496
2506
|
consentText?: string | undefined;
|
|
2497
2507
|
consentCheckbox?: string | undefined;
|
|
@@ -2521,19 +2531,19 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2521
2531
|
} | undefined;
|
|
2522
2532
|
}>;
|
|
2523
2533
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2524
|
-
isMFAEnforcementLicensed:
|
|
2525
|
-
isMFAEnforced:
|
|
2526
|
-
activeModules:
|
|
2534
|
+
isMFAEnforcementLicensed: vue176.ComputedRef<boolean>;
|
|
2535
|
+
isMFAEnforced: vue176.Ref<boolean, boolean>;
|
|
2536
|
+
activeModules: vue176.ComputedRef<string[]>;
|
|
2527
2537
|
isModuleActive: (moduleName: string) => boolean;
|
|
2528
2538
|
isAgentModuleActive: (name: string) => boolean;
|
|
2529
|
-
isDataTableFeatureEnabled:
|
|
2530
|
-
isChatFeatureEnabled:
|
|
2531
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2532
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2533
|
-
isPublicChatTriggerDisabled:
|
|
2534
|
-
isWorkflowPublicationServiceEnabled:
|
|
2535
|
-
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "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<{
|
|
2536
|
-
settings:
|
|
2539
|
+
isDataTableFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
2540
|
+
isChatFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
2541
|
+
isOtelCustomSpanAttributesEnabled: vue176.ComputedRef<boolean>;
|
|
2542
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
2543
|
+
isPublicChatTriggerDisabled: vue176.ComputedRef<boolean>;
|
|
2544
|
+
isWorkflowPublicationServiceEnabled: vue176.ComputedRef<boolean>;
|
|
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: vue176.Ref<{
|
|
2537
2547
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2538
2548
|
inE2ETests: boolean;
|
|
2539
2549
|
isDocker: boolean;
|
|
@@ -2652,7 +2662,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2652
2662
|
workflowTagsDisabled: boolean;
|
|
2653
2663
|
workflowsAutosaveDisabled: boolean;
|
|
2654
2664
|
useWorkflowPublicationService: boolean;
|
|
2655
|
-
logLevel:
|
|
2665
|
+
logLevel: n8n_workflow8.LogLevel;
|
|
2656
2666
|
hiringBannerEnabled: boolean;
|
|
2657
2667
|
previewMode: boolean;
|
|
2658
2668
|
templates: {
|
|
@@ -2897,7 +2907,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2897
2907
|
workflowTagsDisabled: boolean;
|
|
2898
2908
|
workflowsAutosaveDisabled: boolean;
|
|
2899
2909
|
useWorkflowPublicationService: boolean;
|
|
2900
|
-
logLevel:
|
|
2910
|
+
logLevel: n8n_workflow8.LogLevel;
|
|
2901
2911
|
hiringBannerEnabled: boolean;
|
|
2902
2912
|
previewMode: boolean;
|
|
2903
2913
|
templates: {
|
|
@@ -3024,7 +3034,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3024
3034
|
canvasOnly: boolean;
|
|
3025
3035
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3026
3036
|
}>;
|
|
3027
|
-
userManagement:
|
|
3037
|
+
userManagement: vue176.Ref<{
|
|
3028
3038
|
quota: number;
|
|
3029
3039
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3030
3040
|
smtpSetup: boolean;
|
|
@@ -3037,8 +3047,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3037
3047
|
authenticationMethod: AuthenticationMethod;
|
|
3038
3048
|
passwordMinLength: number;
|
|
3039
3049
|
}>;
|
|
3040
|
-
templatesEndpointHealthy:
|
|
3041
|
-
api:
|
|
3050
|
+
templatesEndpointHealthy: vue176.Ref<boolean, boolean>;
|
|
3051
|
+
api: vue176.Ref<{
|
|
3042
3052
|
enabled: boolean;
|
|
3043
3053
|
latestVersion: number;
|
|
3044
3054
|
path: string;
|
|
@@ -3060,17 +3070,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3060
3070
|
enabled: boolean;
|
|
3061
3071
|
};
|
|
3062
3072
|
}>;
|
|
3063
|
-
mfa:
|
|
3073
|
+
mfa: vue176.Ref<{
|
|
3064
3074
|
enabled: boolean;
|
|
3065
3075
|
}, {
|
|
3066
3076
|
enabled: boolean;
|
|
3067
3077
|
} | {
|
|
3068
3078
|
enabled: boolean;
|
|
3069
3079
|
}>;
|
|
3070
|
-
isDocker:
|
|
3071
|
-
isDevRelease:
|
|
3072
|
-
endpointHealth:
|
|
3073
|
-
isEnterpriseFeatureEnabled:
|
|
3080
|
+
isDocker: vue176.ComputedRef<boolean>;
|
|
3081
|
+
isDevRelease: vue176.ComputedRef<boolean>;
|
|
3082
|
+
endpointHealth: vue176.ComputedRef<string>;
|
|
3083
|
+
isEnterpriseFeatureEnabled: vue176.ComputedRef<{
|
|
3074
3084
|
sharing: boolean;
|
|
3075
3085
|
ldap: boolean;
|
|
3076
3086
|
saml: boolean;
|
|
@@ -3101,36 +3111,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3101
3111
|
otelCustomSpanAttributes: boolean;
|
|
3102
3112
|
workflowReviews: boolean;
|
|
3103
3113
|
}>;
|
|
3104
|
-
databaseType:
|
|
3105
|
-
planName:
|
|
3106
|
-
consumerId:
|
|
3107
|
-
binaryDataMode:
|
|
3108
|
-
pruning:
|
|
3114
|
+
databaseType: vue176.ComputedRef<"sqlite" | "postgresdb">;
|
|
3115
|
+
planName: vue176.ComputedRef<string>;
|
|
3116
|
+
consumerId: vue176.ComputedRef<string>;
|
|
3117
|
+
binaryDataMode: vue176.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3118
|
+
pruning: vue176.ComputedRef<{
|
|
3109
3119
|
isEnabled: boolean;
|
|
3110
3120
|
maxAge: number;
|
|
3111
3121
|
maxCount: number;
|
|
3112
3122
|
} | undefined>;
|
|
3113
|
-
security:
|
|
3123
|
+
security: vue176.ComputedRef<{
|
|
3114
3124
|
blockFileAccessToN8nFiles: boolean;
|
|
3115
3125
|
secureCookie: boolean;
|
|
3116
3126
|
}>;
|
|
3117
|
-
nodeJsVersion:
|
|
3118
|
-
nodeEnv:
|
|
3119
|
-
concurrency:
|
|
3120
|
-
isConcurrencyEnabled:
|
|
3121
|
-
isPublicApiEnabled:
|
|
3122
|
-
isSwaggerUIEnabled:
|
|
3123
|
-
isPreviewMode:
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3127
|
+
nodeJsVersion: vue176.ComputedRef<string>;
|
|
3128
|
+
nodeEnv: vue176.ComputedRef<string | undefined>;
|
|
3129
|
+
concurrency: vue176.ComputedRef<number>;
|
|
3130
|
+
isConcurrencyEnabled: vue176.ComputedRef<boolean>;
|
|
3131
|
+
isPublicApiEnabled: vue176.ComputedRef<boolean>;
|
|
3132
|
+
isSwaggerUIEnabled: vue176.ComputedRef<boolean>;
|
|
3133
|
+
isPreviewMode: vue176.ComputedRef<boolean>;
|
|
3134
|
+
isE2ETestMode: vue176.ComputedRef<boolean>;
|
|
3135
|
+
isCanvasOnly: vue176.ComputedRef<boolean>;
|
|
3136
|
+
isCrdtCollaborationEnabled: vue176.ComputedRef<boolean>;
|
|
3137
|
+
publicApiLatestVersion: vue176.ComputedRef<number>;
|
|
3138
|
+
publicApiPath: vue176.ComputedRef<string>;
|
|
3139
|
+
showSetupPage: vue176.ComputedRef<boolean | undefined>;
|
|
3140
|
+
deploymentType: vue176.ComputedRef<string>;
|
|
3141
|
+
isCloudDeployment: vue176.ComputedRef<boolean>;
|
|
3142
|
+
isSmtpSetup: vue176.ComputedRef<boolean>;
|
|
3143
|
+
isPersonalizationSurveyEnabled: vue176.ComputedRef<boolean>;
|
|
3144
|
+
telemetry: vue176.ComputedRef<{
|
|
3134
3145
|
enabled: boolean;
|
|
3135
3146
|
config?: {
|
|
3136
3147
|
url: string;
|
|
@@ -3139,43 +3150,43 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3139
3150
|
sourceConfig: string;
|
|
3140
3151
|
} | undefined;
|
|
3141
3152
|
}>;
|
|
3142
|
-
logLevel:
|
|
3143
|
-
isTelemetryEnabled:
|
|
3144
|
-
isMfaFeatureEnabled:
|
|
3145
|
-
isFoldersFeatureEnabled:
|
|
3146
|
-
isAiAssistantEnabled:
|
|
3147
|
-
isCustomRolesFeatureEnabled:
|
|
3148
|
-
areTagsEnabled:
|
|
3149
|
-
isAutosaveEnabled:
|
|
3150
|
-
isHiringBannerEnabled:
|
|
3151
|
-
isTemplatesEnabled:
|
|
3152
|
-
isTemplatesEndpointReachable:
|
|
3153
|
-
templatesHost:
|
|
3154
|
-
pushBackend:
|
|
3155
|
-
isCommunityNodesFeatureEnabled:
|
|
3156
|
-
isUnverifiedPackagesEnabled:
|
|
3157
|
-
allowedModules:
|
|
3153
|
+
logLevel: vue176.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3154
|
+
isTelemetryEnabled: vue176.ComputedRef<boolean>;
|
|
3155
|
+
isMfaFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3156
|
+
isFoldersFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3157
|
+
isAiAssistantEnabled: vue176.ComputedRef<boolean>;
|
|
3158
|
+
isCustomRolesFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3159
|
+
areTagsEnabled: vue176.ComputedRef<boolean>;
|
|
3160
|
+
isAutosaveEnabled: vue176.ComputedRef<boolean>;
|
|
3161
|
+
isHiringBannerEnabled: vue176.ComputedRef<boolean>;
|
|
3162
|
+
isTemplatesEnabled: vue176.ComputedRef<boolean>;
|
|
3163
|
+
isTemplatesEndpointReachable: vue176.ComputedRef<boolean>;
|
|
3164
|
+
templatesHost: vue176.ComputedRef<string>;
|
|
3165
|
+
pushBackend: vue176.ComputedRef<"sse" | "websocket">;
|
|
3166
|
+
isCommunityNodesFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3167
|
+
isUnverifiedPackagesEnabled: vue176.ComputedRef<boolean>;
|
|
3168
|
+
allowedModules: vue176.ComputedRef<{
|
|
3158
3169
|
builtIn?: string[] | undefined;
|
|
3159
3170
|
external?: string[] | undefined;
|
|
3160
3171
|
}>;
|
|
3161
|
-
isQueueModeEnabled:
|
|
3162
|
-
isMultiMain:
|
|
3163
|
-
isWorkerViewAvailable:
|
|
3164
|
-
workflowCallerPolicyDefaultOption:
|
|
3165
|
-
permanentlyDismissedBanners:
|
|
3166
|
-
saveDataErrorExecution:
|
|
3167
|
-
saveDataSuccessExecution:
|
|
3168
|
-
saveManualExecutions:
|
|
3169
|
-
saveDataProgressExecution:
|
|
3170
|
-
isCommunityPlan:
|
|
3171
|
-
isAskAiEnabled:
|
|
3172
|
-
isAiBuilderEnabled:
|
|
3173
|
-
isAiAssistantOrBuilderEnabled:
|
|
3174
|
-
isAiCreditsEnabled:
|
|
3175
|
-
aiCreditsQuota:
|
|
3176
|
-
isAiDataSharingEnabled:
|
|
3177
|
-
isAiGatewayEnabled:
|
|
3178
|
-
aiGatewayBudget:
|
|
3172
|
+
isQueueModeEnabled: vue176.ComputedRef<boolean>;
|
|
3173
|
+
isMultiMain: vue176.ComputedRef<boolean>;
|
|
3174
|
+
isWorkerViewAvailable: vue176.ComputedRef<boolean>;
|
|
3175
|
+
workflowCallerPolicyDefaultOption: vue176.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3176
|
+
permanentlyDismissedBanners: vue176.ComputedRef<string[]>;
|
|
3177
|
+
saveDataErrorExecution: vue176.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3178
|
+
saveDataSuccessExecution: vue176.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3179
|
+
saveManualExecutions: vue176.Ref<boolean, boolean>;
|
|
3180
|
+
saveDataProgressExecution: vue176.Ref<boolean, boolean>;
|
|
3181
|
+
isCommunityPlan: vue176.ComputedRef<boolean>;
|
|
3182
|
+
isAskAiEnabled: vue176.ComputedRef<boolean>;
|
|
3183
|
+
isAiBuilderEnabled: vue176.ComputedRef<boolean>;
|
|
3184
|
+
isAiAssistantOrBuilderEnabled: vue176.ComputedRef<boolean>;
|
|
3185
|
+
isAiCreditsEnabled: vue176.ComputedRef<boolean>;
|
|
3186
|
+
aiCreditsQuota: vue176.ComputedRef<number>;
|
|
3187
|
+
isAiDataSharingEnabled: vue176.ComputedRef<boolean>;
|
|
3188
|
+
isAiGatewayEnabled: vue176.ComputedRef<boolean>;
|
|
3189
|
+
aiGatewayBudget: vue176.ComputedRef<number>;
|
|
3179
3190
|
reset: () => void;
|
|
3180
3191
|
getTimezones: () => Promise<IDataObject>;
|
|
3181
3192
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3186,7 +3197,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3186
3197
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3187
3198
|
initialize: () => Promise<void>;
|
|
3188
3199
|
getModuleSettings: () => Promise<void>;
|
|
3189
|
-
moduleSettings:
|
|
3200
|
+
moduleSettings: vue176.Ref<{
|
|
3190
3201
|
insights?: {
|
|
3191
3202
|
summary: boolean;
|
|
3192
3203
|
dashboard: boolean;
|
|
@@ -3434,10 +3445,12 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3434
3445
|
browserUseEnabled: boolean;
|
|
3435
3446
|
proxyEnabled: boolean;
|
|
3436
3447
|
cloudManaged: boolean;
|
|
3448
|
+
setupCompleted?: boolean | undefined;
|
|
3437
3449
|
sandboxEnabled: boolean;
|
|
3438
3450
|
workflowBuilderAvailable: boolean;
|
|
3439
3451
|
sandboxUnavailableReason: string | null;
|
|
3440
3452
|
runDebugEnabled: boolean;
|
|
3453
|
+
activationCapped?: boolean | undefined;
|
|
3441
3454
|
} | undefined;
|
|
3442
3455
|
'quick-connect'?: {
|
|
3443
3456
|
options: ({
|
|
@@ -3454,9 +3467,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3454
3467
|
} | undefined;
|
|
3455
3468
|
config?: never | undefined;
|
|
3456
3469
|
} | {
|
|
3457
|
-
text: string;
|
|
3458
3470
|
packageName: string;
|
|
3459
3471
|
credentialType: string;
|
|
3472
|
+
text: string;
|
|
3460
3473
|
quickConnectType: "pinecone";
|
|
3461
3474
|
consentText?: string | undefined;
|
|
3462
3475
|
consentCheckbox?: string | undefined;
|
|
@@ -3732,10 +3745,12 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3732
3745
|
browserUseEnabled: boolean;
|
|
3733
3746
|
proxyEnabled: boolean;
|
|
3734
3747
|
cloudManaged: boolean;
|
|
3748
|
+
setupCompleted?: boolean | undefined;
|
|
3735
3749
|
sandboxEnabled: boolean;
|
|
3736
3750
|
workflowBuilderAvailable: boolean;
|
|
3737
3751
|
sandboxUnavailableReason: string | null;
|
|
3738
3752
|
runDebugEnabled: boolean;
|
|
3753
|
+
activationCapped?: boolean | undefined;
|
|
3739
3754
|
} | undefined;
|
|
3740
3755
|
'quick-connect'?: {
|
|
3741
3756
|
options: ({
|
|
@@ -3752,9 +3767,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3752
3767
|
} | undefined;
|
|
3753
3768
|
config?: never | undefined;
|
|
3754
3769
|
} | {
|
|
3755
|
-
text: string;
|
|
3756
3770
|
packageName: string;
|
|
3757
3771
|
credentialType: string;
|
|
3772
|
+
text: string;
|
|
3758
3773
|
quickConnectType: "pinecone";
|
|
3759
3774
|
consentText?: string | undefined;
|
|
3760
3775
|
consentCheckbox?: string | undefined;
|
|
@@ -3784,17 +3799,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3784
3799
|
} | undefined;
|
|
3785
3800
|
}>;
|
|
3786
3801
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3787
|
-
isMFAEnforcementLicensed:
|
|
3788
|
-
isMFAEnforced:
|
|
3789
|
-
activeModules:
|
|
3802
|
+
isMFAEnforcementLicensed: vue176.ComputedRef<boolean>;
|
|
3803
|
+
isMFAEnforced: vue176.Ref<boolean, boolean>;
|
|
3804
|
+
activeModules: vue176.ComputedRef<string[]>;
|
|
3790
3805
|
isModuleActive: (moduleName: string) => boolean;
|
|
3791
3806
|
isAgentModuleActive: (name: string) => boolean;
|
|
3792
|
-
isDataTableFeatureEnabled:
|
|
3793
|
-
isChatFeatureEnabled:
|
|
3794
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3795
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3796
|
-
isPublicChatTriggerDisabled:
|
|
3797
|
-
isWorkflowPublicationServiceEnabled:
|
|
3807
|
+
isDataTableFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3808
|
+
isChatFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3809
|
+
isOtelCustomSpanAttributesEnabled: vue176.ComputedRef<boolean>;
|
|
3810
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue176.ComputedRef<boolean>;
|
|
3811
|
+
isPublicChatTriggerDisabled: vue176.ComputedRef<boolean>;
|
|
3812
|
+
isWorkflowPublicationServiceEnabled: vue176.ComputedRef<boolean>;
|
|
3798
3813
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3799
3814
|
//#endregion
|
|
3800
3815
|
export { useSettingsStore };
|