@n8n/stores 2.35.3 → 2.36.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/rbac.store.d.cts +9 -9
- package/dist/rbac.store.d.mts +27 -27
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +18 -3
- package/dist/settings.store.d.mts +257 -242
- package/dist/settings2.store.cjs +3 -0
- package/dist/settings2.store.cjs.map +1 -1
- package/dist/settings2.store.mjs +3 -0
- package/dist/settings2.store.mjs.map +1 -1
- package/dist/useAgentRequestStore.d.cts +2 -2
- package/dist/useRootStore.d.cts +85 -72
- package/dist/useRootStore.d.mts +87 -74
- package/dist/useRootStore2.cjs +8 -1
- package/dist/useRootStore2.cjs.map +1 -1
- package/dist/useRootStore2.mjs +8 -1
- package/dist/useRootStore2.mjs.map +1 -1
- package/dist/users.store.d.cts +49 -49
- package/dist/users.store.d.mts +51 -51
- package/dist/users2.store.cjs +11 -2
- package/dist/users2.store.cjs.map +1 -1
- package/dist/users2.store.mjs +11 -2
- package/dist/users2.store.mjs.map +1 -1
- package/dist/versions.store.d.cts +28 -28
- package/dist/versions.store.d.mts +40 -40
- package/package.json +11 -11
package/dist/rbac.store.d.cts
CHANGED
|
@@ -25,6 +25,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
25
25
|
mcp: Record<string, Scope[]>;
|
|
26
26
|
otel: Record<string, Scope[]>;
|
|
27
27
|
role: Record<string, Scope[]>;
|
|
28
|
+
apiKey: Record<string, Scope[]>;
|
|
28
29
|
agent: Record<string, Scope[]>;
|
|
29
30
|
annotationTag: Record<string, Scope[]>;
|
|
30
31
|
banner: Record<string, Scope[]>;
|
|
@@ -51,12 +52,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
51
52
|
mcpApiKey: Record<string, Scope[]>;
|
|
52
53
|
chatHubAgent: Record<string, Scope[]>;
|
|
53
54
|
breakingChanges: Record<string, Scope[]>;
|
|
54
|
-
apiKey: Record<string, Scope[]>;
|
|
55
55
|
encryptionKey: Record<string, Scope[]>;
|
|
56
56
|
credentialResolver: Record<string, Scope[]>;
|
|
57
57
|
instanceAi: Record<string, Scope[]>;
|
|
58
58
|
roleMappingRule: Record<string, Scope[]>;
|
|
59
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "
|
|
59
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
60
60
|
chatHub: Record<string, Scope[]>;
|
|
61
61
|
logStreaming: Record<string, Scope[]>;
|
|
62
62
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -72,6 +72,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
72
72
|
mcp: Record<string, Scope[]>;
|
|
73
73
|
otel: Record<string, Scope[]>;
|
|
74
74
|
role: Record<string, Scope[]>;
|
|
75
|
+
apiKey: Record<string, Scope[]>;
|
|
75
76
|
agent: Record<string, Scope[]>;
|
|
76
77
|
annotationTag: Record<string, Scope[]>;
|
|
77
78
|
banner: Record<string, Scope[]>;
|
|
@@ -98,7 +99,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
98
99
|
mcpApiKey: Record<string, Scope[]>;
|
|
99
100
|
chatHubAgent: Record<string, Scope[]>;
|
|
100
101
|
breakingChanges: Record<string, Scope[]>;
|
|
101
|
-
apiKey: Record<string, Scope[]>;
|
|
102
102
|
encryptionKey: Record<string, Scope[]>;
|
|
103
103
|
credentialResolver: Record<string, Scope[]>;
|
|
104
104
|
instanceAi: Record<string, Scope[]>;
|
|
@@ -141,6 +141,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
141
141
|
mcp: Record<string, Scope[]>;
|
|
142
142
|
otel: Record<string, Scope[]>;
|
|
143
143
|
role: Record<string, Scope[]>;
|
|
144
|
+
apiKey: Record<string, Scope[]>;
|
|
144
145
|
agent: Record<string, Scope[]>;
|
|
145
146
|
annotationTag: Record<string, Scope[]>;
|
|
146
147
|
banner: Record<string, Scope[]>;
|
|
@@ -167,12 +168,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
167
168
|
mcpApiKey: Record<string, Scope[]>;
|
|
168
169
|
chatHubAgent: Record<string, Scope[]>;
|
|
169
170
|
breakingChanges: Record<string, Scope[]>;
|
|
170
|
-
apiKey: Record<string, Scope[]>;
|
|
171
171
|
encryptionKey: Record<string, Scope[]>;
|
|
172
172
|
credentialResolver: Record<string, Scope[]>;
|
|
173
173
|
instanceAi: Record<string, Scope[]>;
|
|
174
174
|
roleMappingRule: Record<string, Scope[]>;
|
|
175
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "
|
|
175
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
176
176
|
chatHub: Record<string, Scope[]>;
|
|
177
177
|
logStreaming: Record<string, Scope[]>;
|
|
178
178
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -188,6 +188,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
188
188
|
mcp: Record<string, Scope[]>;
|
|
189
189
|
otel: Record<string, Scope[]>;
|
|
190
190
|
role: Record<string, Scope[]>;
|
|
191
|
+
apiKey: Record<string, Scope[]>;
|
|
191
192
|
agent: Record<string, Scope[]>;
|
|
192
193
|
annotationTag: Record<string, Scope[]>;
|
|
193
194
|
banner: Record<string, Scope[]>;
|
|
@@ -214,7 +215,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
214
215
|
mcpApiKey: Record<string, Scope[]>;
|
|
215
216
|
chatHubAgent: Record<string, Scope[]>;
|
|
216
217
|
breakingChanges: Record<string, Scope[]>;
|
|
217
|
-
apiKey: Record<string, Scope[]>;
|
|
218
218
|
encryptionKey: Record<string, Scope[]>;
|
|
219
219
|
credentialResolver: Record<string, Scope[]>;
|
|
220
220
|
instanceAi: Record<string, Scope[]>;
|
|
@@ -257,6 +257,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
257
257
|
mcp: Record<string, Scope[]>;
|
|
258
258
|
otel: Record<string, Scope[]>;
|
|
259
259
|
role: Record<string, Scope[]>;
|
|
260
|
+
apiKey: Record<string, Scope[]>;
|
|
260
261
|
agent: Record<string, Scope[]>;
|
|
261
262
|
annotationTag: Record<string, Scope[]>;
|
|
262
263
|
banner: Record<string, Scope[]>;
|
|
@@ -283,12 +284,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
283
284
|
mcpApiKey: Record<string, Scope[]>;
|
|
284
285
|
chatHubAgent: Record<string, Scope[]>;
|
|
285
286
|
breakingChanges: Record<string, Scope[]>;
|
|
286
|
-
apiKey: Record<string, Scope[]>;
|
|
287
287
|
encryptionKey: Record<string, Scope[]>;
|
|
288
288
|
credentialResolver: Record<string, Scope[]>;
|
|
289
289
|
instanceAi: Record<string, Scope[]>;
|
|
290
290
|
roleMappingRule: Record<string, Scope[]>;
|
|
291
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "
|
|
291
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
292
292
|
chatHub: Record<string, Scope[]>;
|
|
293
293
|
logStreaming: Record<string, Scope[]>;
|
|
294
294
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -304,6 +304,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
304
304
|
mcp: Record<string, Scope[]>;
|
|
305
305
|
otel: Record<string, Scope[]>;
|
|
306
306
|
role: Record<string, Scope[]>;
|
|
307
|
+
apiKey: Record<string, Scope[]>;
|
|
307
308
|
agent: Record<string, Scope[]>;
|
|
308
309
|
annotationTag: Record<string, Scope[]>;
|
|
309
310
|
banner: Record<string, Scope[]>;
|
|
@@ -330,7 +331,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
330
331
|
mcpApiKey: Record<string, Scope[]>;
|
|
331
332
|
chatHubAgent: Record<string, Scope[]>;
|
|
332
333
|
breakingChanges: Record<string, Scope[]>;
|
|
333
|
-
apiKey: Record<string, Scope[]>;
|
|
334
334
|
encryptionKey: Record<string, Scope[]>;
|
|
335
335
|
credentialResolver: Record<string, Scope[]>;
|
|
336
336
|
instanceAi: Record<string, Scope[]>;
|
package/dist/rbac.store.d.mts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia2 from "pinia";
|
|
2
|
+
import * as vue296 from "vue";
|
|
3
3
|
import { Role } from "@n8n/api-types";
|
|
4
4
|
import { Resource, Scope, ScopeOptions } from "@n8n/permissions";
|
|
5
5
|
|
|
6
6
|
//#region src/rbac.store.d.ts
|
|
7
|
-
declare const useRBACStore:
|
|
8
|
-
globalRoles:
|
|
9
|
-
rolesByProjectId:
|
|
10
|
-
globalScopes:
|
|
11
|
-
scopesByProjectId:
|
|
12
|
-
scopesByResourceId:
|
|
7
|
+
declare const useRBACStore: pinia2.StoreDefinition<"rbac", Pick<{
|
|
8
|
+
globalRoles: vue296.Ref<Role[], Role[]>;
|
|
9
|
+
rolesByProjectId: vue296.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
10
|
+
globalScopes: vue296.Ref<Scope[], Scope[]>;
|
|
11
|
+
scopesByProjectId: vue296.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
12
|
+
scopesByResourceId: vue296.Ref<{
|
|
13
13
|
chatHub: Record<string, Scope[]>;
|
|
14
14
|
logStreaming: Record<string, Scope[]>;
|
|
15
15
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -25,6 +25,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
25
25
|
mcp: Record<string, Scope[]>;
|
|
26
26
|
otel: Record<string, Scope[]>;
|
|
27
27
|
role: Record<string, Scope[]>;
|
|
28
|
+
apiKey: Record<string, Scope[]>;
|
|
28
29
|
agent: Record<string, Scope[]>;
|
|
29
30
|
annotationTag: Record<string, Scope[]>;
|
|
30
31
|
banner: Record<string, Scope[]>;
|
|
@@ -51,12 +52,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
51
52
|
mcpApiKey: Record<string, Scope[]>;
|
|
52
53
|
chatHubAgent: Record<string, Scope[]>;
|
|
53
54
|
breakingChanges: Record<string, Scope[]>;
|
|
54
|
-
apiKey: Record<string, Scope[]>;
|
|
55
55
|
encryptionKey: Record<string, Scope[]>;
|
|
56
56
|
credentialResolver: Record<string, Scope[]>;
|
|
57
57
|
instanceAi: Record<string, Scope[]>;
|
|
58
58
|
roleMappingRule: Record<string, Scope[]>;
|
|
59
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "
|
|
59
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
60
60
|
chatHub: Record<string, Scope[]>;
|
|
61
61
|
logStreaming: Record<string, Scope[]>;
|
|
62
62
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -72,6 +72,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
72
72
|
mcp: Record<string, Scope[]>;
|
|
73
73
|
otel: Record<string, Scope[]>;
|
|
74
74
|
role: Record<string, Scope[]>;
|
|
75
|
+
apiKey: Record<string, Scope[]>;
|
|
75
76
|
agent: Record<string, Scope[]>;
|
|
76
77
|
annotationTag: Record<string, Scope[]>;
|
|
77
78
|
banner: Record<string, Scope[]>;
|
|
@@ -98,7 +99,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
98
99
|
mcpApiKey: Record<string, Scope[]>;
|
|
99
100
|
chatHubAgent: Record<string, Scope[]>;
|
|
100
101
|
breakingChanges: Record<string, Scope[]>;
|
|
101
|
-
apiKey: Record<string, Scope[]>;
|
|
102
102
|
encryptionKey: Record<string, Scope[]>;
|
|
103
103
|
credentialResolver: Record<string, Scope[]>;
|
|
104
104
|
instanceAi: Record<string, Scope[]>;
|
|
@@ -121,11 +121,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
121
121
|
projectId?: string;
|
|
122
122
|
}, options?: ScopeOptions) => boolean;
|
|
123
123
|
}, "globalRoles" | "rolesByProjectId" | "globalScopes" | "scopesByProjectId" | "scopesByResourceId">, Pick<{
|
|
124
|
-
globalRoles:
|
|
125
|
-
rolesByProjectId:
|
|
126
|
-
globalScopes:
|
|
127
|
-
scopesByProjectId:
|
|
128
|
-
scopesByResourceId:
|
|
124
|
+
globalRoles: vue296.Ref<Role[], Role[]>;
|
|
125
|
+
rolesByProjectId: vue296.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
126
|
+
globalScopes: vue296.Ref<Scope[], Scope[]>;
|
|
127
|
+
scopesByProjectId: vue296.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
128
|
+
scopesByResourceId: vue296.Ref<{
|
|
129
129
|
chatHub: Record<string, Scope[]>;
|
|
130
130
|
logStreaming: Record<string, Scope[]>;
|
|
131
131
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -141,6 +141,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
141
141
|
mcp: Record<string, Scope[]>;
|
|
142
142
|
otel: Record<string, Scope[]>;
|
|
143
143
|
role: Record<string, Scope[]>;
|
|
144
|
+
apiKey: Record<string, Scope[]>;
|
|
144
145
|
agent: Record<string, Scope[]>;
|
|
145
146
|
annotationTag: Record<string, Scope[]>;
|
|
146
147
|
banner: Record<string, Scope[]>;
|
|
@@ -167,12 +168,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
167
168
|
mcpApiKey: Record<string, Scope[]>;
|
|
168
169
|
chatHubAgent: Record<string, Scope[]>;
|
|
169
170
|
breakingChanges: Record<string, Scope[]>;
|
|
170
|
-
apiKey: Record<string, Scope[]>;
|
|
171
171
|
encryptionKey: Record<string, Scope[]>;
|
|
172
172
|
credentialResolver: Record<string, Scope[]>;
|
|
173
173
|
instanceAi: Record<string, Scope[]>;
|
|
174
174
|
roleMappingRule: Record<string, Scope[]>;
|
|
175
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "
|
|
175
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
176
176
|
chatHub: Record<string, Scope[]>;
|
|
177
177
|
logStreaming: Record<string, Scope[]>;
|
|
178
178
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -188,6 +188,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
188
188
|
mcp: Record<string, Scope[]>;
|
|
189
189
|
otel: Record<string, Scope[]>;
|
|
190
190
|
role: Record<string, Scope[]>;
|
|
191
|
+
apiKey: Record<string, Scope[]>;
|
|
191
192
|
agent: Record<string, Scope[]>;
|
|
192
193
|
annotationTag: Record<string, Scope[]>;
|
|
193
194
|
banner: Record<string, Scope[]>;
|
|
@@ -214,7 +215,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
214
215
|
mcpApiKey: Record<string, Scope[]>;
|
|
215
216
|
chatHubAgent: Record<string, Scope[]>;
|
|
216
217
|
breakingChanges: Record<string, Scope[]>;
|
|
217
|
-
apiKey: Record<string, Scope[]>;
|
|
218
218
|
encryptionKey: Record<string, Scope[]>;
|
|
219
219
|
credentialResolver: Record<string, Scope[]>;
|
|
220
220
|
instanceAi: Record<string, Scope[]>;
|
|
@@ -237,11 +237,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
237
237
|
projectId?: string;
|
|
238
238
|
}, options?: ScopeOptions) => boolean;
|
|
239
239
|
}, never>, Pick<{
|
|
240
|
-
globalRoles:
|
|
241
|
-
rolesByProjectId:
|
|
242
|
-
globalScopes:
|
|
243
|
-
scopesByProjectId:
|
|
244
|
-
scopesByResourceId:
|
|
240
|
+
globalRoles: vue296.Ref<Role[], Role[]>;
|
|
241
|
+
rolesByProjectId: vue296.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
242
|
+
globalScopes: vue296.Ref<Scope[], Scope[]>;
|
|
243
|
+
scopesByProjectId: vue296.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
244
|
+
scopesByResourceId: vue296.Ref<{
|
|
245
245
|
chatHub: Record<string, Scope[]>;
|
|
246
246
|
logStreaming: Record<string, Scope[]>;
|
|
247
247
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -257,6 +257,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
257
257
|
mcp: Record<string, Scope[]>;
|
|
258
258
|
otel: Record<string, Scope[]>;
|
|
259
259
|
role: Record<string, Scope[]>;
|
|
260
|
+
apiKey: Record<string, Scope[]>;
|
|
260
261
|
agent: Record<string, Scope[]>;
|
|
261
262
|
annotationTag: Record<string, Scope[]>;
|
|
262
263
|
banner: Record<string, Scope[]>;
|
|
@@ -283,12 +284,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
283
284
|
mcpApiKey: Record<string, Scope[]>;
|
|
284
285
|
chatHubAgent: Record<string, Scope[]>;
|
|
285
286
|
breakingChanges: Record<string, Scope[]>;
|
|
286
|
-
apiKey: Record<string, Scope[]>;
|
|
287
287
|
encryptionKey: Record<string, Scope[]>;
|
|
288
288
|
credentialResolver: Record<string, Scope[]>;
|
|
289
289
|
instanceAi: Record<string, Scope[]>;
|
|
290
290
|
roleMappingRule: Record<string, Scope[]>;
|
|
291
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "
|
|
291
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "project" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
292
292
|
chatHub: Record<string, Scope[]>;
|
|
293
293
|
logStreaming: Record<string, Scope[]>;
|
|
294
294
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -304,6 +304,7 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
304
304
|
mcp: Record<string, Scope[]>;
|
|
305
305
|
otel: Record<string, Scope[]>;
|
|
306
306
|
role: Record<string, Scope[]>;
|
|
307
|
+
apiKey: Record<string, Scope[]>;
|
|
307
308
|
agent: Record<string, Scope[]>;
|
|
308
309
|
annotationTag: Record<string, Scope[]>;
|
|
309
310
|
banner: Record<string, Scope[]>;
|
|
@@ -330,7 +331,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
330
331
|
mcpApiKey: Record<string, Scope[]>;
|
|
331
332
|
chatHubAgent: Record<string, Scope[]>;
|
|
332
333
|
breakingChanges: Record<string, Scope[]>;
|
|
333
|
-
apiKey: Record<string, Scope[]>;
|
|
334
334
|
encryptionKey: Record<string, Scope[]>;
|
|
335
335
|
credentialResolver: Record<string, Scope[]>;
|
|
336
336
|
instanceAi: Record<string, Scope[]>;
|
package/dist/roles.store.d.mts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia4 from "pinia";
|
|
2
|
+
import * as vue311 from "vue";
|
|
3
3
|
import { CreateRoleDto, RoleAssignmentsResponse, RoleMembersResponse, RoleProjectMembersResponse, UpdateRoleDto } from "@n8n/api-types";
|
|
4
4
|
import { AllRolesMap, Role as Role$1 } from "@n8n/permissions";
|
|
5
5
|
|
|
6
6
|
//#region src/roles.store.d.ts
|
|
7
|
-
declare const useRolesStore:
|
|
8
|
-
roles:
|
|
7
|
+
declare const useRolesStore: pinia4.StoreDefinition<"roles", Pick<{
|
|
8
|
+
roles: vue311.Ref<{
|
|
9
9
|
global: {
|
|
10
10
|
slug: string;
|
|
11
11
|
displayName: string;
|
|
@@ -138,7 +138,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
138
138
|
usedByProjects?: number | undefined | undefined;
|
|
139
139
|
}[];
|
|
140
140
|
}>;
|
|
141
|
-
processedProjectRoles:
|
|
141
|
+
processedProjectRoles: vue311.ComputedRef<{
|
|
142
142
|
slug: string;
|
|
143
143
|
displayName: string;
|
|
144
144
|
description: string | null;
|
|
@@ -151,7 +151,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
151
151
|
usedByUsers?: number | undefined;
|
|
152
152
|
usedByProjects?: number | undefined;
|
|
153
153
|
}[]>;
|
|
154
|
-
processedInstanceRoles:
|
|
154
|
+
processedInstanceRoles: vue311.ComputedRef<{
|
|
155
155
|
slug: string;
|
|
156
156
|
displayName: string;
|
|
157
157
|
description: string | null;
|
|
@@ -164,7 +164,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
164
164
|
usedByUsers?: number | undefined;
|
|
165
165
|
usedByProjects?: number | undefined;
|
|
166
166
|
}[]>;
|
|
167
|
-
customInstanceRoles:
|
|
167
|
+
customInstanceRoles: vue311.ComputedRef<{
|
|
168
168
|
slug: string;
|
|
169
169
|
displayName: string;
|
|
170
170
|
description: string | null;
|
|
@@ -177,7 +177,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
177
177
|
usedByUsers?: number | undefined;
|
|
178
178
|
usedByProjects?: number | undefined;
|
|
179
179
|
}[]>;
|
|
180
|
-
processedCredentialRoles:
|
|
180
|
+
processedCredentialRoles: vue311.ComputedRef<{
|
|
181
181
|
slug: string;
|
|
182
182
|
displayName: string;
|
|
183
183
|
description: string | null;
|
|
@@ -190,7 +190,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
190
190
|
usedByUsers?: number | undefined;
|
|
191
191
|
usedByProjects?: number | undefined;
|
|
192
192
|
}[]>;
|
|
193
|
-
processedWorkflowRoles:
|
|
193
|
+
processedWorkflowRoles: vue311.ComputedRef<{
|
|
194
194
|
slug: string;
|
|
195
195
|
displayName: string;
|
|
196
196
|
description: string | null;
|
|
@@ -214,7 +214,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
214
214
|
fetchRoleProjectMembers: (slug: string, projectId: string) => Promise<RoleProjectMembersResponse>;
|
|
215
215
|
fetchRoleMembers: (slug: string) => Promise<RoleMembersResponse>;
|
|
216
216
|
}, "roles">, Pick<{
|
|
217
|
-
roles:
|
|
217
|
+
roles: vue311.Ref<{
|
|
218
218
|
global: {
|
|
219
219
|
slug: string;
|
|
220
220
|
displayName: string;
|
|
@@ -347,7 +347,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
347
347
|
usedByProjects?: number | undefined | undefined;
|
|
348
348
|
}[];
|
|
349
349
|
}>;
|
|
350
|
-
processedProjectRoles:
|
|
350
|
+
processedProjectRoles: vue311.ComputedRef<{
|
|
351
351
|
slug: string;
|
|
352
352
|
displayName: string;
|
|
353
353
|
description: string | null;
|
|
@@ -360,7 +360,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
360
360
|
usedByUsers?: number | undefined;
|
|
361
361
|
usedByProjects?: number | undefined;
|
|
362
362
|
}[]>;
|
|
363
|
-
processedInstanceRoles:
|
|
363
|
+
processedInstanceRoles: vue311.ComputedRef<{
|
|
364
364
|
slug: string;
|
|
365
365
|
displayName: string;
|
|
366
366
|
description: string | null;
|
|
@@ -373,7 +373,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
373
373
|
usedByUsers?: number | undefined;
|
|
374
374
|
usedByProjects?: number | undefined;
|
|
375
375
|
}[]>;
|
|
376
|
-
customInstanceRoles:
|
|
376
|
+
customInstanceRoles: vue311.ComputedRef<{
|
|
377
377
|
slug: string;
|
|
378
378
|
displayName: string;
|
|
379
379
|
description: string | null;
|
|
@@ -386,7 +386,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
386
386
|
usedByUsers?: number | undefined;
|
|
387
387
|
usedByProjects?: number | undefined;
|
|
388
388
|
}[]>;
|
|
389
|
-
processedCredentialRoles:
|
|
389
|
+
processedCredentialRoles: vue311.ComputedRef<{
|
|
390
390
|
slug: string;
|
|
391
391
|
displayName: string;
|
|
392
392
|
description: string | null;
|
|
@@ -399,7 +399,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
399
399
|
usedByUsers?: number | undefined;
|
|
400
400
|
usedByProjects?: number | undefined;
|
|
401
401
|
}[]>;
|
|
402
|
-
processedWorkflowRoles:
|
|
402
|
+
processedWorkflowRoles: vue311.ComputedRef<{
|
|
403
403
|
slug: string;
|
|
404
404
|
displayName: string;
|
|
405
405
|
description: string | null;
|
|
@@ -423,7 +423,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
423
423
|
fetchRoleProjectMembers: (slug: string, projectId: string) => Promise<RoleProjectMembersResponse>;
|
|
424
424
|
fetchRoleMembers: (slug: string) => Promise<RoleMembersResponse>;
|
|
425
425
|
}, "processedProjectRoles" | "processedInstanceRoles" | "customInstanceRoles" | "processedCredentialRoles" | "processedWorkflowRoles">, Pick<{
|
|
426
|
-
roles:
|
|
426
|
+
roles: vue311.Ref<{
|
|
427
427
|
global: {
|
|
428
428
|
slug: string;
|
|
429
429
|
displayName: string;
|
|
@@ -556,7 +556,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
556
556
|
usedByProjects?: number | undefined | undefined;
|
|
557
557
|
}[];
|
|
558
558
|
}>;
|
|
559
|
-
processedProjectRoles:
|
|
559
|
+
processedProjectRoles: vue311.ComputedRef<{
|
|
560
560
|
slug: string;
|
|
561
561
|
displayName: string;
|
|
562
562
|
description: string | null;
|
|
@@ -569,7 +569,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
569
569
|
usedByUsers?: number | undefined;
|
|
570
570
|
usedByProjects?: number | undefined;
|
|
571
571
|
}[]>;
|
|
572
|
-
processedInstanceRoles:
|
|
572
|
+
processedInstanceRoles: vue311.ComputedRef<{
|
|
573
573
|
slug: string;
|
|
574
574
|
displayName: string;
|
|
575
575
|
description: string | null;
|
|
@@ -582,7 +582,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
582
582
|
usedByUsers?: number | undefined;
|
|
583
583
|
usedByProjects?: number | undefined;
|
|
584
584
|
}[]>;
|
|
585
|
-
customInstanceRoles:
|
|
585
|
+
customInstanceRoles: vue311.ComputedRef<{
|
|
586
586
|
slug: string;
|
|
587
587
|
displayName: string;
|
|
588
588
|
description: string | null;
|
|
@@ -595,7 +595,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
595
595
|
usedByUsers?: number | undefined;
|
|
596
596
|
usedByProjects?: number | undefined;
|
|
597
597
|
}[]>;
|
|
598
|
-
processedCredentialRoles:
|
|
598
|
+
processedCredentialRoles: vue311.ComputedRef<{
|
|
599
599
|
slug: string;
|
|
600
600
|
displayName: string;
|
|
601
601
|
description: string | null;
|
|
@@ -608,7 +608,7 @@ declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
|
608
608
|
usedByUsers?: number | undefined;
|
|
609
609
|
usedByProjects?: number | undefined;
|
|
610
610
|
}[]>;
|
|
611
|
-
processedWorkflowRoles:
|
|
611
|
+
processedWorkflowRoles: vue311.ComputedRef<{
|
|
612
612
|
slug: string;
|
|
613
613
|
displayName: string;
|
|
614
614
|
description: string | null;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as vue95 from "vue";
|
|
2
|
-
import * as
|
|
2
|
+
import * as pinia4 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:
|
|
9
|
+
declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
10
10
|
settings: vue95.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
@@ -226,6 +226,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
226
226
|
aiGateway?: {
|
|
227
227
|
enabled: boolean;
|
|
228
228
|
budget: number;
|
|
229
|
+
cloudUbbEnabled: boolean;
|
|
229
230
|
} | undefined;
|
|
230
231
|
ai: {
|
|
231
232
|
allowSendingParameterValues: boolean;
|
|
@@ -471,6 +472,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
471
472
|
aiGateway?: {
|
|
472
473
|
enabled: boolean;
|
|
473
474
|
budget: number;
|
|
475
|
+
cloudUbbEnabled: boolean;
|
|
474
476
|
} | undefined;
|
|
475
477
|
ai: {
|
|
476
478
|
allowSendingParameterValues: boolean;
|
|
@@ -650,6 +652,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
650
652
|
aiCreditsQuota: vue95.ComputedRef<number>;
|
|
651
653
|
isAiDataSharingEnabled: vue95.ComputedRef<boolean>;
|
|
652
654
|
isAiGatewayEnabled: vue95.ComputedRef<boolean>;
|
|
655
|
+
isAiGatewayCloudUbbEnabled: vue95.ComputedRef<boolean>;
|
|
653
656
|
aiGatewayBudget: vue95.ComputedRef<number>;
|
|
654
657
|
reset: () => void;
|
|
655
658
|
getTimezones: () => Promise<IDataObject>;
|
|
@@ -676,6 +679,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
676
679
|
mcpAccessEnabled: boolean;
|
|
677
680
|
mcpManagedByEnv: boolean;
|
|
678
681
|
serverUrl?: string | undefined;
|
|
682
|
+
autoExposeNewWorkflows: boolean;
|
|
679
683
|
} | undefined;
|
|
680
684
|
'chat-hub'?: {
|
|
681
685
|
enabled: boolean;
|
|
@@ -976,6 +980,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
976
980
|
mcpAccessEnabled: boolean;
|
|
977
981
|
mcpManagedByEnv: boolean;
|
|
978
982
|
serverUrl?: string | undefined;
|
|
983
|
+
autoExposeNewWorkflows: boolean;
|
|
979
984
|
} | undefined;
|
|
980
985
|
'chat-hub'?: {
|
|
981
986
|
enabled: boolean;
|
|
@@ -1494,6 +1499,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1494
1499
|
aiGateway?: {
|
|
1495
1500
|
enabled: boolean;
|
|
1496
1501
|
budget: number;
|
|
1502
|
+
cloudUbbEnabled: boolean;
|
|
1497
1503
|
} | undefined;
|
|
1498
1504
|
ai: {
|
|
1499
1505
|
allowSendingParameterValues: boolean;
|
|
@@ -1739,6 +1745,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1739
1745
|
aiGateway?: {
|
|
1740
1746
|
enabled: boolean;
|
|
1741
1747
|
budget: number;
|
|
1748
|
+
cloudUbbEnabled: boolean;
|
|
1742
1749
|
} | undefined;
|
|
1743
1750
|
ai: {
|
|
1744
1751
|
allowSendingParameterValues: boolean;
|
|
@@ -1918,6 +1925,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1918
1925
|
aiCreditsQuota: vue95.ComputedRef<number>;
|
|
1919
1926
|
isAiDataSharingEnabled: vue95.ComputedRef<boolean>;
|
|
1920
1927
|
isAiGatewayEnabled: vue95.ComputedRef<boolean>;
|
|
1928
|
+
isAiGatewayCloudUbbEnabled: vue95.ComputedRef<boolean>;
|
|
1921
1929
|
aiGatewayBudget: vue95.ComputedRef<number>;
|
|
1922
1930
|
reset: () => void;
|
|
1923
1931
|
getTimezones: () => Promise<IDataObject>;
|
|
@@ -1944,6 +1952,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1944
1952
|
mcpAccessEnabled: boolean;
|
|
1945
1953
|
mcpManagedByEnv: boolean;
|
|
1946
1954
|
serverUrl?: string | undefined;
|
|
1955
|
+
autoExposeNewWorkflows: boolean;
|
|
1947
1956
|
} | undefined;
|
|
1948
1957
|
'chat-hub'?: {
|
|
1949
1958
|
enabled: boolean;
|
|
@@ -2244,6 +2253,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2244
2253
|
mcpAccessEnabled: boolean;
|
|
2245
2254
|
mcpManagedByEnv: boolean;
|
|
2246
2255
|
serverUrl?: string | undefined;
|
|
2256
|
+
autoExposeNewWorkflows: boolean;
|
|
2247
2257
|
} | undefined;
|
|
2248
2258
|
'chat-hub'?: {
|
|
2249
2259
|
enabled: boolean;
|
|
@@ -2542,7 +2552,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2542
2552
|
isAgentsKnowledgeBaseFeatureEnabled: vue95.ComputedRef<boolean>;
|
|
2543
2553
|
isPublicChatTriggerDisabled: vue95.ComputedRef<boolean>;
|
|
2544
2554
|
isWorkflowPublicationServiceEnabled: vue95.ComputedRef<boolean>;
|
|
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<{
|
|
2555
|
+
}, "isDocker" | "databaseType" | "endpointHealth" | "workflowCallerPolicyDefaultOption" | "nodeJsVersion" | "nodeEnv" | "concurrency" | "binaryDataMode" | "telemetry" | "logLevel" | "isMultiMain" | "pushBackend" | "allowedModules" | "pruning" | "security" | "activeModules" | "planName" | "consumerId" | "isDevRelease" | "isEnterpriseFeatureEnabled" | "isConcurrencyEnabled" | "isPublicApiEnabled" | "isSwaggerUIEnabled" | "isPreviewMode" | "isE2ETestMode" | "isCanvasOnly" | "isCrdtCollaborationEnabled" | "publicApiLatestVersion" | "publicApiPath" | "showSetupPage" | "deploymentType" | "isCloudDeployment" | "isSmtpSetup" | "isPersonalizationSurveyEnabled" | "isTelemetryEnabled" | "isMfaFeatureEnabled" | "isFoldersFeatureEnabled" | "isAiAssistantEnabled" | "isCustomRolesFeatureEnabled" | "areTagsEnabled" | "isAutosaveEnabled" | "isHiringBannerEnabled" | "isTemplatesEnabled" | "isTemplatesEndpointReachable" | "templatesHost" | "isCommunityNodesFeatureEnabled" | "isUnverifiedPackagesEnabled" | "isQueueModeEnabled" | "isWorkerViewAvailable" | "permanentlyDismissedBanners" | "isCommunityPlan" | "isAskAiEnabled" | "isAiBuilderEnabled" | "isAiAssistantOrBuilderEnabled" | "isAiCreditsEnabled" | "aiCreditsQuota" | "isAiDataSharingEnabled" | "isAiGatewayEnabled" | "isAiGatewayCloudUbbEnabled" | "aiGatewayBudget" | "isMFAEnforcementLicensed" | "isDataTableFeatureEnabled" | "isChatFeatureEnabled" | "isOtelCustomSpanAttributesEnabled" | "isAgentsKnowledgeBaseFeatureEnabled" | "isPublicChatTriggerDisabled" | "isWorkflowPublicationServiceEnabled">, Pick<{
|
|
2546
2556
|
settings: vue95.Ref<{
|
|
2547
2557
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
2548
2558
|
inE2ETests: boolean;
|
|
@@ -2762,6 +2772,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2762
2772
|
aiGateway?: {
|
|
2763
2773
|
enabled: boolean;
|
|
2764
2774
|
budget: number;
|
|
2775
|
+
cloudUbbEnabled: boolean;
|
|
2765
2776
|
} | undefined;
|
|
2766
2777
|
ai: {
|
|
2767
2778
|
allowSendingParameterValues: boolean;
|
|
@@ -3007,6 +3018,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3007
3018
|
aiGateway?: {
|
|
3008
3019
|
enabled: boolean;
|
|
3009
3020
|
budget: number;
|
|
3021
|
+
cloudUbbEnabled: boolean;
|
|
3010
3022
|
} | undefined;
|
|
3011
3023
|
ai: {
|
|
3012
3024
|
allowSendingParameterValues: boolean;
|
|
@@ -3186,6 +3198,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3186
3198
|
aiCreditsQuota: vue95.ComputedRef<number>;
|
|
3187
3199
|
isAiDataSharingEnabled: vue95.ComputedRef<boolean>;
|
|
3188
3200
|
isAiGatewayEnabled: vue95.ComputedRef<boolean>;
|
|
3201
|
+
isAiGatewayCloudUbbEnabled: vue95.ComputedRef<boolean>;
|
|
3189
3202
|
aiGatewayBudget: vue95.ComputedRef<number>;
|
|
3190
3203
|
reset: () => void;
|
|
3191
3204
|
getTimezones: () => Promise<IDataObject>;
|
|
@@ -3212,6 +3225,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3212
3225
|
mcpAccessEnabled: boolean;
|
|
3213
3226
|
mcpManagedByEnv: boolean;
|
|
3214
3227
|
serverUrl?: string | undefined;
|
|
3228
|
+
autoExposeNewWorkflows: boolean;
|
|
3215
3229
|
} | undefined;
|
|
3216
3230
|
'chat-hub'?: {
|
|
3217
3231
|
enabled: boolean;
|
|
@@ -3512,6 +3526,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3512
3526
|
mcpAccessEnabled: boolean;
|
|
3513
3527
|
mcpManagedByEnv: boolean;
|
|
3514
3528
|
serverUrl?: string | undefined;
|
|
3529
|
+
autoExposeNewWorkflows: boolean;
|
|
3515
3530
|
} | undefined;
|
|
3516
3531
|
'chat-hub'?: {
|
|
3517
3532
|
enabled: boolean;
|