@n8n/stores 2.33.0 → 2.34.0
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.cjs +5 -241
- package/dist/cloudPlan.store.d.cts +6 -0
- package/dist/cloudPlan.store.d.mts +72 -66
- package/dist/cloudPlan.store.mjs +5 -241
- package/dist/cloudPlan2.store.cjs +247 -0
- package/dist/cloudPlan2.store.cjs.map +1 -0
- package/dist/cloudPlan2.store.mjs +242 -0
- package/dist/cloudPlan2.store.mjs.map +1 -0
- package/dist/composables/useBasePageRedirectionHelper.cjs +87 -0
- package/dist/composables/useBasePageRedirectionHelper.cjs.map +1 -0
- package/dist/composables/useBasePageRedirectionHelper.d.cts +16 -0
- package/dist/composables/useBasePageRedirectionHelper.d.mts +16 -0
- package/dist/composables/useBasePageRedirectionHelper.mjs +87 -0
- package/dist/composables/useBasePageRedirectionHelper.mjs.map +1 -0
- package/dist/constants2.cjs +1 -0
- package/dist/constants2.cjs.map +1 -1
- package/dist/constants2.d.cts +1 -0
- package/dist/constants2.d.mts +1 -0
- package/dist/constants2.mjs +1 -0
- package/dist/constants2.mjs.map +1 -1
- package/dist/notifications.store.cjs +2 -8
- package/dist/notifications.store.cjs.map +1 -1
- package/dist/notifications.store.d.cts +3 -24
- package/dist/notifications.store.d.mts +3 -24
- package/dist/notifications.store.mjs +2 -8
- package/dist/notifications.store.mjs.map +1 -1
- package/dist/pageRedirection.d.cts +6 -0
- package/dist/pageRedirection.d.mts +6 -0
- package/dist/rbac.store.d.cts +123 -123
- package/dist/rbac.store.d.mts +123 -123
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +19 -19
- package/dist/settings.store.d.cts +243 -237
- package/dist/settings.store.d.mts +243 -237
- package/dist/settings2.store.cjs +5 -5
- package/dist/settings2.store.cjs.map +1 -1
- package/dist/settings2.store.mjs +5 -5
- package/dist/settings2.store.mjs.map +1 -1
- package/dist/types/pageRedirection.cjs +0 -0
- package/dist/types/pageRedirection.d.cts +2 -0
- package/dist/types/pageRedirection.d.mts +2 -0
- package/dist/types/pageRedirection.mjs +1 -0
- package/dist/useAgentRequestStore.d.mts +6 -6
- package/dist/useRootStore.d.cts +72 -72
- package/dist/useRootStore.d.mts +70 -70
- package/dist/users.store.cjs +7 -352
- package/dist/users.store.d.cts +67 -55
- package/dist/users.store.d.mts +69 -57
- package/dist/users.store.mjs +7 -349
- package/dist/users2.store.cjs +362 -0
- package/dist/users2.store.cjs.map +1 -0
- package/dist/users2.store.mjs +353 -0
- package/dist/users2.store.mjs.map +1 -0
- package/dist/versions.store.cjs +11 -0
- package/dist/versions.store.d.cts +384 -0
- package/dist/versions.store.d.mts +384 -0
- package/dist/versions.store.mjs +10 -0
- package/dist/versions2.store.cjs +230 -0
- package/dist/versions2.store.cjs.map +1 -0
- package/dist/versions2.store.mjs +218 -0
- package/dist/versions2.store.mjs.map +1 -0
- package/package.json +14 -13
- package/dist/cloudPlan.store.cjs.map +0 -1
- package/dist/cloudPlan.store.mjs.map +0 -1
- package/dist/users.store.cjs.map +0 -1
- package/dist/users.store.mjs.map +0 -1
|
@@ -1,36 +1,15 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Ref } from "vue";
|
|
2
2
|
import * as pinia1 from "pinia";
|
|
3
|
-
import { VIEWS } from "@n8n/frontend-constants/views";
|
|
4
3
|
|
|
5
4
|
//#region src/notifications.store.d.ts
|
|
6
|
-
type NotificationType = '' | 'success' | 'warning' | 'error' | 'info';
|
|
7
|
-
type NotificationPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
8
|
-
interface NotificationOptions {
|
|
9
|
-
message: string | VNode;
|
|
10
|
-
title?: string;
|
|
11
|
-
type?: NotificationType;
|
|
12
|
-
icon?: string | Component;
|
|
13
|
-
customClass?: string;
|
|
14
|
-
duration?: number;
|
|
15
|
-
position?: NotificationPosition;
|
|
16
|
-
showClose?: boolean;
|
|
17
|
-
dangerouslyUseHTMLString?: boolean;
|
|
18
|
-
offset?: number;
|
|
19
|
-
appendTo?: HTMLElement | string;
|
|
20
|
-
zIndex?: number;
|
|
21
|
-
onClick?: () => void;
|
|
22
|
-
onClose?: () => void;
|
|
23
|
-
}
|
|
24
5
|
interface NotificationsStore {
|
|
25
|
-
pendingNotificationsForViews: Ref<Partial<Record<VIEWS, NotificationOptions[]>>>;
|
|
26
6
|
areNotificationsSuppressed: Ref<boolean>;
|
|
27
7
|
allowErrorNotificationsWhenSuppressed: Ref<boolean>;
|
|
28
|
-
setNotificationsForView: (view: VIEWS, notifications: NotificationOptions[]) => void;
|
|
29
8
|
setNotificationsSuppressed: (suppressed: boolean, options?: {
|
|
30
9
|
allowErrors?: boolean;
|
|
31
10
|
}) => void;
|
|
32
11
|
}
|
|
33
|
-
declare const useNotificationsStore: pinia1.StoreDefinition<"notifications", Pick<NotificationsStore, "
|
|
12
|
+
declare const useNotificationsStore: pinia1.StoreDefinition<"notifications", Pick<NotificationsStore, "areNotificationsSuppressed" | "allowErrorNotificationsWhenSuppressed">, Pick<NotificationsStore, never>, Pick<NotificationsStore, "setNotificationsSuppressed">>;
|
|
34
13
|
//#endregion
|
|
35
|
-
export {
|
|
14
|
+
export { NotificationsStore, useNotificationsStore };
|
|
36
15
|
//# sourceMappingURL=notifications.store.d.cts.map
|
|
@@ -1,36 +1,15 @@
|
|
|
1
1
|
import * as pinia0 from "pinia";
|
|
2
|
-
import {
|
|
3
|
-
import { VIEWS } from "@n8n/frontend-constants/views";
|
|
2
|
+
import { Ref } from "vue";
|
|
4
3
|
|
|
5
4
|
//#region src/notifications.store.d.ts
|
|
6
|
-
type NotificationType = '' | 'success' | 'warning' | 'error' | 'info';
|
|
7
|
-
type NotificationPosition = 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left';
|
|
8
|
-
interface NotificationOptions {
|
|
9
|
-
message: string | VNode;
|
|
10
|
-
title?: string;
|
|
11
|
-
type?: NotificationType;
|
|
12
|
-
icon?: string | Component;
|
|
13
|
-
customClass?: string;
|
|
14
|
-
duration?: number;
|
|
15
|
-
position?: NotificationPosition;
|
|
16
|
-
showClose?: boolean;
|
|
17
|
-
dangerouslyUseHTMLString?: boolean;
|
|
18
|
-
offset?: number;
|
|
19
|
-
appendTo?: HTMLElement | string;
|
|
20
|
-
zIndex?: number;
|
|
21
|
-
onClick?: () => void;
|
|
22
|
-
onClose?: () => void;
|
|
23
|
-
}
|
|
24
5
|
interface NotificationsStore {
|
|
25
|
-
pendingNotificationsForViews: Ref<Partial<Record<VIEWS, NotificationOptions[]>>>;
|
|
26
6
|
areNotificationsSuppressed: Ref<boolean>;
|
|
27
7
|
allowErrorNotificationsWhenSuppressed: Ref<boolean>;
|
|
28
|
-
setNotificationsForView: (view: VIEWS, notifications: NotificationOptions[]) => void;
|
|
29
8
|
setNotificationsSuppressed: (suppressed: boolean, options?: {
|
|
30
9
|
allowErrors?: boolean;
|
|
31
10
|
}) => void;
|
|
32
11
|
}
|
|
33
|
-
declare const useNotificationsStore: pinia0.StoreDefinition<"notifications", Pick<NotificationsStore, "
|
|
12
|
+
declare const useNotificationsStore: pinia0.StoreDefinition<"notifications", Pick<NotificationsStore, "areNotificationsSuppressed" | "allowErrorNotificationsWhenSuppressed">, Pick<NotificationsStore, never>, Pick<NotificationsStore, "setNotificationsSuppressed">>;
|
|
34
13
|
//#endregion
|
|
35
|
-
export {
|
|
14
|
+
export { NotificationsStore, useNotificationsStore };
|
|
36
15
|
//# sourceMappingURL=notifications.store.d.mts.map
|
|
@@ -4,25 +4,19 @@ import { ref } from "vue";
|
|
|
4
4
|
|
|
5
5
|
//#region src/notifications.store.ts
|
|
6
6
|
/**
|
|
7
|
-
* Notification state extracted from `ui.store`: the
|
|
8
|
-
*
|
|
7
|
+
* Notification state extracted from `ui.store`: the suppression flags read by
|
|
8
|
+
* the toast layer.
|
|
9
9
|
*/
|
|
10
10
|
const useNotificationsStore = defineStore(STORES.NOTIFICATIONS, () => {
|
|
11
|
-
const pendingNotificationsForViews = ref({});
|
|
12
11
|
const areNotificationsSuppressed = ref(false);
|
|
13
12
|
const allowErrorNotificationsWhenSuppressed = ref(false);
|
|
14
|
-
const setNotificationsForView = (view, notifications) => {
|
|
15
|
-
pendingNotificationsForViews.value[view] = notifications;
|
|
16
|
-
};
|
|
17
13
|
const setNotificationsSuppressed = (suppressed, options) => {
|
|
18
14
|
areNotificationsSuppressed.value = suppressed;
|
|
19
15
|
allowErrorNotificationsWhenSuppressed.value = suppressed && options?.allowErrors === true;
|
|
20
16
|
};
|
|
21
17
|
return {
|
|
22
|
-
pendingNotificationsForViews,
|
|
23
18
|
areNotificationsSuppressed,
|
|
24
19
|
allowErrorNotificationsWhenSuppressed,
|
|
25
|
-
setNotificationsForView,
|
|
26
20
|
setNotificationsSuppressed
|
|
27
21
|
};
|
|
28
22
|
});
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notifications.store.mjs","names":[],"sources":["../src/notifications.store.ts"],"sourcesContent":["import
|
|
1
|
+
{"version":3,"file":"notifications.store.mjs","names":[],"sources":["../src/notifications.store.ts"],"sourcesContent":["import { defineStore } from 'pinia';\nimport { ref, type Ref } from 'vue';\n\nimport { STORES } from './constants';\n\n/**\n * Public surface of the notifications store. Declared explicitly so the emitted\n * type declarations reference these named types instead of inlining the\n * structural Vue ref types, keeping the declarations portable across the package\n * boundary.\n */\nexport interface NotificationsStore {\n\tareNotificationsSuppressed: Ref<boolean>;\n\tallowErrorNotificationsWhenSuppressed: Ref<boolean>;\n\tsetNotificationsSuppressed: (suppressed: boolean, options?: { allowErrors?: boolean }) => void;\n}\n\n/**\n * Notification state extracted from `ui.store`: the suppression flags read by\n * the toast layer.\n */\nexport const useNotificationsStore = defineStore(STORES.NOTIFICATIONS, (): NotificationsStore => {\n\tconst areNotificationsSuppressed = ref(false);\n\tconst allowErrorNotificationsWhenSuppressed = ref(false);\n\n\tconst setNotificationsSuppressed = (suppressed: boolean, options?: { allowErrors?: boolean }) => {\n\t\tareNotificationsSuppressed.value = suppressed;\n\t\tallowErrorNotificationsWhenSuppressed.value = suppressed && options?.allowErrors === true;\n\t};\n\n\treturn {\n\t\tareNotificationsSuppressed,\n\t\tallowErrorNotificationsWhenSuppressed,\n\t\tsetNotificationsSuppressed,\n\t};\n});\n"],"mappings":";;;;;;;;;AAqBA,MAAa,wBAAwB,YAAY,OAAO,qBAAyC;CAChG,MAAM,6BAA6B,IAAI,MAAM;CAC7C,MAAM,wCAAwC,IAAI,MAAM;CAExD,MAAM,8BAA8B,YAAqB,YAAwC;AAChG,6BAA2B,QAAQ;AACnC,wCAAsC,QAAQ,cAAc,SAAS,gBAAgB;;AAGtF,QAAO;EACN;EACA;EACA;EACA;EACA"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
//#region src/types/pageRedirection.d.ts
|
|
2
|
+
type CloudUpdateLinkSourceType = 'advanced-permissions' | 'canvas-nav' | 'concurrency' | 'custom-data-filter' | 'workflow_sharing' | 'credential_sharing' | 'settings-n8n-api' | 'audit-logs' | 'ldap' | 'log-streaming' | 'source-control' | 'sso' | 'usage_page' | 'settings-users' | 'variables' | 'community-nodes' | 'workflow-history' | 'worker-view' | 'external-secrets' | 'rbac' | 'debug' | 'insights' | 'evaluations' | 'ai-builder-sidebar' | 'ai-builder-canvas' | 'custom-roles' | 'custom-roles-selector' | 'custom-roles-list' | 'main-sidebar' | 'chat-hub' | 'empty-state-builder-prompt' | 'instance-ai' | 'data-redaction' | 'workflow-settings' | 'trial-welcome-modal';
|
|
3
|
+
type UTMCampaign = 'upgrade-custom-data-filter' | 'upgrade-concurrency' | 'upgrade-workflow-sharing' | 'upgrade-credentials-sharing' | 'upgrade-api' | 'upgrade-audit-logs' | 'upgrade-ldap' | 'upgrade-log-streaming' | 'upgrade-source-control' | 'upgrade-sso' | 'open' | 'upgrade-users' | 'upgrade-variables' | 'upgrade-community-nodes' | 'upgrade-workflow-history' | 'upgrade-advanced-permissions' | 'upgrade-worker-view' | 'upgrade-external-secrets' | 'upgrade-rbac' | 'upgrade-debug' | 'upgrade-insights' | 'upgrade-evaluations' | 'upgrade-builder' | 'upgrade-custom-roles' | 'upgrade-canvas-nav' | 'upgrade-main-sidebar' | 'upgrade-instance-ai' | 'upgrade-data-redaction';
|
|
4
|
+
//#endregion
|
|
5
|
+
export { UTMCampaign as n, CloudUpdateLinkSourceType as t };
|
|
6
|
+
//# sourceMappingURL=pageRedirection.d.cts.map
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
//#region src/types/pageRedirection.d.ts
|
|
2
|
+
type CloudUpdateLinkSourceType = 'advanced-permissions' | 'canvas-nav' | 'concurrency' | 'custom-data-filter' | 'workflow_sharing' | 'credential_sharing' | 'settings-n8n-api' | 'audit-logs' | 'ldap' | 'log-streaming' | 'source-control' | 'sso' | 'usage_page' | 'settings-users' | 'variables' | 'community-nodes' | 'workflow-history' | 'worker-view' | 'external-secrets' | 'rbac' | 'debug' | 'insights' | 'evaluations' | 'ai-builder-sidebar' | 'ai-builder-canvas' | 'custom-roles' | 'custom-roles-selector' | 'custom-roles-list' | 'main-sidebar' | 'chat-hub' | 'empty-state-builder-prompt' | 'instance-ai' | 'data-redaction' | 'workflow-settings' | 'trial-welcome-modal';
|
|
3
|
+
type UTMCampaign = 'upgrade-custom-data-filter' | 'upgrade-concurrency' | 'upgrade-workflow-sharing' | 'upgrade-credentials-sharing' | 'upgrade-api' | 'upgrade-audit-logs' | 'upgrade-ldap' | 'upgrade-log-streaming' | 'upgrade-source-control' | 'upgrade-sso' | 'open' | 'upgrade-users' | 'upgrade-variables' | 'upgrade-community-nodes' | 'upgrade-workflow-history' | 'upgrade-advanced-permissions' | 'upgrade-worker-view' | 'upgrade-external-secrets' | 'upgrade-rbac' | 'upgrade-debug' | 'upgrade-insights' | 'upgrade-evaluations' | 'upgrade-builder' | 'upgrade-custom-roles' | 'upgrade-canvas-nav' | 'upgrade-main-sidebar' | 'upgrade-instance-ai' | 'upgrade-data-redaction';
|
|
4
|
+
//#endregion
|
|
5
|
+
export { UTMCampaign as n, CloudUpdateLinkSourceType as t };
|
|
6
|
+
//# sourceMappingURL=pageRedirection.d.mts.map
|
package/dist/rbac.store.d.cts
CHANGED
|
@@ -1,52 +1,53 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue290 from "vue";
|
|
2
|
+
import * as pinia3 from "pinia";
|
|
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: pinia3.StoreDefinition<"rbac", Pick<{
|
|
8
|
+
globalRoles: vue290.Ref<Role[], Role[]>;
|
|
9
|
+
rolesByProjectId: vue290.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
10
|
+
globalScopes: vue290.Ref<Scope[], Scope[]>;
|
|
11
|
+
scopesByProjectId: vue290.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
12
|
+
scopesByResourceId: vue290.Ref<{
|
|
13
13
|
chatHub: Record<string, Scope[]>;
|
|
14
|
-
|
|
14
|
+
logStreaming: Record<string, Scope[]>;
|
|
15
15
|
aiAssistant: Record<string, Scope[]>;
|
|
16
|
-
|
|
16
|
+
license: Record<string, Scope[]>;
|
|
17
|
+
ldap: Record<string, Scope[]>;
|
|
18
|
+
saml: Record<string, Scope[]>;
|
|
19
|
+
oidc: Record<string, Scope[]>;
|
|
20
|
+
sourceControl: Record<string, Scope[]>;
|
|
17
21
|
auditLogs: Record<string, Scope[]>;
|
|
18
|
-
|
|
22
|
+
provisioning: Record<string, Scope[]>;
|
|
19
23
|
community: Record<string, Scope[]>;
|
|
20
|
-
|
|
24
|
+
insights: Record<string, Scope[]>;
|
|
25
|
+
mcp: Record<string, Scope[]>;
|
|
26
|
+
otel: Record<string, Scope[]>;
|
|
27
|
+
role: Record<string, Scope[]>;
|
|
28
|
+
project: Record<string, Scope[]>;
|
|
21
29
|
credential: Record<string, Scope[]>;
|
|
30
|
+
workflow: Record<string, Scope[]>;
|
|
31
|
+
agent: Record<string, Scope[]>;
|
|
32
|
+
annotationTag: Record<string, Scope[]>;
|
|
33
|
+
banner: Record<string, Scope[]>;
|
|
34
|
+
communityPackage: Record<string, Scope[]>;
|
|
22
35
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
23
36
|
externalSecret: Record<string, Scope[]>;
|
|
24
37
|
eventBusDestination: Record<string, Scope[]>;
|
|
25
|
-
ldap: Record<string, Scope[]>;
|
|
26
|
-
license: Record<string, Scope[]>;
|
|
27
|
-
logStreaming: Record<string, Scope[]>;
|
|
28
38
|
orchestration: Record<string, Scope[]>;
|
|
29
|
-
project: Record<string, Scope[]>;
|
|
30
|
-
saml: Record<string, Scope[]>;
|
|
31
39
|
securityAudit: Record<string, Scope[]>;
|
|
32
40
|
securitySettings: Record<string, Scope[]>;
|
|
33
|
-
sourceControl: Record<string, Scope[]>;
|
|
34
41
|
tag: Record<string, Scope[]>;
|
|
35
42
|
user: Record<string, Scope[]>;
|
|
36
43
|
variable: Record<string, Scope[]>;
|
|
37
44
|
projectVariable: Record<string, Scope[]>;
|
|
38
45
|
workersView: Record<string, Scope[]>;
|
|
39
|
-
workflow: Record<string, Scope[]>;
|
|
40
46
|
folder: Record<string, Scope[]>;
|
|
41
|
-
insights: Record<string, Scope[]>;
|
|
42
|
-
oidc: Record<string, Scope[]>;
|
|
43
|
-
provisioning: Record<string, Scope[]>;
|
|
44
47
|
dataTable: Record<string, Scope[]>;
|
|
45
48
|
execution: Record<string, Scope[]>;
|
|
46
49
|
testRun: Record<string, Scope[]>;
|
|
47
50
|
workflowTags: Record<string, Scope[]>;
|
|
48
|
-
role: Record<string, Scope[]>;
|
|
49
|
-
mcp: Record<string, Scope[]>;
|
|
50
51
|
mcpApiKey: Record<string, Scope[]>;
|
|
51
52
|
chatHubAgent: Record<string, Scope[]>;
|
|
52
53
|
breakingChanges: Record<string, Scope[]>;
|
|
@@ -55,45 +56,45 @@ declare const useRBACStore: pinia4.StoreDefinition<"rbac", Pick<{
|
|
|
55
56
|
credentialResolver: Record<string, Scope[]>;
|
|
56
57
|
instanceAi: Record<string, Scope[]>;
|
|
57
58
|
roleMappingRule: Record<string, Scope[]>;
|
|
58
|
-
|
|
59
|
-
}, Record<"chatHub" | "agent" | "aiAssistant" | "annotationTag" | "auditLogs" | "banner" | "community" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "ldap" | "license" | "logStreaming" | "orchestration" | "project" | "saml" | "securityAudit" | "securitySettings" | "sourceControl" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "insights" | "oidc" | "provisioning" | "dataTable" | "execution" | "testRun" | "workflowTags" | "role" | "mcp" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "apiKey" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule" | "otel", Record<string, Scope[]>> | {
|
|
59
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "project" | "credential" | "workflow" | "agent" | "annotationTag" | "banner" | "communityPackage" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "apiKey" | "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[]>;
|
|
63
|
-
|
|
63
|
+
license: Record<string, Scope[]>;
|
|
64
|
+
ldap: Record<string, Scope[]>;
|
|
65
|
+
saml: Record<string, Scope[]>;
|
|
66
|
+
oidc: Record<string, Scope[]>;
|
|
67
|
+
sourceControl: Record<string, Scope[]>;
|
|
64
68
|
auditLogs: Record<string, Scope[]>;
|
|
65
|
-
|
|
69
|
+
provisioning: Record<string, Scope[]>;
|
|
66
70
|
community: Record<string, Scope[]>;
|
|
67
|
-
|
|
71
|
+
insights: Record<string, Scope[]>;
|
|
72
|
+
mcp: Record<string, Scope[]>;
|
|
73
|
+
otel: Record<string, Scope[]>;
|
|
74
|
+
role: Record<string, Scope[]>;
|
|
75
|
+
project: Record<string, Scope[]>;
|
|
68
76
|
credential: Record<string, Scope[]>;
|
|
77
|
+
workflow: Record<string, Scope[]>;
|
|
78
|
+
agent: Record<string, Scope[]>;
|
|
79
|
+
annotationTag: Record<string, Scope[]>;
|
|
80
|
+
banner: Record<string, Scope[]>;
|
|
81
|
+
communityPackage: Record<string, Scope[]>;
|
|
69
82
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
70
83
|
externalSecret: Record<string, Scope[]>;
|
|
71
84
|
eventBusDestination: Record<string, Scope[]>;
|
|
72
|
-
ldap: Record<string, Scope[]>;
|
|
73
|
-
license: Record<string, Scope[]>;
|
|
74
|
-
logStreaming: Record<string, Scope[]>;
|
|
75
85
|
orchestration: Record<string, Scope[]>;
|
|
76
|
-
project: Record<string, Scope[]>;
|
|
77
|
-
saml: Record<string, Scope[]>;
|
|
78
86
|
securityAudit: Record<string, Scope[]>;
|
|
79
87
|
securitySettings: Record<string, Scope[]>;
|
|
80
|
-
sourceControl: Record<string, Scope[]>;
|
|
81
88
|
tag: Record<string, Scope[]>;
|
|
82
89
|
user: Record<string, Scope[]>;
|
|
83
90
|
variable: Record<string, Scope[]>;
|
|
84
91
|
projectVariable: Record<string, Scope[]>;
|
|
85
92
|
workersView: Record<string, Scope[]>;
|
|
86
|
-
workflow: Record<string, Scope[]>;
|
|
87
93
|
folder: Record<string, Scope[]>;
|
|
88
|
-
insights: Record<string, Scope[]>;
|
|
89
|
-
oidc: Record<string, Scope[]>;
|
|
90
|
-
provisioning: Record<string, Scope[]>;
|
|
91
94
|
dataTable: Record<string, Scope[]>;
|
|
92
95
|
execution: Record<string, Scope[]>;
|
|
93
96
|
testRun: Record<string, Scope[]>;
|
|
94
97
|
workflowTags: Record<string, Scope[]>;
|
|
95
|
-
role: Record<string, Scope[]>;
|
|
96
|
-
mcp: Record<string, Scope[]>;
|
|
97
98
|
mcpApiKey: Record<string, Scope[]>;
|
|
98
99
|
chatHubAgent: Record<string, Scope[]>;
|
|
99
100
|
breakingChanges: Record<string, Scope[]>;
|
|
@@ -102,7 +103,6 @@ declare const useRBACStore: pinia4.StoreDefinition<"rbac", Pick<{
|
|
|
102
103
|
credentialResolver: Record<string, Scope[]>;
|
|
103
104
|
instanceAi: Record<string, Scope[]>;
|
|
104
105
|
roleMappingRule: Record<string, Scope[]>;
|
|
105
|
-
otel: Record<string, Scope[]>;
|
|
106
106
|
}>;
|
|
107
107
|
addGlobalRole: (role: Role) => void;
|
|
108
108
|
hasRole: (role: Role) => boolean;
|
|
@@ -121,48 +121,49 @@ declare const useRBACStore: pinia4.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: vue290.Ref<Role[], Role[]>;
|
|
125
|
+
rolesByProjectId: vue290.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
126
|
+
globalScopes: vue290.Ref<Scope[], Scope[]>;
|
|
127
|
+
scopesByProjectId: vue290.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
128
|
+
scopesByResourceId: vue290.Ref<{
|
|
129
129
|
chatHub: Record<string, Scope[]>;
|
|
130
|
-
|
|
130
|
+
logStreaming: Record<string, Scope[]>;
|
|
131
131
|
aiAssistant: Record<string, Scope[]>;
|
|
132
|
-
|
|
132
|
+
license: Record<string, Scope[]>;
|
|
133
|
+
ldap: Record<string, Scope[]>;
|
|
134
|
+
saml: Record<string, Scope[]>;
|
|
135
|
+
oidc: Record<string, Scope[]>;
|
|
136
|
+
sourceControl: Record<string, Scope[]>;
|
|
133
137
|
auditLogs: Record<string, Scope[]>;
|
|
134
|
-
|
|
138
|
+
provisioning: Record<string, Scope[]>;
|
|
135
139
|
community: Record<string, Scope[]>;
|
|
136
|
-
|
|
140
|
+
insights: Record<string, Scope[]>;
|
|
141
|
+
mcp: Record<string, Scope[]>;
|
|
142
|
+
otel: Record<string, Scope[]>;
|
|
143
|
+
role: Record<string, Scope[]>;
|
|
144
|
+
project: Record<string, Scope[]>;
|
|
137
145
|
credential: Record<string, Scope[]>;
|
|
146
|
+
workflow: Record<string, Scope[]>;
|
|
147
|
+
agent: Record<string, Scope[]>;
|
|
148
|
+
annotationTag: Record<string, Scope[]>;
|
|
149
|
+
banner: Record<string, Scope[]>;
|
|
150
|
+
communityPackage: Record<string, Scope[]>;
|
|
138
151
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
139
152
|
externalSecret: Record<string, Scope[]>;
|
|
140
153
|
eventBusDestination: Record<string, Scope[]>;
|
|
141
|
-
ldap: Record<string, Scope[]>;
|
|
142
|
-
license: Record<string, Scope[]>;
|
|
143
|
-
logStreaming: Record<string, Scope[]>;
|
|
144
154
|
orchestration: Record<string, Scope[]>;
|
|
145
|
-
project: Record<string, Scope[]>;
|
|
146
|
-
saml: Record<string, Scope[]>;
|
|
147
155
|
securityAudit: Record<string, Scope[]>;
|
|
148
156
|
securitySettings: Record<string, Scope[]>;
|
|
149
|
-
sourceControl: Record<string, Scope[]>;
|
|
150
157
|
tag: Record<string, Scope[]>;
|
|
151
158
|
user: Record<string, Scope[]>;
|
|
152
159
|
variable: Record<string, Scope[]>;
|
|
153
160
|
projectVariable: Record<string, Scope[]>;
|
|
154
161
|
workersView: Record<string, Scope[]>;
|
|
155
|
-
workflow: Record<string, Scope[]>;
|
|
156
162
|
folder: Record<string, Scope[]>;
|
|
157
|
-
insights: Record<string, Scope[]>;
|
|
158
|
-
oidc: Record<string, Scope[]>;
|
|
159
|
-
provisioning: Record<string, Scope[]>;
|
|
160
163
|
dataTable: Record<string, Scope[]>;
|
|
161
164
|
execution: Record<string, Scope[]>;
|
|
162
165
|
testRun: Record<string, Scope[]>;
|
|
163
166
|
workflowTags: Record<string, Scope[]>;
|
|
164
|
-
role: Record<string, Scope[]>;
|
|
165
|
-
mcp: Record<string, Scope[]>;
|
|
166
167
|
mcpApiKey: Record<string, Scope[]>;
|
|
167
168
|
chatHubAgent: Record<string, Scope[]>;
|
|
168
169
|
breakingChanges: Record<string, Scope[]>;
|
|
@@ -171,45 +172,45 @@ declare const useRBACStore: pinia4.StoreDefinition<"rbac", Pick<{
|
|
|
171
172
|
credentialResolver: Record<string, Scope[]>;
|
|
172
173
|
instanceAi: Record<string, Scope[]>;
|
|
173
174
|
roleMappingRule: Record<string, Scope[]>;
|
|
174
|
-
|
|
175
|
-
}, Record<"chatHub" | "agent" | "aiAssistant" | "annotationTag" | "auditLogs" | "banner" | "community" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "ldap" | "license" | "logStreaming" | "orchestration" | "project" | "saml" | "securityAudit" | "securitySettings" | "sourceControl" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "insights" | "oidc" | "provisioning" | "dataTable" | "execution" | "testRun" | "workflowTags" | "role" | "mcp" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "apiKey" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule" | "otel", Record<string, Scope[]>> | {
|
|
175
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "project" | "credential" | "workflow" | "agent" | "annotationTag" | "banner" | "communityPackage" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "apiKey" | "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[]>;
|
|
179
|
-
|
|
179
|
+
license: Record<string, Scope[]>;
|
|
180
|
+
ldap: Record<string, Scope[]>;
|
|
181
|
+
saml: Record<string, Scope[]>;
|
|
182
|
+
oidc: Record<string, Scope[]>;
|
|
183
|
+
sourceControl: Record<string, Scope[]>;
|
|
180
184
|
auditLogs: Record<string, Scope[]>;
|
|
181
|
-
|
|
185
|
+
provisioning: Record<string, Scope[]>;
|
|
182
186
|
community: Record<string, Scope[]>;
|
|
183
|
-
|
|
187
|
+
insights: Record<string, Scope[]>;
|
|
188
|
+
mcp: Record<string, Scope[]>;
|
|
189
|
+
otel: Record<string, Scope[]>;
|
|
190
|
+
role: Record<string, Scope[]>;
|
|
191
|
+
project: Record<string, Scope[]>;
|
|
184
192
|
credential: Record<string, Scope[]>;
|
|
193
|
+
workflow: Record<string, Scope[]>;
|
|
194
|
+
agent: Record<string, Scope[]>;
|
|
195
|
+
annotationTag: Record<string, Scope[]>;
|
|
196
|
+
banner: Record<string, Scope[]>;
|
|
197
|
+
communityPackage: Record<string, Scope[]>;
|
|
185
198
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
186
199
|
externalSecret: Record<string, Scope[]>;
|
|
187
200
|
eventBusDestination: Record<string, Scope[]>;
|
|
188
|
-
ldap: Record<string, Scope[]>;
|
|
189
|
-
license: Record<string, Scope[]>;
|
|
190
|
-
logStreaming: Record<string, Scope[]>;
|
|
191
201
|
orchestration: Record<string, Scope[]>;
|
|
192
|
-
project: Record<string, Scope[]>;
|
|
193
|
-
saml: Record<string, Scope[]>;
|
|
194
202
|
securityAudit: Record<string, Scope[]>;
|
|
195
203
|
securitySettings: Record<string, Scope[]>;
|
|
196
|
-
sourceControl: Record<string, Scope[]>;
|
|
197
204
|
tag: Record<string, Scope[]>;
|
|
198
205
|
user: Record<string, Scope[]>;
|
|
199
206
|
variable: Record<string, Scope[]>;
|
|
200
207
|
projectVariable: Record<string, Scope[]>;
|
|
201
208
|
workersView: Record<string, Scope[]>;
|
|
202
|
-
workflow: Record<string, Scope[]>;
|
|
203
209
|
folder: Record<string, Scope[]>;
|
|
204
|
-
insights: Record<string, Scope[]>;
|
|
205
|
-
oidc: Record<string, Scope[]>;
|
|
206
|
-
provisioning: Record<string, Scope[]>;
|
|
207
210
|
dataTable: Record<string, Scope[]>;
|
|
208
211
|
execution: Record<string, Scope[]>;
|
|
209
212
|
testRun: Record<string, Scope[]>;
|
|
210
213
|
workflowTags: Record<string, Scope[]>;
|
|
211
|
-
role: Record<string, Scope[]>;
|
|
212
|
-
mcp: Record<string, Scope[]>;
|
|
213
214
|
mcpApiKey: Record<string, Scope[]>;
|
|
214
215
|
chatHubAgent: Record<string, Scope[]>;
|
|
215
216
|
breakingChanges: Record<string, Scope[]>;
|
|
@@ -218,7 +219,6 @@ declare const useRBACStore: pinia4.StoreDefinition<"rbac", Pick<{
|
|
|
218
219
|
credentialResolver: Record<string, Scope[]>;
|
|
219
220
|
instanceAi: Record<string, Scope[]>;
|
|
220
221
|
roleMappingRule: Record<string, Scope[]>;
|
|
221
|
-
otel: Record<string, Scope[]>;
|
|
222
222
|
}>;
|
|
223
223
|
addGlobalRole: (role: Role) => void;
|
|
224
224
|
hasRole: (role: Role) => boolean;
|
|
@@ -237,48 +237,49 @@ declare const useRBACStore: pinia4.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: vue290.Ref<Role[], Role[]>;
|
|
241
|
+
rolesByProjectId: vue290.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
242
|
+
globalScopes: vue290.Ref<Scope[], Scope[]>;
|
|
243
|
+
scopesByProjectId: vue290.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
244
|
+
scopesByResourceId: vue290.Ref<{
|
|
245
245
|
chatHub: Record<string, Scope[]>;
|
|
246
|
-
|
|
246
|
+
logStreaming: Record<string, Scope[]>;
|
|
247
247
|
aiAssistant: Record<string, Scope[]>;
|
|
248
|
-
|
|
248
|
+
license: Record<string, Scope[]>;
|
|
249
|
+
ldap: Record<string, Scope[]>;
|
|
250
|
+
saml: Record<string, Scope[]>;
|
|
251
|
+
oidc: Record<string, Scope[]>;
|
|
252
|
+
sourceControl: Record<string, Scope[]>;
|
|
249
253
|
auditLogs: Record<string, Scope[]>;
|
|
250
|
-
|
|
254
|
+
provisioning: Record<string, Scope[]>;
|
|
251
255
|
community: Record<string, Scope[]>;
|
|
252
|
-
|
|
256
|
+
insights: Record<string, Scope[]>;
|
|
257
|
+
mcp: Record<string, Scope[]>;
|
|
258
|
+
otel: Record<string, Scope[]>;
|
|
259
|
+
role: Record<string, Scope[]>;
|
|
260
|
+
project: Record<string, Scope[]>;
|
|
253
261
|
credential: Record<string, Scope[]>;
|
|
262
|
+
workflow: Record<string, Scope[]>;
|
|
263
|
+
agent: Record<string, Scope[]>;
|
|
264
|
+
annotationTag: Record<string, Scope[]>;
|
|
265
|
+
banner: Record<string, Scope[]>;
|
|
266
|
+
communityPackage: Record<string, Scope[]>;
|
|
254
267
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
255
268
|
externalSecret: Record<string, Scope[]>;
|
|
256
269
|
eventBusDestination: Record<string, Scope[]>;
|
|
257
|
-
ldap: Record<string, Scope[]>;
|
|
258
|
-
license: Record<string, Scope[]>;
|
|
259
|
-
logStreaming: Record<string, Scope[]>;
|
|
260
270
|
orchestration: Record<string, Scope[]>;
|
|
261
|
-
project: Record<string, Scope[]>;
|
|
262
|
-
saml: Record<string, Scope[]>;
|
|
263
271
|
securityAudit: Record<string, Scope[]>;
|
|
264
272
|
securitySettings: Record<string, Scope[]>;
|
|
265
|
-
sourceControl: Record<string, Scope[]>;
|
|
266
273
|
tag: Record<string, Scope[]>;
|
|
267
274
|
user: Record<string, Scope[]>;
|
|
268
275
|
variable: Record<string, Scope[]>;
|
|
269
276
|
projectVariable: Record<string, Scope[]>;
|
|
270
277
|
workersView: Record<string, Scope[]>;
|
|
271
|
-
workflow: Record<string, Scope[]>;
|
|
272
278
|
folder: Record<string, Scope[]>;
|
|
273
|
-
insights: Record<string, Scope[]>;
|
|
274
|
-
oidc: Record<string, Scope[]>;
|
|
275
|
-
provisioning: Record<string, Scope[]>;
|
|
276
279
|
dataTable: Record<string, Scope[]>;
|
|
277
280
|
execution: Record<string, Scope[]>;
|
|
278
281
|
testRun: Record<string, Scope[]>;
|
|
279
282
|
workflowTags: Record<string, Scope[]>;
|
|
280
|
-
role: Record<string, Scope[]>;
|
|
281
|
-
mcp: Record<string, Scope[]>;
|
|
282
283
|
mcpApiKey: Record<string, Scope[]>;
|
|
283
284
|
chatHubAgent: Record<string, Scope[]>;
|
|
284
285
|
breakingChanges: Record<string, Scope[]>;
|
|
@@ -287,45 +288,45 @@ declare const useRBACStore: pinia4.StoreDefinition<"rbac", Pick<{
|
|
|
287
288
|
credentialResolver: Record<string, Scope[]>;
|
|
288
289
|
instanceAi: Record<string, Scope[]>;
|
|
289
290
|
roleMappingRule: Record<string, Scope[]>;
|
|
290
|
-
|
|
291
|
-
}, Record<"chatHub" | "agent" | "aiAssistant" | "annotationTag" | "auditLogs" | "banner" | "community" | "communityPackage" | "credential" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "ldap" | "license" | "logStreaming" | "orchestration" | "project" | "saml" | "securityAudit" | "securitySettings" | "sourceControl" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "workflow" | "folder" | "insights" | "oidc" | "provisioning" | "dataTable" | "execution" | "testRun" | "workflowTags" | "role" | "mcp" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "apiKey" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule" | "otel", Record<string, Scope[]>> | {
|
|
291
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "project" | "credential" | "workflow" | "agent" | "annotationTag" | "banner" | "communityPackage" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "securityAudit" | "securitySettings" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "apiKey" | "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[]>;
|
|
295
|
-
|
|
295
|
+
license: Record<string, Scope[]>;
|
|
296
|
+
ldap: Record<string, Scope[]>;
|
|
297
|
+
saml: Record<string, Scope[]>;
|
|
298
|
+
oidc: Record<string, Scope[]>;
|
|
299
|
+
sourceControl: Record<string, Scope[]>;
|
|
296
300
|
auditLogs: Record<string, Scope[]>;
|
|
297
|
-
|
|
301
|
+
provisioning: Record<string, Scope[]>;
|
|
298
302
|
community: Record<string, Scope[]>;
|
|
299
|
-
|
|
303
|
+
insights: Record<string, Scope[]>;
|
|
304
|
+
mcp: Record<string, Scope[]>;
|
|
305
|
+
otel: Record<string, Scope[]>;
|
|
306
|
+
role: Record<string, Scope[]>;
|
|
307
|
+
project: Record<string, Scope[]>;
|
|
300
308
|
credential: Record<string, Scope[]>;
|
|
309
|
+
workflow: Record<string, Scope[]>;
|
|
310
|
+
agent: Record<string, Scope[]>;
|
|
311
|
+
annotationTag: Record<string, Scope[]>;
|
|
312
|
+
banner: Record<string, Scope[]>;
|
|
313
|
+
communityPackage: Record<string, Scope[]>;
|
|
301
314
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
302
315
|
externalSecret: Record<string, Scope[]>;
|
|
303
316
|
eventBusDestination: Record<string, Scope[]>;
|
|
304
|
-
ldap: Record<string, Scope[]>;
|
|
305
|
-
license: Record<string, Scope[]>;
|
|
306
|
-
logStreaming: Record<string, Scope[]>;
|
|
307
317
|
orchestration: Record<string, Scope[]>;
|
|
308
|
-
project: Record<string, Scope[]>;
|
|
309
|
-
saml: Record<string, Scope[]>;
|
|
310
318
|
securityAudit: Record<string, Scope[]>;
|
|
311
319
|
securitySettings: Record<string, Scope[]>;
|
|
312
|
-
sourceControl: Record<string, Scope[]>;
|
|
313
320
|
tag: Record<string, Scope[]>;
|
|
314
321
|
user: Record<string, Scope[]>;
|
|
315
322
|
variable: Record<string, Scope[]>;
|
|
316
323
|
projectVariable: Record<string, Scope[]>;
|
|
317
324
|
workersView: Record<string, Scope[]>;
|
|
318
|
-
workflow: Record<string, Scope[]>;
|
|
319
325
|
folder: Record<string, Scope[]>;
|
|
320
|
-
insights: Record<string, Scope[]>;
|
|
321
|
-
oidc: Record<string, Scope[]>;
|
|
322
|
-
provisioning: Record<string, Scope[]>;
|
|
323
326
|
dataTable: Record<string, Scope[]>;
|
|
324
327
|
execution: Record<string, Scope[]>;
|
|
325
328
|
testRun: Record<string, Scope[]>;
|
|
326
329
|
workflowTags: Record<string, Scope[]>;
|
|
327
|
-
role: Record<string, Scope[]>;
|
|
328
|
-
mcp: Record<string, Scope[]>;
|
|
329
330
|
mcpApiKey: Record<string, Scope[]>;
|
|
330
331
|
chatHubAgent: Record<string, Scope[]>;
|
|
331
332
|
breakingChanges: Record<string, Scope[]>;
|
|
@@ -334,7 +335,6 @@ declare const useRBACStore: pinia4.StoreDefinition<"rbac", Pick<{
|
|
|
334
335
|
credentialResolver: Record<string, Scope[]>;
|
|
335
336
|
instanceAi: Record<string, Scope[]>;
|
|
336
337
|
roleMappingRule: Record<string, Scope[]>;
|
|
337
|
-
otel: Record<string, Scope[]>;
|
|
338
338
|
}>;
|
|
339
339
|
addGlobalRole: (role: Role) => void;
|
|
340
340
|
hasRole: (role: Role) => boolean;
|