@n8n/stores 2.34.0 → 2.34.2
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/notifications.store.d.cts +2 -2
- package/dist/rbac.store.d.cts +39 -39
- package/dist/rbac.store.d.mts +39 -39
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +231 -231
- package/dist/useAgentRequestStore.d.cts +6 -6
- package/dist/useAgentRequestStore.d.mts +6 -6
- package/dist/useRootStore.d.cts +72 -72
- package/dist/useRootStore.d.mts +2 -2
- package/dist/users.store.d.cts +53 -53
- package/dist/users.store.d.mts +6 -6
- package/dist/versions.store.d.cts +28 -28
- package/dist/versions.store.d.mts +2 -2
- package/package.json +10 -10
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue95 from "vue";
|
|
2
|
+
import * as pinia3 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: pinia3.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue95.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -498,7 +498,7 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
498
498
|
canvasOnly: boolean;
|
|
499
499
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
500
500
|
}>;
|
|
501
|
-
userManagement:
|
|
501
|
+
userManagement: vue95.Ref<{
|
|
502
502
|
quota: number;
|
|
503
503
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
504
504
|
smtpSetup: boolean;
|
|
@@ -511,8 +511,8 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
511
511
|
authenticationMethod: AuthenticationMethod;
|
|
512
512
|
passwordMinLength: number;
|
|
513
513
|
}>;
|
|
514
|
-
templatesEndpointHealthy:
|
|
515
|
-
api:
|
|
514
|
+
templatesEndpointHealthy: vue95.Ref<boolean, boolean>;
|
|
515
|
+
api: vue95.Ref<{
|
|
516
516
|
enabled: boolean;
|
|
517
517
|
latestVersion: number;
|
|
518
518
|
path: string;
|
|
@@ -534,17 +534,17 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
534
534
|
enabled: boolean;
|
|
535
535
|
};
|
|
536
536
|
}>;
|
|
537
|
-
mfa:
|
|
537
|
+
mfa: vue95.Ref<{
|
|
538
538
|
enabled: boolean;
|
|
539
539
|
}, {
|
|
540
540
|
enabled: boolean;
|
|
541
541
|
} | {
|
|
542
542
|
enabled: boolean;
|
|
543
543
|
}>;
|
|
544
|
-
isDocker:
|
|
545
|
-
isDevRelease:
|
|
546
|
-
endpointHealth:
|
|
547
|
-
isEnterpriseFeatureEnabled:
|
|
544
|
+
isDocker: vue95.ComputedRef<boolean>;
|
|
545
|
+
isDevRelease: vue95.ComputedRef<boolean>;
|
|
546
|
+
endpointHealth: vue95.ComputedRef<string>;
|
|
547
|
+
isEnterpriseFeatureEnabled: vue95.ComputedRef<{
|
|
548
548
|
sharing: boolean;
|
|
549
549
|
ldap: boolean;
|
|
550
550
|
saml: boolean;
|
|
@@ -575,36 +575,36 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
575
575
|
otelCustomSpanAttributes: boolean;
|
|
576
576
|
workflowReviews: boolean;
|
|
577
577
|
}>;
|
|
578
|
-
databaseType:
|
|
579
|
-
planName:
|
|
580
|
-
consumerId:
|
|
581
|
-
binaryDataMode:
|
|
582
|
-
pruning:
|
|
578
|
+
databaseType: vue95.ComputedRef<"sqlite" | "postgresdb">;
|
|
579
|
+
planName: vue95.ComputedRef<string>;
|
|
580
|
+
consumerId: vue95.ComputedRef<string>;
|
|
581
|
+
binaryDataMode: vue95.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
582
|
+
pruning: vue95.ComputedRef<{
|
|
583
583
|
isEnabled: boolean;
|
|
584
584
|
maxAge: number;
|
|
585
585
|
maxCount: number;
|
|
586
586
|
} | undefined>;
|
|
587
|
-
security:
|
|
587
|
+
security: vue95.ComputedRef<{
|
|
588
588
|
blockFileAccessToN8nFiles: boolean;
|
|
589
589
|
secureCookie: boolean;
|
|
590
590
|
}>;
|
|
591
|
-
nodeJsVersion:
|
|
592
|
-
nodeEnv:
|
|
593
|
-
concurrency:
|
|
594
|
-
isConcurrencyEnabled:
|
|
595
|
-
isPublicApiEnabled:
|
|
596
|
-
isSwaggerUIEnabled:
|
|
597
|
-
isPreviewMode:
|
|
598
|
-
isCanvasOnly:
|
|
599
|
-
isCrdtCollaborationEnabled:
|
|
600
|
-
publicApiLatestVersion:
|
|
601
|
-
publicApiPath:
|
|
602
|
-
showSetupPage:
|
|
603
|
-
deploymentType:
|
|
604
|
-
isCloudDeployment:
|
|
605
|
-
isSmtpSetup:
|
|
606
|
-
isPersonalizationSurveyEnabled:
|
|
607
|
-
telemetry:
|
|
591
|
+
nodeJsVersion: vue95.ComputedRef<string>;
|
|
592
|
+
nodeEnv: vue95.ComputedRef<string | undefined>;
|
|
593
|
+
concurrency: vue95.ComputedRef<number>;
|
|
594
|
+
isConcurrencyEnabled: vue95.ComputedRef<boolean>;
|
|
595
|
+
isPublicApiEnabled: vue95.ComputedRef<boolean>;
|
|
596
|
+
isSwaggerUIEnabled: vue95.ComputedRef<boolean>;
|
|
597
|
+
isPreviewMode: vue95.ComputedRef<boolean>;
|
|
598
|
+
isCanvasOnly: vue95.ComputedRef<boolean>;
|
|
599
|
+
isCrdtCollaborationEnabled: vue95.ComputedRef<boolean>;
|
|
600
|
+
publicApiLatestVersion: vue95.ComputedRef<number>;
|
|
601
|
+
publicApiPath: vue95.ComputedRef<string>;
|
|
602
|
+
showSetupPage: vue95.ComputedRef<boolean | undefined>;
|
|
603
|
+
deploymentType: vue95.ComputedRef<string>;
|
|
604
|
+
isCloudDeployment: vue95.ComputedRef<boolean>;
|
|
605
|
+
isSmtpSetup: vue95.ComputedRef<boolean>;
|
|
606
|
+
isPersonalizationSurveyEnabled: vue95.ComputedRef<boolean>;
|
|
607
|
+
telemetry: vue95.ComputedRef<{
|
|
608
608
|
enabled: boolean;
|
|
609
609
|
config?: {
|
|
610
610
|
url: string;
|
|
@@ -613,43 +613,43 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
613
613
|
sourceConfig: string;
|
|
614
614
|
} | undefined;
|
|
615
615
|
}>;
|
|
616
|
-
logLevel:
|
|
617
|
-
isTelemetryEnabled:
|
|
618
|
-
isMfaFeatureEnabled:
|
|
619
|
-
isFoldersFeatureEnabled:
|
|
620
|
-
isAiAssistantEnabled:
|
|
621
|
-
isCustomRolesFeatureEnabled:
|
|
622
|
-
areTagsEnabled:
|
|
623
|
-
isAutosaveEnabled:
|
|
624
|
-
isHiringBannerEnabled:
|
|
625
|
-
isTemplatesEnabled:
|
|
626
|
-
isTemplatesEndpointReachable:
|
|
627
|
-
templatesHost:
|
|
628
|
-
pushBackend:
|
|
629
|
-
isCommunityNodesFeatureEnabled:
|
|
630
|
-
isUnverifiedPackagesEnabled:
|
|
631
|
-
allowedModules:
|
|
616
|
+
logLevel: vue95.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
617
|
+
isTelemetryEnabled: vue95.ComputedRef<boolean>;
|
|
618
|
+
isMfaFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
619
|
+
isFoldersFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
620
|
+
isAiAssistantEnabled: vue95.ComputedRef<boolean>;
|
|
621
|
+
isCustomRolesFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
622
|
+
areTagsEnabled: vue95.ComputedRef<boolean>;
|
|
623
|
+
isAutosaveEnabled: vue95.ComputedRef<boolean>;
|
|
624
|
+
isHiringBannerEnabled: vue95.ComputedRef<boolean>;
|
|
625
|
+
isTemplatesEnabled: vue95.ComputedRef<boolean>;
|
|
626
|
+
isTemplatesEndpointReachable: vue95.ComputedRef<boolean>;
|
|
627
|
+
templatesHost: vue95.ComputedRef<string>;
|
|
628
|
+
pushBackend: vue95.ComputedRef<"sse" | "websocket">;
|
|
629
|
+
isCommunityNodesFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
630
|
+
isUnverifiedPackagesEnabled: vue95.ComputedRef<boolean>;
|
|
631
|
+
allowedModules: vue95.ComputedRef<{
|
|
632
632
|
builtIn?: string[] | undefined;
|
|
633
633
|
external?: string[] | undefined;
|
|
634
634
|
}>;
|
|
635
|
-
isQueueModeEnabled:
|
|
636
|
-
isMultiMain:
|
|
637
|
-
isWorkerViewAvailable:
|
|
638
|
-
workflowCallerPolicyDefaultOption:
|
|
639
|
-
permanentlyDismissedBanners:
|
|
640
|
-
saveDataErrorExecution:
|
|
641
|
-
saveDataSuccessExecution:
|
|
642
|
-
saveManualExecutions:
|
|
643
|
-
saveDataProgressExecution:
|
|
644
|
-
isCommunityPlan:
|
|
645
|
-
isAskAiEnabled:
|
|
646
|
-
isAiBuilderEnabled:
|
|
647
|
-
isAiAssistantOrBuilderEnabled:
|
|
648
|
-
isAiCreditsEnabled:
|
|
649
|
-
aiCreditsQuota:
|
|
650
|
-
isAiDataSharingEnabled:
|
|
651
|
-
isAiGatewayEnabled:
|
|
652
|
-
aiGatewayBudget:
|
|
635
|
+
isQueueModeEnabled: vue95.ComputedRef<boolean>;
|
|
636
|
+
isMultiMain: vue95.ComputedRef<boolean>;
|
|
637
|
+
isWorkerViewAvailable: vue95.ComputedRef<boolean>;
|
|
638
|
+
workflowCallerPolicyDefaultOption: vue95.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
639
|
+
permanentlyDismissedBanners: vue95.ComputedRef<string[]>;
|
|
640
|
+
saveDataErrorExecution: vue95.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
641
|
+
saveDataSuccessExecution: vue95.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
642
|
+
saveManualExecutions: vue95.Ref<boolean, boolean>;
|
|
643
|
+
saveDataProgressExecution: vue95.Ref<boolean, boolean>;
|
|
644
|
+
isCommunityPlan: vue95.ComputedRef<boolean>;
|
|
645
|
+
isAskAiEnabled: vue95.ComputedRef<boolean>;
|
|
646
|
+
isAiBuilderEnabled: vue95.ComputedRef<boolean>;
|
|
647
|
+
isAiAssistantOrBuilderEnabled: vue95.ComputedRef<boolean>;
|
|
648
|
+
isAiCreditsEnabled: vue95.ComputedRef<boolean>;
|
|
649
|
+
aiCreditsQuota: vue95.ComputedRef<number>;
|
|
650
|
+
isAiDataSharingEnabled: vue95.ComputedRef<boolean>;
|
|
651
|
+
isAiGatewayEnabled: vue95.ComputedRef<boolean>;
|
|
652
|
+
aiGatewayBudget: vue95.ComputedRef<number>;
|
|
653
653
|
reset: () => void;
|
|
654
654
|
getTimezones: () => Promise<IDataObject>;
|
|
655
655
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -660,7 +660,7 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
660
660
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
661
661
|
initialize: () => Promise<void>;
|
|
662
662
|
getModuleSettings: () => Promise<void>;
|
|
663
|
-
moduleSettings:
|
|
663
|
+
moduleSettings: vue95.Ref<{
|
|
664
664
|
insights?: {
|
|
665
665
|
summary: boolean;
|
|
666
666
|
dashboard: boolean;
|
|
@@ -1258,19 +1258,19 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1258
1258
|
} | undefined;
|
|
1259
1259
|
}>;
|
|
1260
1260
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1261
|
-
isMFAEnforcementLicensed:
|
|
1262
|
-
isMFAEnforced:
|
|
1263
|
-
activeModules:
|
|
1261
|
+
isMFAEnforcementLicensed: vue95.ComputedRef<boolean>;
|
|
1262
|
+
isMFAEnforced: vue95.Ref<boolean, boolean>;
|
|
1263
|
+
activeModules: vue95.ComputedRef<string[]>;
|
|
1264
1264
|
isModuleActive: (moduleName: string) => boolean;
|
|
1265
1265
|
isAgentModuleActive: (name: string) => boolean;
|
|
1266
|
-
isDataTableFeatureEnabled:
|
|
1267
|
-
isChatFeatureEnabled:
|
|
1268
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1269
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1270
|
-
isPublicChatTriggerDisabled:
|
|
1271
|
-
isWorkflowPublicationServiceEnabled:
|
|
1266
|
+
isDataTableFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1267
|
+
isChatFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1268
|
+
isOtelCustomSpanAttributesEnabled: vue95.ComputedRef<boolean>;
|
|
1269
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1270
|
+
isPublicChatTriggerDisabled: vue95.ComputedRef<boolean>;
|
|
1271
|
+
isWorkflowPublicationServiceEnabled: vue95.ComputedRef<boolean>;
|
|
1272
1272
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1273
|
-
settings:
|
|
1273
|
+
settings: vue95.Ref<{
|
|
1274
1274
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1275
1275
|
inE2ETests: boolean;
|
|
1276
1276
|
isDocker: boolean;
|
|
@@ -1761,7 +1761,7 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1761
1761
|
canvasOnly: boolean;
|
|
1762
1762
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1763
1763
|
}>;
|
|
1764
|
-
userManagement:
|
|
1764
|
+
userManagement: vue95.Ref<{
|
|
1765
1765
|
quota: number;
|
|
1766
1766
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1767
1767
|
smtpSetup: boolean;
|
|
@@ -1774,8 +1774,8 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1774
1774
|
authenticationMethod: AuthenticationMethod;
|
|
1775
1775
|
passwordMinLength: number;
|
|
1776
1776
|
}>;
|
|
1777
|
-
templatesEndpointHealthy:
|
|
1778
|
-
api:
|
|
1777
|
+
templatesEndpointHealthy: vue95.Ref<boolean, boolean>;
|
|
1778
|
+
api: vue95.Ref<{
|
|
1779
1779
|
enabled: boolean;
|
|
1780
1780
|
latestVersion: number;
|
|
1781
1781
|
path: string;
|
|
@@ -1797,17 +1797,17 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1797
1797
|
enabled: boolean;
|
|
1798
1798
|
};
|
|
1799
1799
|
}>;
|
|
1800
|
-
mfa:
|
|
1800
|
+
mfa: vue95.Ref<{
|
|
1801
1801
|
enabled: boolean;
|
|
1802
1802
|
}, {
|
|
1803
1803
|
enabled: boolean;
|
|
1804
1804
|
} | {
|
|
1805
1805
|
enabled: boolean;
|
|
1806
1806
|
}>;
|
|
1807
|
-
isDocker:
|
|
1808
|
-
isDevRelease:
|
|
1809
|
-
endpointHealth:
|
|
1810
|
-
isEnterpriseFeatureEnabled:
|
|
1807
|
+
isDocker: vue95.ComputedRef<boolean>;
|
|
1808
|
+
isDevRelease: vue95.ComputedRef<boolean>;
|
|
1809
|
+
endpointHealth: vue95.ComputedRef<string>;
|
|
1810
|
+
isEnterpriseFeatureEnabled: vue95.ComputedRef<{
|
|
1811
1811
|
sharing: boolean;
|
|
1812
1812
|
ldap: boolean;
|
|
1813
1813
|
saml: boolean;
|
|
@@ -1838,36 +1838,36 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1838
1838
|
otelCustomSpanAttributes: boolean;
|
|
1839
1839
|
workflowReviews: boolean;
|
|
1840
1840
|
}>;
|
|
1841
|
-
databaseType:
|
|
1842
|
-
planName:
|
|
1843
|
-
consumerId:
|
|
1844
|
-
binaryDataMode:
|
|
1845
|
-
pruning:
|
|
1841
|
+
databaseType: vue95.ComputedRef<"sqlite" | "postgresdb">;
|
|
1842
|
+
planName: vue95.ComputedRef<string>;
|
|
1843
|
+
consumerId: vue95.ComputedRef<string>;
|
|
1844
|
+
binaryDataMode: vue95.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1845
|
+
pruning: vue95.ComputedRef<{
|
|
1846
1846
|
isEnabled: boolean;
|
|
1847
1847
|
maxAge: number;
|
|
1848
1848
|
maxCount: number;
|
|
1849
1849
|
} | undefined>;
|
|
1850
|
-
security:
|
|
1850
|
+
security: vue95.ComputedRef<{
|
|
1851
1851
|
blockFileAccessToN8nFiles: boolean;
|
|
1852
1852
|
secureCookie: boolean;
|
|
1853
1853
|
}>;
|
|
1854
|
-
nodeJsVersion:
|
|
1855
|
-
nodeEnv:
|
|
1856
|
-
concurrency:
|
|
1857
|
-
isConcurrencyEnabled:
|
|
1858
|
-
isPublicApiEnabled:
|
|
1859
|
-
isSwaggerUIEnabled:
|
|
1860
|
-
isPreviewMode:
|
|
1861
|
-
isCanvasOnly:
|
|
1862
|
-
isCrdtCollaborationEnabled:
|
|
1863
|
-
publicApiLatestVersion:
|
|
1864
|
-
publicApiPath:
|
|
1865
|
-
showSetupPage:
|
|
1866
|
-
deploymentType:
|
|
1867
|
-
isCloudDeployment:
|
|
1868
|
-
isSmtpSetup:
|
|
1869
|
-
isPersonalizationSurveyEnabled:
|
|
1870
|
-
telemetry:
|
|
1854
|
+
nodeJsVersion: vue95.ComputedRef<string>;
|
|
1855
|
+
nodeEnv: vue95.ComputedRef<string | undefined>;
|
|
1856
|
+
concurrency: vue95.ComputedRef<number>;
|
|
1857
|
+
isConcurrencyEnabled: vue95.ComputedRef<boolean>;
|
|
1858
|
+
isPublicApiEnabled: vue95.ComputedRef<boolean>;
|
|
1859
|
+
isSwaggerUIEnabled: vue95.ComputedRef<boolean>;
|
|
1860
|
+
isPreviewMode: vue95.ComputedRef<boolean>;
|
|
1861
|
+
isCanvasOnly: vue95.ComputedRef<boolean>;
|
|
1862
|
+
isCrdtCollaborationEnabled: vue95.ComputedRef<boolean>;
|
|
1863
|
+
publicApiLatestVersion: vue95.ComputedRef<number>;
|
|
1864
|
+
publicApiPath: vue95.ComputedRef<string>;
|
|
1865
|
+
showSetupPage: vue95.ComputedRef<boolean | undefined>;
|
|
1866
|
+
deploymentType: vue95.ComputedRef<string>;
|
|
1867
|
+
isCloudDeployment: vue95.ComputedRef<boolean>;
|
|
1868
|
+
isSmtpSetup: vue95.ComputedRef<boolean>;
|
|
1869
|
+
isPersonalizationSurveyEnabled: vue95.ComputedRef<boolean>;
|
|
1870
|
+
telemetry: vue95.ComputedRef<{
|
|
1871
1871
|
enabled: boolean;
|
|
1872
1872
|
config?: {
|
|
1873
1873
|
url: string;
|
|
@@ -1876,43 +1876,43 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1876
1876
|
sourceConfig: string;
|
|
1877
1877
|
} | undefined;
|
|
1878
1878
|
}>;
|
|
1879
|
-
logLevel:
|
|
1880
|
-
isTelemetryEnabled:
|
|
1881
|
-
isMfaFeatureEnabled:
|
|
1882
|
-
isFoldersFeatureEnabled:
|
|
1883
|
-
isAiAssistantEnabled:
|
|
1884
|
-
isCustomRolesFeatureEnabled:
|
|
1885
|
-
areTagsEnabled:
|
|
1886
|
-
isAutosaveEnabled:
|
|
1887
|
-
isHiringBannerEnabled:
|
|
1888
|
-
isTemplatesEnabled:
|
|
1889
|
-
isTemplatesEndpointReachable:
|
|
1890
|
-
templatesHost:
|
|
1891
|
-
pushBackend:
|
|
1892
|
-
isCommunityNodesFeatureEnabled:
|
|
1893
|
-
isUnverifiedPackagesEnabled:
|
|
1894
|
-
allowedModules:
|
|
1879
|
+
logLevel: vue95.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1880
|
+
isTelemetryEnabled: vue95.ComputedRef<boolean>;
|
|
1881
|
+
isMfaFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1882
|
+
isFoldersFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1883
|
+
isAiAssistantEnabled: vue95.ComputedRef<boolean>;
|
|
1884
|
+
isCustomRolesFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1885
|
+
areTagsEnabled: vue95.ComputedRef<boolean>;
|
|
1886
|
+
isAutosaveEnabled: vue95.ComputedRef<boolean>;
|
|
1887
|
+
isHiringBannerEnabled: vue95.ComputedRef<boolean>;
|
|
1888
|
+
isTemplatesEnabled: vue95.ComputedRef<boolean>;
|
|
1889
|
+
isTemplatesEndpointReachable: vue95.ComputedRef<boolean>;
|
|
1890
|
+
templatesHost: vue95.ComputedRef<string>;
|
|
1891
|
+
pushBackend: vue95.ComputedRef<"sse" | "websocket">;
|
|
1892
|
+
isCommunityNodesFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
1893
|
+
isUnverifiedPackagesEnabled: vue95.ComputedRef<boolean>;
|
|
1894
|
+
allowedModules: vue95.ComputedRef<{
|
|
1895
1895
|
builtIn?: string[] | undefined;
|
|
1896
1896
|
external?: string[] | undefined;
|
|
1897
1897
|
}>;
|
|
1898
|
-
isQueueModeEnabled:
|
|
1899
|
-
isMultiMain:
|
|
1900
|
-
isWorkerViewAvailable:
|
|
1901
|
-
workflowCallerPolicyDefaultOption:
|
|
1902
|
-
permanentlyDismissedBanners:
|
|
1903
|
-
saveDataErrorExecution:
|
|
1904
|
-
saveDataSuccessExecution:
|
|
1905
|
-
saveManualExecutions:
|
|
1906
|
-
saveDataProgressExecution:
|
|
1907
|
-
isCommunityPlan:
|
|
1908
|
-
isAskAiEnabled:
|
|
1909
|
-
isAiBuilderEnabled:
|
|
1910
|
-
isAiAssistantOrBuilderEnabled:
|
|
1911
|
-
isAiCreditsEnabled:
|
|
1912
|
-
aiCreditsQuota:
|
|
1913
|
-
isAiDataSharingEnabled:
|
|
1914
|
-
isAiGatewayEnabled:
|
|
1915
|
-
aiGatewayBudget:
|
|
1898
|
+
isQueueModeEnabled: vue95.ComputedRef<boolean>;
|
|
1899
|
+
isMultiMain: vue95.ComputedRef<boolean>;
|
|
1900
|
+
isWorkerViewAvailable: vue95.ComputedRef<boolean>;
|
|
1901
|
+
workflowCallerPolicyDefaultOption: vue95.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1902
|
+
permanentlyDismissedBanners: vue95.ComputedRef<string[]>;
|
|
1903
|
+
saveDataErrorExecution: vue95.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1904
|
+
saveDataSuccessExecution: vue95.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1905
|
+
saveManualExecutions: vue95.Ref<boolean, boolean>;
|
|
1906
|
+
saveDataProgressExecution: vue95.Ref<boolean, boolean>;
|
|
1907
|
+
isCommunityPlan: vue95.ComputedRef<boolean>;
|
|
1908
|
+
isAskAiEnabled: vue95.ComputedRef<boolean>;
|
|
1909
|
+
isAiBuilderEnabled: vue95.ComputedRef<boolean>;
|
|
1910
|
+
isAiAssistantOrBuilderEnabled: vue95.ComputedRef<boolean>;
|
|
1911
|
+
isAiCreditsEnabled: vue95.ComputedRef<boolean>;
|
|
1912
|
+
aiCreditsQuota: vue95.ComputedRef<number>;
|
|
1913
|
+
isAiDataSharingEnabled: vue95.ComputedRef<boolean>;
|
|
1914
|
+
isAiGatewayEnabled: vue95.ComputedRef<boolean>;
|
|
1915
|
+
aiGatewayBudget: vue95.ComputedRef<number>;
|
|
1916
1916
|
reset: () => void;
|
|
1917
1917
|
getTimezones: () => Promise<IDataObject>;
|
|
1918
1918
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1923,7 +1923,7 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
1923
1923
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1924
1924
|
initialize: () => Promise<void>;
|
|
1925
1925
|
getModuleSettings: () => Promise<void>;
|
|
1926
|
-
moduleSettings:
|
|
1926
|
+
moduleSettings: vue95.Ref<{
|
|
1927
1927
|
insights?: {
|
|
1928
1928
|
summary: boolean;
|
|
1929
1929
|
dashboard: boolean;
|
|
@@ -2521,19 +2521,19 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
2521
2521
|
} | undefined;
|
|
2522
2522
|
}>;
|
|
2523
2523
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2524
|
-
isMFAEnforcementLicensed:
|
|
2525
|
-
isMFAEnforced:
|
|
2526
|
-
activeModules:
|
|
2524
|
+
isMFAEnforcementLicensed: vue95.ComputedRef<boolean>;
|
|
2525
|
+
isMFAEnforced: vue95.Ref<boolean, boolean>;
|
|
2526
|
+
activeModules: vue95.ComputedRef<string[]>;
|
|
2527
2527
|
isModuleActive: (moduleName: string) => boolean;
|
|
2528
2528
|
isAgentModuleActive: (name: string) => boolean;
|
|
2529
|
-
isDataTableFeatureEnabled:
|
|
2530
|
-
isChatFeatureEnabled:
|
|
2531
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2532
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2533
|
-
isPublicChatTriggerDisabled:
|
|
2534
|
-
isWorkflowPublicationServiceEnabled:
|
|
2529
|
+
isDataTableFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
2530
|
+
isChatFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
2531
|
+
isOtelCustomSpanAttributesEnabled: vue95.ComputedRef<boolean>;
|
|
2532
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
2533
|
+
isPublicChatTriggerDisabled: vue95.ComputedRef<boolean>;
|
|
2534
|
+
isWorkflowPublicationServiceEnabled: vue95.ComputedRef<boolean>;
|
|
2535
2535
|
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "isCanvasOnly" | "isCrdtCollaborationEnabled" | "publicApiLatestVersion" | "publicApiPath" | "showSetupPage" | "deploymentType" | "isCloudDeployment" | "isSmtpSetup" | "isPersonalizationSurveyEnabled" | "isTelemetryEnabled" | "isMfaFeatureEnabled" | "isFoldersFeatureEnabled" | "isAiAssistantEnabled" | "isCustomRolesFeatureEnabled" | "areTagsEnabled" | "isAutosaveEnabled" | "isHiringBannerEnabled" | "isTemplatesEnabled" | "isTemplatesEndpointReachable" | "templatesHost" | "isCommunityNodesFeatureEnabled" | "isUnverifiedPackagesEnabled" | "isQueueModeEnabled" | "isWorkerViewAvailable" | "permanentlyDismissedBanners" | "isCommunityPlan" | "isAskAiEnabled" | "isAiBuilderEnabled" | "isAiAssistantOrBuilderEnabled" | "isAiCreditsEnabled" | "aiCreditsQuota" | "isAiDataSharingEnabled" | "isAiGatewayEnabled" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2536
|
-
settings:
|
|
2536
|
+
settings: vue95.Ref<{
|
|
2537
2537
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2538
2538
|
inE2ETests: boolean;
|
|
2539
2539
|
isDocker: boolean;
|
|
@@ -3024,7 +3024,7 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3024
3024
|
canvasOnly: boolean;
|
|
3025
3025
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3026
3026
|
}>;
|
|
3027
|
-
userManagement:
|
|
3027
|
+
userManagement: vue95.Ref<{
|
|
3028
3028
|
quota: number;
|
|
3029
3029
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3030
3030
|
smtpSetup: boolean;
|
|
@@ -3037,8 +3037,8 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3037
3037
|
authenticationMethod: AuthenticationMethod;
|
|
3038
3038
|
passwordMinLength: number;
|
|
3039
3039
|
}>;
|
|
3040
|
-
templatesEndpointHealthy:
|
|
3041
|
-
api:
|
|
3040
|
+
templatesEndpointHealthy: vue95.Ref<boolean, boolean>;
|
|
3041
|
+
api: vue95.Ref<{
|
|
3042
3042
|
enabled: boolean;
|
|
3043
3043
|
latestVersion: number;
|
|
3044
3044
|
path: string;
|
|
@@ -3060,17 +3060,17 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3060
3060
|
enabled: boolean;
|
|
3061
3061
|
};
|
|
3062
3062
|
}>;
|
|
3063
|
-
mfa:
|
|
3063
|
+
mfa: vue95.Ref<{
|
|
3064
3064
|
enabled: boolean;
|
|
3065
3065
|
}, {
|
|
3066
3066
|
enabled: boolean;
|
|
3067
3067
|
} | {
|
|
3068
3068
|
enabled: boolean;
|
|
3069
3069
|
}>;
|
|
3070
|
-
isDocker:
|
|
3071
|
-
isDevRelease:
|
|
3072
|
-
endpointHealth:
|
|
3073
|
-
isEnterpriseFeatureEnabled:
|
|
3070
|
+
isDocker: vue95.ComputedRef<boolean>;
|
|
3071
|
+
isDevRelease: vue95.ComputedRef<boolean>;
|
|
3072
|
+
endpointHealth: vue95.ComputedRef<string>;
|
|
3073
|
+
isEnterpriseFeatureEnabled: vue95.ComputedRef<{
|
|
3074
3074
|
sharing: boolean;
|
|
3075
3075
|
ldap: boolean;
|
|
3076
3076
|
saml: boolean;
|
|
@@ -3101,36 +3101,36 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3101
3101
|
otelCustomSpanAttributes: boolean;
|
|
3102
3102
|
workflowReviews: boolean;
|
|
3103
3103
|
}>;
|
|
3104
|
-
databaseType:
|
|
3105
|
-
planName:
|
|
3106
|
-
consumerId:
|
|
3107
|
-
binaryDataMode:
|
|
3108
|
-
pruning:
|
|
3104
|
+
databaseType: vue95.ComputedRef<"sqlite" | "postgresdb">;
|
|
3105
|
+
planName: vue95.ComputedRef<string>;
|
|
3106
|
+
consumerId: vue95.ComputedRef<string>;
|
|
3107
|
+
binaryDataMode: vue95.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3108
|
+
pruning: vue95.ComputedRef<{
|
|
3109
3109
|
isEnabled: boolean;
|
|
3110
3110
|
maxAge: number;
|
|
3111
3111
|
maxCount: number;
|
|
3112
3112
|
} | undefined>;
|
|
3113
|
-
security:
|
|
3113
|
+
security: vue95.ComputedRef<{
|
|
3114
3114
|
blockFileAccessToN8nFiles: boolean;
|
|
3115
3115
|
secureCookie: boolean;
|
|
3116
3116
|
}>;
|
|
3117
|
-
nodeJsVersion:
|
|
3118
|
-
nodeEnv:
|
|
3119
|
-
concurrency:
|
|
3120
|
-
isConcurrencyEnabled:
|
|
3121
|
-
isPublicApiEnabled:
|
|
3122
|
-
isSwaggerUIEnabled:
|
|
3123
|
-
isPreviewMode:
|
|
3124
|
-
isCanvasOnly:
|
|
3125
|
-
isCrdtCollaborationEnabled:
|
|
3126
|
-
publicApiLatestVersion:
|
|
3127
|
-
publicApiPath:
|
|
3128
|
-
showSetupPage:
|
|
3129
|
-
deploymentType:
|
|
3130
|
-
isCloudDeployment:
|
|
3131
|
-
isSmtpSetup:
|
|
3132
|
-
isPersonalizationSurveyEnabled:
|
|
3133
|
-
telemetry:
|
|
3117
|
+
nodeJsVersion: vue95.ComputedRef<string>;
|
|
3118
|
+
nodeEnv: vue95.ComputedRef<string | undefined>;
|
|
3119
|
+
concurrency: vue95.ComputedRef<number>;
|
|
3120
|
+
isConcurrencyEnabled: vue95.ComputedRef<boolean>;
|
|
3121
|
+
isPublicApiEnabled: vue95.ComputedRef<boolean>;
|
|
3122
|
+
isSwaggerUIEnabled: vue95.ComputedRef<boolean>;
|
|
3123
|
+
isPreviewMode: vue95.ComputedRef<boolean>;
|
|
3124
|
+
isCanvasOnly: vue95.ComputedRef<boolean>;
|
|
3125
|
+
isCrdtCollaborationEnabled: vue95.ComputedRef<boolean>;
|
|
3126
|
+
publicApiLatestVersion: vue95.ComputedRef<number>;
|
|
3127
|
+
publicApiPath: vue95.ComputedRef<string>;
|
|
3128
|
+
showSetupPage: vue95.ComputedRef<boolean | undefined>;
|
|
3129
|
+
deploymentType: vue95.ComputedRef<string>;
|
|
3130
|
+
isCloudDeployment: vue95.ComputedRef<boolean>;
|
|
3131
|
+
isSmtpSetup: vue95.ComputedRef<boolean>;
|
|
3132
|
+
isPersonalizationSurveyEnabled: vue95.ComputedRef<boolean>;
|
|
3133
|
+
telemetry: vue95.ComputedRef<{
|
|
3134
3134
|
enabled: boolean;
|
|
3135
3135
|
config?: {
|
|
3136
3136
|
url: string;
|
|
@@ -3139,43 +3139,43 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3139
3139
|
sourceConfig: string;
|
|
3140
3140
|
} | undefined;
|
|
3141
3141
|
}>;
|
|
3142
|
-
logLevel:
|
|
3143
|
-
isTelemetryEnabled:
|
|
3144
|
-
isMfaFeatureEnabled:
|
|
3145
|
-
isFoldersFeatureEnabled:
|
|
3146
|
-
isAiAssistantEnabled:
|
|
3147
|
-
isCustomRolesFeatureEnabled:
|
|
3148
|
-
areTagsEnabled:
|
|
3149
|
-
isAutosaveEnabled:
|
|
3150
|
-
isHiringBannerEnabled:
|
|
3151
|
-
isTemplatesEnabled:
|
|
3152
|
-
isTemplatesEndpointReachable:
|
|
3153
|
-
templatesHost:
|
|
3154
|
-
pushBackend:
|
|
3155
|
-
isCommunityNodesFeatureEnabled:
|
|
3156
|
-
isUnverifiedPackagesEnabled:
|
|
3157
|
-
allowedModules:
|
|
3142
|
+
logLevel: vue95.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3143
|
+
isTelemetryEnabled: vue95.ComputedRef<boolean>;
|
|
3144
|
+
isMfaFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3145
|
+
isFoldersFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3146
|
+
isAiAssistantEnabled: vue95.ComputedRef<boolean>;
|
|
3147
|
+
isCustomRolesFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3148
|
+
areTagsEnabled: vue95.ComputedRef<boolean>;
|
|
3149
|
+
isAutosaveEnabled: vue95.ComputedRef<boolean>;
|
|
3150
|
+
isHiringBannerEnabled: vue95.ComputedRef<boolean>;
|
|
3151
|
+
isTemplatesEnabled: vue95.ComputedRef<boolean>;
|
|
3152
|
+
isTemplatesEndpointReachable: vue95.ComputedRef<boolean>;
|
|
3153
|
+
templatesHost: vue95.ComputedRef<string>;
|
|
3154
|
+
pushBackend: vue95.ComputedRef<"sse" | "websocket">;
|
|
3155
|
+
isCommunityNodesFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3156
|
+
isUnverifiedPackagesEnabled: vue95.ComputedRef<boolean>;
|
|
3157
|
+
allowedModules: vue95.ComputedRef<{
|
|
3158
3158
|
builtIn?: string[] | undefined;
|
|
3159
3159
|
external?: string[] | undefined;
|
|
3160
3160
|
}>;
|
|
3161
|
-
isQueueModeEnabled:
|
|
3162
|
-
isMultiMain:
|
|
3163
|
-
isWorkerViewAvailable:
|
|
3164
|
-
workflowCallerPolicyDefaultOption:
|
|
3165
|
-
permanentlyDismissedBanners:
|
|
3166
|
-
saveDataErrorExecution:
|
|
3167
|
-
saveDataSuccessExecution:
|
|
3168
|
-
saveManualExecutions:
|
|
3169
|
-
saveDataProgressExecution:
|
|
3170
|
-
isCommunityPlan:
|
|
3171
|
-
isAskAiEnabled:
|
|
3172
|
-
isAiBuilderEnabled:
|
|
3173
|
-
isAiAssistantOrBuilderEnabled:
|
|
3174
|
-
isAiCreditsEnabled:
|
|
3175
|
-
aiCreditsQuota:
|
|
3176
|
-
isAiDataSharingEnabled:
|
|
3177
|
-
isAiGatewayEnabled:
|
|
3178
|
-
aiGatewayBudget:
|
|
3161
|
+
isQueueModeEnabled: vue95.ComputedRef<boolean>;
|
|
3162
|
+
isMultiMain: vue95.ComputedRef<boolean>;
|
|
3163
|
+
isWorkerViewAvailable: vue95.ComputedRef<boolean>;
|
|
3164
|
+
workflowCallerPolicyDefaultOption: vue95.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3165
|
+
permanentlyDismissedBanners: vue95.ComputedRef<string[]>;
|
|
3166
|
+
saveDataErrorExecution: vue95.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3167
|
+
saveDataSuccessExecution: vue95.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3168
|
+
saveManualExecutions: vue95.Ref<boolean, boolean>;
|
|
3169
|
+
saveDataProgressExecution: vue95.Ref<boolean, boolean>;
|
|
3170
|
+
isCommunityPlan: vue95.ComputedRef<boolean>;
|
|
3171
|
+
isAskAiEnabled: vue95.ComputedRef<boolean>;
|
|
3172
|
+
isAiBuilderEnabled: vue95.ComputedRef<boolean>;
|
|
3173
|
+
isAiAssistantOrBuilderEnabled: vue95.ComputedRef<boolean>;
|
|
3174
|
+
isAiCreditsEnabled: vue95.ComputedRef<boolean>;
|
|
3175
|
+
aiCreditsQuota: vue95.ComputedRef<number>;
|
|
3176
|
+
isAiDataSharingEnabled: vue95.ComputedRef<boolean>;
|
|
3177
|
+
isAiGatewayEnabled: vue95.ComputedRef<boolean>;
|
|
3178
|
+
aiGatewayBudget: vue95.ComputedRef<number>;
|
|
3179
3179
|
reset: () => void;
|
|
3180
3180
|
getTimezones: () => Promise<IDataObject>;
|
|
3181
3181
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3186,7 +3186,7 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3186
3186
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3187
3187
|
initialize: () => Promise<void>;
|
|
3188
3188
|
getModuleSettings: () => Promise<void>;
|
|
3189
|
-
moduleSettings:
|
|
3189
|
+
moduleSettings: vue95.Ref<{
|
|
3190
3190
|
insights?: {
|
|
3191
3191
|
summary: boolean;
|
|
3192
3192
|
dashboard: boolean;
|
|
@@ -3784,17 +3784,17 @@ declare const useSettingsStore: pinia2.StoreDefinition<"settings", Pick<{
|
|
|
3784
3784
|
} | undefined;
|
|
3785
3785
|
}>;
|
|
3786
3786
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3787
|
-
isMFAEnforcementLicensed:
|
|
3788
|
-
isMFAEnforced:
|
|
3789
|
-
activeModules:
|
|
3787
|
+
isMFAEnforcementLicensed: vue95.ComputedRef<boolean>;
|
|
3788
|
+
isMFAEnforced: vue95.Ref<boolean, boolean>;
|
|
3789
|
+
activeModules: vue95.ComputedRef<string[]>;
|
|
3790
3790
|
isModuleActive: (moduleName: string) => boolean;
|
|
3791
3791
|
isAgentModuleActive: (name: string) => boolean;
|
|
3792
|
-
isDataTableFeatureEnabled:
|
|
3793
|
-
isChatFeatureEnabled:
|
|
3794
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3795
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3796
|
-
isPublicChatTriggerDisabled:
|
|
3797
|
-
isWorkflowPublicationServiceEnabled:
|
|
3792
|
+
isDataTableFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3793
|
+
isChatFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3794
|
+
isOtelCustomSpanAttributesEnabled: vue95.ComputedRef<boolean>;
|
|
3795
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
3796
|
+
isPublicChatTriggerDisabled: vue95.ComputedRef<boolean>;
|
|
3797
|
+
isWorkflowPublicationServiceEnabled: vue95.ComputedRef<boolean>;
|
|
3798
3798
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3799
3799
|
//#endregion
|
|
3800
3800
|
export { useSettingsStore };
|