@n8n/stores 2.33.0 → 2.34.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.cjs +5 -241
- package/dist/cloudPlan.store.d.cts +6 -0
- package/dist/cloudPlan.store.d.mts +72 -66
- package/dist/cloudPlan.store.mjs +5 -241
- package/dist/cloudPlan2.store.cjs +247 -0
- package/dist/cloudPlan2.store.cjs.map +1 -0
- package/dist/cloudPlan2.store.mjs +242 -0
- package/dist/cloudPlan2.store.mjs.map +1 -0
- package/dist/composables/useBasePageRedirectionHelper.cjs +87 -0
- package/dist/composables/useBasePageRedirectionHelper.cjs.map +1 -0
- package/dist/composables/useBasePageRedirectionHelper.d.cts +16 -0
- package/dist/composables/useBasePageRedirectionHelper.d.mts +16 -0
- package/dist/composables/useBasePageRedirectionHelper.mjs +87 -0
- package/dist/composables/useBasePageRedirectionHelper.mjs.map +1 -0
- 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.cjs +2 -8
- package/dist/notifications.store.cjs.map +1 -1
- package/dist/notifications.store.d.cts +3 -24
- package/dist/notifications.store.d.mts +3 -24
- package/dist/notifications.store.mjs +2 -8
- package/dist/notifications.store.mjs.map +1 -1
- package/dist/pageRedirection.d.cts +6 -0
- package/dist/pageRedirection.d.mts +6 -0
- package/dist/rbac.store.d.cts +123 -123
- package/dist/rbac.store.d.mts +123 -123
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +19 -19
- package/dist/settings.store.d.cts +243 -237
- package/dist/settings.store.d.mts +243 -237
- package/dist/settings2.store.cjs +5 -5
- package/dist/settings2.store.cjs.map +1 -1
- package/dist/settings2.store.mjs +5 -5
- package/dist/settings2.store.mjs.map +1 -1
- package/dist/types/pageRedirection.cjs +0 -0
- package/dist/types/pageRedirection.d.cts +2 -0
- package/dist/types/pageRedirection.d.mts +2 -0
- package/dist/types/pageRedirection.mjs +1 -0
- package/dist/useAgentRequestStore.d.mts +6 -6
- package/dist/useRootStore.d.cts +72 -72
- package/dist/useRootStore.d.mts +70 -70
- package/dist/users.store.cjs +7 -352
- package/dist/users.store.d.cts +67 -55
- package/dist/users.store.d.mts +69 -57
- package/dist/users.store.mjs +7 -349
- package/dist/users2.store.cjs +362 -0
- package/dist/users2.store.cjs.map +1 -0
- package/dist/users2.store.mjs +353 -0
- package/dist/users2.store.mjs.map +1 -0
- package/dist/versions.store.cjs +11 -0
- package/dist/versions.store.d.cts +384 -0
- package/dist/versions.store.d.mts +384 -0
- package/dist/versions.store.mjs +10 -0
- package/dist/versions2.store.cjs +230 -0
- package/dist/versions2.store.cjs.map +1 -0
- package/dist/versions2.store.mjs +218 -0
- package/dist/versions2.store.mjs.map +1 -0
- package/package.json +14 -13
- package/dist/cloudPlan.store.cjs.map +0 -1
- package/dist/cloudPlan.store.mjs.map +0 -1
- package/dist/users.store.cjs.map +0 -1
- package/dist/users.store.mjs.map +0 -1
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue62 from "vue";
|
|
2
|
+
import * as pinia2 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_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: pinia2.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue62.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -237,6 +237,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
237
237
|
} | undefined;
|
|
238
238
|
security: {
|
|
239
239
|
blockFileAccessToN8nFiles: boolean;
|
|
240
|
+
postMessageAllowedOrigins: string[];
|
|
240
241
|
};
|
|
241
242
|
chatTrigger?: {
|
|
242
243
|
disablePublicChat: boolean;
|
|
@@ -481,6 +482,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
481
482
|
} | undefined;
|
|
482
483
|
security: {
|
|
483
484
|
blockFileAccessToN8nFiles: boolean;
|
|
485
|
+
postMessageAllowedOrigins: string[];
|
|
484
486
|
};
|
|
485
487
|
chatTrigger?: {
|
|
486
488
|
disablePublicChat: boolean;
|
|
@@ -496,7 +498,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
496
498
|
canvasOnly: boolean;
|
|
497
499
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
498
500
|
}>;
|
|
499
|
-
userManagement:
|
|
501
|
+
userManagement: vue62.Ref<{
|
|
500
502
|
quota: number;
|
|
501
503
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
502
504
|
smtpSetup: boolean;
|
|
@@ -509,8 +511,8 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
509
511
|
authenticationMethod: AuthenticationMethod;
|
|
510
512
|
passwordMinLength: number;
|
|
511
513
|
}>;
|
|
512
|
-
templatesEndpointHealthy:
|
|
513
|
-
api:
|
|
514
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
515
|
+
api: vue62.Ref<{
|
|
514
516
|
enabled: boolean;
|
|
515
517
|
latestVersion: number;
|
|
516
518
|
path: string;
|
|
@@ -532,17 +534,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
532
534
|
enabled: boolean;
|
|
533
535
|
};
|
|
534
536
|
}>;
|
|
535
|
-
mfa:
|
|
537
|
+
mfa: vue62.Ref<{
|
|
536
538
|
enabled: boolean;
|
|
537
539
|
}, {
|
|
538
540
|
enabled: boolean;
|
|
539
541
|
} | {
|
|
540
542
|
enabled: boolean;
|
|
541
543
|
}>;
|
|
542
|
-
isDocker:
|
|
543
|
-
isDevRelease:
|
|
544
|
-
endpointHealth:
|
|
545
|
-
isEnterpriseFeatureEnabled:
|
|
544
|
+
isDocker: vue62.ComputedRef<boolean>;
|
|
545
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
546
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
547
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
546
548
|
sharing: boolean;
|
|
547
549
|
ldap: boolean;
|
|
548
550
|
saml: boolean;
|
|
@@ -573,36 +575,36 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
573
575
|
otelCustomSpanAttributes: boolean;
|
|
574
576
|
workflowReviews: boolean;
|
|
575
577
|
}>;
|
|
576
|
-
databaseType:
|
|
577
|
-
planName:
|
|
578
|
-
consumerId:
|
|
579
|
-
binaryDataMode:
|
|
580
|
-
pruning:
|
|
578
|
+
databaseType: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
579
|
+
planName: vue62.ComputedRef<string>;
|
|
580
|
+
consumerId: vue62.ComputedRef<string>;
|
|
581
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
582
|
+
pruning: vue62.ComputedRef<{
|
|
581
583
|
isEnabled: boolean;
|
|
582
584
|
maxAge: number;
|
|
583
585
|
maxCount: number;
|
|
584
586
|
} | undefined>;
|
|
585
|
-
security:
|
|
587
|
+
security: vue62.ComputedRef<{
|
|
586
588
|
blockFileAccessToN8nFiles: boolean;
|
|
587
589
|
secureCookie: boolean;
|
|
588
590
|
}>;
|
|
589
|
-
nodeJsVersion:
|
|
590
|
-
nodeEnv:
|
|
591
|
-
concurrency:
|
|
592
|
-
isConcurrencyEnabled:
|
|
593
|
-
isPublicApiEnabled:
|
|
594
|
-
isSwaggerUIEnabled:
|
|
595
|
-
isPreviewMode:
|
|
596
|
-
isCanvasOnly:
|
|
597
|
-
isCrdtCollaborationEnabled:
|
|
598
|
-
publicApiLatestVersion:
|
|
599
|
-
publicApiPath:
|
|
600
|
-
showSetupPage:
|
|
601
|
-
deploymentType:
|
|
602
|
-
isCloudDeployment:
|
|
603
|
-
isSmtpSetup:
|
|
604
|
-
isPersonalizationSurveyEnabled:
|
|
605
|
-
telemetry:
|
|
591
|
+
nodeJsVersion: vue62.ComputedRef<string>;
|
|
592
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
593
|
+
concurrency: vue62.ComputedRef<number>;
|
|
594
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
595
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
596
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
597
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
598
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
599
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
600
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
601
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
602
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
603
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
604
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
605
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
606
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
607
|
+
telemetry: vue62.ComputedRef<{
|
|
606
608
|
enabled: boolean;
|
|
607
609
|
config?: {
|
|
608
610
|
url: string;
|
|
@@ -611,43 +613,43 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
611
613
|
sourceConfig: string;
|
|
612
614
|
} | undefined;
|
|
613
615
|
}>;
|
|
614
|
-
logLevel:
|
|
615
|
-
isTelemetryEnabled:
|
|
616
|
-
isMfaFeatureEnabled:
|
|
617
|
-
isFoldersFeatureEnabled:
|
|
618
|
-
isAiAssistantEnabled:
|
|
619
|
-
isCustomRolesFeatureEnabled:
|
|
620
|
-
areTagsEnabled:
|
|
621
|
-
isAutosaveEnabled:
|
|
622
|
-
isHiringBannerEnabled:
|
|
623
|
-
isTemplatesEnabled:
|
|
624
|
-
isTemplatesEndpointReachable:
|
|
625
|
-
templatesHost:
|
|
626
|
-
pushBackend:
|
|
627
|
-
isCommunityNodesFeatureEnabled:
|
|
628
|
-
isUnverifiedPackagesEnabled:
|
|
629
|
-
allowedModules:
|
|
616
|
+
logLevel: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
617
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
618
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
619
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
620
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
621
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
622
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
623
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
624
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
625
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
626
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
627
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
628
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
629
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
630
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
631
|
+
allowedModules: vue62.ComputedRef<{
|
|
630
632
|
builtIn?: string[] | undefined;
|
|
631
633
|
external?: string[] | undefined;
|
|
632
634
|
}>;
|
|
633
|
-
isQueueModeEnabled:
|
|
634
|
-
isMultiMain:
|
|
635
|
-
isWorkerViewAvailable:
|
|
636
|
-
workflowCallerPolicyDefaultOption:
|
|
637
|
-
permanentlyDismissedBanners:
|
|
638
|
-
saveDataErrorExecution:
|
|
639
|
-
saveDataSuccessExecution:
|
|
640
|
-
saveManualExecutions:
|
|
641
|
-
saveDataProgressExecution:
|
|
642
|
-
isCommunityPlan:
|
|
643
|
-
isAskAiEnabled:
|
|
644
|
-
isAiBuilderEnabled:
|
|
645
|
-
isAiAssistantOrBuilderEnabled:
|
|
646
|
-
isAiCreditsEnabled:
|
|
647
|
-
aiCreditsQuota:
|
|
648
|
-
isAiDataSharingEnabled:
|
|
649
|
-
isAiGatewayEnabled:
|
|
650
|
-
aiGatewayBudget:
|
|
635
|
+
isQueueModeEnabled: vue62.ComputedRef<boolean>;
|
|
636
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
637
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
638
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
639
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
640
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
641
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
642
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
643
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
644
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
645
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
646
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
647
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
648
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
649
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
650
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
651
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
652
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
651
653
|
reset: () => void;
|
|
652
654
|
getTimezones: () => Promise<IDataObject>;
|
|
653
655
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -658,7 +660,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
658
660
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
659
661
|
initialize: () => Promise<void>;
|
|
660
662
|
getModuleSettings: () => Promise<void>;
|
|
661
|
-
moduleSettings:
|
|
663
|
+
moduleSettings: vue62.Ref<{
|
|
662
664
|
insights?: {
|
|
663
665
|
summary: boolean;
|
|
664
666
|
dashboard: boolean;
|
|
@@ -926,9 +928,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
926
928
|
} | undefined;
|
|
927
929
|
config?: never | undefined;
|
|
928
930
|
} | {
|
|
931
|
+
text: string;
|
|
929
932
|
packageName: string;
|
|
930
933
|
credentialType: string;
|
|
931
|
-
text: string;
|
|
932
934
|
quickConnectType: "pinecone";
|
|
933
935
|
consentText?: string | undefined;
|
|
934
936
|
consentCheckbox?: string | undefined;
|
|
@@ -1224,9 +1226,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1224
1226
|
} | undefined;
|
|
1225
1227
|
config?: never | undefined;
|
|
1226
1228
|
} | {
|
|
1229
|
+
text: string;
|
|
1227
1230
|
packageName: string;
|
|
1228
1231
|
credentialType: string;
|
|
1229
|
-
text: string;
|
|
1230
1232
|
quickConnectType: "pinecone";
|
|
1231
1233
|
consentText?: string | undefined;
|
|
1232
1234
|
consentCheckbox?: string | undefined;
|
|
@@ -1256,19 +1258,19 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1256
1258
|
} | undefined;
|
|
1257
1259
|
}>;
|
|
1258
1260
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1259
|
-
isMFAEnforcementLicensed:
|
|
1260
|
-
isMFAEnforced:
|
|
1261
|
-
activeModules:
|
|
1261
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
1262
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
1263
|
+
activeModules: vue62.ComputedRef<string[]>;
|
|
1262
1264
|
isModuleActive: (moduleName: string) => boolean;
|
|
1263
1265
|
isAgentModuleActive: (name: string) => boolean;
|
|
1264
|
-
isDataTableFeatureEnabled:
|
|
1265
|
-
isChatFeatureEnabled:
|
|
1266
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1267
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1268
|
-
isPublicChatTriggerDisabled:
|
|
1269
|
-
isWorkflowPublicationServiceEnabled:
|
|
1266
|
+
isDataTableFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1267
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1268
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
1269
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1270
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
1271
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
1270
1272
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1271
|
-
settings:
|
|
1273
|
+
settings: vue62.Ref<{
|
|
1272
1274
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1273
1275
|
inE2ETests: boolean;
|
|
1274
1276
|
isDocker: boolean;
|
|
@@ -1498,6 +1500,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1498
1500
|
} | undefined;
|
|
1499
1501
|
security: {
|
|
1500
1502
|
blockFileAccessToN8nFiles: boolean;
|
|
1503
|
+
postMessageAllowedOrigins: string[];
|
|
1501
1504
|
};
|
|
1502
1505
|
chatTrigger?: {
|
|
1503
1506
|
disablePublicChat: boolean;
|
|
@@ -1742,6 +1745,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1742
1745
|
} | undefined;
|
|
1743
1746
|
security: {
|
|
1744
1747
|
blockFileAccessToN8nFiles: boolean;
|
|
1748
|
+
postMessageAllowedOrigins: string[];
|
|
1745
1749
|
};
|
|
1746
1750
|
chatTrigger?: {
|
|
1747
1751
|
disablePublicChat: boolean;
|
|
@@ -1757,7 +1761,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1757
1761
|
canvasOnly: boolean;
|
|
1758
1762
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1759
1763
|
}>;
|
|
1760
|
-
userManagement:
|
|
1764
|
+
userManagement: vue62.Ref<{
|
|
1761
1765
|
quota: number;
|
|
1762
1766
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1763
1767
|
smtpSetup: boolean;
|
|
@@ -1770,8 +1774,8 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1770
1774
|
authenticationMethod: AuthenticationMethod;
|
|
1771
1775
|
passwordMinLength: number;
|
|
1772
1776
|
}>;
|
|
1773
|
-
templatesEndpointHealthy:
|
|
1774
|
-
api:
|
|
1777
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
1778
|
+
api: vue62.Ref<{
|
|
1775
1779
|
enabled: boolean;
|
|
1776
1780
|
latestVersion: number;
|
|
1777
1781
|
path: string;
|
|
@@ -1793,17 +1797,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1793
1797
|
enabled: boolean;
|
|
1794
1798
|
};
|
|
1795
1799
|
}>;
|
|
1796
|
-
mfa:
|
|
1800
|
+
mfa: vue62.Ref<{
|
|
1797
1801
|
enabled: boolean;
|
|
1798
1802
|
}, {
|
|
1799
1803
|
enabled: boolean;
|
|
1800
1804
|
} | {
|
|
1801
1805
|
enabled: boolean;
|
|
1802
1806
|
}>;
|
|
1803
|
-
isDocker:
|
|
1804
|
-
isDevRelease:
|
|
1805
|
-
endpointHealth:
|
|
1806
|
-
isEnterpriseFeatureEnabled:
|
|
1807
|
+
isDocker: vue62.ComputedRef<boolean>;
|
|
1808
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
1809
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
1810
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
1807
1811
|
sharing: boolean;
|
|
1808
1812
|
ldap: boolean;
|
|
1809
1813
|
saml: boolean;
|
|
@@ -1834,36 +1838,36 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1834
1838
|
otelCustomSpanAttributes: boolean;
|
|
1835
1839
|
workflowReviews: boolean;
|
|
1836
1840
|
}>;
|
|
1837
|
-
databaseType:
|
|
1838
|
-
planName:
|
|
1839
|
-
consumerId:
|
|
1840
|
-
binaryDataMode:
|
|
1841
|
-
pruning:
|
|
1841
|
+
databaseType: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
1842
|
+
planName: vue62.ComputedRef<string>;
|
|
1843
|
+
consumerId: vue62.ComputedRef<string>;
|
|
1844
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1845
|
+
pruning: vue62.ComputedRef<{
|
|
1842
1846
|
isEnabled: boolean;
|
|
1843
1847
|
maxAge: number;
|
|
1844
1848
|
maxCount: number;
|
|
1845
1849
|
} | undefined>;
|
|
1846
|
-
security:
|
|
1850
|
+
security: vue62.ComputedRef<{
|
|
1847
1851
|
blockFileAccessToN8nFiles: boolean;
|
|
1848
1852
|
secureCookie: boolean;
|
|
1849
1853
|
}>;
|
|
1850
|
-
nodeJsVersion:
|
|
1851
|
-
nodeEnv:
|
|
1852
|
-
concurrency:
|
|
1853
|
-
isConcurrencyEnabled:
|
|
1854
|
-
isPublicApiEnabled:
|
|
1855
|
-
isSwaggerUIEnabled:
|
|
1856
|
-
isPreviewMode:
|
|
1857
|
-
isCanvasOnly:
|
|
1858
|
-
isCrdtCollaborationEnabled:
|
|
1859
|
-
publicApiLatestVersion:
|
|
1860
|
-
publicApiPath:
|
|
1861
|
-
showSetupPage:
|
|
1862
|
-
deploymentType:
|
|
1863
|
-
isCloudDeployment:
|
|
1864
|
-
isSmtpSetup:
|
|
1865
|
-
isPersonalizationSurveyEnabled:
|
|
1866
|
-
telemetry:
|
|
1854
|
+
nodeJsVersion: vue62.ComputedRef<string>;
|
|
1855
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
1856
|
+
concurrency: vue62.ComputedRef<number>;
|
|
1857
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
1858
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
1859
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
1860
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
1861
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
1862
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
1863
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
1864
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
1865
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
1866
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
1867
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
1868
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
1869
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
1870
|
+
telemetry: vue62.ComputedRef<{
|
|
1867
1871
|
enabled: boolean;
|
|
1868
1872
|
config?: {
|
|
1869
1873
|
url: string;
|
|
@@ -1872,43 +1876,43 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1872
1876
|
sourceConfig: string;
|
|
1873
1877
|
} | undefined;
|
|
1874
1878
|
}>;
|
|
1875
|
-
logLevel:
|
|
1876
|
-
isTelemetryEnabled:
|
|
1877
|
-
isMfaFeatureEnabled:
|
|
1878
|
-
isFoldersFeatureEnabled:
|
|
1879
|
-
isAiAssistantEnabled:
|
|
1880
|
-
isCustomRolesFeatureEnabled:
|
|
1881
|
-
areTagsEnabled:
|
|
1882
|
-
isAutosaveEnabled:
|
|
1883
|
-
isHiringBannerEnabled:
|
|
1884
|
-
isTemplatesEnabled:
|
|
1885
|
-
isTemplatesEndpointReachable:
|
|
1886
|
-
templatesHost:
|
|
1887
|
-
pushBackend:
|
|
1888
|
-
isCommunityNodesFeatureEnabled:
|
|
1889
|
-
isUnverifiedPackagesEnabled:
|
|
1890
|
-
allowedModules:
|
|
1879
|
+
logLevel: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1880
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
1881
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1882
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1883
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
1884
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1885
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
1886
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
1887
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
1888
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
1889
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
1890
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
1891
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
1892
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
1893
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
1894
|
+
allowedModules: vue62.ComputedRef<{
|
|
1891
1895
|
builtIn?: string[] | undefined;
|
|
1892
1896
|
external?: string[] | undefined;
|
|
1893
1897
|
}>;
|
|
1894
|
-
isQueueModeEnabled:
|
|
1895
|
-
isMultiMain:
|
|
1896
|
-
isWorkerViewAvailable:
|
|
1897
|
-
workflowCallerPolicyDefaultOption:
|
|
1898
|
-
permanentlyDismissedBanners:
|
|
1899
|
-
saveDataErrorExecution:
|
|
1900
|
-
saveDataSuccessExecution:
|
|
1901
|
-
saveManualExecutions:
|
|
1902
|
-
saveDataProgressExecution:
|
|
1903
|
-
isCommunityPlan:
|
|
1904
|
-
isAskAiEnabled:
|
|
1905
|
-
isAiBuilderEnabled:
|
|
1906
|
-
isAiAssistantOrBuilderEnabled:
|
|
1907
|
-
isAiCreditsEnabled:
|
|
1908
|
-
aiCreditsQuota:
|
|
1909
|
-
isAiDataSharingEnabled:
|
|
1910
|
-
isAiGatewayEnabled:
|
|
1911
|
-
aiGatewayBudget:
|
|
1898
|
+
isQueueModeEnabled: vue62.ComputedRef<boolean>;
|
|
1899
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
1900
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
1901
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1902
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
1903
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1904
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1905
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
1906
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
1907
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
1908
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
1909
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
1910
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
1911
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
1912
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
1913
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
1914
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
1915
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
1912
1916
|
reset: () => void;
|
|
1913
1917
|
getTimezones: () => Promise<IDataObject>;
|
|
1914
1918
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1919,7 +1923,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1919
1923
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1920
1924
|
initialize: () => Promise<void>;
|
|
1921
1925
|
getModuleSettings: () => Promise<void>;
|
|
1922
|
-
moduleSettings:
|
|
1926
|
+
moduleSettings: vue62.Ref<{
|
|
1923
1927
|
insights?: {
|
|
1924
1928
|
summary: boolean;
|
|
1925
1929
|
dashboard: boolean;
|
|
@@ -2187,9 +2191,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2187
2191
|
} | undefined;
|
|
2188
2192
|
config?: never | undefined;
|
|
2189
2193
|
} | {
|
|
2194
|
+
text: string;
|
|
2190
2195
|
packageName: string;
|
|
2191
2196
|
credentialType: string;
|
|
2192
|
-
text: string;
|
|
2193
2197
|
quickConnectType: "pinecone";
|
|
2194
2198
|
consentText?: string | undefined;
|
|
2195
2199
|
consentCheckbox?: string | undefined;
|
|
@@ -2485,9 +2489,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2485
2489
|
} | undefined;
|
|
2486
2490
|
config?: never | undefined;
|
|
2487
2491
|
} | {
|
|
2492
|
+
text: string;
|
|
2488
2493
|
packageName: string;
|
|
2489
2494
|
credentialType: string;
|
|
2490
|
-
text: string;
|
|
2491
2495
|
quickConnectType: "pinecone";
|
|
2492
2496
|
consentText?: string | undefined;
|
|
2493
2497
|
consentCheckbox?: string | undefined;
|
|
@@ -2517,19 +2521,19 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2517
2521
|
} | undefined;
|
|
2518
2522
|
}>;
|
|
2519
2523
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2520
|
-
isMFAEnforcementLicensed:
|
|
2521
|
-
isMFAEnforced:
|
|
2522
|
-
activeModules:
|
|
2524
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
2525
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
2526
|
+
activeModules: vue62.ComputedRef<string[]>;
|
|
2523
2527
|
isModuleActive: (moduleName: string) => boolean;
|
|
2524
2528
|
isAgentModuleActive: (name: string) => boolean;
|
|
2525
|
-
isDataTableFeatureEnabled:
|
|
2526
|
-
isChatFeatureEnabled:
|
|
2527
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2528
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2529
|
-
isPublicChatTriggerDisabled:
|
|
2530
|
-
isWorkflowPublicationServiceEnabled:
|
|
2529
|
+
isDataTableFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2530
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2531
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
2532
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
2533
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
2534
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
2531
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<{
|
|
2532
|
-
settings:
|
|
2536
|
+
settings: vue62.Ref<{
|
|
2533
2537
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2534
2538
|
inE2ETests: boolean;
|
|
2535
2539
|
isDocker: boolean;
|
|
@@ -2759,6 +2763,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2759
2763
|
} | undefined;
|
|
2760
2764
|
security: {
|
|
2761
2765
|
blockFileAccessToN8nFiles: boolean;
|
|
2766
|
+
postMessageAllowedOrigins: string[];
|
|
2762
2767
|
};
|
|
2763
2768
|
chatTrigger?: {
|
|
2764
2769
|
disablePublicChat: boolean;
|
|
@@ -3003,6 +3008,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3003
3008
|
} | undefined;
|
|
3004
3009
|
security: {
|
|
3005
3010
|
blockFileAccessToN8nFiles: boolean;
|
|
3011
|
+
postMessageAllowedOrigins: string[];
|
|
3006
3012
|
};
|
|
3007
3013
|
chatTrigger?: {
|
|
3008
3014
|
disablePublicChat: boolean;
|
|
@@ -3018,7 +3024,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3018
3024
|
canvasOnly: boolean;
|
|
3019
3025
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3020
3026
|
}>;
|
|
3021
|
-
userManagement:
|
|
3027
|
+
userManagement: vue62.Ref<{
|
|
3022
3028
|
quota: number;
|
|
3023
3029
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3024
3030
|
smtpSetup: boolean;
|
|
@@ -3031,8 +3037,8 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3031
3037
|
authenticationMethod: AuthenticationMethod;
|
|
3032
3038
|
passwordMinLength: number;
|
|
3033
3039
|
}>;
|
|
3034
|
-
templatesEndpointHealthy:
|
|
3035
|
-
api:
|
|
3040
|
+
templatesEndpointHealthy: vue62.Ref<boolean, boolean>;
|
|
3041
|
+
api: vue62.Ref<{
|
|
3036
3042
|
enabled: boolean;
|
|
3037
3043
|
latestVersion: number;
|
|
3038
3044
|
path: string;
|
|
@@ -3054,17 +3060,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3054
3060
|
enabled: boolean;
|
|
3055
3061
|
};
|
|
3056
3062
|
}>;
|
|
3057
|
-
mfa:
|
|
3063
|
+
mfa: vue62.Ref<{
|
|
3058
3064
|
enabled: boolean;
|
|
3059
3065
|
}, {
|
|
3060
3066
|
enabled: boolean;
|
|
3061
3067
|
} | {
|
|
3062
3068
|
enabled: boolean;
|
|
3063
3069
|
}>;
|
|
3064
|
-
isDocker:
|
|
3065
|
-
isDevRelease:
|
|
3066
|
-
endpointHealth:
|
|
3067
|
-
isEnterpriseFeatureEnabled:
|
|
3070
|
+
isDocker: vue62.ComputedRef<boolean>;
|
|
3071
|
+
isDevRelease: vue62.ComputedRef<boolean>;
|
|
3072
|
+
endpointHealth: vue62.ComputedRef<string>;
|
|
3073
|
+
isEnterpriseFeatureEnabled: vue62.ComputedRef<{
|
|
3068
3074
|
sharing: boolean;
|
|
3069
3075
|
ldap: boolean;
|
|
3070
3076
|
saml: boolean;
|
|
@@ -3095,36 +3101,36 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3095
3101
|
otelCustomSpanAttributes: boolean;
|
|
3096
3102
|
workflowReviews: boolean;
|
|
3097
3103
|
}>;
|
|
3098
|
-
databaseType:
|
|
3099
|
-
planName:
|
|
3100
|
-
consumerId:
|
|
3101
|
-
binaryDataMode:
|
|
3102
|
-
pruning:
|
|
3104
|
+
databaseType: vue62.ComputedRef<"sqlite" | "postgresdb">;
|
|
3105
|
+
planName: vue62.ComputedRef<string>;
|
|
3106
|
+
consumerId: vue62.ComputedRef<string>;
|
|
3107
|
+
binaryDataMode: vue62.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3108
|
+
pruning: vue62.ComputedRef<{
|
|
3103
3109
|
isEnabled: boolean;
|
|
3104
3110
|
maxAge: number;
|
|
3105
3111
|
maxCount: number;
|
|
3106
3112
|
} | undefined>;
|
|
3107
|
-
security:
|
|
3113
|
+
security: vue62.ComputedRef<{
|
|
3108
3114
|
blockFileAccessToN8nFiles: boolean;
|
|
3109
3115
|
secureCookie: boolean;
|
|
3110
3116
|
}>;
|
|
3111
|
-
nodeJsVersion:
|
|
3112
|
-
nodeEnv:
|
|
3113
|
-
concurrency:
|
|
3114
|
-
isConcurrencyEnabled:
|
|
3115
|
-
isPublicApiEnabled:
|
|
3116
|
-
isSwaggerUIEnabled:
|
|
3117
|
-
isPreviewMode:
|
|
3118
|
-
isCanvasOnly:
|
|
3119
|
-
isCrdtCollaborationEnabled:
|
|
3120
|
-
publicApiLatestVersion:
|
|
3121
|
-
publicApiPath:
|
|
3122
|
-
showSetupPage:
|
|
3123
|
-
deploymentType:
|
|
3124
|
-
isCloudDeployment:
|
|
3125
|
-
isSmtpSetup:
|
|
3126
|
-
isPersonalizationSurveyEnabled:
|
|
3127
|
-
telemetry:
|
|
3117
|
+
nodeJsVersion: vue62.ComputedRef<string>;
|
|
3118
|
+
nodeEnv: vue62.ComputedRef<string | undefined>;
|
|
3119
|
+
concurrency: vue62.ComputedRef<number>;
|
|
3120
|
+
isConcurrencyEnabled: vue62.ComputedRef<boolean>;
|
|
3121
|
+
isPublicApiEnabled: vue62.ComputedRef<boolean>;
|
|
3122
|
+
isSwaggerUIEnabled: vue62.ComputedRef<boolean>;
|
|
3123
|
+
isPreviewMode: vue62.ComputedRef<boolean>;
|
|
3124
|
+
isCanvasOnly: vue62.ComputedRef<boolean>;
|
|
3125
|
+
isCrdtCollaborationEnabled: vue62.ComputedRef<boolean>;
|
|
3126
|
+
publicApiLatestVersion: vue62.ComputedRef<number>;
|
|
3127
|
+
publicApiPath: vue62.ComputedRef<string>;
|
|
3128
|
+
showSetupPage: vue62.ComputedRef<boolean | undefined>;
|
|
3129
|
+
deploymentType: vue62.ComputedRef<string>;
|
|
3130
|
+
isCloudDeployment: vue62.ComputedRef<boolean>;
|
|
3131
|
+
isSmtpSetup: vue62.ComputedRef<boolean>;
|
|
3132
|
+
isPersonalizationSurveyEnabled: vue62.ComputedRef<boolean>;
|
|
3133
|
+
telemetry: vue62.ComputedRef<{
|
|
3128
3134
|
enabled: boolean;
|
|
3129
3135
|
config?: {
|
|
3130
3136
|
url: string;
|
|
@@ -3133,43 +3139,43 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3133
3139
|
sourceConfig: string;
|
|
3134
3140
|
} | undefined;
|
|
3135
3141
|
}>;
|
|
3136
|
-
logLevel:
|
|
3137
|
-
isTelemetryEnabled:
|
|
3138
|
-
isMfaFeatureEnabled:
|
|
3139
|
-
isFoldersFeatureEnabled:
|
|
3140
|
-
isAiAssistantEnabled:
|
|
3141
|
-
isCustomRolesFeatureEnabled:
|
|
3142
|
-
areTagsEnabled:
|
|
3143
|
-
isAutosaveEnabled:
|
|
3144
|
-
isHiringBannerEnabled:
|
|
3145
|
-
isTemplatesEnabled:
|
|
3146
|
-
isTemplatesEndpointReachable:
|
|
3147
|
-
templatesHost:
|
|
3148
|
-
pushBackend:
|
|
3149
|
-
isCommunityNodesFeatureEnabled:
|
|
3150
|
-
isUnverifiedPackagesEnabled:
|
|
3151
|
-
allowedModules:
|
|
3142
|
+
logLevel: vue62.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3143
|
+
isTelemetryEnabled: vue62.ComputedRef<boolean>;
|
|
3144
|
+
isMfaFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3145
|
+
isFoldersFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3146
|
+
isAiAssistantEnabled: vue62.ComputedRef<boolean>;
|
|
3147
|
+
isCustomRolesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3148
|
+
areTagsEnabled: vue62.ComputedRef<boolean>;
|
|
3149
|
+
isAutosaveEnabled: vue62.ComputedRef<boolean>;
|
|
3150
|
+
isHiringBannerEnabled: vue62.ComputedRef<boolean>;
|
|
3151
|
+
isTemplatesEnabled: vue62.ComputedRef<boolean>;
|
|
3152
|
+
isTemplatesEndpointReachable: vue62.ComputedRef<boolean>;
|
|
3153
|
+
templatesHost: vue62.ComputedRef<string>;
|
|
3154
|
+
pushBackend: vue62.ComputedRef<"sse" | "websocket">;
|
|
3155
|
+
isCommunityNodesFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3156
|
+
isUnverifiedPackagesEnabled: vue62.ComputedRef<boolean>;
|
|
3157
|
+
allowedModules: vue62.ComputedRef<{
|
|
3152
3158
|
builtIn?: string[] | undefined;
|
|
3153
3159
|
external?: string[] | undefined;
|
|
3154
3160
|
}>;
|
|
3155
|
-
isQueueModeEnabled:
|
|
3156
|
-
isMultiMain:
|
|
3157
|
-
isWorkerViewAvailable:
|
|
3158
|
-
workflowCallerPolicyDefaultOption:
|
|
3159
|
-
permanentlyDismissedBanners:
|
|
3160
|
-
saveDataErrorExecution:
|
|
3161
|
-
saveDataSuccessExecution:
|
|
3162
|
-
saveManualExecutions:
|
|
3163
|
-
saveDataProgressExecution:
|
|
3164
|
-
isCommunityPlan:
|
|
3165
|
-
isAskAiEnabled:
|
|
3166
|
-
isAiBuilderEnabled:
|
|
3167
|
-
isAiAssistantOrBuilderEnabled:
|
|
3168
|
-
isAiCreditsEnabled:
|
|
3169
|
-
aiCreditsQuota:
|
|
3170
|
-
isAiDataSharingEnabled:
|
|
3171
|
-
isAiGatewayEnabled:
|
|
3172
|
-
aiGatewayBudget:
|
|
3161
|
+
isQueueModeEnabled: vue62.ComputedRef<boolean>;
|
|
3162
|
+
isMultiMain: vue62.ComputedRef<boolean>;
|
|
3163
|
+
isWorkerViewAvailable: vue62.ComputedRef<boolean>;
|
|
3164
|
+
workflowCallerPolicyDefaultOption: vue62.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3165
|
+
permanentlyDismissedBanners: vue62.ComputedRef<string[]>;
|
|
3166
|
+
saveDataErrorExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3167
|
+
saveDataSuccessExecution: vue62.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3168
|
+
saveManualExecutions: vue62.Ref<boolean, boolean>;
|
|
3169
|
+
saveDataProgressExecution: vue62.Ref<boolean, boolean>;
|
|
3170
|
+
isCommunityPlan: vue62.ComputedRef<boolean>;
|
|
3171
|
+
isAskAiEnabled: vue62.ComputedRef<boolean>;
|
|
3172
|
+
isAiBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
3173
|
+
isAiAssistantOrBuilderEnabled: vue62.ComputedRef<boolean>;
|
|
3174
|
+
isAiCreditsEnabled: vue62.ComputedRef<boolean>;
|
|
3175
|
+
aiCreditsQuota: vue62.ComputedRef<number>;
|
|
3176
|
+
isAiDataSharingEnabled: vue62.ComputedRef<boolean>;
|
|
3177
|
+
isAiGatewayEnabled: vue62.ComputedRef<boolean>;
|
|
3178
|
+
aiGatewayBudget: vue62.ComputedRef<number>;
|
|
3173
3179
|
reset: () => void;
|
|
3174
3180
|
getTimezones: () => Promise<IDataObject>;
|
|
3175
3181
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3180,7 +3186,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3180
3186
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3181
3187
|
initialize: () => Promise<void>;
|
|
3182
3188
|
getModuleSettings: () => Promise<void>;
|
|
3183
|
-
moduleSettings:
|
|
3189
|
+
moduleSettings: vue62.Ref<{
|
|
3184
3190
|
insights?: {
|
|
3185
3191
|
summary: boolean;
|
|
3186
3192
|
dashboard: boolean;
|
|
@@ -3448,9 +3454,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3448
3454
|
} | undefined;
|
|
3449
3455
|
config?: never | undefined;
|
|
3450
3456
|
} | {
|
|
3457
|
+
text: string;
|
|
3451
3458
|
packageName: string;
|
|
3452
3459
|
credentialType: string;
|
|
3453
|
-
text: string;
|
|
3454
3460
|
quickConnectType: "pinecone";
|
|
3455
3461
|
consentText?: string | undefined;
|
|
3456
3462
|
consentCheckbox?: string | undefined;
|
|
@@ -3746,9 +3752,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3746
3752
|
} | undefined;
|
|
3747
3753
|
config?: never | undefined;
|
|
3748
3754
|
} | {
|
|
3755
|
+
text: string;
|
|
3749
3756
|
packageName: string;
|
|
3750
3757
|
credentialType: string;
|
|
3751
|
-
text: string;
|
|
3752
3758
|
quickConnectType: "pinecone";
|
|
3753
3759
|
consentText?: string | undefined;
|
|
3754
3760
|
consentCheckbox?: string | undefined;
|
|
@@ -3778,17 +3784,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3778
3784
|
} | undefined;
|
|
3779
3785
|
}>;
|
|
3780
3786
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3781
|
-
isMFAEnforcementLicensed:
|
|
3782
|
-
isMFAEnforced:
|
|
3783
|
-
activeModules:
|
|
3787
|
+
isMFAEnforcementLicensed: vue62.ComputedRef<boolean>;
|
|
3788
|
+
isMFAEnforced: vue62.Ref<boolean, boolean>;
|
|
3789
|
+
activeModules: vue62.ComputedRef<string[]>;
|
|
3784
3790
|
isModuleActive: (moduleName: string) => boolean;
|
|
3785
3791
|
isAgentModuleActive: (name: string) => boolean;
|
|
3786
|
-
isDataTableFeatureEnabled:
|
|
3787
|
-
isChatFeatureEnabled:
|
|
3788
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3789
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3790
|
-
isPublicChatTriggerDisabled:
|
|
3791
|
-
isWorkflowPublicationServiceEnabled:
|
|
3792
|
+
isDataTableFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3793
|
+
isChatFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3794
|
+
isOtelCustomSpanAttributesEnabled: vue62.ComputedRef<boolean>;
|
|
3795
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue62.ComputedRef<boolean>;
|
|
3796
|
+
isPublicChatTriggerDisabled: vue62.ComputedRef<boolean>;
|
|
3797
|
+
isWorkflowPublicationServiceEnabled: vue62.ComputedRef<boolean>;
|
|
3792
3798
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3793
3799
|
//#endregion
|
|
3794
3800
|
export { useSettingsStore };
|