@n8n/stores 2.33.0 → 2.33.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/cloudPlan.store.d.cts +66 -66
- package/dist/cloudPlan.store.d.mts +66 -66
- package/dist/notifications.store.d.cts +2 -2
- package/dist/rbac.store.d.cts +105 -105
- package/dist/rbac.store.d.mts +105 -105
- package/dist/roles.store.d.cts +19 -19
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +237 -237
- package/dist/settings.store.d.mts +237 -237
- package/dist/useAgentRequestStore.d.mts +2 -2
- package/dist/useRootStore.d.cts +72 -72
- package/dist/useRootStore.d.mts +72 -72
- package/dist/users.store.d.cts +52 -52
- package/dist/users.store.d.mts +52 -52
- package/package.json +9 -9
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue32 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: vue32.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -496,7 +496,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
496
496
|
canvasOnly: boolean;
|
|
497
497
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
498
498
|
}>;
|
|
499
|
-
userManagement:
|
|
499
|
+
userManagement: vue32.Ref<{
|
|
500
500
|
quota: number;
|
|
501
501
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
502
502
|
smtpSetup: boolean;
|
|
@@ -509,8 +509,8 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
509
509
|
authenticationMethod: AuthenticationMethod;
|
|
510
510
|
passwordMinLength: number;
|
|
511
511
|
}>;
|
|
512
|
-
templatesEndpointHealthy:
|
|
513
|
-
api:
|
|
512
|
+
templatesEndpointHealthy: vue32.Ref<boolean, boolean>;
|
|
513
|
+
api: vue32.Ref<{
|
|
514
514
|
enabled: boolean;
|
|
515
515
|
latestVersion: number;
|
|
516
516
|
path: string;
|
|
@@ -532,17 +532,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
532
532
|
enabled: boolean;
|
|
533
533
|
};
|
|
534
534
|
}>;
|
|
535
|
-
mfa:
|
|
535
|
+
mfa: vue32.Ref<{
|
|
536
536
|
enabled: boolean;
|
|
537
537
|
}, {
|
|
538
538
|
enabled: boolean;
|
|
539
539
|
} | {
|
|
540
540
|
enabled: boolean;
|
|
541
541
|
}>;
|
|
542
|
-
isDocker:
|
|
543
|
-
isDevRelease:
|
|
544
|
-
endpointHealth:
|
|
545
|
-
isEnterpriseFeatureEnabled:
|
|
542
|
+
isDocker: vue32.ComputedRef<boolean>;
|
|
543
|
+
isDevRelease: vue32.ComputedRef<boolean>;
|
|
544
|
+
endpointHealth: vue32.ComputedRef<string>;
|
|
545
|
+
isEnterpriseFeatureEnabled: vue32.ComputedRef<{
|
|
546
546
|
sharing: boolean;
|
|
547
547
|
ldap: boolean;
|
|
548
548
|
saml: boolean;
|
|
@@ -573,36 +573,36 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
573
573
|
otelCustomSpanAttributes: boolean;
|
|
574
574
|
workflowReviews: boolean;
|
|
575
575
|
}>;
|
|
576
|
-
databaseType:
|
|
577
|
-
planName:
|
|
578
|
-
consumerId:
|
|
579
|
-
binaryDataMode:
|
|
580
|
-
pruning:
|
|
576
|
+
databaseType: vue32.ComputedRef<"sqlite" | "postgresdb">;
|
|
577
|
+
planName: vue32.ComputedRef<string>;
|
|
578
|
+
consumerId: vue32.ComputedRef<string>;
|
|
579
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
580
|
+
pruning: vue32.ComputedRef<{
|
|
581
581
|
isEnabled: boolean;
|
|
582
582
|
maxAge: number;
|
|
583
583
|
maxCount: number;
|
|
584
584
|
} | undefined>;
|
|
585
|
-
security:
|
|
585
|
+
security: vue32.ComputedRef<{
|
|
586
586
|
blockFileAccessToN8nFiles: boolean;
|
|
587
587
|
secureCookie: boolean;
|
|
588
588
|
}>;
|
|
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:
|
|
589
|
+
nodeJsVersion: vue32.ComputedRef<string>;
|
|
590
|
+
nodeEnv: vue32.ComputedRef<string | undefined>;
|
|
591
|
+
concurrency: vue32.ComputedRef<number>;
|
|
592
|
+
isConcurrencyEnabled: vue32.ComputedRef<boolean>;
|
|
593
|
+
isPublicApiEnabled: vue32.ComputedRef<boolean>;
|
|
594
|
+
isSwaggerUIEnabled: vue32.ComputedRef<boolean>;
|
|
595
|
+
isPreviewMode: vue32.ComputedRef<boolean>;
|
|
596
|
+
isCanvasOnly: vue32.ComputedRef<boolean>;
|
|
597
|
+
isCrdtCollaborationEnabled: vue32.ComputedRef<boolean>;
|
|
598
|
+
publicApiLatestVersion: vue32.ComputedRef<number>;
|
|
599
|
+
publicApiPath: vue32.ComputedRef<string>;
|
|
600
|
+
showSetupPage: vue32.ComputedRef<boolean | undefined>;
|
|
601
|
+
deploymentType: vue32.ComputedRef<string>;
|
|
602
|
+
isCloudDeployment: vue32.ComputedRef<boolean>;
|
|
603
|
+
isSmtpSetup: vue32.ComputedRef<boolean>;
|
|
604
|
+
isPersonalizationSurveyEnabled: vue32.ComputedRef<boolean>;
|
|
605
|
+
telemetry: vue32.ComputedRef<{
|
|
606
606
|
enabled: boolean;
|
|
607
607
|
config?: {
|
|
608
608
|
url: string;
|
|
@@ -611,43 +611,43 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
611
611
|
sourceConfig: string;
|
|
612
612
|
} | undefined;
|
|
613
613
|
}>;
|
|
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:
|
|
614
|
+
logLevel: vue32.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
615
|
+
isTelemetryEnabled: vue32.ComputedRef<boolean>;
|
|
616
|
+
isMfaFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
617
|
+
isFoldersFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
618
|
+
isAiAssistantEnabled: vue32.ComputedRef<boolean>;
|
|
619
|
+
isCustomRolesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
620
|
+
areTagsEnabled: vue32.ComputedRef<boolean>;
|
|
621
|
+
isAutosaveEnabled: vue32.ComputedRef<boolean>;
|
|
622
|
+
isHiringBannerEnabled: vue32.ComputedRef<boolean>;
|
|
623
|
+
isTemplatesEnabled: vue32.ComputedRef<boolean>;
|
|
624
|
+
isTemplatesEndpointReachable: vue32.ComputedRef<boolean>;
|
|
625
|
+
templatesHost: vue32.ComputedRef<string>;
|
|
626
|
+
pushBackend: vue32.ComputedRef<"sse" | "websocket">;
|
|
627
|
+
isCommunityNodesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
628
|
+
isUnverifiedPackagesEnabled: vue32.ComputedRef<boolean>;
|
|
629
|
+
allowedModules: vue32.ComputedRef<{
|
|
630
630
|
builtIn?: string[] | undefined;
|
|
631
631
|
external?: string[] | undefined;
|
|
632
632
|
}>;
|
|
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:
|
|
633
|
+
isQueueModeEnabled: vue32.ComputedRef<boolean>;
|
|
634
|
+
isMultiMain: vue32.ComputedRef<boolean>;
|
|
635
|
+
isWorkerViewAvailable: vue32.ComputedRef<boolean>;
|
|
636
|
+
workflowCallerPolicyDefaultOption: vue32.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
637
|
+
permanentlyDismissedBanners: vue32.ComputedRef<string[]>;
|
|
638
|
+
saveDataErrorExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
639
|
+
saveDataSuccessExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
640
|
+
saveManualExecutions: vue32.Ref<boolean, boolean>;
|
|
641
|
+
saveDataProgressExecution: vue32.Ref<boolean, boolean>;
|
|
642
|
+
isCommunityPlan: vue32.ComputedRef<boolean>;
|
|
643
|
+
isAskAiEnabled: vue32.ComputedRef<boolean>;
|
|
644
|
+
isAiBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
645
|
+
isAiAssistantOrBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
646
|
+
isAiCreditsEnabled: vue32.ComputedRef<boolean>;
|
|
647
|
+
aiCreditsQuota: vue32.ComputedRef<number>;
|
|
648
|
+
isAiDataSharingEnabled: vue32.ComputedRef<boolean>;
|
|
649
|
+
isAiGatewayEnabled: vue32.ComputedRef<boolean>;
|
|
650
|
+
aiGatewayBudget: vue32.ComputedRef<number>;
|
|
651
651
|
reset: () => void;
|
|
652
652
|
getTimezones: () => Promise<IDataObject>;
|
|
653
653
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -658,7 +658,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
658
658
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
659
659
|
initialize: () => Promise<void>;
|
|
660
660
|
getModuleSettings: () => Promise<void>;
|
|
661
|
-
moduleSettings:
|
|
661
|
+
moduleSettings: vue32.Ref<{
|
|
662
662
|
insights?: {
|
|
663
663
|
summary: boolean;
|
|
664
664
|
dashboard: boolean;
|
|
@@ -926,9 +926,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
926
926
|
} | undefined;
|
|
927
927
|
config?: never | undefined;
|
|
928
928
|
} | {
|
|
929
|
+
text: string;
|
|
929
930
|
packageName: string;
|
|
930
931
|
credentialType: string;
|
|
931
|
-
text: string;
|
|
932
932
|
quickConnectType: "pinecone";
|
|
933
933
|
consentText?: string | undefined;
|
|
934
934
|
consentCheckbox?: string | undefined;
|
|
@@ -1224,9 +1224,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1224
1224
|
} | undefined;
|
|
1225
1225
|
config?: never | undefined;
|
|
1226
1226
|
} | {
|
|
1227
|
+
text: string;
|
|
1227
1228
|
packageName: string;
|
|
1228
1229
|
credentialType: string;
|
|
1229
|
-
text: string;
|
|
1230
1230
|
quickConnectType: "pinecone";
|
|
1231
1231
|
consentText?: string | undefined;
|
|
1232
1232
|
consentCheckbox?: string | undefined;
|
|
@@ -1256,19 +1256,19 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1256
1256
|
} | undefined;
|
|
1257
1257
|
}>;
|
|
1258
1258
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1259
|
-
isMFAEnforcementLicensed:
|
|
1260
|
-
isMFAEnforced:
|
|
1261
|
-
activeModules:
|
|
1259
|
+
isMFAEnforcementLicensed: vue32.ComputedRef<boolean>;
|
|
1260
|
+
isMFAEnforced: vue32.Ref<boolean, boolean>;
|
|
1261
|
+
activeModules: vue32.ComputedRef<string[]>;
|
|
1262
1262
|
isModuleActive: (moduleName: string) => boolean;
|
|
1263
1263
|
isAgentModuleActive: (name: string) => boolean;
|
|
1264
|
-
isDataTableFeatureEnabled:
|
|
1265
|
-
isChatFeatureEnabled:
|
|
1266
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1267
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1268
|
-
isPublicChatTriggerDisabled:
|
|
1269
|
-
isWorkflowPublicationServiceEnabled:
|
|
1264
|
+
isDataTableFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1265
|
+
isChatFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1266
|
+
isOtelCustomSpanAttributesEnabled: vue32.ComputedRef<boolean>;
|
|
1267
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1268
|
+
isPublicChatTriggerDisabled: vue32.ComputedRef<boolean>;
|
|
1269
|
+
isWorkflowPublicationServiceEnabled: vue32.ComputedRef<boolean>;
|
|
1270
1270
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1271
|
-
settings:
|
|
1271
|
+
settings: vue32.Ref<{
|
|
1272
1272
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1273
1273
|
inE2ETests: boolean;
|
|
1274
1274
|
isDocker: boolean;
|
|
@@ -1757,7 +1757,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1757
1757
|
canvasOnly: boolean;
|
|
1758
1758
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1759
1759
|
}>;
|
|
1760
|
-
userManagement:
|
|
1760
|
+
userManagement: vue32.Ref<{
|
|
1761
1761
|
quota: number;
|
|
1762
1762
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1763
1763
|
smtpSetup: boolean;
|
|
@@ -1770,8 +1770,8 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1770
1770
|
authenticationMethod: AuthenticationMethod;
|
|
1771
1771
|
passwordMinLength: number;
|
|
1772
1772
|
}>;
|
|
1773
|
-
templatesEndpointHealthy:
|
|
1774
|
-
api:
|
|
1773
|
+
templatesEndpointHealthy: vue32.Ref<boolean, boolean>;
|
|
1774
|
+
api: vue32.Ref<{
|
|
1775
1775
|
enabled: boolean;
|
|
1776
1776
|
latestVersion: number;
|
|
1777
1777
|
path: string;
|
|
@@ -1793,17 +1793,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1793
1793
|
enabled: boolean;
|
|
1794
1794
|
};
|
|
1795
1795
|
}>;
|
|
1796
|
-
mfa:
|
|
1796
|
+
mfa: vue32.Ref<{
|
|
1797
1797
|
enabled: boolean;
|
|
1798
1798
|
}, {
|
|
1799
1799
|
enabled: boolean;
|
|
1800
1800
|
} | {
|
|
1801
1801
|
enabled: boolean;
|
|
1802
1802
|
}>;
|
|
1803
|
-
isDocker:
|
|
1804
|
-
isDevRelease:
|
|
1805
|
-
endpointHealth:
|
|
1806
|
-
isEnterpriseFeatureEnabled:
|
|
1803
|
+
isDocker: vue32.ComputedRef<boolean>;
|
|
1804
|
+
isDevRelease: vue32.ComputedRef<boolean>;
|
|
1805
|
+
endpointHealth: vue32.ComputedRef<string>;
|
|
1806
|
+
isEnterpriseFeatureEnabled: vue32.ComputedRef<{
|
|
1807
1807
|
sharing: boolean;
|
|
1808
1808
|
ldap: boolean;
|
|
1809
1809
|
saml: boolean;
|
|
@@ -1834,36 +1834,36 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1834
1834
|
otelCustomSpanAttributes: boolean;
|
|
1835
1835
|
workflowReviews: boolean;
|
|
1836
1836
|
}>;
|
|
1837
|
-
databaseType:
|
|
1838
|
-
planName:
|
|
1839
|
-
consumerId:
|
|
1840
|
-
binaryDataMode:
|
|
1841
|
-
pruning:
|
|
1837
|
+
databaseType: vue32.ComputedRef<"sqlite" | "postgresdb">;
|
|
1838
|
+
planName: vue32.ComputedRef<string>;
|
|
1839
|
+
consumerId: vue32.ComputedRef<string>;
|
|
1840
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1841
|
+
pruning: vue32.ComputedRef<{
|
|
1842
1842
|
isEnabled: boolean;
|
|
1843
1843
|
maxAge: number;
|
|
1844
1844
|
maxCount: number;
|
|
1845
1845
|
} | undefined>;
|
|
1846
|
-
security:
|
|
1846
|
+
security: vue32.ComputedRef<{
|
|
1847
1847
|
blockFileAccessToN8nFiles: boolean;
|
|
1848
1848
|
secureCookie: boolean;
|
|
1849
1849
|
}>;
|
|
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:
|
|
1850
|
+
nodeJsVersion: vue32.ComputedRef<string>;
|
|
1851
|
+
nodeEnv: vue32.ComputedRef<string | undefined>;
|
|
1852
|
+
concurrency: vue32.ComputedRef<number>;
|
|
1853
|
+
isConcurrencyEnabled: vue32.ComputedRef<boolean>;
|
|
1854
|
+
isPublicApiEnabled: vue32.ComputedRef<boolean>;
|
|
1855
|
+
isSwaggerUIEnabled: vue32.ComputedRef<boolean>;
|
|
1856
|
+
isPreviewMode: vue32.ComputedRef<boolean>;
|
|
1857
|
+
isCanvasOnly: vue32.ComputedRef<boolean>;
|
|
1858
|
+
isCrdtCollaborationEnabled: vue32.ComputedRef<boolean>;
|
|
1859
|
+
publicApiLatestVersion: vue32.ComputedRef<number>;
|
|
1860
|
+
publicApiPath: vue32.ComputedRef<string>;
|
|
1861
|
+
showSetupPage: vue32.ComputedRef<boolean | undefined>;
|
|
1862
|
+
deploymentType: vue32.ComputedRef<string>;
|
|
1863
|
+
isCloudDeployment: vue32.ComputedRef<boolean>;
|
|
1864
|
+
isSmtpSetup: vue32.ComputedRef<boolean>;
|
|
1865
|
+
isPersonalizationSurveyEnabled: vue32.ComputedRef<boolean>;
|
|
1866
|
+
telemetry: vue32.ComputedRef<{
|
|
1867
1867
|
enabled: boolean;
|
|
1868
1868
|
config?: {
|
|
1869
1869
|
url: string;
|
|
@@ -1872,43 +1872,43 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1872
1872
|
sourceConfig: string;
|
|
1873
1873
|
} | undefined;
|
|
1874
1874
|
}>;
|
|
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:
|
|
1875
|
+
logLevel: vue32.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1876
|
+
isTelemetryEnabled: vue32.ComputedRef<boolean>;
|
|
1877
|
+
isMfaFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1878
|
+
isFoldersFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1879
|
+
isAiAssistantEnabled: vue32.ComputedRef<boolean>;
|
|
1880
|
+
isCustomRolesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1881
|
+
areTagsEnabled: vue32.ComputedRef<boolean>;
|
|
1882
|
+
isAutosaveEnabled: vue32.ComputedRef<boolean>;
|
|
1883
|
+
isHiringBannerEnabled: vue32.ComputedRef<boolean>;
|
|
1884
|
+
isTemplatesEnabled: vue32.ComputedRef<boolean>;
|
|
1885
|
+
isTemplatesEndpointReachable: vue32.ComputedRef<boolean>;
|
|
1886
|
+
templatesHost: vue32.ComputedRef<string>;
|
|
1887
|
+
pushBackend: vue32.ComputedRef<"sse" | "websocket">;
|
|
1888
|
+
isCommunityNodesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
1889
|
+
isUnverifiedPackagesEnabled: vue32.ComputedRef<boolean>;
|
|
1890
|
+
allowedModules: vue32.ComputedRef<{
|
|
1891
1891
|
builtIn?: string[] | undefined;
|
|
1892
1892
|
external?: string[] | undefined;
|
|
1893
1893
|
}>;
|
|
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:
|
|
1894
|
+
isQueueModeEnabled: vue32.ComputedRef<boolean>;
|
|
1895
|
+
isMultiMain: vue32.ComputedRef<boolean>;
|
|
1896
|
+
isWorkerViewAvailable: vue32.ComputedRef<boolean>;
|
|
1897
|
+
workflowCallerPolicyDefaultOption: vue32.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1898
|
+
permanentlyDismissedBanners: vue32.ComputedRef<string[]>;
|
|
1899
|
+
saveDataErrorExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1900
|
+
saveDataSuccessExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1901
|
+
saveManualExecutions: vue32.Ref<boolean, boolean>;
|
|
1902
|
+
saveDataProgressExecution: vue32.Ref<boolean, boolean>;
|
|
1903
|
+
isCommunityPlan: vue32.ComputedRef<boolean>;
|
|
1904
|
+
isAskAiEnabled: vue32.ComputedRef<boolean>;
|
|
1905
|
+
isAiBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
1906
|
+
isAiAssistantOrBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
1907
|
+
isAiCreditsEnabled: vue32.ComputedRef<boolean>;
|
|
1908
|
+
aiCreditsQuota: vue32.ComputedRef<number>;
|
|
1909
|
+
isAiDataSharingEnabled: vue32.ComputedRef<boolean>;
|
|
1910
|
+
isAiGatewayEnabled: vue32.ComputedRef<boolean>;
|
|
1911
|
+
aiGatewayBudget: vue32.ComputedRef<number>;
|
|
1912
1912
|
reset: () => void;
|
|
1913
1913
|
getTimezones: () => Promise<IDataObject>;
|
|
1914
1914
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1919,7 +1919,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
1919
1919
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1920
1920
|
initialize: () => Promise<void>;
|
|
1921
1921
|
getModuleSettings: () => Promise<void>;
|
|
1922
|
-
moduleSettings:
|
|
1922
|
+
moduleSettings: vue32.Ref<{
|
|
1923
1923
|
insights?: {
|
|
1924
1924
|
summary: boolean;
|
|
1925
1925
|
dashboard: boolean;
|
|
@@ -2187,9 +2187,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2187
2187
|
} | undefined;
|
|
2188
2188
|
config?: never | undefined;
|
|
2189
2189
|
} | {
|
|
2190
|
+
text: string;
|
|
2190
2191
|
packageName: string;
|
|
2191
2192
|
credentialType: string;
|
|
2192
|
-
text: string;
|
|
2193
2193
|
quickConnectType: "pinecone";
|
|
2194
2194
|
consentText?: string | undefined;
|
|
2195
2195
|
consentCheckbox?: string | undefined;
|
|
@@ -2485,9 +2485,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2485
2485
|
} | undefined;
|
|
2486
2486
|
config?: never | undefined;
|
|
2487
2487
|
} | {
|
|
2488
|
+
text: string;
|
|
2488
2489
|
packageName: string;
|
|
2489
2490
|
credentialType: string;
|
|
2490
|
-
text: string;
|
|
2491
2491
|
quickConnectType: "pinecone";
|
|
2492
2492
|
consentText?: string | undefined;
|
|
2493
2493
|
consentCheckbox?: string | undefined;
|
|
@@ -2517,19 +2517,19 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
2517
2517
|
} | undefined;
|
|
2518
2518
|
}>;
|
|
2519
2519
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2520
|
-
isMFAEnforcementLicensed:
|
|
2521
|
-
isMFAEnforced:
|
|
2522
|
-
activeModules:
|
|
2520
|
+
isMFAEnforcementLicensed: vue32.ComputedRef<boolean>;
|
|
2521
|
+
isMFAEnforced: vue32.Ref<boolean, boolean>;
|
|
2522
|
+
activeModules: vue32.ComputedRef<string[]>;
|
|
2523
2523
|
isModuleActive: (moduleName: string) => boolean;
|
|
2524
2524
|
isAgentModuleActive: (name: string) => boolean;
|
|
2525
|
-
isDataTableFeatureEnabled:
|
|
2526
|
-
isChatFeatureEnabled:
|
|
2527
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2528
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2529
|
-
isPublicChatTriggerDisabled:
|
|
2530
|
-
isWorkflowPublicationServiceEnabled:
|
|
2525
|
+
isDataTableFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
2526
|
+
isChatFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
2527
|
+
isOtelCustomSpanAttributesEnabled: vue32.ComputedRef<boolean>;
|
|
2528
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
2529
|
+
isPublicChatTriggerDisabled: vue32.ComputedRef<boolean>;
|
|
2530
|
+
isWorkflowPublicationServiceEnabled: vue32.ComputedRef<boolean>;
|
|
2531
2531
|
}, "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:
|
|
2532
|
+
settings: vue32.Ref<{
|
|
2533
2533
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2534
2534
|
inE2ETests: boolean;
|
|
2535
2535
|
isDocker: boolean;
|
|
@@ -3018,7 +3018,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3018
3018
|
canvasOnly: boolean;
|
|
3019
3019
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3020
3020
|
}>;
|
|
3021
|
-
userManagement:
|
|
3021
|
+
userManagement: vue32.Ref<{
|
|
3022
3022
|
quota: number;
|
|
3023
3023
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3024
3024
|
smtpSetup: boolean;
|
|
@@ -3031,8 +3031,8 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3031
3031
|
authenticationMethod: AuthenticationMethod;
|
|
3032
3032
|
passwordMinLength: number;
|
|
3033
3033
|
}>;
|
|
3034
|
-
templatesEndpointHealthy:
|
|
3035
|
-
api:
|
|
3034
|
+
templatesEndpointHealthy: vue32.Ref<boolean, boolean>;
|
|
3035
|
+
api: vue32.Ref<{
|
|
3036
3036
|
enabled: boolean;
|
|
3037
3037
|
latestVersion: number;
|
|
3038
3038
|
path: string;
|
|
@@ -3054,17 +3054,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3054
3054
|
enabled: boolean;
|
|
3055
3055
|
};
|
|
3056
3056
|
}>;
|
|
3057
|
-
mfa:
|
|
3057
|
+
mfa: vue32.Ref<{
|
|
3058
3058
|
enabled: boolean;
|
|
3059
3059
|
}, {
|
|
3060
3060
|
enabled: boolean;
|
|
3061
3061
|
} | {
|
|
3062
3062
|
enabled: boolean;
|
|
3063
3063
|
}>;
|
|
3064
|
-
isDocker:
|
|
3065
|
-
isDevRelease:
|
|
3066
|
-
endpointHealth:
|
|
3067
|
-
isEnterpriseFeatureEnabled:
|
|
3064
|
+
isDocker: vue32.ComputedRef<boolean>;
|
|
3065
|
+
isDevRelease: vue32.ComputedRef<boolean>;
|
|
3066
|
+
endpointHealth: vue32.ComputedRef<string>;
|
|
3067
|
+
isEnterpriseFeatureEnabled: vue32.ComputedRef<{
|
|
3068
3068
|
sharing: boolean;
|
|
3069
3069
|
ldap: boolean;
|
|
3070
3070
|
saml: boolean;
|
|
@@ -3095,36 +3095,36 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3095
3095
|
otelCustomSpanAttributes: boolean;
|
|
3096
3096
|
workflowReviews: boolean;
|
|
3097
3097
|
}>;
|
|
3098
|
-
databaseType:
|
|
3099
|
-
planName:
|
|
3100
|
-
consumerId:
|
|
3101
|
-
binaryDataMode:
|
|
3102
|
-
pruning:
|
|
3098
|
+
databaseType: vue32.ComputedRef<"sqlite" | "postgresdb">;
|
|
3099
|
+
planName: vue32.ComputedRef<string>;
|
|
3100
|
+
consumerId: vue32.ComputedRef<string>;
|
|
3101
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3102
|
+
pruning: vue32.ComputedRef<{
|
|
3103
3103
|
isEnabled: boolean;
|
|
3104
3104
|
maxAge: number;
|
|
3105
3105
|
maxCount: number;
|
|
3106
3106
|
} | undefined>;
|
|
3107
|
-
security:
|
|
3107
|
+
security: vue32.ComputedRef<{
|
|
3108
3108
|
blockFileAccessToN8nFiles: boolean;
|
|
3109
3109
|
secureCookie: boolean;
|
|
3110
3110
|
}>;
|
|
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:
|
|
3111
|
+
nodeJsVersion: vue32.ComputedRef<string>;
|
|
3112
|
+
nodeEnv: vue32.ComputedRef<string | undefined>;
|
|
3113
|
+
concurrency: vue32.ComputedRef<number>;
|
|
3114
|
+
isConcurrencyEnabled: vue32.ComputedRef<boolean>;
|
|
3115
|
+
isPublicApiEnabled: vue32.ComputedRef<boolean>;
|
|
3116
|
+
isSwaggerUIEnabled: vue32.ComputedRef<boolean>;
|
|
3117
|
+
isPreviewMode: vue32.ComputedRef<boolean>;
|
|
3118
|
+
isCanvasOnly: vue32.ComputedRef<boolean>;
|
|
3119
|
+
isCrdtCollaborationEnabled: vue32.ComputedRef<boolean>;
|
|
3120
|
+
publicApiLatestVersion: vue32.ComputedRef<number>;
|
|
3121
|
+
publicApiPath: vue32.ComputedRef<string>;
|
|
3122
|
+
showSetupPage: vue32.ComputedRef<boolean | undefined>;
|
|
3123
|
+
deploymentType: vue32.ComputedRef<string>;
|
|
3124
|
+
isCloudDeployment: vue32.ComputedRef<boolean>;
|
|
3125
|
+
isSmtpSetup: vue32.ComputedRef<boolean>;
|
|
3126
|
+
isPersonalizationSurveyEnabled: vue32.ComputedRef<boolean>;
|
|
3127
|
+
telemetry: vue32.ComputedRef<{
|
|
3128
3128
|
enabled: boolean;
|
|
3129
3129
|
config?: {
|
|
3130
3130
|
url: string;
|
|
@@ -3133,43 +3133,43 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3133
3133
|
sourceConfig: string;
|
|
3134
3134
|
} | undefined;
|
|
3135
3135
|
}>;
|
|
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:
|
|
3136
|
+
logLevel: vue32.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3137
|
+
isTelemetryEnabled: vue32.ComputedRef<boolean>;
|
|
3138
|
+
isMfaFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3139
|
+
isFoldersFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3140
|
+
isAiAssistantEnabled: vue32.ComputedRef<boolean>;
|
|
3141
|
+
isCustomRolesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3142
|
+
areTagsEnabled: vue32.ComputedRef<boolean>;
|
|
3143
|
+
isAutosaveEnabled: vue32.ComputedRef<boolean>;
|
|
3144
|
+
isHiringBannerEnabled: vue32.ComputedRef<boolean>;
|
|
3145
|
+
isTemplatesEnabled: vue32.ComputedRef<boolean>;
|
|
3146
|
+
isTemplatesEndpointReachable: vue32.ComputedRef<boolean>;
|
|
3147
|
+
templatesHost: vue32.ComputedRef<string>;
|
|
3148
|
+
pushBackend: vue32.ComputedRef<"sse" | "websocket">;
|
|
3149
|
+
isCommunityNodesFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3150
|
+
isUnverifiedPackagesEnabled: vue32.ComputedRef<boolean>;
|
|
3151
|
+
allowedModules: vue32.ComputedRef<{
|
|
3152
3152
|
builtIn?: string[] | undefined;
|
|
3153
3153
|
external?: string[] | undefined;
|
|
3154
3154
|
}>;
|
|
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:
|
|
3155
|
+
isQueueModeEnabled: vue32.ComputedRef<boolean>;
|
|
3156
|
+
isMultiMain: vue32.ComputedRef<boolean>;
|
|
3157
|
+
isWorkerViewAvailable: vue32.ComputedRef<boolean>;
|
|
3158
|
+
workflowCallerPolicyDefaultOption: vue32.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3159
|
+
permanentlyDismissedBanners: vue32.ComputedRef<string[]>;
|
|
3160
|
+
saveDataErrorExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3161
|
+
saveDataSuccessExecution: vue32.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3162
|
+
saveManualExecutions: vue32.Ref<boolean, boolean>;
|
|
3163
|
+
saveDataProgressExecution: vue32.Ref<boolean, boolean>;
|
|
3164
|
+
isCommunityPlan: vue32.ComputedRef<boolean>;
|
|
3165
|
+
isAskAiEnabled: vue32.ComputedRef<boolean>;
|
|
3166
|
+
isAiBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
3167
|
+
isAiAssistantOrBuilderEnabled: vue32.ComputedRef<boolean>;
|
|
3168
|
+
isAiCreditsEnabled: vue32.ComputedRef<boolean>;
|
|
3169
|
+
aiCreditsQuota: vue32.ComputedRef<number>;
|
|
3170
|
+
isAiDataSharingEnabled: vue32.ComputedRef<boolean>;
|
|
3171
|
+
isAiGatewayEnabled: vue32.ComputedRef<boolean>;
|
|
3172
|
+
aiGatewayBudget: vue32.ComputedRef<number>;
|
|
3173
3173
|
reset: () => void;
|
|
3174
3174
|
getTimezones: () => Promise<IDataObject>;
|
|
3175
3175
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3180,7 +3180,7 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3180
3180
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3181
3181
|
initialize: () => Promise<void>;
|
|
3182
3182
|
getModuleSettings: () => Promise<void>;
|
|
3183
|
-
moduleSettings:
|
|
3183
|
+
moduleSettings: vue32.Ref<{
|
|
3184
3184
|
insights?: {
|
|
3185
3185
|
summary: boolean;
|
|
3186
3186
|
dashboard: boolean;
|
|
@@ -3448,9 +3448,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3448
3448
|
} | undefined;
|
|
3449
3449
|
config?: never | undefined;
|
|
3450
3450
|
} | {
|
|
3451
|
+
text: string;
|
|
3451
3452
|
packageName: string;
|
|
3452
3453
|
credentialType: string;
|
|
3453
|
-
text: string;
|
|
3454
3454
|
quickConnectType: "pinecone";
|
|
3455
3455
|
consentText?: string | undefined;
|
|
3456
3456
|
consentCheckbox?: string | undefined;
|
|
@@ -3746,9 +3746,9 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3746
3746
|
} | undefined;
|
|
3747
3747
|
config?: never | undefined;
|
|
3748
3748
|
} | {
|
|
3749
|
+
text: string;
|
|
3749
3750
|
packageName: string;
|
|
3750
3751
|
credentialType: string;
|
|
3751
|
-
text: string;
|
|
3752
3752
|
quickConnectType: "pinecone";
|
|
3753
3753
|
consentText?: string | undefined;
|
|
3754
3754
|
consentCheckbox?: string | undefined;
|
|
@@ -3778,17 +3778,17 @@ declare const useSettingsStore: pinia5.StoreDefinition<"settings", Pick<{
|
|
|
3778
3778
|
} | undefined;
|
|
3779
3779
|
}>;
|
|
3780
3780
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3781
|
-
isMFAEnforcementLicensed:
|
|
3782
|
-
isMFAEnforced:
|
|
3783
|
-
activeModules:
|
|
3781
|
+
isMFAEnforcementLicensed: vue32.ComputedRef<boolean>;
|
|
3782
|
+
isMFAEnforced: vue32.Ref<boolean, boolean>;
|
|
3783
|
+
activeModules: vue32.ComputedRef<string[]>;
|
|
3784
3784
|
isModuleActive: (moduleName: string) => boolean;
|
|
3785
3785
|
isAgentModuleActive: (name: string) => boolean;
|
|
3786
|
-
isDataTableFeatureEnabled:
|
|
3787
|
-
isChatFeatureEnabled:
|
|
3788
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3789
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3790
|
-
isPublicChatTriggerDisabled:
|
|
3791
|
-
isWorkflowPublicationServiceEnabled:
|
|
3786
|
+
isDataTableFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3787
|
+
isChatFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3788
|
+
isOtelCustomSpanAttributesEnabled: vue32.ComputedRef<boolean>;
|
|
3789
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue32.ComputedRef<boolean>;
|
|
3790
|
+
isPublicChatTriggerDisabled: vue32.ComputedRef<boolean>;
|
|
3791
|
+
isWorkflowPublicationServiceEnabled: vue32.ComputedRef<boolean>;
|
|
3792
3792
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3793
3793
|
//#endregion
|
|
3794
3794
|
export { useSettingsStore };
|