@n8n/stores 2.36.2 → 2.36.3
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/notifications.store.d.mts +2 -2
- package/dist/rbac.store.d.cts +105 -105
- package/dist/rbac.store.d.mts +105 -105
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +8 -8
- package/dist/settings.store.d.mts +243 -243
- package/dist/useAgentRequestStore.d.cts +2 -2
- package/dist/useAgentRequestStore.d.mts +2 -2
- package/dist/useRootStore.d.cts +75 -75
- package/dist/useRootStore.d.mts +75 -75
- package/dist/users.store.d.cts +52 -52
- package/dist/users.store.d.mts +52 -52
- package/dist/versions.store.d.cts +30 -30
- package/dist/versions.store.d.mts +30 -30
- package/package.json +7 -7
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia1 from "pinia";
|
|
2
|
+
import * as vue32 from "vue";
|
|
3
3
|
import * as _n8n_api_types0 from "@n8n/api-types";
|
|
4
4
|
import { AuthenticationMethod, FrontendModuleSettings, FrontendSettings, IUserManagementSettings, WorkflowReviewsPolicy } from "@n8n/api-types";
|
|
5
5
|
import * as n8n_workflow0 from "n8n-workflow";
|
|
6
6
|
import { IDataObject, WorkflowSettings } from "n8n-workflow";
|
|
7
7
|
|
|
8
8
|
//#region src/settings.store.d.ts
|
|
9
|
-
declare const useSettingsStore:
|
|
10
|
-
settings:
|
|
9
|
+
declare const useSettingsStore: pinia1.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue32.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -500,7 +500,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
500
500
|
canvasOnly: boolean;
|
|
501
501
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
502
502
|
}>;
|
|
503
|
-
userManagement:
|
|
503
|
+
userManagement: vue32.Ref<{
|
|
504
504
|
quota: number;
|
|
505
505
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
506
506
|
smtpSetup: boolean;
|
|
@@ -513,8 +513,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
513
513
|
authenticationMethod: AuthenticationMethod;
|
|
514
514
|
passwordMinLength: number;
|
|
515
515
|
}>;
|
|
516
|
-
templatesEndpointHealthy:
|
|
517
|
-
api:
|
|
516
|
+
templatesEndpointHealthy: vue32.Ref<boolean, boolean>;
|
|
517
|
+
api: vue32.Ref<{
|
|
518
518
|
enabled: boolean;
|
|
519
519
|
latestVersion: number;
|
|
520
520
|
path: string;
|
|
@@ -536,17 +536,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
536
536
|
enabled: boolean;
|
|
537
537
|
};
|
|
538
538
|
}>;
|
|
539
|
-
mfa:
|
|
539
|
+
mfa: vue32.Ref<{
|
|
540
540
|
enabled: boolean;
|
|
541
541
|
}, {
|
|
542
542
|
enabled: boolean;
|
|
543
543
|
} | {
|
|
544
544
|
enabled: boolean;
|
|
545
545
|
}>;
|
|
546
|
-
isDocker:
|
|
547
|
-
isDevRelease:
|
|
548
|
-
endpointHealth:
|
|
549
|
-
isEnterpriseFeatureEnabled:
|
|
546
|
+
isDocker: vue32.ComputedRef<boolean>;
|
|
547
|
+
isDevRelease: vue32.ComputedRef<boolean>;
|
|
548
|
+
endpointHealth: vue32.ComputedRef<string>;
|
|
549
|
+
isEnterpriseFeatureEnabled: vue32.ComputedRef<{
|
|
550
550
|
sharing: boolean;
|
|
551
551
|
ldap: boolean;
|
|
552
552
|
saml: boolean;
|
|
@@ -577,37 +577,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
577
577
|
otelCustomSpanAttributes: boolean;
|
|
578
578
|
workflowReviews: boolean;
|
|
579
579
|
}>;
|
|
580
|
-
databaseType:
|
|
581
|
-
planName:
|
|
582
|
-
consumerId:
|
|
583
|
-
binaryDataMode:
|
|
584
|
-
pruning:
|
|
580
|
+
databaseType: vue32.ComputedRef<"sqlite" | "postgresdb">;
|
|
581
|
+
planName: vue32.ComputedRef<string>;
|
|
582
|
+
consumerId: vue32.ComputedRef<string>;
|
|
583
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
584
|
+
pruning: vue32.ComputedRef<{
|
|
585
585
|
isEnabled: boolean;
|
|
586
586
|
maxAge: number;
|
|
587
587
|
maxCount: number;
|
|
588
588
|
} | undefined>;
|
|
589
|
-
security:
|
|
589
|
+
security: vue32.ComputedRef<{
|
|
590
590
|
blockFileAccessToN8nFiles: boolean;
|
|
591
591
|
secureCookie: boolean;
|
|
592
592
|
}>;
|
|
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:
|
|
593
|
+
nodeJsVersion: vue32.ComputedRef<string>;
|
|
594
|
+
nodeEnv: vue32.ComputedRef<string | undefined>;
|
|
595
|
+
concurrency: vue32.ComputedRef<number>;
|
|
596
|
+
isConcurrencyEnabled: vue32.ComputedRef<boolean>;
|
|
597
|
+
isPublicApiEnabled: vue32.ComputedRef<boolean>;
|
|
598
|
+
isSwaggerUIEnabled: vue32.ComputedRef<boolean>;
|
|
599
|
+
isPreviewMode: vue32.ComputedRef<boolean>;
|
|
600
|
+
isE2ETestMode: vue32.ComputedRef<boolean>;
|
|
601
|
+
isCanvasOnly: vue32.ComputedRef<boolean>;
|
|
602
|
+
isCrdtCollaborationEnabled: vue32.ComputedRef<boolean>;
|
|
603
|
+
publicApiLatestVersion: vue32.ComputedRef<number>;
|
|
604
|
+
publicApiPath: vue32.ComputedRef<string>;
|
|
605
|
+
showSetupPage: vue32.ComputedRef<boolean | undefined>;
|
|
606
|
+
deploymentType: vue32.ComputedRef<string>;
|
|
607
|
+
isCloudDeployment: vue32.ComputedRef<boolean>;
|
|
608
|
+
isSmtpSetup: vue32.ComputedRef<boolean>;
|
|
609
|
+
isPersonalizationSurveyEnabled: vue32.ComputedRef<boolean>;
|
|
610
|
+
telemetry: vue32.ComputedRef<{
|
|
611
611
|
enabled: boolean;
|
|
612
612
|
config?: {
|
|
613
613
|
url: string;
|
|
@@ -616,44 +616,44 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
616
616
|
sourceConfig: string;
|
|
617
617
|
} | undefined;
|
|
618
618
|
}>;
|
|
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:
|
|
619
|
+
logLevel: vue32.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
620
|
+
isTelemetryEnabled: vue32.ComputedRef<boolean>;
|
|
621
|
+
isMfaFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
622
|
+
isFoldersFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
623
|
+
isAiAssistantEnabled: vue32.ComputedRef<boolean>;
|
|
624
|
+
isCustomRolesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
625
|
+
areTagsEnabled: vue32.ComputedRef<boolean>;
|
|
626
|
+
isAutosaveEnabled: vue32.ComputedRef<boolean>;
|
|
627
|
+
isHiringBannerEnabled: vue32.ComputedRef<boolean>;
|
|
628
|
+
isTemplatesEnabled: vue32.ComputedRef<boolean>;
|
|
629
|
+
isTemplatesEndpointReachable: vue32.ComputedRef<boolean>;
|
|
630
|
+
templatesHost: vue32.ComputedRef<string>;
|
|
631
|
+
pushBackend: vue32.ComputedRef<"sse" | "websocket">;
|
|
632
|
+
isCommunityNodesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
633
|
+
isUnverifiedPackagesEnabled: vue32.ComputedRef<boolean>;
|
|
634
|
+
allowedModules: vue32.ComputedRef<{
|
|
635
635
|
builtIn?: string[] | undefined;
|
|
636
636
|
external?: string[] | undefined;
|
|
637
637
|
}>;
|
|
638
|
-
isQueueModeEnabled:
|
|
639
|
-
isMultiMain:
|
|
640
|
-
isWorkerViewAvailable:
|
|
641
|
-
workflowCallerPolicyDefaultOption:
|
|
642
|
-
permanentlyDismissedBanners:
|
|
643
|
-
saveDataErrorExecution:
|
|
644
|
-
saveDataSuccessExecution:
|
|
645
|
-
saveManualExecutions:
|
|
646
|
-
saveDataProgressExecution:
|
|
647
|
-
isCommunityPlan:
|
|
648
|
-
isAskAiEnabled:
|
|
649
|
-
isAiBuilderEnabled:
|
|
650
|
-
isAiAssistantOrBuilderEnabled:
|
|
651
|
-
isAiCreditsEnabled:
|
|
652
|
-
aiCreditsQuota:
|
|
653
|
-
isAiDataSharingEnabled:
|
|
654
|
-
isAiGatewayEnabled:
|
|
655
|
-
isAiGatewayCloudUbbEnabled:
|
|
656
|
-
aiGatewayBudget:
|
|
638
|
+
isQueueModeEnabled: vue32.ComputedRef<boolean>;
|
|
639
|
+
isMultiMain: vue32.ComputedRef<boolean>;
|
|
640
|
+
isWorkerViewAvailable: vue32.ComputedRef<boolean>;
|
|
641
|
+
workflowCallerPolicyDefaultOption: vue32.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
642
|
+
permanentlyDismissedBanners: vue32.ComputedRef<string[]>;
|
|
643
|
+
saveDataErrorExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
644
|
+
saveDataSuccessExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
645
|
+
saveManualExecutions: vue32.Ref<boolean, boolean>;
|
|
646
|
+
saveDataProgressExecution: vue32.Ref<boolean, boolean>;
|
|
647
|
+
isCommunityPlan: vue32.ComputedRef<boolean>;
|
|
648
|
+
isAskAiEnabled: vue32.ComputedRef<boolean>;
|
|
649
|
+
isAiBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
650
|
+
isAiAssistantOrBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
651
|
+
isAiCreditsEnabled: vue32.ComputedRef<boolean>;
|
|
652
|
+
aiCreditsQuota: vue32.ComputedRef<number>;
|
|
653
|
+
isAiDataSharingEnabled: vue32.ComputedRef<boolean>;
|
|
654
|
+
isAiGatewayEnabled: vue32.ComputedRef<boolean>;
|
|
655
|
+
isAiGatewayCloudUbbEnabled: vue32.ComputedRef<boolean>;
|
|
656
|
+
aiGatewayBudget: vue32.ComputedRef<number>;
|
|
657
657
|
reset: () => void;
|
|
658
658
|
getTimezones: () => Promise<IDataObject>;
|
|
659
659
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -664,7 +664,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
664
664
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
665
665
|
initialize: () => Promise<void>;
|
|
666
666
|
getModuleSettings: () => Promise<void>;
|
|
667
|
-
moduleSettings:
|
|
667
|
+
moduleSettings: vue32.Ref<{
|
|
668
668
|
insights?: {
|
|
669
669
|
summary: boolean;
|
|
670
670
|
dashboard: boolean;
|
|
@@ -935,9 +935,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
935
935
|
} | undefined;
|
|
936
936
|
config?: never | undefined;
|
|
937
937
|
} | {
|
|
938
|
-
text: string;
|
|
939
938
|
packageName: string;
|
|
940
939
|
credentialType: string;
|
|
940
|
+
text: string;
|
|
941
941
|
quickConnectType: "pinecone";
|
|
942
942
|
consentText?: string | undefined;
|
|
943
943
|
consentCheckbox?: string | undefined;
|
|
@@ -1236,9 +1236,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1236
1236
|
} | undefined;
|
|
1237
1237
|
config?: never | undefined;
|
|
1238
1238
|
} | {
|
|
1239
|
-
text: string;
|
|
1240
1239
|
packageName: string;
|
|
1241
1240
|
credentialType: string;
|
|
1241
|
+
text: string;
|
|
1242
1242
|
quickConnectType: "pinecone";
|
|
1243
1243
|
consentText?: string | undefined;
|
|
1244
1244
|
consentCheckbox?: string | undefined;
|
|
@@ -1268,19 +1268,19 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1268
1268
|
} | undefined;
|
|
1269
1269
|
}>;
|
|
1270
1270
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1271
|
-
isMFAEnforcementLicensed:
|
|
1272
|
-
isMFAEnforced:
|
|
1273
|
-
activeModules:
|
|
1271
|
+
isMFAEnforcementLicensed: vue32.ComputedRef<boolean>;
|
|
1272
|
+
isMFAEnforced: vue32.Ref<boolean, boolean>;
|
|
1273
|
+
activeModules: vue32.ComputedRef<string[]>;
|
|
1274
1274
|
isModuleActive: (moduleName: string) => boolean;
|
|
1275
1275
|
isAgentModuleActive: (name: string) => boolean;
|
|
1276
|
-
isDataTableFeatureEnabled:
|
|
1277
|
-
isChatFeatureEnabled:
|
|
1278
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1279
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1280
|
-
isPublicChatTriggerDisabled:
|
|
1281
|
-
isWorkflowPublicationServiceEnabled:
|
|
1276
|
+
isDataTableFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1277
|
+
isChatFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1278
|
+
isOtelCustomSpanAttributesEnabled: vue32.ComputedRef<boolean>;
|
|
1279
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1280
|
+
isPublicChatTriggerDisabled: vue32.ComputedRef<boolean>;
|
|
1281
|
+
isWorkflowPublicationServiceEnabled: vue32.ComputedRef<boolean>;
|
|
1282
1282
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1283
|
-
settings:
|
|
1283
|
+
settings: vue32.Ref<{
|
|
1284
1284
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1285
1285
|
inE2ETests: boolean;
|
|
1286
1286
|
isDocker: boolean;
|
|
@@ -1773,7 +1773,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1773
1773
|
canvasOnly: boolean;
|
|
1774
1774
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1775
1775
|
}>;
|
|
1776
|
-
userManagement:
|
|
1776
|
+
userManagement: vue32.Ref<{
|
|
1777
1777
|
quota: number;
|
|
1778
1778
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1779
1779
|
smtpSetup: boolean;
|
|
@@ -1786,8 +1786,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1786
1786
|
authenticationMethod: AuthenticationMethod;
|
|
1787
1787
|
passwordMinLength: number;
|
|
1788
1788
|
}>;
|
|
1789
|
-
templatesEndpointHealthy:
|
|
1790
|
-
api:
|
|
1789
|
+
templatesEndpointHealthy: vue32.Ref<boolean, boolean>;
|
|
1790
|
+
api: vue32.Ref<{
|
|
1791
1791
|
enabled: boolean;
|
|
1792
1792
|
latestVersion: number;
|
|
1793
1793
|
path: string;
|
|
@@ -1809,17 +1809,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1809
1809
|
enabled: boolean;
|
|
1810
1810
|
};
|
|
1811
1811
|
}>;
|
|
1812
|
-
mfa:
|
|
1812
|
+
mfa: vue32.Ref<{
|
|
1813
1813
|
enabled: boolean;
|
|
1814
1814
|
}, {
|
|
1815
1815
|
enabled: boolean;
|
|
1816
1816
|
} | {
|
|
1817
1817
|
enabled: boolean;
|
|
1818
1818
|
}>;
|
|
1819
|
-
isDocker:
|
|
1820
|
-
isDevRelease:
|
|
1821
|
-
endpointHealth:
|
|
1822
|
-
isEnterpriseFeatureEnabled:
|
|
1819
|
+
isDocker: vue32.ComputedRef<boolean>;
|
|
1820
|
+
isDevRelease: vue32.ComputedRef<boolean>;
|
|
1821
|
+
endpointHealth: vue32.ComputedRef<string>;
|
|
1822
|
+
isEnterpriseFeatureEnabled: vue32.ComputedRef<{
|
|
1823
1823
|
sharing: boolean;
|
|
1824
1824
|
ldap: boolean;
|
|
1825
1825
|
saml: boolean;
|
|
@@ -1850,37 +1850,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1850
1850
|
otelCustomSpanAttributes: boolean;
|
|
1851
1851
|
workflowReviews: boolean;
|
|
1852
1852
|
}>;
|
|
1853
|
-
databaseType:
|
|
1854
|
-
planName:
|
|
1855
|
-
consumerId:
|
|
1856
|
-
binaryDataMode:
|
|
1857
|
-
pruning:
|
|
1853
|
+
databaseType: vue32.ComputedRef<"sqlite" | "postgresdb">;
|
|
1854
|
+
planName: vue32.ComputedRef<string>;
|
|
1855
|
+
consumerId: vue32.ComputedRef<string>;
|
|
1856
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1857
|
+
pruning: vue32.ComputedRef<{
|
|
1858
1858
|
isEnabled: boolean;
|
|
1859
1859
|
maxAge: number;
|
|
1860
1860
|
maxCount: number;
|
|
1861
1861
|
} | undefined>;
|
|
1862
|
-
security:
|
|
1862
|
+
security: vue32.ComputedRef<{
|
|
1863
1863
|
blockFileAccessToN8nFiles: boolean;
|
|
1864
1864
|
secureCookie: boolean;
|
|
1865
1865
|
}>;
|
|
1866
|
-
nodeJsVersion:
|
|
1867
|
-
nodeEnv:
|
|
1868
|
-
concurrency:
|
|
1869
|
-
isConcurrencyEnabled:
|
|
1870
|
-
isPublicApiEnabled:
|
|
1871
|
-
isSwaggerUIEnabled:
|
|
1872
|
-
isPreviewMode:
|
|
1873
|
-
isE2ETestMode:
|
|
1874
|
-
isCanvasOnly:
|
|
1875
|
-
isCrdtCollaborationEnabled:
|
|
1876
|
-
publicApiLatestVersion:
|
|
1877
|
-
publicApiPath:
|
|
1878
|
-
showSetupPage:
|
|
1879
|
-
deploymentType:
|
|
1880
|
-
isCloudDeployment:
|
|
1881
|
-
isSmtpSetup:
|
|
1882
|
-
isPersonalizationSurveyEnabled:
|
|
1883
|
-
telemetry:
|
|
1866
|
+
nodeJsVersion: vue32.ComputedRef<string>;
|
|
1867
|
+
nodeEnv: vue32.ComputedRef<string | undefined>;
|
|
1868
|
+
concurrency: vue32.ComputedRef<number>;
|
|
1869
|
+
isConcurrencyEnabled: vue32.ComputedRef<boolean>;
|
|
1870
|
+
isPublicApiEnabled: vue32.ComputedRef<boolean>;
|
|
1871
|
+
isSwaggerUIEnabled: vue32.ComputedRef<boolean>;
|
|
1872
|
+
isPreviewMode: vue32.ComputedRef<boolean>;
|
|
1873
|
+
isE2ETestMode: vue32.ComputedRef<boolean>;
|
|
1874
|
+
isCanvasOnly: vue32.ComputedRef<boolean>;
|
|
1875
|
+
isCrdtCollaborationEnabled: vue32.ComputedRef<boolean>;
|
|
1876
|
+
publicApiLatestVersion: vue32.ComputedRef<number>;
|
|
1877
|
+
publicApiPath: vue32.ComputedRef<string>;
|
|
1878
|
+
showSetupPage: vue32.ComputedRef<boolean | undefined>;
|
|
1879
|
+
deploymentType: vue32.ComputedRef<string>;
|
|
1880
|
+
isCloudDeployment: vue32.ComputedRef<boolean>;
|
|
1881
|
+
isSmtpSetup: vue32.ComputedRef<boolean>;
|
|
1882
|
+
isPersonalizationSurveyEnabled: vue32.ComputedRef<boolean>;
|
|
1883
|
+
telemetry: vue32.ComputedRef<{
|
|
1884
1884
|
enabled: boolean;
|
|
1885
1885
|
config?: {
|
|
1886
1886
|
url: string;
|
|
@@ -1889,44 +1889,44 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1889
1889
|
sourceConfig: string;
|
|
1890
1890
|
} | undefined;
|
|
1891
1891
|
}>;
|
|
1892
|
-
logLevel:
|
|
1893
|
-
isTelemetryEnabled:
|
|
1894
|
-
isMfaFeatureEnabled:
|
|
1895
|
-
isFoldersFeatureEnabled:
|
|
1896
|
-
isAiAssistantEnabled:
|
|
1897
|
-
isCustomRolesFeatureEnabled:
|
|
1898
|
-
areTagsEnabled:
|
|
1899
|
-
isAutosaveEnabled:
|
|
1900
|
-
isHiringBannerEnabled:
|
|
1901
|
-
isTemplatesEnabled:
|
|
1902
|
-
isTemplatesEndpointReachable:
|
|
1903
|
-
templatesHost:
|
|
1904
|
-
pushBackend:
|
|
1905
|
-
isCommunityNodesFeatureEnabled:
|
|
1906
|
-
isUnverifiedPackagesEnabled:
|
|
1907
|
-
allowedModules:
|
|
1892
|
+
logLevel: vue32.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1893
|
+
isTelemetryEnabled: vue32.ComputedRef<boolean>;
|
|
1894
|
+
isMfaFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1895
|
+
isFoldersFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1896
|
+
isAiAssistantEnabled: vue32.ComputedRef<boolean>;
|
|
1897
|
+
isCustomRolesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1898
|
+
areTagsEnabled: vue32.ComputedRef<boolean>;
|
|
1899
|
+
isAutosaveEnabled: vue32.ComputedRef<boolean>;
|
|
1900
|
+
isHiringBannerEnabled: vue32.ComputedRef<boolean>;
|
|
1901
|
+
isTemplatesEnabled: vue32.ComputedRef<boolean>;
|
|
1902
|
+
isTemplatesEndpointReachable: vue32.ComputedRef<boolean>;
|
|
1903
|
+
templatesHost: vue32.ComputedRef<string>;
|
|
1904
|
+
pushBackend: vue32.ComputedRef<"sse" | "websocket">;
|
|
1905
|
+
isCommunityNodesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1906
|
+
isUnverifiedPackagesEnabled: vue32.ComputedRef<boolean>;
|
|
1907
|
+
allowedModules: vue32.ComputedRef<{
|
|
1908
1908
|
builtIn?: string[] | undefined;
|
|
1909
1909
|
external?: string[] | undefined;
|
|
1910
1910
|
}>;
|
|
1911
|
-
isQueueModeEnabled:
|
|
1912
|
-
isMultiMain:
|
|
1913
|
-
isWorkerViewAvailable:
|
|
1914
|
-
workflowCallerPolicyDefaultOption:
|
|
1915
|
-
permanentlyDismissedBanners:
|
|
1916
|
-
saveDataErrorExecution:
|
|
1917
|
-
saveDataSuccessExecution:
|
|
1918
|
-
saveManualExecutions:
|
|
1919
|
-
saveDataProgressExecution:
|
|
1920
|
-
isCommunityPlan:
|
|
1921
|
-
isAskAiEnabled:
|
|
1922
|
-
isAiBuilderEnabled:
|
|
1923
|
-
isAiAssistantOrBuilderEnabled:
|
|
1924
|
-
isAiCreditsEnabled:
|
|
1925
|
-
aiCreditsQuota:
|
|
1926
|
-
isAiDataSharingEnabled:
|
|
1927
|
-
isAiGatewayEnabled:
|
|
1928
|
-
isAiGatewayCloudUbbEnabled:
|
|
1929
|
-
aiGatewayBudget:
|
|
1911
|
+
isQueueModeEnabled: vue32.ComputedRef<boolean>;
|
|
1912
|
+
isMultiMain: vue32.ComputedRef<boolean>;
|
|
1913
|
+
isWorkerViewAvailable: vue32.ComputedRef<boolean>;
|
|
1914
|
+
workflowCallerPolicyDefaultOption: vue32.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1915
|
+
permanentlyDismissedBanners: vue32.ComputedRef<string[]>;
|
|
1916
|
+
saveDataErrorExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1917
|
+
saveDataSuccessExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1918
|
+
saveManualExecutions: vue32.Ref<boolean, boolean>;
|
|
1919
|
+
saveDataProgressExecution: vue32.Ref<boolean, boolean>;
|
|
1920
|
+
isCommunityPlan: vue32.ComputedRef<boolean>;
|
|
1921
|
+
isAskAiEnabled: vue32.ComputedRef<boolean>;
|
|
1922
|
+
isAiBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
1923
|
+
isAiAssistantOrBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
1924
|
+
isAiCreditsEnabled: vue32.ComputedRef<boolean>;
|
|
1925
|
+
aiCreditsQuota: vue32.ComputedRef<number>;
|
|
1926
|
+
isAiDataSharingEnabled: vue32.ComputedRef<boolean>;
|
|
1927
|
+
isAiGatewayEnabled: vue32.ComputedRef<boolean>;
|
|
1928
|
+
isAiGatewayCloudUbbEnabled: vue32.ComputedRef<boolean>;
|
|
1929
|
+
aiGatewayBudget: vue32.ComputedRef<number>;
|
|
1930
1930
|
reset: () => void;
|
|
1931
1931
|
getTimezones: () => Promise<IDataObject>;
|
|
1932
1932
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1937,7 +1937,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1937
1937
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1938
1938
|
initialize: () => Promise<void>;
|
|
1939
1939
|
getModuleSettings: () => Promise<void>;
|
|
1940
|
-
moduleSettings:
|
|
1940
|
+
moduleSettings: vue32.Ref<{
|
|
1941
1941
|
insights?: {
|
|
1942
1942
|
summary: boolean;
|
|
1943
1943
|
dashboard: boolean;
|
|
@@ -2208,9 +2208,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2208
2208
|
} | undefined;
|
|
2209
2209
|
config?: never | undefined;
|
|
2210
2210
|
} | {
|
|
2211
|
-
text: string;
|
|
2212
2211
|
packageName: string;
|
|
2213
2212
|
credentialType: string;
|
|
2213
|
+
text: string;
|
|
2214
2214
|
quickConnectType: "pinecone";
|
|
2215
2215
|
consentText?: string | undefined;
|
|
2216
2216
|
consentCheckbox?: string | undefined;
|
|
@@ -2509,9 +2509,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2509
2509
|
} | undefined;
|
|
2510
2510
|
config?: never | undefined;
|
|
2511
2511
|
} | {
|
|
2512
|
-
text: string;
|
|
2513
2512
|
packageName: string;
|
|
2514
2513
|
credentialType: string;
|
|
2514
|
+
text: string;
|
|
2515
2515
|
quickConnectType: "pinecone";
|
|
2516
2516
|
consentText?: string | undefined;
|
|
2517
2517
|
consentCheckbox?: string | undefined;
|
|
@@ -2541,19 +2541,19 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2541
2541
|
} | undefined;
|
|
2542
2542
|
}>;
|
|
2543
2543
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2544
|
-
isMFAEnforcementLicensed:
|
|
2545
|
-
isMFAEnforced:
|
|
2546
|
-
activeModules:
|
|
2544
|
+
isMFAEnforcementLicensed: vue32.ComputedRef<boolean>;
|
|
2545
|
+
isMFAEnforced: vue32.Ref<boolean, boolean>;
|
|
2546
|
+
activeModules: vue32.ComputedRef<string[]>;
|
|
2547
2547
|
isModuleActive: (moduleName: string) => boolean;
|
|
2548
2548
|
isAgentModuleActive: (name: string) => boolean;
|
|
2549
|
-
isDataTableFeatureEnabled:
|
|
2550
|
-
isChatFeatureEnabled:
|
|
2551
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2552
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2553
|
-
isPublicChatTriggerDisabled:
|
|
2554
|
-
isWorkflowPublicationServiceEnabled:
|
|
2549
|
+
isDataTableFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
2550
|
+
isChatFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
2551
|
+
isOtelCustomSpanAttributesEnabled: vue32.ComputedRef<boolean>;
|
|
2552
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
2553
|
+
isPublicChatTriggerDisabled: vue32.ComputedRef<boolean>;
|
|
2554
|
+
isWorkflowPublicationServiceEnabled: vue32.ComputedRef<boolean>;
|
|
2555
2555
|
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "isE2ETestMode" | "isCanvasOnly" | "isCrdtCollaborationEnabled" | "publicApiLatestVersion" | "publicApiPath" | "showSetupPage" | "deploymentType" | "isCloudDeployment" | "isSmtpSetup" | "isPersonalizationSurveyEnabled" | "isTelemetryEnabled" | "isMfaFeatureEnabled" | "isFoldersFeatureEnabled" | "isAiAssistantEnabled" | "isCustomRolesFeatureEnabled" | "areTagsEnabled" | "isAutosaveEnabled" | "isHiringBannerEnabled" | "isTemplatesEnabled" | "isTemplatesEndpointReachable" | "templatesHost" | "isCommunityNodesFeatureEnabled" | "isUnverifiedPackagesEnabled" | "isQueueModeEnabled" | "isWorkerViewAvailable" | "permanentlyDismissedBanners" | "isCommunityPlan" | "isAskAiEnabled" | "isAiBuilderEnabled" | "isAiAssistantOrBuilderEnabled" | "isAiCreditsEnabled" | "aiCreditsQuota" | "isAiDataSharingEnabled" | "isAiGatewayEnabled" | "isAiGatewayCloudUbbEnabled" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2556
|
-
settings:
|
|
2556
|
+
settings: vue32.Ref<{
|
|
2557
2557
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2558
2558
|
inE2ETests: boolean;
|
|
2559
2559
|
isDocker: boolean;
|
|
@@ -3046,7 +3046,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3046
3046
|
canvasOnly: boolean;
|
|
3047
3047
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3048
3048
|
}>;
|
|
3049
|
-
userManagement:
|
|
3049
|
+
userManagement: vue32.Ref<{
|
|
3050
3050
|
quota: number;
|
|
3051
3051
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3052
3052
|
smtpSetup: boolean;
|
|
@@ -3059,8 +3059,8 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3059
3059
|
authenticationMethod: AuthenticationMethod;
|
|
3060
3060
|
passwordMinLength: number;
|
|
3061
3061
|
}>;
|
|
3062
|
-
templatesEndpointHealthy:
|
|
3063
|
-
api:
|
|
3062
|
+
templatesEndpointHealthy: vue32.Ref<boolean, boolean>;
|
|
3063
|
+
api: vue32.Ref<{
|
|
3064
3064
|
enabled: boolean;
|
|
3065
3065
|
latestVersion: number;
|
|
3066
3066
|
path: string;
|
|
@@ -3082,17 +3082,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3082
3082
|
enabled: boolean;
|
|
3083
3083
|
};
|
|
3084
3084
|
}>;
|
|
3085
|
-
mfa:
|
|
3085
|
+
mfa: vue32.Ref<{
|
|
3086
3086
|
enabled: boolean;
|
|
3087
3087
|
}, {
|
|
3088
3088
|
enabled: boolean;
|
|
3089
3089
|
} | {
|
|
3090
3090
|
enabled: boolean;
|
|
3091
3091
|
}>;
|
|
3092
|
-
isDocker:
|
|
3093
|
-
isDevRelease:
|
|
3094
|
-
endpointHealth:
|
|
3095
|
-
isEnterpriseFeatureEnabled:
|
|
3092
|
+
isDocker: vue32.ComputedRef<boolean>;
|
|
3093
|
+
isDevRelease: vue32.ComputedRef<boolean>;
|
|
3094
|
+
endpointHealth: vue32.ComputedRef<string>;
|
|
3095
|
+
isEnterpriseFeatureEnabled: vue32.ComputedRef<{
|
|
3096
3096
|
sharing: boolean;
|
|
3097
3097
|
ldap: boolean;
|
|
3098
3098
|
saml: boolean;
|
|
@@ -3123,37 +3123,37 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3123
3123
|
otelCustomSpanAttributes: boolean;
|
|
3124
3124
|
workflowReviews: boolean;
|
|
3125
3125
|
}>;
|
|
3126
|
-
databaseType:
|
|
3127
|
-
planName:
|
|
3128
|
-
consumerId:
|
|
3129
|
-
binaryDataMode:
|
|
3130
|
-
pruning:
|
|
3126
|
+
databaseType: vue32.ComputedRef<"sqlite" | "postgresdb">;
|
|
3127
|
+
planName: vue32.ComputedRef<string>;
|
|
3128
|
+
consumerId: vue32.ComputedRef<string>;
|
|
3129
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3130
|
+
pruning: vue32.ComputedRef<{
|
|
3131
3131
|
isEnabled: boolean;
|
|
3132
3132
|
maxAge: number;
|
|
3133
3133
|
maxCount: number;
|
|
3134
3134
|
} | undefined>;
|
|
3135
|
-
security:
|
|
3135
|
+
security: vue32.ComputedRef<{
|
|
3136
3136
|
blockFileAccessToN8nFiles: boolean;
|
|
3137
3137
|
secureCookie: boolean;
|
|
3138
3138
|
}>;
|
|
3139
|
-
nodeJsVersion:
|
|
3140
|
-
nodeEnv:
|
|
3141
|
-
concurrency:
|
|
3142
|
-
isConcurrencyEnabled:
|
|
3143
|
-
isPublicApiEnabled:
|
|
3144
|
-
isSwaggerUIEnabled:
|
|
3145
|
-
isPreviewMode:
|
|
3146
|
-
isE2ETestMode:
|
|
3147
|
-
isCanvasOnly:
|
|
3148
|
-
isCrdtCollaborationEnabled:
|
|
3149
|
-
publicApiLatestVersion:
|
|
3150
|
-
publicApiPath:
|
|
3151
|
-
showSetupPage:
|
|
3152
|
-
deploymentType:
|
|
3153
|
-
isCloudDeployment:
|
|
3154
|
-
isSmtpSetup:
|
|
3155
|
-
isPersonalizationSurveyEnabled:
|
|
3156
|
-
telemetry:
|
|
3139
|
+
nodeJsVersion: vue32.ComputedRef<string>;
|
|
3140
|
+
nodeEnv: vue32.ComputedRef<string | undefined>;
|
|
3141
|
+
concurrency: vue32.ComputedRef<number>;
|
|
3142
|
+
isConcurrencyEnabled: vue32.ComputedRef<boolean>;
|
|
3143
|
+
isPublicApiEnabled: vue32.ComputedRef<boolean>;
|
|
3144
|
+
isSwaggerUIEnabled: vue32.ComputedRef<boolean>;
|
|
3145
|
+
isPreviewMode: vue32.ComputedRef<boolean>;
|
|
3146
|
+
isE2ETestMode: vue32.ComputedRef<boolean>;
|
|
3147
|
+
isCanvasOnly: vue32.ComputedRef<boolean>;
|
|
3148
|
+
isCrdtCollaborationEnabled: vue32.ComputedRef<boolean>;
|
|
3149
|
+
publicApiLatestVersion: vue32.ComputedRef<number>;
|
|
3150
|
+
publicApiPath: vue32.ComputedRef<string>;
|
|
3151
|
+
showSetupPage: vue32.ComputedRef<boolean | undefined>;
|
|
3152
|
+
deploymentType: vue32.ComputedRef<string>;
|
|
3153
|
+
isCloudDeployment: vue32.ComputedRef<boolean>;
|
|
3154
|
+
isSmtpSetup: vue32.ComputedRef<boolean>;
|
|
3155
|
+
isPersonalizationSurveyEnabled: vue32.ComputedRef<boolean>;
|
|
3156
|
+
telemetry: vue32.ComputedRef<{
|
|
3157
3157
|
enabled: boolean;
|
|
3158
3158
|
config?: {
|
|
3159
3159
|
url: string;
|
|
@@ -3162,44 +3162,44 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3162
3162
|
sourceConfig: string;
|
|
3163
3163
|
} | undefined;
|
|
3164
3164
|
}>;
|
|
3165
|
-
logLevel:
|
|
3166
|
-
isTelemetryEnabled:
|
|
3167
|
-
isMfaFeatureEnabled:
|
|
3168
|
-
isFoldersFeatureEnabled:
|
|
3169
|
-
isAiAssistantEnabled:
|
|
3170
|
-
isCustomRolesFeatureEnabled:
|
|
3171
|
-
areTagsEnabled:
|
|
3172
|
-
isAutosaveEnabled:
|
|
3173
|
-
isHiringBannerEnabled:
|
|
3174
|
-
isTemplatesEnabled:
|
|
3175
|
-
isTemplatesEndpointReachable:
|
|
3176
|
-
templatesHost:
|
|
3177
|
-
pushBackend:
|
|
3178
|
-
isCommunityNodesFeatureEnabled:
|
|
3179
|
-
isUnverifiedPackagesEnabled:
|
|
3180
|
-
allowedModules:
|
|
3165
|
+
logLevel: vue32.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3166
|
+
isTelemetryEnabled: vue32.ComputedRef<boolean>;
|
|
3167
|
+
isMfaFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3168
|
+
isFoldersFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3169
|
+
isAiAssistantEnabled: vue32.ComputedRef<boolean>;
|
|
3170
|
+
isCustomRolesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3171
|
+
areTagsEnabled: vue32.ComputedRef<boolean>;
|
|
3172
|
+
isAutosaveEnabled: vue32.ComputedRef<boolean>;
|
|
3173
|
+
isHiringBannerEnabled: vue32.ComputedRef<boolean>;
|
|
3174
|
+
isTemplatesEnabled: vue32.ComputedRef<boolean>;
|
|
3175
|
+
isTemplatesEndpointReachable: vue32.ComputedRef<boolean>;
|
|
3176
|
+
templatesHost: vue32.ComputedRef<string>;
|
|
3177
|
+
pushBackend: vue32.ComputedRef<"sse" | "websocket">;
|
|
3178
|
+
isCommunityNodesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3179
|
+
isUnverifiedPackagesEnabled: vue32.ComputedRef<boolean>;
|
|
3180
|
+
allowedModules: vue32.ComputedRef<{
|
|
3181
3181
|
builtIn?: string[] | undefined;
|
|
3182
3182
|
external?: string[] | undefined;
|
|
3183
3183
|
}>;
|
|
3184
|
-
isQueueModeEnabled:
|
|
3185
|
-
isMultiMain:
|
|
3186
|
-
isWorkerViewAvailable:
|
|
3187
|
-
workflowCallerPolicyDefaultOption:
|
|
3188
|
-
permanentlyDismissedBanners:
|
|
3189
|
-
saveDataErrorExecution:
|
|
3190
|
-
saveDataSuccessExecution:
|
|
3191
|
-
saveManualExecutions:
|
|
3192
|
-
saveDataProgressExecution:
|
|
3193
|
-
isCommunityPlan:
|
|
3194
|
-
isAskAiEnabled:
|
|
3195
|
-
isAiBuilderEnabled:
|
|
3196
|
-
isAiAssistantOrBuilderEnabled:
|
|
3197
|
-
isAiCreditsEnabled:
|
|
3198
|
-
aiCreditsQuota:
|
|
3199
|
-
isAiDataSharingEnabled:
|
|
3200
|
-
isAiGatewayEnabled:
|
|
3201
|
-
isAiGatewayCloudUbbEnabled:
|
|
3202
|
-
aiGatewayBudget:
|
|
3184
|
+
isQueueModeEnabled: vue32.ComputedRef<boolean>;
|
|
3185
|
+
isMultiMain: vue32.ComputedRef<boolean>;
|
|
3186
|
+
isWorkerViewAvailable: vue32.ComputedRef<boolean>;
|
|
3187
|
+
workflowCallerPolicyDefaultOption: vue32.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3188
|
+
permanentlyDismissedBanners: vue32.ComputedRef<string[]>;
|
|
3189
|
+
saveDataErrorExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3190
|
+
saveDataSuccessExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3191
|
+
saveManualExecutions: vue32.Ref<boolean, boolean>;
|
|
3192
|
+
saveDataProgressExecution: vue32.Ref<boolean, boolean>;
|
|
3193
|
+
isCommunityPlan: vue32.ComputedRef<boolean>;
|
|
3194
|
+
isAskAiEnabled: vue32.ComputedRef<boolean>;
|
|
3195
|
+
isAiBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
3196
|
+
isAiAssistantOrBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
3197
|
+
isAiCreditsEnabled: vue32.ComputedRef<boolean>;
|
|
3198
|
+
aiCreditsQuota: vue32.ComputedRef<number>;
|
|
3199
|
+
isAiDataSharingEnabled: vue32.ComputedRef<boolean>;
|
|
3200
|
+
isAiGatewayEnabled: vue32.ComputedRef<boolean>;
|
|
3201
|
+
isAiGatewayCloudUbbEnabled: vue32.ComputedRef<boolean>;
|
|
3202
|
+
aiGatewayBudget: vue32.ComputedRef<number>;
|
|
3203
3203
|
reset: () => void;
|
|
3204
3204
|
getTimezones: () => Promise<IDataObject>;
|
|
3205
3205
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3210,7 +3210,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3210
3210
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3211
3211
|
initialize: () => Promise<void>;
|
|
3212
3212
|
getModuleSettings: () => Promise<void>;
|
|
3213
|
-
moduleSettings:
|
|
3213
|
+
moduleSettings: vue32.Ref<{
|
|
3214
3214
|
insights?: {
|
|
3215
3215
|
summary: boolean;
|
|
3216
3216
|
dashboard: boolean;
|
|
@@ -3481,9 +3481,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3481
3481
|
} | undefined;
|
|
3482
3482
|
config?: never | undefined;
|
|
3483
3483
|
} | {
|
|
3484
|
-
text: string;
|
|
3485
3484
|
packageName: string;
|
|
3486
3485
|
credentialType: string;
|
|
3486
|
+
text: string;
|
|
3487
3487
|
quickConnectType: "pinecone";
|
|
3488
3488
|
consentText?: string | undefined;
|
|
3489
3489
|
consentCheckbox?: string | undefined;
|
|
@@ -3782,9 +3782,9 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3782
3782
|
} | undefined;
|
|
3783
3783
|
config?: never | undefined;
|
|
3784
3784
|
} | {
|
|
3785
|
-
text: string;
|
|
3786
3785
|
packageName: string;
|
|
3787
3786
|
credentialType: string;
|
|
3787
|
+
text: string;
|
|
3788
3788
|
quickConnectType: "pinecone";
|
|
3789
3789
|
consentText?: string | undefined;
|
|
3790
3790
|
consentCheckbox?: string | undefined;
|
|
@@ -3814,17 +3814,17 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3814
3814
|
} | undefined;
|
|
3815
3815
|
}>;
|
|
3816
3816
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3817
|
-
isMFAEnforcementLicensed:
|
|
3818
|
-
isMFAEnforced:
|
|
3819
|
-
activeModules:
|
|
3817
|
+
isMFAEnforcementLicensed: vue32.ComputedRef<boolean>;
|
|
3818
|
+
isMFAEnforced: vue32.Ref<boolean, boolean>;
|
|
3819
|
+
activeModules: vue32.ComputedRef<string[]>;
|
|
3820
3820
|
isModuleActive: (moduleName: string) => boolean;
|
|
3821
3821
|
isAgentModuleActive: (name: string) => boolean;
|
|
3822
|
-
isDataTableFeatureEnabled:
|
|
3823
|
-
isChatFeatureEnabled:
|
|
3824
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3825
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3826
|
-
isPublicChatTriggerDisabled:
|
|
3827
|
-
isWorkflowPublicationServiceEnabled:
|
|
3822
|
+
isDataTableFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3823
|
+
isChatFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3824
|
+
isOtelCustomSpanAttributesEnabled: vue32.ComputedRef<boolean>;
|
|
3825
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3826
|
+
isPublicChatTriggerDisabled: vue32.ComputedRef<boolean>;
|
|
3827
|
+
isWorkflowPublicationServiceEnabled: vue32.ComputedRef<boolean>;
|
|
3828
3828
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3829
3829
|
//#endregion
|
|
3830
3830
|
export { useSettingsStore };
|