@n8n/stores 2.38.0 → 2.39.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 +64 -64
- package/dist/rbac.store.cjs +1 -0
- package/dist/rbac.store.cjs.map +1 -1
- package/dist/rbac.store.d.cts +33 -27
- package/dist/rbac.store.d.mts +33 -27
- package/dist/rbac.store.mjs +1 -0
- package/dist/rbac.store.mjs.map +1 -1
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +289 -244
- package/dist/settings.store.d.mts +289 -244
- 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/useRootStore.d.cts +75 -75
- package/dist/useRootStore.d.mts +75 -75
- package/dist/users.store.d.cts +55 -55
- package/dist/users.store.d.mts +51 -51
- package/dist/versions.store.d.cts +30 -30
- package/dist/versions.store.d.mts +28 -28
- package/package.json +15 -15
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue164 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
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: vue164.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -208,6 +208,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
208
208
|
folders: {
|
|
209
209
|
enabled: boolean;
|
|
210
210
|
};
|
|
211
|
+
workerPools: {
|
|
212
|
+
enabled: boolean;
|
|
213
|
+
};
|
|
211
214
|
collaboration: {
|
|
212
215
|
crdt: "off" | "local" | "server";
|
|
213
216
|
};
|
|
@@ -454,6 +457,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
454
457
|
folders: {
|
|
455
458
|
enabled: boolean;
|
|
456
459
|
};
|
|
460
|
+
workerPools: {
|
|
461
|
+
enabled: boolean;
|
|
462
|
+
};
|
|
457
463
|
collaboration: {
|
|
458
464
|
crdt: "off" | "local" | "server";
|
|
459
465
|
};
|
|
@@ -500,7 +506,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
500
506
|
canvasOnly: boolean;
|
|
501
507
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
502
508
|
}>;
|
|
503
|
-
userManagement:
|
|
509
|
+
userManagement: vue164.Ref<{
|
|
504
510
|
quota: number;
|
|
505
511
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
506
512
|
smtpSetup: boolean;
|
|
@@ -513,8 +519,8 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
513
519
|
authenticationMethod: AuthenticationMethod;
|
|
514
520
|
passwordMinLength: number;
|
|
515
521
|
}>;
|
|
516
|
-
templatesEndpointHealthy:
|
|
517
|
-
api:
|
|
522
|
+
templatesEndpointHealthy: vue164.Ref<boolean, boolean>;
|
|
523
|
+
api: vue164.Ref<{
|
|
518
524
|
enabled: boolean;
|
|
519
525
|
latestVersion: number;
|
|
520
526
|
path: string;
|
|
@@ -536,17 +542,17 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
536
542
|
enabled: boolean;
|
|
537
543
|
};
|
|
538
544
|
}>;
|
|
539
|
-
mfa:
|
|
545
|
+
mfa: vue164.Ref<{
|
|
540
546
|
enabled: boolean;
|
|
541
547
|
}, {
|
|
542
548
|
enabled: boolean;
|
|
543
549
|
} | {
|
|
544
550
|
enabled: boolean;
|
|
545
551
|
}>;
|
|
546
|
-
isDocker:
|
|
547
|
-
isDevRelease:
|
|
548
|
-
endpointHealth:
|
|
549
|
-
isEnterpriseFeatureEnabled:
|
|
552
|
+
isDocker: vue164.ComputedRef<boolean>;
|
|
553
|
+
isDevRelease: vue164.ComputedRef<boolean>;
|
|
554
|
+
endpointHealth: vue164.ComputedRef<string>;
|
|
555
|
+
isEnterpriseFeatureEnabled: vue164.ComputedRef<{
|
|
550
556
|
sharing: boolean;
|
|
551
557
|
ldap: boolean;
|
|
552
558
|
saml: boolean;
|
|
@@ -577,37 +583,37 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
577
583
|
otelCustomSpanAttributes: boolean;
|
|
578
584
|
workflowReviews: boolean;
|
|
579
585
|
}>;
|
|
580
|
-
databaseType:
|
|
581
|
-
planName:
|
|
582
|
-
consumerId:
|
|
583
|
-
binaryDataMode:
|
|
584
|
-
pruning:
|
|
586
|
+
databaseType: vue164.ComputedRef<"sqlite" | "postgresdb">;
|
|
587
|
+
planName: vue164.ComputedRef<string>;
|
|
588
|
+
consumerId: vue164.ComputedRef<string>;
|
|
589
|
+
binaryDataMode: vue164.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
590
|
+
pruning: vue164.ComputedRef<{
|
|
585
591
|
isEnabled: boolean;
|
|
586
592
|
maxAge: number;
|
|
587
593
|
maxCount: number;
|
|
588
594
|
} | undefined>;
|
|
589
|
-
security:
|
|
595
|
+
security: vue164.ComputedRef<{
|
|
590
596
|
blockFileAccessToN8nFiles: boolean;
|
|
591
597
|
secureCookie: boolean;
|
|
592
598
|
}>;
|
|
593
|
-
nodeJsVersion:
|
|
594
|
-
nodeEnv:
|
|
595
|
-
concurrency:
|
|
596
|
-
isConcurrencyEnabled:
|
|
597
|
-
isPublicApiEnabled:
|
|
598
|
-
isSwaggerUIEnabled:
|
|
599
|
-
isPreviewMode:
|
|
600
|
-
isE2ETestMode:
|
|
601
|
-
isCanvasOnly:
|
|
602
|
-
isCrdtCollaborationEnabled:
|
|
603
|
-
publicApiLatestVersion:
|
|
604
|
-
publicApiPath:
|
|
605
|
-
showSetupPage:
|
|
606
|
-
deploymentType:
|
|
607
|
-
isCloudDeployment:
|
|
608
|
-
isSmtpSetup:
|
|
609
|
-
isPersonalizationSurveyEnabled:
|
|
610
|
-
telemetry:
|
|
599
|
+
nodeJsVersion: vue164.ComputedRef<string>;
|
|
600
|
+
nodeEnv: vue164.ComputedRef<string | undefined>;
|
|
601
|
+
concurrency: vue164.ComputedRef<number>;
|
|
602
|
+
isConcurrencyEnabled: vue164.ComputedRef<boolean>;
|
|
603
|
+
isPublicApiEnabled: vue164.ComputedRef<boolean>;
|
|
604
|
+
isSwaggerUIEnabled: vue164.ComputedRef<boolean>;
|
|
605
|
+
isPreviewMode: vue164.ComputedRef<boolean>;
|
|
606
|
+
isE2ETestMode: vue164.ComputedRef<boolean>;
|
|
607
|
+
isCanvasOnly: vue164.ComputedRef<boolean>;
|
|
608
|
+
isCrdtCollaborationEnabled: vue164.ComputedRef<boolean>;
|
|
609
|
+
publicApiLatestVersion: vue164.ComputedRef<number>;
|
|
610
|
+
publicApiPath: vue164.ComputedRef<string>;
|
|
611
|
+
showSetupPage: vue164.ComputedRef<boolean | undefined>;
|
|
612
|
+
deploymentType: vue164.ComputedRef<string>;
|
|
613
|
+
isCloudDeployment: vue164.ComputedRef<boolean>;
|
|
614
|
+
isSmtpSetup: vue164.ComputedRef<boolean>;
|
|
615
|
+
isPersonalizationSurveyEnabled: vue164.ComputedRef<boolean>;
|
|
616
|
+
telemetry: vue164.ComputedRef<{
|
|
611
617
|
enabled: boolean;
|
|
612
618
|
config?: {
|
|
613
619
|
url: string;
|
|
@@ -616,46 +622,46 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
616
622
|
sourceConfig: string;
|
|
617
623
|
} | undefined;
|
|
618
624
|
}>;
|
|
619
|
-
logLevel:
|
|
620
|
-
isTelemetryEnabled:
|
|
621
|
-
isMfaFeatureEnabled:
|
|
622
|
-
isFoldersFeatureEnabled:
|
|
623
|
-
isAiAssistantEnabled:
|
|
624
|
-
isCustomRolesFeatureEnabled:
|
|
625
|
-
areTagsEnabled:
|
|
626
|
-
isAutosaveEnabled:
|
|
627
|
-
isHiringBannerEnabled:
|
|
628
|
-
isTemplatesEnabled:
|
|
629
|
-
isTemplatesEndpointReachable:
|
|
630
|
-
templatesHost:
|
|
631
|
-
pushBackend:
|
|
632
|
-
isCommunityNodesFeatureEnabled:
|
|
633
|
-
isUnverifiedPackagesEnabled:
|
|
634
|
-
allowedModules:
|
|
625
|
+
logLevel: vue164.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
626
|
+
isTelemetryEnabled: vue164.ComputedRef<boolean>;
|
|
627
|
+
isMfaFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
628
|
+
isFoldersFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
629
|
+
isAiAssistantEnabled: vue164.ComputedRef<boolean>;
|
|
630
|
+
isCustomRolesFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
631
|
+
areTagsEnabled: vue164.ComputedRef<boolean>;
|
|
632
|
+
isAutosaveEnabled: vue164.ComputedRef<boolean>;
|
|
633
|
+
isHiringBannerEnabled: vue164.ComputedRef<boolean>;
|
|
634
|
+
isTemplatesEnabled: vue164.ComputedRef<boolean>;
|
|
635
|
+
isTemplatesEndpointReachable: vue164.ComputedRef<boolean>;
|
|
636
|
+
templatesHost: vue164.ComputedRef<string>;
|
|
637
|
+
pushBackend: vue164.ComputedRef<"sse" | "websocket">;
|
|
638
|
+
isCommunityNodesFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
639
|
+
isUnverifiedPackagesEnabled: vue164.ComputedRef<boolean>;
|
|
640
|
+
allowedModules: vue164.ComputedRef<{
|
|
635
641
|
builtIn?: string[] | undefined;
|
|
636
642
|
external?: string[] | undefined;
|
|
637
643
|
}>;
|
|
638
|
-
isQueueModeEnabled:
|
|
639
|
-
isMultiMain:
|
|
640
|
-
isWorkerViewAvailable:
|
|
641
|
-
workflowCallerPolicyDefaultOption:
|
|
642
|
-
isExecuteWorkflowNodeExcluded:
|
|
643
|
-
isSubworkflowConversionDisabled:
|
|
644
|
-
permanentlyDismissedBanners:
|
|
645
|
-
saveDataErrorExecution:
|
|
646
|
-
saveDataSuccessExecution:
|
|
647
|
-
saveManualExecutions:
|
|
648
|
-
saveDataProgressExecution:
|
|
649
|
-
isCommunityPlan:
|
|
650
|
-
isAskAiEnabled:
|
|
651
|
-
isAiBuilderEnabled:
|
|
652
|
-
isAiAssistantOrBuilderEnabled:
|
|
653
|
-
isAiCreditsEnabled:
|
|
654
|
-
aiCreditsQuota:
|
|
655
|
-
isAiDataSharingEnabled:
|
|
656
|
-
isAiGatewayEnabled:
|
|
657
|
-
isAiGatewayCloudUbbEnabled:
|
|
658
|
-
aiGatewayBudget:
|
|
644
|
+
isQueueModeEnabled: vue164.ComputedRef<boolean>;
|
|
645
|
+
isMultiMain: vue164.ComputedRef<boolean>;
|
|
646
|
+
isWorkerViewAvailable: vue164.ComputedRef<boolean>;
|
|
647
|
+
workflowCallerPolicyDefaultOption: vue164.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
648
|
+
isExecuteWorkflowNodeExcluded: vue164.ComputedRef<boolean>;
|
|
649
|
+
isSubworkflowConversionDisabled: vue164.ComputedRef<boolean>;
|
|
650
|
+
permanentlyDismissedBanners: vue164.ComputedRef<string[]>;
|
|
651
|
+
saveDataErrorExecution: vue164.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
652
|
+
saveDataSuccessExecution: vue164.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
653
|
+
saveManualExecutions: vue164.Ref<boolean, boolean>;
|
|
654
|
+
saveDataProgressExecution: vue164.Ref<boolean, boolean>;
|
|
655
|
+
isCommunityPlan: vue164.ComputedRef<boolean>;
|
|
656
|
+
isAskAiEnabled: vue164.ComputedRef<boolean>;
|
|
657
|
+
isAiBuilderEnabled: vue164.ComputedRef<boolean>;
|
|
658
|
+
isAiAssistantOrBuilderEnabled: vue164.ComputedRef<boolean>;
|
|
659
|
+
isAiCreditsEnabled: vue164.ComputedRef<boolean>;
|
|
660
|
+
aiCreditsQuota: vue164.ComputedRef<number>;
|
|
661
|
+
isAiDataSharingEnabled: vue164.ComputedRef<boolean>;
|
|
662
|
+
isAiGatewayEnabled: vue164.ComputedRef<boolean>;
|
|
663
|
+
isAiGatewayCloudUbbEnabled: vue164.ComputedRef<boolean>;
|
|
664
|
+
aiGatewayBudget: vue164.ComputedRef<number>;
|
|
659
665
|
reset: () => void;
|
|
660
666
|
getTimezones: () => Promise<IDataObject>;
|
|
661
667
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -666,7 +672,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
666
672
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
667
673
|
initialize: () => Promise<void>;
|
|
668
674
|
getModuleSettings: () => Promise<void>;
|
|
669
|
-
moduleSettings:
|
|
675
|
+
moduleSettings: vue164.Ref<{
|
|
670
676
|
insights?: {
|
|
671
677
|
summary: boolean;
|
|
672
678
|
dashboard: boolean;
|
|
@@ -683,6 +689,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
683
689
|
serverUrl?: string | undefined;
|
|
684
690
|
autoExposeNewWorkflows: boolean;
|
|
685
691
|
} | undefined;
|
|
692
|
+
'encryption-key-manager'?: {
|
|
693
|
+
rotationEnabled: boolean;
|
|
694
|
+
} | undefined;
|
|
686
695
|
'chat-hub'?: {
|
|
687
696
|
enabled: boolean;
|
|
688
697
|
providers: {
|
|
@@ -921,6 +930,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
921
930
|
sandboxUnavailableReason: string | null;
|
|
922
931
|
runDebugEnabled: boolean;
|
|
923
932
|
activationCapped?: boolean | undefined;
|
|
933
|
+
instanceAiSetupPanelEnabled?: boolean | undefined;
|
|
924
934
|
} | undefined;
|
|
925
935
|
'quick-connect'?: {
|
|
926
936
|
options: ({
|
|
@@ -984,6 +994,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
984
994
|
serverUrl?: string | undefined;
|
|
985
995
|
autoExposeNewWorkflows: boolean;
|
|
986
996
|
} | undefined;
|
|
997
|
+
'encryption-key-manager'?: {
|
|
998
|
+
rotationEnabled: boolean;
|
|
999
|
+
} | undefined;
|
|
987
1000
|
'chat-hub'?: {
|
|
988
1001
|
enabled: boolean;
|
|
989
1002
|
providers: {
|
|
@@ -1222,6 +1235,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1222
1235
|
sandboxUnavailableReason: string | null;
|
|
1223
1236
|
runDebugEnabled: boolean;
|
|
1224
1237
|
activationCapped?: boolean | undefined;
|
|
1238
|
+
instanceAiSetupPanelEnabled?: boolean | undefined;
|
|
1225
1239
|
} | undefined;
|
|
1226
1240
|
'quick-connect'?: {
|
|
1227
1241
|
options: ({
|
|
@@ -1270,19 +1284,20 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1270
1284
|
} | undefined;
|
|
1271
1285
|
}>;
|
|
1272
1286
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1273
|
-
isMFAEnforcementLicensed:
|
|
1274
|
-
isMFAEnforced:
|
|
1275
|
-
activeModules:
|
|
1287
|
+
isMFAEnforcementLicensed: vue164.ComputedRef<boolean>;
|
|
1288
|
+
isMFAEnforced: vue164.Ref<boolean, boolean>;
|
|
1289
|
+
activeModules: vue164.ComputedRef<string[]>;
|
|
1276
1290
|
isModuleActive: (moduleName: string) => boolean;
|
|
1277
1291
|
isAgentModuleActive: (name: string) => boolean;
|
|
1278
|
-
isDataTableFeatureEnabled:
|
|
1279
|
-
isChatFeatureEnabled:
|
|
1280
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1292
|
+
isDataTableFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1293
|
+
isChatFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1294
|
+
isOtelCustomSpanAttributesEnabled: vue164.ComputedRef<boolean>;
|
|
1295
|
+
isWorkerPoolsEnabled: vue164.ComputedRef<boolean>;
|
|
1296
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1297
|
+
isPublicChatTriggerDisabled: vue164.ComputedRef<boolean>;
|
|
1298
|
+
isWorkflowPublicationServiceEnabled: vue164.ComputedRef<boolean>;
|
|
1284
1299
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1285
|
-
settings:
|
|
1300
|
+
settings: vue164.Ref<{
|
|
1286
1301
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1287
1302
|
inE2ETests: boolean;
|
|
1288
1303
|
isDocker: boolean;
|
|
@@ -1483,6 +1498,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1483
1498
|
folders: {
|
|
1484
1499
|
enabled: boolean;
|
|
1485
1500
|
};
|
|
1501
|
+
workerPools: {
|
|
1502
|
+
enabled: boolean;
|
|
1503
|
+
};
|
|
1486
1504
|
collaboration: {
|
|
1487
1505
|
crdt: "off" | "local" | "server";
|
|
1488
1506
|
};
|
|
@@ -1729,6 +1747,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1729
1747
|
folders: {
|
|
1730
1748
|
enabled: boolean;
|
|
1731
1749
|
};
|
|
1750
|
+
workerPools: {
|
|
1751
|
+
enabled: boolean;
|
|
1752
|
+
};
|
|
1732
1753
|
collaboration: {
|
|
1733
1754
|
crdt: "off" | "local" | "server";
|
|
1734
1755
|
};
|
|
@@ -1775,7 +1796,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1775
1796
|
canvasOnly: boolean;
|
|
1776
1797
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1777
1798
|
}>;
|
|
1778
|
-
userManagement:
|
|
1799
|
+
userManagement: vue164.Ref<{
|
|
1779
1800
|
quota: number;
|
|
1780
1801
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1781
1802
|
smtpSetup: boolean;
|
|
@@ -1788,8 +1809,8 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1788
1809
|
authenticationMethod: AuthenticationMethod;
|
|
1789
1810
|
passwordMinLength: number;
|
|
1790
1811
|
}>;
|
|
1791
|
-
templatesEndpointHealthy:
|
|
1792
|
-
api:
|
|
1812
|
+
templatesEndpointHealthy: vue164.Ref<boolean, boolean>;
|
|
1813
|
+
api: vue164.Ref<{
|
|
1793
1814
|
enabled: boolean;
|
|
1794
1815
|
latestVersion: number;
|
|
1795
1816
|
path: string;
|
|
@@ -1811,17 +1832,17 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1811
1832
|
enabled: boolean;
|
|
1812
1833
|
};
|
|
1813
1834
|
}>;
|
|
1814
|
-
mfa:
|
|
1835
|
+
mfa: vue164.Ref<{
|
|
1815
1836
|
enabled: boolean;
|
|
1816
1837
|
}, {
|
|
1817
1838
|
enabled: boolean;
|
|
1818
1839
|
} | {
|
|
1819
1840
|
enabled: boolean;
|
|
1820
1841
|
}>;
|
|
1821
|
-
isDocker:
|
|
1822
|
-
isDevRelease:
|
|
1823
|
-
endpointHealth:
|
|
1824
|
-
isEnterpriseFeatureEnabled:
|
|
1842
|
+
isDocker: vue164.ComputedRef<boolean>;
|
|
1843
|
+
isDevRelease: vue164.ComputedRef<boolean>;
|
|
1844
|
+
endpointHealth: vue164.ComputedRef<string>;
|
|
1845
|
+
isEnterpriseFeatureEnabled: vue164.ComputedRef<{
|
|
1825
1846
|
sharing: boolean;
|
|
1826
1847
|
ldap: boolean;
|
|
1827
1848
|
saml: boolean;
|
|
@@ -1852,37 +1873,37 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1852
1873
|
otelCustomSpanAttributes: boolean;
|
|
1853
1874
|
workflowReviews: boolean;
|
|
1854
1875
|
}>;
|
|
1855
|
-
databaseType:
|
|
1856
|
-
planName:
|
|
1857
|
-
consumerId:
|
|
1858
|
-
binaryDataMode:
|
|
1859
|
-
pruning:
|
|
1876
|
+
databaseType: vue164.ComputedRef<"sqlite" | "postgresdb">;
|
|
1877
|
+
planName: vue164.ComputedRef<string>;
|
|
1878
|
+
consumerId: vue164.ComputedRef<string>;
|
|
1879
|
+
binaryDataMode: vue164.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1880
|
+
pruning: vue164.ComputedRef<{
|
|
1860
1881
|
isEnabled: boolean;
|
|
1861
1882
|
maxAge: number;
|
|
1862
1883
|
maxCount: number;
|
|
1863
1884
|
} | undefined>;
|
|
1864
|
-
security:
|
|
1885
|
+
security: vue164.ComputedRef<{
|
|
1865
1886
|
blockFileAccessToN8nFiles: boolean;
|
|
1866
1887
|
secureCookie: boolean;
|
|
1867
1888
|
}>;
|
|
1868
|
-
nodeJsVersion:
|
|
1869
|
-
nodeEnv:
|
|
1870
|
-
concurrency:
|
|
1871
|
-
isConcurrencyEnabled:
|
|
1872
|
-
isPublicApiEnabled:
|
|
1873
|
-
isSwaggerUIEnabled:
|
|
1874
|
-
isPreviewMode:
|
|
1875
|
-
isE2ETestMode:
|
|
1876
|
-
isCanvasOnly:
|
|
1877
|
-
isCrdtCollaborationEnabled:
|
|
1878
|
-
publicApiLatestVersion:
|
|
1879
|
-
publicApiPath:
|
|
1880
|
-
showSetupPage:
|
|
1881
|
-
deploymentType:
|
|
1882
|
-
isCloudDeployment:
|
|
1883
|
-
isSmtpSetup:
|
|
1884
|
-
isPersonalizationSurveyEnabled:
|
|
1885
|
-
telemetry:
|
|
1889
|
+
nodeJsVersion: vue164.ComputedRef<string>;
|
|
1890
|
+
nodeEnv: vue164.ComputedRef<string | undefined>;
|
|
1891
|
+
concurrency: vue164.ComputedRef<number>;
|
|
1892
|
+
isConcurrencyEnabled: vue164.ComputedRef<boolean>;
|
|
1893
|
+
isPublicApiEnabled: vue164.ComputedRef<boolean>;
|
|
1894
|
+
isSwaggerUIEnabled: vue164.ComputedRef<boolean>;
|
|
1895
|
+
isPreviewMode: vue164.ComputedRef<boolean>;
|
|
1896
|
+
isE2ETestMode: vue164.ComputedRef<boolean>;
|
|
1897
|
+
isCanvasOnly: vue164.ComputedRef<boolean>;
|
|
1898
|
+
isCrdtCollaborationEnabled: vue164.ComputedRef<boolean>;
|
|
1899
|
+
publicApiLatestVersion: vue164.ComputedRef<number>;
|
|
1900
|
+
publicApiPath: vue164.ComputedRef<string>;
|
|
1901
|
+
showSetupPage: vue164.ComputedRef<boolean | undefined>;
|
|
1902
|
+
deploymentType: vue164.ComputedRef<string>;
|
|
1903
|
+
isCloudDeployment: vue164.ComputedRef<boolean>;
|
|
1904
|
+
isSmtpSetup: vue164.ComputedRef<boolean>;
|
|
1905
|
+
isPersonalizationSurveyEnabled: vue164.ComputedRef<boolean>;
|
|
1906
|
+
telemetry: vue164.ComputedRef<{
|
|
1886
1907
|
enabled: boolean;
|
|
1887
1908
|
config?: {
|
|
1888
1909
|
url: string;
|
|
@@ -1891,46 +1912,46 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1891
1912
|
sourceConfig: string;
|
|
1892
1913
|
} | undefined;
|
|
1893
1914
|
}>;
|
|
1894
|
-
logLevel:
|
|
1895
|
-
isTelemetryEnabled:
|
|
1896
|
-
isMfaFeatureEnabled:
|
|
1897
|
-
isFoldersFeatureEnabled:
|
|
1898
|
-
isAiAssistantEnabled:
|
|
1899
|
-
isCustomRolesFeatureEnabled:
|
|
1900
|
-
areTagsEnabled:
|
|
1901
|
-
isAutosaveEnabled:
|
|
1902
|
-
isHiringBannerEnabled:
|
|
1903
|
-
isTemplatesEnabled:
|
|
1904
|
-
isTemplatesEndpointReachable:
|
|
1905
|
-
templatesHost:
|
|
1906
|
-
pushBackend:
|
|
1907
|
-
isCommunityNodesFeatureEnabled:
|
|
1908
|
-
isUnverifiedPackagesEnabled:
|
|
1909
|
-
allowedModules:
|
|
1915
|
+
logLevel: vue164.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1916
|
+
isTelemetryEnabled: vue164.ComputedRef<boolean>;
|
|
1917
|
+
isMfaFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1918
|
+
isFoldersFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1919
|
+
isAiAssistantEnabled: vue164.ComputedRef<boolean>;
|
|
1920
|
+
isCustomRolesFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1921
|
+
areTagsEnabled: vue164.ComputedRef<boolean>;
|
|
1922
|
+
isAutosaveEnabled: vue164.ComputedRef<boolean>;
|
|
1923
|
+
isHiringBannerEnabled: vue164.ComputedRef<boolean>;
|
|
1924
|
+
isTemplatesEnabled: vue164.ComputedRef<boolean>;
|
|
1925
|
+
isTemplatesEndpointReachable: vue164.ComputedRef<boolean>;
|
|
1926
|
+
templatesHost: vue164.ComputedRef<string>;
|
|
1927
|
+
pushBackend: vue164.ComputedRef<"sse" | "websocket">;
|
|
1928
|
+
isCommunityNodesFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
1929
|
+
isUnverifiedPackagesEnabled: vue164.ComputedRef<boolean>;
|
|
1930
|
+
allowedModules: vue164.ComputedRef<{
|
|
1910
1931
|
builtIn?: string[] | undefined;
|
|
1911
1932
|
external?: string[] | undefined;
|
|
1912
1933
|
}>;
|
|
1913
|
-
isQueueModeEnabled:
|
|
1914
|
-
isMultiMain:
|
|
1915
|
-
isWorkerViewAvailable:
|
|
1916
|
-
workflowCallerPolicyDefaultOption:
|
|
1917
|
-
isExecuteWorkflowNodeExcluded:
|
|
1918
|
-
isSubworkflowConversionDisabled:
|
|
1919
|
-
permanentlyDismissedBanners:
|
|
1920
|
-
saveDataErrorExecution:
|
|
1921
|
-
saveDataSuccessExecution:
|
|
1922
|
-
saveManualExecutions:
|
|
1923
|
-
saveDataProgressExecution:
|
|
1924
|
-
isCommunityPlan:
|
|
1925
|
-
isAskAiEnabled:
|
|
1926
|
-
isAiBuilderEnabled:
|
|
1927
|
-
isAiAssistantOrBuilderEnabled:
|
|
1928
|
-
isAiCreditsEnabled:
|
|
1929
|
-
aiCreditsQuota:
|
|
1930
|
-
isAiDataSharingEnabled:
|
|
1931
|
-
isAiGatewayEnabled:
|
|
1932
|
-
isAiGatewayCloudUbbEnabled:
|
|
1933
|
-
aiGatewayBudget:
|
|
1934
|
+
isQueueModeEnabled: vue164.ComputedRef<boolean>;
|
|
1935
|
+
isMultiMain: vue164.ComputedRef<boolean>;
|
|
1936
|
+
isWorkerViewAvailable: vue164.ComputedRef<boolean>;
|
|
1937
|
+
workflowCallerPolicyDefaultOption: vue164.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1938
|
+
isExecuteWorkflowNodeExcluded: vue164.ComputedRef<boolean>;
|
|
1939
|
+
isSubworkflowConversionDisabled: vue164.ComputedRef<boolean>;
|
|
1940
|
+
permanentlyDismissedBanners: vue164.ComputedRef<string[]>;
|
|
1941
|
+
saveDataErrorExecution: vue164.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1942
|
+
saveDataSuccessExecution: vue164.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1943
|
+
saveManualExecutions: vue164.Ref<boolean, boolean>;
|
|
1944
|
+
saveDataProgressExecution: vue164.Ref<boolean, boolean>;
|
|
1945
|
+
isCommunityPlan: vue164.ComputedRef<boolean>;
|
|
1946
|
+
isAskAiEnabled: vue164.ComputedRef<boolean>;
|
|
1947
|
+
isAiBuilderEnabled: vue164.ComputedRef<boolean>;
|
|
1948
|
+
isAiAssistantOrBuilderEnabled: vue164.ComputedRef<boolean>;
|
|
1949
|
+
isAiCreditsEnabled: vue164.ComputedRef<boolean>;
|
|
1950
|
+
aiCreditsQuota: vue164.ComputedRef<number>;
|
|
1951
|
+
isAiDataSharingEnabled: vue164.ComputedRef<boolean>;
|
|
1952
|
+
isAiGatewayEnabled: vue164.ComputedRef<boolean>;
|
|
1953
|
+
isAiGatewayCloudUbbEnabled: vue164.ComputedRef<boolean>;
|
|
1954
|
+
aiGatewayBudget: vue164.ComputedRef<number>;
|
|
1934
1955
|
reset: () => void;
|
|
1935
1956
|
getTimezones: () => Promise<IDataObject>;
|
|
1936
1957
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1941,7 +1962,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1941
1962
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1942
1963
|
initialize: () => Promise<void>;
|
|
1943
1964
|
getModuleSettings: () => Promise<void>;
|
|
1944
|
-
moduleSettings:
|
|
1965
|
+
moduleSettings: vue164.Ref<{
|
|
1945
1966
|
insights?: {
|
|
1946
1967
|
summary: boolean;
|
|
1947
1968
|
dashboard: boolean;
|
|
@@ -1958,6 +1979,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
1958
1979
|
serverUrl?: string | undefined;
|
|
1959
1980
|
autoExposeNewWorkflows: boolean;
|
|
1960
1981
|
} | undefined;
|
|
1982
|
+
'encryption-key-manager'?: {
|
|
1983
|
+
rotationEnabled: boolean;
|
|
1984
|
+
} | undefined;
|
|
1961
1985
|
'chat-hub'?: {
|
|
1962
1986
|
enabled: boolean;
|
|
1963
1987
|
providers: {
|
|
@@ -2196,6 +2220,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
2196
2220
|
sandboxUnavailableReason: string | null;
|
|
2197
2221
|
runDebugEnabled: boolean;
|
|
2198
2222
|
activationCapped?: boolean | undefined;
|
|
2223
|
+
instanceAiSetupPanelEnabled?: boolean | undefined;
|
|
2199
2224
|
} | undefined;
|
|
2200
2225
|
'quick-connect'?: {
|
|
2201
2226
|
options: ({
|
|
@@ -2259,6 +2284,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
2259
2284
|
serverUrl?: string | undefined;
|
|
2260
2285
|
autoExposeNewWorkflows: boolean;
|
|
2261
2286
|
} | undefined;
|
|
2287
|
+
'encryption-key-manager'?: {
|
|
2288
|
+
rotationEnabled: boolean;
|
|
2289
|
+
} | undefined;
|
|
2262
2290
|
'chat-hub'?: {
|
|
2263
2291
|
enabled: boolean;
|
|
2264
2292
|
providers: {
|
|
@@ -2497,6 +2525,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
2497
2525
|
sandboxUnavailableReason: string | null;
|
|
2498
2526
|
runDebugEnabled: boolean;
|
|
2499
2527
|
activationCapped?: boolean | undefined;
|
|
2528
|
+
instanceAiSetupPanelEnabled?: boolean | undefined;
|
|
2500
2529
|
} | undefined;
|
|
2501
2530
|
'quick-connect'?: {
|
|
2502
2531
|
options: ({
|
|
@@ -2545,19 +2574,20 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
2545
2574
|
} | undefined;
|
|
2546
2575
|
}>;
|
|
2547
2576
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2548
|
-
isMFAEnforcementLicensed:
|
|
2549
|
-
isMFAEnforced:
|
|
2550
|
-
activeModules:
|
|
2577
|
+
isMFAEnforcementLicensed: vue164.ComputedRef<boolean>;
|
|
2578
|
+
isMFAEnforced: vue164.Ref<boolean, boolean>;
|
|
2579
|
+
activeModules: vue164.ComputedRef<string[]>;
|
|
2551
2580
|
isModuleActive: (moduleName: string) => boolean;
|
|
2552
2581
|
isAgentModuleActive: (name: string) => boolean;
|
|
2553
|
-
isDataTableFeatureEnabled:
|
|
2554
|
-
isChatFeatureEnabled:
|
|
2555
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2556
|
-
|
|
2557
|
-
|
|
2558
|
-
|
|
2559
|
-
|
|
2560
|
-
|
|
2582
|
+
isDataTableFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
2583
|
+
isChatFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
2584
|
+
isOtelCustomSpanAttributesEnabled: vue164.ComputedRef<boolean>;
|
|
2585
|
+
isWorkerPoolsEnabled: vue164.ComputedRef<boolean>;
|
|
2586
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
2587
|
+
isPublicChatTriggerDisabled: vue164.ComputedRef<boolean>;
|
|
2588
|
+
isWorkflowPublicationServiceEnabled: vue164.ComputedRef<boolean>;
|
|
2589
|
+
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "isE2ETestMode" | "isCanvasOnly" | "isCrdtCollaborationEnabled" | "publicApiLatestVersion" | "publicApiPath" | "showSetupPage" | "deploymentType" | "isCloudDeployment" | "isSmtpSetup" | "isPersonalizationSurveyEnabled" | "isTelemetryEnabled" | "isMfaFeatureEnabled" | "isFoldersFeatureEnabled" | "isAiAssistantEnabled" | "isCustomRolesFeatureEnabled" | "areTagsEnabled" | "isAutosaveEnabled" | "isHiringBannerEnabled" | "isTemplatesEnabled" | "isTemplatesEndpointReachable" | "templatesHost" | "isCommunityNodesFeatureEnabled" | "isUnverifiedPackagesEnabled" | "isQueueModeEnabled" | "isWorkerViewAvailable" | "isExecuteWorkflowNodeExcluded" | "isSubworkflowConversionDisabled" | "permanentlyDismissedBanners" | "isCommunityPlan" | "isAskAiEnabled" | "isAiBuilderEnabled" | "isAiAssistantOrBuilderEnabled" | "isAiCreditsEnabled" | "aiCreditsQuota" | "isAiDataSharingEnabled" | "isAiGatewayEnabled" | "isAiGatewayCloudUbbEnabled" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isWorkerPoolsEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2590
|
+
settings: vue164.Ref<{
|
|
2561
2591
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2562
2592
|
inE2ETests: boolean;
|
|
2563
2593
|
isDocker: boolean;
|
|
@@ -2758,6 +2788,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
2758
2788
|
folders: {
|
|
2759
2789
|
enabled: boolean;
|
|
2760
2790
|
};
|
|
2791
|
+
workerPools: {
|
|
2792
|
+
enabled: boolean;
|
|
2793
|
+
};
|
|
2761
2794
|
collaboration: {
|
|
2762
2795
|
crdt: "off" | "local" | "server";
|
|
2763
2796
|
};
|
|
@@ -3004,6 +3037,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3004
3037
|
folders: {
|
|
3005
3038
|
enabled: boolean;
|
|
3006
3039
|
};
|
|
3040
|
+
workerPools: {
|
|
3041
|
+
enabled: boolean;
|
|
3042
|
+
};
|
|
3007
3043
|
collaboration: {
|
|
3008
3044
|
crdt: "off" | "local" | "server";
|
|
3009
3045
|
};
|
|
@@ -3050,7 +3086,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3050
3086
|
canvasOnly: boolean;
|
|
3051
3087
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3052
3088
|
}>;
|
|
3053
|
-
userManagement:
|
|
3089
|
+
userManagement: vue164.Ref<{
|
|
3054
3090
|
quota: number;
|
|
3055
3091
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3056
3092
|
smtpSetup: boolean;
|
|
@@ -3063,8 +3099,8 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3063
3099
|
authenticationMethod: AuthenticationMethod;
|
|
3064
3100
|
passwordMinLength: number;
|
|
3065
3101
|
}>;
|
|
3066
|
-
templatesEndpointHealthy:
|
|
3067
|
-
api:
|
|
3102
|
+
templatesEndpointHealthy: vue164.Ref<boolean, boolean>;
|
|
3103
|
+
api: vue164.Ref<{
|
|
3068
3104
|
enabled: boolean;
|
|
3069
3105
|
latestVersion: number;
|
|
3070
3106
|
path: string;
|
|
@@ -3086,17 +3122,17 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3086
3122
|
enabled: boolean;
|
|
3087
3123
|
};
|
|
3088
3124
|
}>;
|
|
3089
|
-
mfa:
|
|
3125
|
+
mfa: vue164.Ref<{
|
|
3090
3126
|
enabled: boolean;
|
|
3091
3127
|
}, {
|
|
3092
3128
|
enabled: boolean;
|
|
3093
3129
|
} | {
|
|
3094
3130
|
enabled: boolean;
|
|
3095
3131
|
}>;
|
|
3096
|
-
isDocker:
|
|
3097
|
-
isDevRelease:
|
|
3098
|
-
endpointHealth:
|
|
3099
|
-
isEnterpriseFeatureEnabled:
|
|
3132
|
+
isDocker: vue164.ComputedRef<boolean>;
|
|
3133
|
+
isDevRelease: vue164.ComputedRef<boolean>;
|
|
3134
|
+
endpointHealth: vue164.ComputedRef<string>;
|
|
3135
|
+
isEnterpriseFeatureEnabled: vue164.ComputedRef<{
|
|
3100
3136
|
sharing: boolean;
|
|
3101
3137
|
ldap: boolean;
|
|
3102
3138
|
saml: boolean;
|
|
@@ -3127,37 +3163,37 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3127
3163
|
otelCustomSpanAttributes: boolean;
|
|
3128
3164
|
workflowReviews: boolean;
|
|
3129
3165
|
}>;
|
|
3130
|
-
databaseType:
|
|
3131
|
-
planName:
|
|
3132
|
-
consumerId:
|
|
3133
|
-
binaryDataMode:
|
|
3134
|
-
pruning:
|
|
3166
|
+
databaseType: vue164.ComputedRef<"sqlite" | "postgresdb">;
|
|
3167
|
+
planName: vue164.ComputedRef<string>;
|
|
3168
|
+
consumerId: vue164.ComputedRef<string>;
|
|
3169
|
+
binaryDataMode: vue164.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3170
|
+
pruning: vue164.ComputedRef<{
|
|
3135
3171
|
isEnabled: boolean;
|
|
3136
3172
|
maxAge: number;
|
|
3137
3173
|
maxCount: number;
|
|
3138
3174
|
} | undefined>;
|
|
3139
|
-
security:
|
|
3175
|
+
security: vue164.ComputedRef<{
|
|
3140
3176
|
blockFileAccessToN8nFiles: boolean;
|
|
3141
3177
|
secureCookie: boolean;
|
|
3142
3178
|
}>;
|
|
3143
|
-
nodeJsVersion:
|
|
3144
|
-
nodeEnv:
|
|
3145
|
-
concurrency:
|
|
3146
|
-
isConcurrencyEnabled:
|
|
3147
|
-
isPublicApiEnabled:
|
|
3148
|
-
isSwaggerUIEnabled:
|
|
3149
|
-
isPreviewMode:
|
|
3150
|
-
isE2ETestMode:
|
|
3151
|
-
isCanvasOnly:
|
|
3152
|
-
isCrdtCollaborationEnabled:
|
|
3153
|
-
publicApiLatestVersion:
|
|
3154
|
-
publicApiPath:
|
|
3155
|
-
showSetupPage:
|
|
3156
|
-
deploymentType:
|
|
3157
|
-
isCloudDeployment:
|
|
3158
|
-
isSmtpSetup:
|
|
3159
|
-
isPersonalizationSurveyEnabled:
|
|
3160
|
-
telemetry:
|
|
3179
|
+
nodeJsVersion: vue164.ComputedRef<string>;
|
|
3180
|
+
nodeEnv: vue164.ComputedRef<string | undefined>;
|
|
3181
|
+
concurrency: vue164.ComputedRef<number>;
|
|
3182
|
+
isConcurrencyEnabled: vue164.ComputedRef<boolean>;
|
|
3183
|
+
isPublicApiEnabled: vue164.ComputedRef<boolean>;
|
|
3184
|
+
isSwaggerUIEnabled: vue164.ComputedRef<boolean>;
|
|
3185
|
+
isPreviewMode: vue164.ComputedRef<boolean>;
|
|
3186
|
+
isE2ETestMode: vue164.ComputedRef<boolean>;
|
|
3187
|
+
isCanvasOnly: vue164.ComputedRef<boolean>;
|
|
3188
|
+
isCrdtCollaborationEnabled: vue164.ComputedRef<boolean>;
|
|
3189
|
+
publicApiLatestVersion: vue164.ComputedRef<number>;
|
|
3190
|
+
publicApiPath: vue164.ComputedRef<string>;
|
|
3191
|
+
showSetupPage: vue164.ComputedRef<boolean | undefined>;
|
|
3192
|
+
deploymentType: vue164.ComputedRef<string>;
|
|
3193
|
+
isCloudDeployment: vue164.ComputedRef<boolean>;
|
|
3194
|
+
isSmtpSetup: vue164.ComputedRef<boolean>;
|
|
3195
|
+
isPersonalizationSurveyEnabled: vue164.ComputedRef<boolean>;
|
|
3196
|
+
telemetry: vue164.ComputedRef<{
|
|
3161
3197
|
enabled: boolean;
|
|
3162
3198
|
config?: {
|
|
3163
3199
|
url: string;
|
|
@@ -3166,46 +3202,46 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3166
3202
|
sourceConfig: string;
|
|
3167
3203
|
} | undefined;
|
|
3168
3204
|
}>;
|
|
3169
|
-
logLevel:
|
|
3170
|
-
isTelemetryEnabled:
|
|
3171
|
-
isMfaFeatureEnabled:
|
|
3172
|
-
isFoldersFeatureEnabled:
|
|
3173
|
-
isAiAssistantEnabled:
|
|
3174
|
-
isCustomRolesFeatureEnabled:
|
|
3175
|
-
areTagsEnabled:
|
|
3176
|
-
isAutosaveEnabled:
|
|
3177
|
-
isHiringBannerEnabled:
|
|
3178
|
-
isTemplatesEnabled:
|
|
3179
|
-
isTemplatesEndpointReachable:
|
|
3180
|
-
templatesHost:
|
|
3181
|
-
pushBackend:
|
|
3182
|
-
isCommunityNodesFeatureEnabled:
|
|
3183
|
-
isUnverifiedPackagesEnabled:
|
|
3184
|
-
allowedModules:
|
|
3205
|
+
logLevel: vue164.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3206
|
+
isTelemetryEnabled: vue164.ComputedRef<boolean>;
|
|
3207
|
+
isMfaFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3208
|
+
isFoldersFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3209
|
+
isAiAssistantEnabled: vue164.ComputedRef<boolean>;
|
|
3210
|
+
isCustomRolesFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3211
|
+
areTagsEnabled: vue164.ComputedRef<boolean>;
|
|
3212
|
+
isAutosaveEnabled: vue164.ComputedRef<boolean>;
|
|
3213
|
+
isHiringBannerEnabled: vue164.ComputedRef<boolean>;
|
|
3214
|
+
isTemplatesEnabled: vue164.ComputedRef<boolean>;
|
|
3215
|
+
isTemplatesEndpointReachable: vue164.ComputedRef<boolean>;
|
|
3216
|
+
templatesHost: vue164.ComputedRef<string>;
|
|
3217
|
+
pushBackend: vue164.ComputedRef<"sse" | "websocket">;
|
|
3218
|
+
isCommunityNodesFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3219
|
+
isUnverifiedPackagesEnabled: vue164.ComputedRef<boolean>;
|
|
3220
|
+
allowedModules: vue164.ComputedRef<{
|
|
3185
3221
|
builtIn?: string[] | undefined;
|
|
3186
3222
|
external?: string[] | undefined;
|
|
3187
3223
|
}>;
|
|
3188
|
-
isQueueModeEnabled:
|
|
3189
|
-
isMultiMain:
|
|
3190
|
-
isWorkerViewAvailable:
|
|
3191
|
-
workflowCallerPolicyDefaultOption:
|
|
3192
|
-
isExecuteWorkflowNodeExcluded:
|
|
3193
|
-
isSubworkflowConversionDisabled:
|
|
3194
|
-
permanentlyDismissedBanners:
|
|
3195
|
-
saveDataErrorExecution:
|
|
3196
|
-
saveDataSuccessExecution:
|
|
3197
|
-
saveManualExecutions:
|
|
3198
|
-
saveDataProgressExecution:
|
|
3199
|
-
isCommunityPlan:
|
|
3200
|
-
isAskAiEnabled:
|
|
3201
|
-
isAiBuilderEnabled:
|
|
3202
|
-
isAiAssistantOrBuilderEnabled:
|
|
3203
|
-
isAiCreditsEnabled:
|
|
3204
|
-
aiCreditsQuota:
|
|
3205
|
-
isAiDataSharingEnabled:
|
|
3206
|
-
isAiGatewayEnabled:
|
|
3207
|
-
isAiGatewayCloudUbbEnabled:
|
|
3208
|
-
aiGatewayBudget:
|
|
3224
|
+
isQueueModeEnabled: vue164.ComputedRef<boolean>;
|
|
3225
|
+
isMultiMain: vue164.ComputedRef<boolean>;
|
|
3226
|
+
isWorkerViewAvailable: vue164.ComputedRef<boolean>;
|
|
3227
|
+
workflowCallerPolicyDefaultOption: vue164.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3228
|
+
isExecuteWorkflowNodeExcluded: vue164.ComputedRef<boolean>;
|
|
3229
|
+
isSubworkflowConversionDisabled: vue164.ComputedRef<boolean>;
|
|
3230
|
+
permanentlyDismissedBanners: vue164.ComputedRef<string[]>;
|
|
3231
|
+
saveDataErrorExecution: vue164.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3232
|
+
saveDataSuccessExecution: vue164.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3233
|
+
saveManualExecutions: vue164.Ref<boolean, boolean>;
|
|
3234
|
+
saveDataProgressExecution: vue164.Ref<boolean, boolean>;
|
|
3235
|
+
isCommunityPlan: vue164.ComputedRef<boolean>;
|
|
3236
|
+
isAskAiEnabled: vue164.ComputedRef<boolean>;
|
|
3237
|
+
isAiBuilderEnabled: vue164.ComputedRef<boolean>;
|
|
3238
|
+
isAiAssistantOrBuilderEnabled: vue164.ComputedRef<boolean>;
|
|
3239
|
+
isAiCreditsEnabled: vue164.ComputedRef<boolean>;
|
|
3240
|
+
aiCreditsQuota: vue164.ComputedRef<number>;
|
|
3241
|
+
isAiDataSharingEnabled: vue164.ComputedRef<boolean>;
|
|
3242
|
+
isAiGatewayEnabled: vue164.ComputedRef<boolean>;
|
|
3243
|
+
isAiGatewayCloudUbbEnabled: vue164.ComputedRef<boolean>;
|
|
3244
|
+
aiGatewayBudget: vue164.ComputedRef<number>;
|
|
3209
3245
|
reset: () => void;
|
|
3210
3246
|
getTimezones: () => Promise<IDataObject>;
|
|
3211
3247
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3216,7 +3252,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3216
3252
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3217
3253
|
initialize: () => Promise<void>;
|
|
3218
3254
|
getModuleSettings: () => Promise<void>;
|
|
3219
|
-
moduleSettings:
|
|
3255
|
+
moduleSettings: vue164.Ref<{
|
|
3220
3256
|
insights?: {
|
|
3221
3257
|
summary: boolean;
|
|
3222
3258
|
dashboard: boolean;
|
|
@@ -3233,6 +3269,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3233
3269
|
serverUrl?: string | undefined;
|
|
3234
3270
|
autoExposeNewWorkflows: boolean;
|
|
3235
3271
|
} | undefined;
|
|
3272
|
+
'encryption-key-manager'?: {
|
|
3273
|
+
rotationEnabled: boolean;
|
|
3274
|
+
} | undefined;
|
|
3236
3275
|
'chat-hub'?: {
|
|
3237
3276
|
enabled: boolean;
|
|
3238
3277
|
providers: {
|
|
@@ -3471,6 +3510,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3471
3510
|
sandboxUnavailableReason: string | null;
|
|
3472
3511
|
runDebugEnabled: boolean;
|
|
3473
3512
|
activationCapped?: boolean | undefined;
|
|
3513
|
+
instanceAiSetupPanelEnabled?: boolean | undefined;
|
|
3474
3514
|
} | undefined;
|
|
3475
3515
|
'quick-connect'?: {
|
|
3476
3516
|
options: ({
|
|
@@ -3534,6 +3574,9 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3534
3574
|
serverUrl?: string | undefined;
|
|
3535
3575
|
autoExposeNewWorkflows: boolean;
|
|
3536
3576
|
} | undefined;
|
|
3577
|
+
'encryption-key-manager'?: {
|
|
3578
|
+
rotationEnabled: boolean;
|
|
3579
|
+
} | undefined;
|
|
3537
3580
|
'chat-hub'?: {
|
|
3538
3581
|
enabled: boolean;
|
|
3539
3582
|
providers: {
|
|
@@ -3772,6 +3815,7 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3772
3815
|
sandboxUnavailableReason: string | null;
|
|
3773
3816
|
runDebugEnabled: boolean;
|
|
3774
3817
|
activationCapped?: boolean | undefined;
|
|
3818
|
+
instanceAiSetupPanelEnabled?: boolean | undefined;
|
|
3775
3819
|
} | undefined;
|
|
3776
3820
|
'quick-connect'?: {
|
|
3777
3821
|
options: ({
|
|
@@ -3820,17 +3864,18 @@ declare const useSettingsStore: pinia6.StoreDefinition<"settings", Pick<{
|
|
|
3820
3864
|
} | undefined;
|
|
3821
3865
|
}>;
|
|
3822
3866
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3823
|
-
isMFAEnforcementLicensed:
|
|
3824
|
-
isMFAEnforced:
|
|
3825
|
-
activeModules:
|
|
3867
|
+
isMFAEnforcementLicensed: vue164.ComputedRef<boolean>;
|
|
3868
|
+
isMFAEnforced: vue164.Ref<boolean, boolean>;
|
|
3869
|
+
activeModules: vue164.ComputedRef<string[]>;
|
|
3826
3870
|
isModuleActive: (moduleName: string) => boolean;
|
|
3827
3871
|
isAgentModuleActive: (name: string) => boolean;
|
|
3828
|
-
isDataTableFeatureEnabled:
|
|
3829
|
-
isChatFeatureEnabled:
|
|
3830
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3831
|
-
|
|
3832
|
-
|
|
3833
|
-
|
|
3872
|
+
isDataTableFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3873
|
+
isChatFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3874
|
+
isOtelCustomSpanAttributesEnabled: vue164.ComputedRef<boolean>;
|
|
3875
|
+
isWorkerPoolsEnabled: vue164.ComputedRef<boolean>;
|
|
3876
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue164.ComputedRef<boolean>;
|
|
3877
|
+
isPublicChatTriggerDisabled: vue164.ComputedRef<boolean>;
|
|
3878
|
+
isWorkflowPublicationServiceEnabled: vue164.ComputedRef<boolean>;
|
|
3834
3879
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3835
3880
|
//#endregion
|
|
3836
3881
|
export { useSettingsStore };
|