@n8n/stores 2.35.0 → 2.35.1
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.cts +2 -2
- package/dist/rbac.store.d.cts +33 -33
- package/dist/rbac.store.d.mts +31 -31
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +253 -247
- package/dist/settings.store.d.mts +246 -240
- package/dist/useAgentRequestStore.d.cts +2 -2
- 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 +51 -51
- package/dist/users.store.d.mts +51 -51
- package/dist/versions.store.d.cts +40 -40
- package/dist/versions.store.d.mts +30 -30
- package/package.json +11 -11
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia0 from "pinia";
|
|
2
|
+
import * as vue0 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: pinia0.StoreDefinition<"settings", Pick<{
|
|
10
|
+
settings: vue0.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
13
13
|
isDocker: boolean;
|
|
@@ -498,7 +498,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
498
498
|
canvasOnly: boolean;
|
|
499
499
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
500
500
|
}>;
|
|
501
|
-
userManagement:
|
|
501
|
+
userManagement: vue0.Ref<{
|
|
502
502
|
quota: number;
|
|
503
503
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
504
504
|
smtpSetup: boolean;
|
|
@@ -511,8 +511,8 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
511
511
|
authenticationMethod: AuthenticationMethod;
|
|
512
512
|
passwordMinLength: number;
|
|
513
513
|
}>;
|
|
514
|
-
templatesEndpointHealthy:
|
|
515
|
-
api:
|
|
514
|
+
templatesEndpointHealthy: vue0.Ref<boolean, boolean>;
|
|
515
|
+
api: vue0.Ref<{
|
|
516
516
|
enabled: boolean;
|
|
517
517
|
latestVersion: number;
|
|
518
518
|
path: string;
|
|
@@ -534,17 +534,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
534
534
|
enabled: boolean;
|
|
535
535
|
};
|
|
536
536
|
}>;
|
|
537
|
-
mfa:
|
|
537
|
+
mfa: vue0.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: vue0.ComputedRef<boolean>;
|
|
545
|
+
isDevRelease: vue0.ComputedRef<boolean>;
|
|
546
|
+
endpointHealth: vue0.ComputedRef<string>;
|
|
547
|
+
isEnterpriseFeatureEnabled: vue0.ComputedRef<{
|
|
548
548
|
sharing: boolean;
|
|
549
549
|
ldap: boolean;
|
|
550
550
|
saml: boolean;
|
|
@@ -575,37 +575,37 @@ declare const useSettingsStore: pinia4.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: vue0.ComputedRef<"sqlite" | "postgresdb">;
|
|
579
|
+
planName: vue0.ComputedRef<string>;
|
|
580
|
+
consumerId: vue0.ComputedRef<string>;
|
|
581
|
+
binaryDataMode: vue0.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
582
|
+
pruning: vue0.ComputedRef<{
|
|
583
583
|
isEnabled: boolean;
|
|
584
584
|
maxAge: number;
|
|
585
585
|
maxCount: number;
|
|
586
586
|
} | undefined>;
|
|
587
|
-
security:
|
|
587
|
+
security: vue0.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
|
-
isE2ETestMode:
|
|
599
|
-
isCanvasOnly:
|
|
600
|
-
isCrdtCollaborationEnabled:
|
|
601
|
-
publicApiLatestVersion:
|
|
602
|
-
publicApiPath:
|
|
603
|
-
showSetupPage:
|
|
604
|
-
deploymentType:
|
|
605
|
-
isCloudDeployment:
|
|
606
|
-
isSmtpSetup:
|
|
607
|
-
isPersonalizationSurveyEnabled:
|
|
608
|
-
telemetry:
|
|
591
|
+
nodeJsVersion: vue0.ComputedRef<string>;
|
|
592
|
+
nodeEnv: vue0.ComputedRef<string | undefined>;
|
|
593
|
+
concurrency: vue0.ComputedRef<number>;
|
|
594
|
+
isConcurrencyEnabled: vue0.ComputedRef<boolean>;
|
|
595
|
+
isPublicApiEnabled: vue0.ComputedRef<boolean>;
|
|
596
|
+
isSwaggerUIEnabled: vue0.ComputedRef<boolean>;
|
|
597
|
+
isPreviewMode: vue0.ComputedRef<boolean>;
|
|
598
|
+
isE2ETestMode: vue0.ComputedRef<boolean>;
|
|
599
|
+
isCanvasOnly: vue0.ComputedRef<boolean>;
|
|
600
|
+
isCrdtCollaborationEnabled: vue0.ComputedRef<boolean>;
|
|
601
|
+
publicApiLatestVersion: vue0.ComputedRef<number>;
|
|
602
|
+
publicApiPath: vue0.ComputedRef<string>;
|
|
603
|
+
showSetupPage: vue0.ComputedRef<boolean | undefined>;
|
|
604
|
+
deploymentType: vue0.ComputedRef<string>;
|
|
605
|
+
isCloudDeployment: vue0.ComputedRef<boolean>;
|
|
606
|
+
isSmtpSetup: vue0.ComputedRef<boolean>;
|
|
607
|
+
isPersonalizationSurveyEnabled: vue0.ComputedRef<boolean>;
|
|
608
|
+
telemetry: vue0.ComputedRef<{
|
|
609
609
|
enabled: boolean;
|
|
610
610
|
config?: {
|
|
611
611
|
url: string;
|
|
@@ -614,43 +614,43 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
614
614
|
sourceConfig: string;
|
|
615
615
|
} | undefined;
|
|
616
616
|
}>;
|
|
617
|
-
logLevel:
|
|
618
|
-
isTelemetryEnabled:
|
|
619
|
-
isMfaFeatureEnabled:
|
|
620
|
-
isFoldersFeatureEnabled:
|
|
621
|
-
isAiAssistantEnabled:
|
|
622
|
-
isCustomRolesFeatureEnabled:
|
|
623
|
-
areTagsEnabled:
|
|
624
|
-
isAutosaveEnabled:
|
|
625
|
-
isHiringBannerEnabled:
|
|
626
|
-
isTemplatesEnabled:
|
|
627
|
-
isTemplatesEndpointReachable:
|
|
628
|
-
templatesHost:
|
|
629
|
-
pushBackend:
|
|
630
|
-
isCommunityNodesFeatureEnabled:
|
|
631
|
-
isUnverifiedPackagesEnabled:
|
|
632
|
-
allowedModules:
|
|
617
|
+
logLevel: vue0.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
618
|
+
isTelemetryEnabled: vue0.ComputedRef<boolean>;
|
|
619
|
+
isMfaFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
620
|
+
isFoldersFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
621
|
+
isAiAssistantEnabled: vue0.ComputedRef<boolean>;
|
|
622
|
+
isCustomRolesFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
623
|
+
areTagsEnabled: vue0.ComputedRef<boolean>;
|
|
624
|
+
isAutosaveEnabled: vue0.ComputedRef<boolean>;
|
|
625
|
+
isHiringBannerEnabled: vue0.ComputedRef<boolean>;
|
|
626
|
+
isTemplatesEnabled: vue0.ComputedRef<boolean>;
|
|
627
|
+
isTemplatesEndpointReachable: vue0.ComputedRef<boolean>;
|
|
628
|
+
templatesHost: vue0.ComputedRef<string>;
|
|
629
|
+
pushBackend: vue0.ComputedRef<"sse" | "websocket">;
|
|
630
|
+
isCommunityNodesFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
631
|
+
isUnverifiedPackagesEnabled: vue0.ComputedRef<boolean>;
|
|
632
|
+
allowedModules: vue0.ComputedRef<{
|
|
633
633
|
builtIn?: string[] | undefined;
|
|
634
634
|
external?: string[] | undefined;
|
|
635
635
|
}>;
|
|
636
|
-
isQueueModeEnabled:
|
|
637
|
-
isMultiMain:
|
|
638
|
-
isWorkerViewAvailable:
|
|
639
|
-
workflowCallerPolicyDefaultOption:
|
|
640
|
-
permanentlyDismissedBanners:
|
|
641
|
-
saveDataErrorExecution:
|
|
642
|
-
saveDataSuccessExecution:
|
|
643
|
-
saveManualExecutions:
|
|
644
|
-
saveDataProgressExecution:
|
|
645
|
-
isCommunityPlan:
|
|
646
|
-
isAskAiEnabled:
|
|
647
|
-
isAiBuilderEnabled:
|
|
648
|
-
isAiAssistantOrBuilderEnabled:
|
|
649
|
-
isAiCreditsEnabled:
|
|
650
|
-
aiCreditsQuota:
|
|
651
|
-
isAiDataSharingEnabled:
|
|
652
|
-
isAiGatewayEnabled:
|
|
653
|
-
aiGatewayBudget:
|
|
636
|
+
isQueueModeEnabled: vue0.ComputedRef<boolean>;
|
|
637
|
+
isMultiMain: vue0.ComputedRef<boolean>;
|
|
638
|
+
isWorkerViewAvailable: vue0.ComputedRef<boolean>;
|
|
639
|
+
workflowCallerPolicyDefaultOption: vue0.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
640
|
+
permanentlyDismissedBanners: vue0.ComputedRef<string[]>;
|
|
641
|
+
saveDataErrorExecution: vue0.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
642
|
+
saveDataSuccessExecution: vue0.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
643
|
+
saveManualExecutions: vue0.Ref<boolean, boolean>;
|
|
644
|
+
saveDataProgressExecution: vue0.Ref<boolean, boolean>;
|
|
645
|
+
isCommunityPlan: vue0.ComputedRef<boolean>;
|
|
646
|
+
isAskAiEnabled: vue0.ComputedRef<boolean>;
|
|
647
|
+
isAiBuilderEnabled: vue0.ComputedRef<boolean>;
|
|
648
|
+
isAiAssistantOrBuilderEnabled: vue0.ComputedRef<boolean>;
|
|
649
|
+
isAiCreditsEnabled: vue0.ComputedRef<boolean>;
|
|
650
|
+
aiCreditsQuota: vue0.ComputedRef<number>;
|
|
651
|
+
isAiDataSharingEnabled: vue0.ComputedRef<boolean>;
|
|
652
|
+
isAiGatewayEnabled: vue0.ComputedRef<boolean>;
|
|
653
|
+
aiGatewayBudget: vue0.ComputedRef<number>;
|
|
654
654
|
reset: () => void;
|
|
655
655
|
getTimezones: () => Promise<IDataObject>;
|
|
656
656
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -661,7 +661,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
661
661
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
662
662
|
initialize: () => Promise<void>;
|
|
663
663
|
getModuleSettings: () => Promise<void>;
|
|
664
|
-
moduleSettings:
|
|
664
|
+
moduleSettings: vue0.Ref<{
|
|
665
665
|
insights?: {
|
|
666
666
|
summary: boolean;
|
|
667
667
|
dashboard: boolean;
|
|
@@ -914,6 +914,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
914
914
|
workflowBuilderAvailable: boolean;
|
|
915
915
|
sandboxUnavailableReason: string | null;
|
|
916
916
|
runDebugEnabled: boolean;
|
|
917
|
+
activationCapped?: boolean | undefined;
|
|
917
918
|
} | undefined;
|
|
918
919
|
'quick-connect'?: {
|
|
919
920
|
options: ({
|
|
@@ -930,9 +931,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
930
931
|
} | undefined;
|
|
931
932
|
config?: never | undefined;
|
|
932
933
|
} | {
|
|
933
|
-
text: string;
|
|
934
934
|
packageName: string;
|
|
935
935
|
credentialType: string;
|
|
936
|
+
text: string;
|
|
936
937
|
quickConnectType: "pinecone";
|
|
937
938
|
consentText?: string | undefined;
|
|
938
939
|
consentCheckbox?: string | undefined;
|
|
@@ -1213,6 +1214,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1213
1214
|
workflowBuilderAvailable: boolean;
|
|
1214
1215
|
sandboxUnavailableReason: string | null;
|
|
1215
1216
|
runDebugEnabled: boolean;
|
|
1217
|
+
activationCapped?: boolean | undefined;
|
|
1216
1218
|
} | undefined;
|
|
1217
1219
|
'quick-connect'?: {
|
|
1218
1220
|
options: ({
|
|
@@ -1229,9 +1231,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1229
1231
|
} | undefined;
|
|
1230
1232
|
config?: never | undefined;
|
|
1231
1233
|
} | {
|
|
1232
|
-
text: string;
|
|
1233
1234
|
packageName: string;
|
|
1234
1235
|
credentialType: string;
|
|
1236
|
+
text: string;
|
|
1235
1237
|
quickConnectType: "pinecone";
|
|
1236
1238
|
consentText?: string | undefined;
|
|
1237
1239
|
consentCheckbox?: string | undefined;
|
|
@@ -1261,19 +1263,19 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1261
1263
|
} | undefined;
|
|
1262
1264
|
}>;
|
|
1263
1265
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
1264
|
-
isMFAEnforcementLicensed:
|
|
1265
|
-
isMFAEnforced:
|
|
1266
|
-
activeModules:
|
|
1266
|
+
isMFAEnforcementLicensed: vue0.ComputedRef<boolean>;
|
|
1267
|
+
isMFAEnforced: vue0.Ref<boolean, boolean>;
|
|
1268
|
+
activeModules: vue0.ComputedRef<string[]>;
|
|
1267
1269
|
isModuleActive: (moduleName: string) => boolean;
|
|
1268
1270
|
isAgentModuleActive: (name: string) => boolean;
|
|
1269
|
-
isDataTableFeatureEnabled:
|
|
1270
|
-
isChatFeatureEnabled:
|
|
1271
|
-
isOtelCustomSpanAttributesEnabled:
|
|
1272
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
1273
|
-
isPublicChatTriggerDisabled:
|
|
1274
|
-
isWorkflowPublicationServiceEnabled:
|
|
1271
|
+
isDataTableFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1272
|
+
isChatFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1273
|
+
isOtelCustomSpanAttributesEnabled: vue0.ComputedRef<boolean>;
|
|
1274
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1275
|
+
isPublicChatTriggerDisabled: vue0.ComputedRef<boolean>;
|
|
1276
|
+
isWorkflowPublicationServiceEnabled: vue0.ComputedRef<boolean>;
|
|
1275
1277
|
}, "settings" | "saveDataErrorExecution" | "saveDataSuccessExecution" | "saveManualExecutions" | "userManagement" | "mfa" | "templatesEndpointHealthy" | "api" | "saveDataProgressExecution" | "moduleSettings" | "isMFAEnforced">, Pick<{
|
|
1276
|
-
settings:
|
|
1278
|
+
settings: vue0.Ref<{
|
|
1277
1279
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
1278
1280
|
inE2ETests: boolean;
|
|
1279
1281
|
isDocker: boolean;
|
|
@@ -1764,7 +1766,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1764
1766
|
canvasOnly: boolean;
|
|
1765
1767
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
1766
1768
|
}>;
|
|
1767
|
-
userManagement:
|
|
1769
|
+
userManagement: vue0.Ref<{
|
|
1768
1770
|
quota: number;
|
|
1769
1771
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
1770
1772
|
smtpSetup: boolean;
|
|
@@ -1777,8 +1779,8 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1777
1779
|
authenticationMethod: AuthenticationMethod;
|
|
1778
1780
|
passwordMinLength: number;
|
|
1779
1781
|
}>;
|
|
1780
|
-
templatesEndpointHealthy:
|
|
1781
|
-
api:
|
|
1782
|
+
templatesEndpointHealthy: vue0.Ref<boolean, boolean>;
|
|
1783
|
+
api: vue0.Ref<{
|
|
1782
1784
|
enabled: boolean;
|
|
1783
1785
|
latestVersion: number;
|
|
1784
1786
|
path: string;
|
|
@@ -1800,17 +1802,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1800
1802
|
enabled: boolean;
|
|
1801
1803
|
};
|
|
1802
1804
|
}>;
|
|
1803
|
-
mfa:
|
|
1805
|
+
mfa: vue0.Ref<{
|
|
1804
1806
|
enabled: boolean;
|
|
1805
1807
|
}, {
|
|
1806
1808
|
enabled: boolean;
|
|
1807
1809
|
} | {
|
|
1808
1810
|
enabled: boolean;
|
|
1809
1811
|
}>;
|
|
1810
|
-
isDocker:
|
|
1811
|
-
isDevRelease:
|
|
1812
|
-
endpointHealth:
|
|
1813
|
-
isEnterpriseFeatureEnabled:
|
|
1812
|
+
isDocker: vue0.ComputedRef<boolean>;
|
|
1813
|
+
isDevRelease: vue0.ComputedRef<boolean>;
|
|
1814
|
+
endpointHealth: vue0.ComputedRef<string>;
|
|
1815
|
+
isEnterpriseFeatureEnabled: vue0.ComputedRef<{
|
|
1814
1816
|
sharing: boolean;
|
|
1815
1817
|
ldap: boolean;
|
|
1816
1818
|
saml: boolean;
|
|
@@ -1841,37 +1843,37 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1841
1843
|
otelCustomSpanAttributes: boolean;
|
|
1842
1844
|
workflowReviews: boolean;
|
|
1843
1845
|
}>;
|
|
1844
|
-
databaseType:
|
|
1845
|
-
planName:
|
|
1846
|
-
consumerId:
|
|
1847
|
-
binaryDataMode:
|
|
1848
|
-
pruning:
|
|
1846
|
+
databaseType: vue0.ComputedRef<"sqlite" | "postgresdb">;
|
|
1847
|
+
planName: vue0.ComputedRef<string>;
|
|
1848
|
+
consumerId: vue0.ComputedRef<string>;
|
|
1849
|
+
binaryDataMode: vue0.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
1850
|
+
pruning: vue0.ComputedRef<{
|
|
1849
1851
|
isEnabled: boolean;
|
|
1850
1852
|
maxAge: number;
|
|
1851
1853
|
maxCount: number;
|
|
1852
1854
|
} | undefined>;
|
|
1853
|
-
security:
|
|
1855
|
+
security: vue0.ComputedRef<{
|
|
1854
1856
|
blockFileAccessToN8nFiles: boolean;
|
|
1855
1857
|
secureCookie: boolean;
|
|
1856
1858
|
}>;
|
|
1857
|
-
nodeJsVersion:
|
|
1858
|
-
nodeEnv:
|
|
1859
|
-
concurrency:
|
|
1860
|
-
isConcurrencyEnabled:
|
|
1861
|
-
isPublicApiEnabled:
|
|
1862
|
-
isSwaggerUIEnabled:
|
|
1863
|
-
isPreviewMode:
|
|
1864
|
-
isE2ETestMode:
|
|
1865
|
-
isCanvasOnly:
|
|
1866
|
-
isCrdtCollaborationEnabled:
|
|
1867
|
-
publicApiLatestVersion:
|
|
1868
|
-
publicApiPath:
|
|
1869
|
-
showSetupPage:
|
|
1870
|
-
deploymentType:
|
|
1871
|
-
isCloudDeployment:
|
|
1872
|
-
isSmtpSetup:
|
|
1873
|
-
isPersonalizationSurveyEnabled:
|
|
1874
|
-
telemetry:
|
|
1859
|
+
nodeJsVersion: vue0.ComputedRef<string>;
|
|
1860
|
+
nodeEnv: vue0.ComputedRef<string | undefined>;
|
|
1861
|
+
concurrency: vue0.ComputedRef<number>;
|
|
1862
|
+
isConcurrencyEnabled: vue0.ComputedRef<boolean>;
|
|
1863
|
+
isPublicApiEnabled: vue0.ComputedRef<boolean>;
|
|
1864
|
+
isSwaggerUIEnabled: vue0.ComputedRef<boolean>;
|
|
1865
|
+
isPreviewMode: vue0.ComputedRef<boolean>;
|
|
1866
|
+
isE2ETestMode: vue0.ComputedRef<boolean>;
|
|
1867
|
+
isCanvasOnly: vue0.ComputedRef<boolean>;
|
|
1868
|
+
isCrdtCollaborationEnabled: vue0.ComputedRef<boolean>;
|
|
1869
|
+
publicApiLatestVersion: vue0.ComputedRef<number>;
|
|
1870
|
+
publicApiPath: vue0.ComputedRef<string>;
|
|
1871
|
+
showSetupPage: vue0.ComputedRef<boolean | undefined>;
|
|
1872
|
+
deploymentType: vue0.ComputedRef<string>;
|
|
1873
|
+
isCloudDeployment: vue0.ComputedRef<boolean>;
|
|
1874
|
+
isSmtpSetup: vue0.ComputedRef<boolean>;
|
|
1875
|
+
isPersonalizationSurveyEnabled: vue0.ComputedRef<boolean>;
|
|
1876
|
+
telemetry: vue0.ComputedRef<{
|
|
1875
1877
|
enabled: boolean;
|
|
1876
1878
|
config?: {
|
|
1877
1879
|
url: string;
|
|
@@ -1880,43 +1882,43 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1880
1882
|
sourceConfig: string;
|
|
1881
1883
|
} | undefined;
|
|
1882
1884
|
}>;
|
|
1883
|
-
logLevel:
|
|
1884
|
-
isTelemetryEnabled:
|
|
1885
|
-
isMfaFeatureEnabled:
|
|
1886
|
-
isFoldersFeatureEnabled:
|
|
1887
|
-
isAiAssistantEnabled:
|
|
1888
|
-
isCustomRolesFeatureEnabled:
|
|
1889
|
-
areTagsEnabled:
|
|
1890
|
-
isAutosaveEnabled:
|
|
1891
|
-
isHiringBannerEnabled:
|
|
1892
|
-
isTemplatesEnabled:
|
|
1893
|
-
isTemplatesEndpointReachable:
|
|
1894
|
-
templatesHost:
|
|
1895
|
-
pushBackend:
|
|
1896
|
-
isCommunityNodesFeatureEnabled:
|
|
1897
|
-
isUnverifiedPackagesEnabled:
|
|
1898
|
-
allowedModules:
|
|
1885
|
+
logLevel: vue0.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
1886
|
+
isTelemetryEnabled: vue0.ComputedRef<boolean>;
|
|
1887
|
+
isMfaFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1888
|
+
isFoldersFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1889
|
+
isAiAssistantEnabled: vue0.ComputedRef<boolean>;
|
|
1890
|
+
isCustomRolesFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1891
|
+
areTagsEnabled: vue0.ComputedRef<boolean>;
|
|
1892
|
+
isAutosaveEnabled: vue0.ComputedRef<boolean>;
|
|
1893
|
+
isHiringBannerEnabled: vue0.ComputedRef<boolean>;
|
|
1894
|
+
isTemplatesEnabled: vue0.ComputedRef<boolean>;
|
|
1895
|
+
isTemplatesEndpointReachable: vue0.ComputedRef<boolean>;
|
|
1896
|
+
templatesHost: vue0.ComputedRef<string>;
|
|
1897
|
+
pushBackend: vue0.ComputedRef<"sse" | "websocket">;
|
|
1898
|
+
isCommunityNodesFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
1899
|
+
isUnverifiedPackagesEnabled: vue0.ComputedRef<boolean>;
|
|
1900
|
+
allowedModules: vue0.ComputedRef<{
|
|
1899
1901
|
builtIn?: string[] | undefined;
|
|
1900
1902
|
external?: string[] | undefined;
|
|
1901
1903
|
}>;
|
|
1902
|
-
isQueueModeEnabled:
|
|
1903
|
-
isMultiMain:
|
|
1904
|
-
isWorkerViewAvailable:
|
|
1905
|
-
workflowCallerPolicyDefaultOption:
|
|
1906
|
-
permanentlyDismissedBanners:
|
|
1907
|
-
saveDataErrorExecution:
|
|
1908
|
-
saveDataSuccessExecution:
|
|
1909
|
-
saveManualExecutions:
|
|
1910
|
-
saveDataProgressExecution:
|
|
1911
|
-
isCommunityPlan:
|
|
1912
|
-
isAskAiEnabled:
|
|
1913
|
-
isAiBuilderEnabled:
|
|
1914
|
-
isAiAssistantOrBuilderEnabled:
|
|
1915
|
-
isAiCreditsEnabled:
|
|
1916
|
-
aiCreditsQuota:
|
|
1917
|
-
isAiDataSharingEnabled:
|
|
1918
|
-
isAiGatewayEnabled:
|
|
1919
|
-
aiGatewayBudget:
|
|
1904
|
+
isQueueModeEnabled: vue0.ComputedRef<boolean>;
|
|
1905
|
+
isMultiMain: vue0.ComputedRef<boolean>;
|
|
1906
|
+
isWorkerViewAvailable: vue0.ComputedRef<boolean>;
|
|
1907
|
+
workflowCallerPolicyDefaultOption: vue0.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
1908
|
+
permanentlyDismissedBanners: vue0.ComputedRef<string[]>;
|
|
1909
|
+
saveDataErrorExecution: vue0.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1910
|
+
saveDataSuccessExecution: vue0.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
1911
|
+
saveManualExecutions: vue0.Ref<boolean, boolean>;
|
|
1912
|
+
saveDataProgressExecution: vue0.Ref<boolean, boolean>;
|
|
1913
|
+
isCommunityPlan: vue0.ComputedRef<boolean>;
|
|
1914
|
+
isAskAiEnabled: vue0.ComputedRef<boolean>;
|
|
1915
|
+
isAiBuilderEnabled: vue0.ComputedRef<boolean>;
|
|
1916
|
+
isAiAssistantOrBuilderEnabled: vue0.ComputedRef<boolean>;
|
|
1917
|
+
isAiCreditsEnabled: vue0.ComputedRef<boolean>;
|
|
1918
|
+
aiCreditsQuota: vue0.ComputedRef<number>;
|
|
1919
|
+
isAiDataSharingEnabled: vue0.ComputedRef<boolean>;
|
|
1920
|
+
isAiGatewayEnabled: vue0.ComputedRef<boolean>;
|
|
1921
|
+
aiGatewayBudget: vue0.ComputedRef<number>;
|
|
1920
1922
|
reset: () => void;
|
|
1921
1923
|
getTimezones: () => Promise<IDataObject>;
|
|
1922
1924
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -1927,7 +1929,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1927
1929
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
1928
1930
|
initialize: () => Promise<void>;
|
|
1929
1931
|
getModuleSettings: () => Promise<void>;
|
|
1930
|
-
moduleSettings:
|
|
1932
|
+
moduleSettings: vue0.Ref<{
|
|
1931
1933
|
insights?: {
|
|
1932
1934
|
summary: boolean;
|
|
1933
1935
|
dashboard: boolean;
|
|
@@ -2180,6 +2182,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2180
2182
|
workflowBuilderAvailable: boolean;
|
|
2181
2183
|
sandboxUnavailableReason: string | null;
|
|
2182
2184
|
runDebugEnabled: boolean;
|
|
2185
|
+
activationCapped?: boolean | undefined;
|
|
2183
2186
|
} | undefined;
|
|
2184
2187
|
'quick-connect'?: {
|
|
2185
2188
|
options: ({
|
|
@@ -2196,9 +2199,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2196
2199
|
} | undefined;
|
|
2197
2200
|
config?: never | undefined;
|
|
2198
2201
|
} | {
|
|
2199
|
-
text: string;
|
|
2200
2202
|
packageName: string;
|
|
2201
2203
|
credentialType: string;
|
|
2204
|
+
text: string;
|
|
2202
2205
|
quickConnectType: "pinecone";
|
|
2203
2206
|
consentText?: string | undefined;
|
|
2204
2207
|
consentCheckbox?: string | undefined;
|
|
@@ -2479,6 +2482,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2479
2482
|
workflowBuilderAvailable: boolean;
|
|
2480
2483
|
sandboxUnavailableReason: string | null;
|
|
2481
2484
|
runDebugEnabled: boolean;
|
|
2485
|
+
activationCapped?: boolean | undefined;
|
|
2482
2486
|
} | undefined;
|
|
2483
2487
|
'quick-connect'?: {
|
|
2484
2488
|
options: ({
|
|
@@ -2495,9 +2499,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2495
2499
|
} | undefined;
|
|
2496
2500
|
config?: never | undefined;
|
|
2497
2501
|
} | {
|
|
2498
|
-
text: string;
|
|
2499
2502
|
packageName: string;
|
|
2500
2503
|
credentialType: string;
|
|
2504
|
+
text: string;
|
|
2501
2505
|
quickConnectType: "pinecone";
|
|
2502
2506
|
consentText?: string | undefined;
|
|
2503
2507
|
consentCheckbox?: string | undefined;
|
|
@@ -2527,19 +2531,19 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2527
2531
|
} | undefined;
|
|
2528
2532
|
}>;
|
|
2529
2533
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
2530
|
-
isMFAEnforcementLicensed:
|
|
2531
|
-
isMFAEnforced:
|
|
2532
|
-
activeModules:
|
|
2534
|
+
isMFAEnforcementLicensed: vue0.ComputedRef<boolean>;
|
|
2535
|
+
isMFAEnforced: vue0.Ref<boolean, boolean>;
|
|
2536
|
+
activeModules: vue0.ComputedRef<string[]>;
|
|
2533
2537
|
isModuleActive: (moduleName: string) => boolean;
|
|
2534
2538
|
isAgentModuleActive: (name: string) => boolean;
|
|
2535
|
-
isDataTableFeatureEnabled:
|
|
2536
|
-
isChatFeatureEnabled:
|
|
2537
|
-
isOtelCustomSpanAttributesEnabled:
|
|
2538
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
2539
|
-
isPublicChatTriggerDisabled:
|
|
2540
|
-
isWorkflowPublicationServiceEnabled:
|
|
2539
|
+
isDataTableFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
2540
|
+
isChatFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
2541
|
+
isOtelCustomSpanAttributesEnabled: vue0.ComputedRef<boolean>;
|
|
2542
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
2543
|
+
isPublicChatTriggerDisabled: vue0.ComputedRef<boolean>;
|
|
2544
|
+
isWorkflowPublicationServiceEnabled: vue0.ComputedRef<boolean>;
|
|
2541
2545
|
}, "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" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2542
|
-
settings:
|
|
2546
|
+
settings: vue0.Ref<{
|
|
2543
2547
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2544
2548
|
inE2ETests: boolean;
|
|
2545
2549
|
isDocker: boolean;
|
|
@@ -3030,7 +3034,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3030
3034
|
canvasOnly: boolean;
|
|
3031
3035
|
envFeatureFlags: _n8n_api_types0.N8nEnvFeatFlags;
|
|
3032
3036
|
}>;
|
|
3033
|
-
userManagement:
|
|
3037
|
+
userManagement: vue0.Ref<{
|
|
3034
3038
|
quota: number;
|
|
3035
3039
|
showSetupOnFirstLoad?: boolean | undefined;
|
|
3036
3040
|
smtpSetup: boolean;
|
|
@@ -3043,8 +3047,8 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3043
3047
|
authenticationMethod: AuthenticationMethod;
|
|
3044
3048
|
passwordMinLength: number;
|
|
3045
3049
|
}>;
|
|
3046
|
-
templatesEndpointHealthy:
|
|
3047
|
-
api:
|
|
3050
|
+
templatesEndpointHealthy: vue0.Ref<boolean, boolean>;
|
|
3051
|
+
api: vue0.Ref<{
|
|
3048
3052
|
enabled: boolean;
|
|
3049
3053
|
latestVersion: number;
|
|
3050
3054
|
path: string;
|
|
@@ -3066,17 +3070,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3066
3070
|
enabled: boolean;
|
|
3067
3071
|
};
|
|
3068
3072
|
}>;
|
|
3069
|
-
mfa:
|
|
3073
|
+
mfa: vue0.Ref<{
|
|
3070
3074
|
enabled: boolean;
|
|
3071
3075
|
}, {
|
|
3072
3076
|
enabled: boolean;
|
|
3073
3077
|
} | {
|
|
3074
3078
|
enabled: boolean;
|
|
3075
3079
|
}>;
|
|
3076
|
-
isDocker:
|
|
3077
|
-
isDevRelease:
|
|
3078
|
-
endpointHealth:
|
|
3079
|
-
isEnterpriseFeatureEnabled:
|
|
3080
|
+
isDocker: vue0.ComputedRef<boolean>;
|
|
3081
|
+
isDevRelease: vue0.ComputedRef<boolean>;
|
|
3082
|
+
endpointHealth: vue0.ComputedRef<string>;
|
|
3083
|
+
isEnterpriseFeatureEnabled: vue0.ComputedRef<{
|
|
3080
3084
|
sharing: boolean;
|
|
3081
3085
|
ldap: boolean;
|
|
3082
3086
|
saml: boolean;
|
|
@@ -3107,37 +3111,37 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3107
3111
|
otelCustomSpanAttributes: boolean;
|
|
3108
3112
|
workflowReviews: boolean;
|
|
3109
3113
|
}>;
|
|
3110
|
-
databaseType:
|
|
3111
|
-
planName:
|
|
3112
|
-
consumerId:
|
|
3113
|
-
binaryDataMode:
|
|
3114
|
-
pruning:
|
|
3114
|
+
databaseType: vue0.ComputedRef<"sqlite" | "postgresdb">;
|
|
3115
|
+
planName: vue0.ComputedRef<string>;
|
|
3116
|
+
consumerId: vue0.ComputedRef<string>;
|
|
3117
|
+
binaryDataMode: vue0.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
3118
|
+
pruning: vue0.ComputedRef<{
|
|
3115
3119
|
isEnabled: boolean;
|
|
3116
3120
|
maxAge: number;
|
|
3117
3121
|
maxCount: number;
|
|
3118
3122
|
} | undefined>;
|
|
3119
|
-
security:
|
|
3123
|
+
security: vue0.ComputedRef<{
|
|
3120
3124
|
blockFileAccessToN8nFiles: boolean;
|
|
3121
3125
|
secureCookie: boolean;
|
|
3122
3126
|
}>;
|
|
3123
|
-
nodeJsVersion:
|
|
3124
|
-
nodeEnv:
|
|
3125
|
-
concurrency:
|
|
3126
|
-
isConcurrencyEnabled:
|
|
3127
|
-
isPublicApiEnabled:
|
|
3128
|
-
isSwaggerUIEnabled:
|
|
3129
|
-
isPreviewMode:
|
|
3130
|
-
isE2ETestMode:
|
|
3131
|
-
isCanvasOnly:
|
|
3132
|
-
isCrdtCollaborationEnabled:
|
|
3133
|
-
publicApiLatestVersion:
|
|
3134
|
-
publicApiPath:
|
|
3135
|
-
showSetupPage:
|
|
3136
|
-
deploymentType:
|
|
3137
|
-
isCloudDeployment:
|
|
3138
|
-
isSmtpSetup:
|
|
3139
|
-
isPersonalizationSurveyEnabled:
|
|
3140
|
-
telemetry:
|
|
3127
|
+
nodeJsVersion: vue0.ComputedRef<string>;
|
|
3128
|
+
nodeEnv: vue0.ComputedRef<string | undefined>;
|
|
3129
|
+
concurrency: vue0.ComputedRef<number>;
|
|
3130
|
+
isConcurrencyEnabled: vue0.ComputedRef<boolean>;
|
|
3131
|
+
isPublicApiEnabled: vue0.ComputedRef<boolean>;
|
|
3132
|
+
isSwaggerUIEnabled: vue0.ComputedRef<boolean>;
|
|
3133
|
+
isPreviewMode: vue0.ComputedRef<boolean>;
|
|
3134
|
+
isE2ETestMode: vue0.ComputedRef<boolean>;
|
|
3135
|
+
isCanvasOnly: vue0.ComputedRef<boolean>;
|
|
3136
|
+
isCrdtCollaborationEnabled: vue0.ComputedRef<boolean>;
|
|
3137
|
+
publicApiLatestVersion: vue0.ComputedRef<number>;
|
|
3138
|
+
publicApiPath: vue0.ComputedRef<string>;
|
|
3139
|
+
showSetupPage: vue0.ComputedRef<boolean | undefined>;
|
|
3140
|
+
deploymentType: vue0.ComputedRef<string>;
|
|
3141
|
+
isCloudDeployment: vue0.ComputedRef<boolean>;
|
|
3142
|
+
isSmtpSetup: vue0.ComputedRef<boolean>;
|
|
3143
|
+
isPersonalizationSurveyEnabled: vue0.ComputedRef<boolean>;
|
|
3144
|
+
telemetry: vue0.ComputedRef<{
|
|
3141
3145
|
enabled: boolean;
|
|
3142
3146
|
config?: {
|
|
3143
3147
|
url: string;
|
|
@@ -3146,43 +3150,43 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3146
3150
|
sourceConfig: string;
|
|
3147
3151
|
} | undefined;
|
|
3148
3152
|
}>;
|
|
3149
|
-
logLevel:
|
|
3150
|
-
isTelemetryEnabled:
|
|
3151
|
-
isMfaFeatureEnabled:
|
|
3152
|
-
isFoldersFeatureEnabled:
|
|
3153
|
-
isAiAssistantEnabled:
|
|
3154
|
-
isCustomRolesFeatureEnabled:
|
|
3155
|
-
areTagsEnabled:
|
|
3156
|
-
isAutosaveEnabled:
|
|
3157
|
-
isHiringBannerEnabled:
|
|
3158
|
-
isTemplatesEnabled:
|
|
3159
|
-
isTemplatesEndpointReachable:
|
|
3160
|
-
templatesHost:
|
|
3161
|
-
pushBackend:
|
|
3162
|
-
isCommunityNodesFeatureEnabled:
|
|
3163
|
-
isUnverifiedPackagesEnabled:
|
|
3164
|
-
allowedModules:
|
|
3153
|
+
logLevel: vue0.ComputedRef<"silent" | "error" | "warn" | "info" | "debug">;
|
|
3154
|
+
isTelemetryEnabled: vue0.ComputedRef<boolean>;
|
|
3155
|
+
isMfaFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3156
|
+
isFoldersFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3157
|
+
isAiAssistantEnabled: vue0.ComputedRef<boolean>;
|
|
3158
|
+
isCustomRolesFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3159
|
+
areTagsEnabled: vue0.ComputedRef<boolean>;
|
|
3160
|
+
isAutosaveEnabled: vue0.ComputedRef<boolean>;
|
|
3161
|
+
isHiringBannerEnabled: vue0.ComputedRef<boolean>;
|
|
3162
|
+
isTemplatesEnabled: vue0.ComputedRef<boolean>;
|
|
3163
|
+
isTemplatesEndpointReachable: vue0.ComputedRef<boolean>;
|
|
3164
|
+
templatesHost: vue0.ComputedRef<string>;
|
|
3165
|
+
pushBackend: vue0.ComputedRef<"sse" | "websocket">;
|
|
3166
|
+
isCommunityNodesFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3167
|
+
isUnverifiedPackagesEnabled: vue0.ComputedRef<boolean>;
|
|
3168
|
+
allowedModules: vue0.ComputedRef<{
|
|
3165
3169
|
builtIn?: string[] | undefined;
|
|
3166
3170
|
external?: string[] | undefined;
|
|
3167
3171
|
}>;
|
|
3168
|
-
isQueueModeEnabled:
|
|
3169
|
-
isMultiMain:
|
|
3170
|
-
isWorkerViewAvailable:
|
|
3171
|
-
workflowCallerPolicyDefaultOption:
|
|
3172
|
-
permanentlyDismissedBanners:
|
|
3173
|
-
saveDataErrorExecution:
|
|
3174
|
-
saveDataSuccessExecution:
|
|
3175
|
-
saveManualExecutions:
|
|
3176
|
-
saveDataProgressExecution:
|
|
3177
|
-
isCommunityPlan:
|
|
3178
|
-
isAskAiEnabled:
|
|
3179
|
-
isAiBuilderEnabled:
|
|
3180
|
-
isAiAssistantOrBuilderEnabled:
|
|
3181
|
-
isAiCreditsEnabled:
|
|
3182
|
-
aiCreditsQuota:
|
|
3183
|
-
isAiDataSharingEnabled:
|
|
3184
|
-
isAiGatewayEnabled:
|
|
3185
|
-
aiGatewayBudget:
|
|
3172
|
+
isQueueModeEnabled: vue0.ComputedRef<boolean>;
|
|
3173
|
+
isMultiMain: vue0.ComputedRef<boolean>;
|
|
3174
|
+
isWorkerViewAvailable: vue0.ComputedRef<boolean>;
|
|
3175
|
+
workflowCallerPolicyDefaultOption: vue0.ComputedRef<WorkflowSettings.CallerPolicy>;
|
|
3176
|
+
permanentlyDismissedBanners: vue0.ComputedRef<string[]>;
|
|
3177
|
+
saveDataErrorExecution: vue0.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3178
|
+
saveDataSuccessExecution: vue0.Ref<WorkflowSettings.SaveDataExecution, WorkflowSettings.SaveDataExecution>;
|
|
3179
|
+
saveManualExecutions: vue0.Ref<boolean, boolean>;
|
|
3180
|
+
saveDataProgressExecution: vue0.Ref<boolean, boolean>;
|
|
3181
|
+
isCommunityPlan: vue0.ComputedRef<boolean>;
|
|
3182
|
+
isAskAiEnabled: vue0.ComputedRef<boolean>;
|
|
3183
|
+
isAiBuilderEnabled: vue0.ComputedRef<boolean>;
|
|
3184
|
+
isAiAssistantOrBuilderEnabled: vue0.ComputedRef<boolean>;
|
|
3185
|
+
isAiCreditsEnabled: vue0.ComputedRef<boolean>;
|
|
3186
|
+
aiCreditsQuota: vue0.ComputedRef<number>;
|
|
3187
|
+
isAiDataSharingEnabled: vue0.ComputedRef<boolean>;
|
|
3188
|
+
isAiGatewayEnabled: vue0.ComputedRef<boolean>;
|
|
3189
|
+
aiGatewayBudget: vue0.ComputedRef<number>;
|
|
3186
3190
|
reset: () => void;
|
|
3187
3191
|
getTimezones: () => Promise<IDataObject>;
|
|
3188
3192
|
testTemplatesEndpoint: () => Promise<void>;
|
|
@@ -3193,7 +3197,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3193
3197
|
setWorkflowReviewsPolicy: (policy: WorkflowReviewsPolicy) => void;
|
|
3194
3198
|
initialize: () => Promise<void>;
|
|
3195
3199
|
getModuleSettings: () => Promise<void>;
|
|
3196
|
-
moduleSettings:
|
|
3200
|
+
moduleSettings: vue0.Ref<{
|
|
3197
3201
|
insights?: {
|
|
3198
3202
|
summary: boolean;
|
|
3199
3203
|
dashboard: boolean;
|
|
@@ -3446,6 +3450,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3446
3450
|
workflowBuilderAvailable: boolean;
|
|
3447
3451
|
sandboxUnavailableReason: string | null;
|
|
3448
3452
|
runDebugEnabled: boolean;
|
|
3453
|
+
activationCapped?: boolean | undefined;
|
|
3449
3454
|
} | undefined;
|
|
3450
3455
|
'quick-connect'?: {
|
|
3451
3456
|
options: ({
|
|
@@ -3462,9 +3467,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3462
3467
|
} | undefined;
|
|
3463
3468
|
config?: never | undefined;
|
|
3464
3469
|
} | {
|
|
3465
|
-
text: string;
|
|
3466
3470
|
packageName: string;
|
|
3467
3471
|
credentialType: string;
|
|
3472
|
+
text: string;
|
|
3468
3473
|
quickConnectType: "pinecone";
|
|
3469
3474
|
consentText?: string | undefined;
|
|
3470
3475
|
consentCheckbox?: string | undefined;
|
|
@@ -3745,6 +3750,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3745
3750
|
workflowBuilderAvailable: boolean;
|
|
3746
3751
|
sandboxUnavailableReason: string | null;
|
|
3747
3752
|
runDebugEnabled: boolean;
|
|
3753
|
+
activationCapped?: boolean | undefined;
|
|
3748
3754
|
} | undefined;
|
|
3749
3755
|
'quick-connect'?: {
|
|
3750
3756
|
options: ({
|
|
@@ -3761,9 +3767,9 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3761
3767
|
} | undefined;
|
|
3762
3768
|
config?: never | undefined;
|
|
3763
3769
|
} | {
|
|
3764
|
-
text: string;
|
|
3765
3770
|
packageName: string;
|
|
3766
3771
|
credentialType: string;
|
|
3772
|
+
text: string;
|
|
3767
3773
|
quickConnectType: "pinecone";
|
|
3768
3774
|
consentText?: string | undefined;
|
|
3769
3775
|
consentCheckbox?: string | undefined;
|
|
@@ -3793,17 +3799,17 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3793
3799
|
} | undefined;
|
|
3794
3800
|
}>;
|
|
3795
3801
|
updateAiDataSharingSettings: (allowSendingParameterValues: boolean) => Promise<void>;
|
|
3796
|
-
isMFAEnforcementLicensed:
|
|
3797
|
-
isMFAEnforced:
|
|
3798
|
-
activeModules:
|
|
3802
|
+
isMFAEnforcementLicensed: vue0.ComputedRef<boolean>;
|
|
3803
|
+
isMFAEnforced: vue0.Ref<boolean, boolean>;
|
|
3804
|
+
activeModules: vue0.ComputedRef<string[]>;
|
|
3799
3805
|
isModuleActive: (moduleName: string) => boolean;
|
|
3800
3806
|
isAgentModuleActive: (name: string) => boolean;
|
|
3801
|
-
isDataTableFeatureEnabled:
|
|
3802
|
-
isChatFeatureEnabled:
|
|
3803
|
-
isOtelCustomSpanAttributesEnabled:
|
|
3804
|
-
isAgentsKnowledgeBaseFeatureEnabled:
|
|
3805
|
-
isPublicChatTriggerDisabled:
|
|
3806
|
-
isWorkflowPublicationServiceEnabled:
|
|
3807
|
+
isDataTableFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3808
|
+
isChatFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3809
|
+
isOtelCustomSpanAttributesEnabled: vue0.ComputedRef<boolean>;
|
|
3810
|
+
isAgentsKnowledgeBaseFeatureEnabled: vue0.ComputedRef<boolean>;
|
|
3811
|
+
isPublicChatTriggerDisabled: vue0.ComputedRef<boolean>;
|
|
3812
|
+
isWorkflowPublicationServiceEnabled: vue0.ComputedRef<boolean>;
|
|
3807
3813
|
}, "reset" | "getTimezones" | "testTemplatesEndpoint" | "disableTemplates" | "stopShowingSetupPage" | "getSettings" | "setSettings" | "setWorkflowReviewsPolicy" | "initialize" | "getModuleSettings" | "updateAiDataSharingSettings" | "isModuleActive" | "isAgentModuleActive">>;
|
|
3808
3814
|
//#endregion
|
|
3809
3815
|
export { useSettingsStore };
|