@n8n/stores 2.37.2 → 2.37.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cloudPlan.store.d.cts +66 -66
- package/dist/notifications.store.d.cts +2 -2
- package/dist/notifications.store.d.mts +2 -2
- package/dist/rbac.store.d.cts +45 -45
- package/dist/rbac.store.d.mts +45 -45
- package/dist/roles.store.d.cts +21 -21
- package/dist/roles.store.d.mts +21 -21
- package/dist/settings.store.d.cts +250 -250
- package/dist/settings.store.d.mts +248 -248
- package/dist/useAgentRequestStore.d.cts +2 -2
- package/dist/useAgentRequestStore.d.mts +2 -2
- package/dist/useRootStore.d.cts +75 -75
- package/dist/useRootStore.d.mts +75 -75
- package/dist/users.store.d.cts +52 -52
- package/dist/users.store.d.mts +52 -52
- package/dist/versions.store.d.cts +41 -41
- package/dist/versions.store.d.mts +41 -41
- package/package.json +10 -10
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue179 from "vue";
|
|
2
|
+
import * as pinia6 from "pinia";
|
|
3
3
|
import { Cloud, InstanceUsage } from "@n8n/rest-api-client/api/cloudPlans";
|
|
4
4
|
|
|
5
5
|
//#region src/cloudPlan.store.d.ts
|
|
@@ -9,7 +9,7 @@ interface CloudPlanState {
|
|
|
9
9
|
usage: InstanceUsage | null;
|
|
10
10
|
loadingPlan: boolean;
|
|
11
11
|
}
|
|
12
|
-
declare const useCloudPlanStore:
|
|
12
|
+
declare const useCloudPlanStore: pinia6.StoreDefinition<"cloudPlan", Pick<{
|
|
13
13
|
state: {
|
|
14
14
|
initialized: boolean;
|
|
15
15
|
data: {
|
|
@@ -56,17 +56,17 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
56
56
|
} | null;
|
|
57
57
|
loadingPlan: boolean;
|
|
58
58
|
};
|
|
59
|
-
usageLeft:
|
|
59
|
+
usageLeft: vue179.ComputedRef<{
|
|
60
60
|
workflowsLeft: number;
|
|
61
61
|
executionsLeft: number;
|
|
62
62
|
}>;
|
|
63
|
-
trialDaysLeft:
|
|
64
|
-
trialTimeLeft:
|
|
63
|
+
trialDaysLeft: vue179.ComputedRef<number>;
|
|
64
|
+
trialTimeLeft: vue179.ComputedRef<{
|
|
65
65
|
count: number;
|
|
66
66
|
unit: "days" | "hours" | "minutes";
|
|
67
67
|
}>;
|
|
68
|
-
userIsTrialing:
|
|
69
|
-
currentPlanData:
|
|
68
|
+
userIsTrialing: vue179.ComputedRef<boolean>;
|
|
69
|
+
currentPlanData: vue179.ComputedRef<{
|
|
70
70
|
planId: number;
|
|
71
71
|
monthlyExecutionsLimit: number;
|
|
72
72
|
activeWorkflowsLimit: number;
|
|
@@ -103,15 +103,15 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
103
103
|
} | undefined;
|
|
104
104
|
licenseFeatures?: Record<string, number> | undefined;
|
|
105
105
|
} | null>;
|
|
106
|
-
currentUsageData:
|
|
106
|
+
currentUsageData: vue179.ComputedRef<{
|
|
107
107
|
timeframe?: string | undefined;
|
|
108
108
|
executions: number;
|
|
109
109
|
activeWorkflows: number;
|
|
110
110
|
} | null>;
|
|
111
|
-
trialExpired:
|
|
112
|
-
allExecutionsUsed:
|
|
113
|
-
hasCloudPlan:
|
|
114
|
-
currentUserCloudInfo:
|
|
111
|
+
trialExpired: vue179.ComputedRef<boolean | undefined>;
|
|
112
|
+
allExecutionsUsed: vue179.ComputedRef<boolean>;
|
|
113
|
+
hasCloudPlan: vue179.ComputedRef<boolean>;
|
|
114
|
+
currentUserCloudInfo: vue179.Ref<{
|
|
115
115
|
confirmed: boolean;
|
|
116
116
|
username: string;
|
|
117
117
|
email: string;
|
|
@@ -144,10 +144,10 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
144
144
|
getAutoLoginCode: () => Promise<{
|
|
145
145
|
code: string;
|
|
146
146
|
}>;
|
|
147
|
-
selectedApps:
|
|
148
|
-
codingSkill:
|
|
149
|
-
shouldShowBanner:
|
|
150
|
-
bannerConfig:
|
|
147
|
+
selectedApps: vue179.ComputedRef<string[] | undefined>;
|
|
148
|
+
codingSkill: vue179.ComputedRef<number>;
|
|
149
|
+
shouldShowBanner: vue179.ComputedRef<boolean>;
|
|
150
|
+
bannerConfig: vue179.ComputedRef<{
|
|
151
151
|
timeLeft?: {
|
|
152
152
|
text?: string | undefined;
|
|
153
153
|
} | undefined;
|
|
@@ -164,14 +164,14 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
164
164
|
dismissible?: boolean | undefined;
|
|
165
165
|
forceShow?: boolean | undefined;
|
|
166
166
|
} | undefined>;
|
|
167
|
-
bannerForceShow:
|
|
168
|
-
isBannerDismissed:
|
|
169
|
-
bannerTimeLeft:
|
|
167
|
+
bannerForceShow: vue179.ComputedRef<boolean>;
|
|
168
|
+
isBannerDismissed: vue179.ComputedRef<boolean>;
|
|
169
|
+
bannerTimeLeft: vue179.ComputedRef<{
|
|
170
170
|
show: boolean;
|
|
171
171
|
text: string | undefined;
|
|
172
172
|
}>;
|
|
173
|
-
showExecutions:
|
|
174
|
-
bannerCta:
|
|
173
|
+
showExecutions: vue179.ComputedRef<boolean>;
|
|
174
|
+
bannerCta: vue179.ComputedRef<{
|
|
175
175
|
text: string;
|
|
176
176
|
icon: string;
|
|
177
177
|
size: "small" | "medium";
|
|
@@ -179,8 +179,8 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
179
179
|
variant: "success" | "solid" | "subtle" | "ghost" | "outline" | "destructive" | undefined;
|
|
180
180
|
href: string | undefined;
|
|
181
181
|
}>;
|
|
182
|
-
bannerIcon:
|
|
183
|
-
bannerDismissible:
|
|
182
|
+
bannerIcon: vue179.ComputedRef<string | undefined>;
|
|
183
|
+
bannerDismissible: vue179.ComputedRef<boolean>;
|
|
184
184
|
setIsInstanceOwner: (getter: () => boolean) => void;
|
|
185
185
|
}, "state" | "currentUserCloudInfo">, Pick<{
|
|
186
186
|
state: {
|
|
@@ -229,17 +229,17 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
229
229
|
} | null;
|
|
230
230
|
loadingPlan: boolean;
|
|
231
231
|
};
|
|
232
|
-
usageLeft:
|
|
232
|
+
usageLeft: vue179.ComputedRef<{
|
|
233
233
|
workflowsLeft: number;
|
|
234
234
|
executionsLeft: number;
|
|
235
235
|
}>;
|
|
236
|
-
trialDaysLeft:
|
|
237
|
-
trialTimeLeft:
|
|
236
|
+
trialDaysLeft: vue179.ComputedRef<number>;
|
|
237
|
+
trialTimeLeft: vue179.ComputedRef<{
|
|
238
238
|
count: number;
|
|
239
239
|
unit: "days" | "hours" | "minutes";
|
|
240
240
|
}>;
|
|
241
|
-
userIsTrialing:
|
|
242
|
-
currentPlanData:
|
|
241
|
+
userIsTrialing: vue179.ComputedRef<boolean>;
|
|
242
|
+
currentPlanData: vue179.ComputedRef<{
|
|
243
243
|
planId: number;
|
|
244
244
|
monthlyExecutionsLimit: number;
|
|
245
245
|
activeWorkflowsLimit: number;
|
|
@@ -276,15 +276,15 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
276
276
|
} | undefined;
|
|
277
277
|
licenseFeatures?: Record<string, number> | undefined;
|
|
278
278
|
} | null>;
|
|
279
|
-
currentUsageData:
|
|
279
|
+
currentUsageData: vue179.ComputedRef<{
|
|
280
280
|
timeframe?: string | undefined;
|
|
281
281
|
executions: number;
|
|
282
282
|
activeWorkflows: number;
|
|
283
283
|
} | null>;
|
|
284
|
-
trialExpired:
|
|
285
|
-
allExecutionsUsed:
|
|
286
|
-
hasCloudPlan:
|
|
287
|
-
currentUserCloudInfo:
|
|
284
|
+
trialExpired: vue179.ComputedRef<boolean | undefined>;
|
|
285
|
+
allExecutionsUsed: vue179.ComputedRef<boolean>;
|
|
286
|
+
hasCloudPlan: vue179.ComputedRef<boolean>;
|
|
287
|
+
currentUserCloudInfo: vue179.Ref<{
|
|
288
288
|
confirmed: boolean;
|
|
289
289
|
username: string;
|
|
290
290
|
email: string;
|
|
@@ -317,10 +317,10 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
317
317
|
getAutoLoginCode: () => Promise<{
|
|
318
318
|
code: string;
|
|
319
319
|
}>;
|
|
320
|
-
selectedApps:
|
|
321
|
-
codingSkill:
|
|
322
|
-
shouldShowBanner:
|
|
323
|
-
bannerConfig:
|
|
320
|
+
selectedApps: vue179.ComputedRef<string[] | undefined>;
|
|
321
|
+
codingSkill: vue179.ComputedRef<number>;
|
|
322
|
+
shouldShowBanner: vue179.ComputedRef<boolean>;
|
|
323
|
+
bannerConfig: vue179.ComputedRef<{
|
|
324
324
|
timeLeft?: {
|
|
325
325
|
text?: string | undefined;
|
|
326
326
|
} | undefined;
|
|
@@ -337,14 +337,14 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
337
337
|
dismissible?: boolean | undefined;
|
|
338
338
|
forceShow?: boolean | undefined;
|
|
339
339
|
} | undefined>;
|
|
340
|
-
bannerForceShow:
|
|
341
|
-
isBannerDismissed:
|
|
342
|
-
bannerTimeLeft:
|
|
340
|
+
bannerForceShow: vue179.ComputedRef<boolean>;
|
|
341
|
+
isBannerDismissed: vue179.ComputedRef<boolean>;
|
|
342
|
+
bannerTimeLeft: vue179.ComputedRef<{
|
|
343
343
|
show: boolean;
|
|
344
344
|
text: string | undefined;
|
|
345
345
|
}>;
|
|
346
|
-
showExecutions:
|
|
347
|
-
bannerCta:
|
|
346
|
+
showExecutions: vue179.ComputedRef<boolean>;
|
|
347
|
+
bannerCta: vue179.ComputedRef<{
|
|
348
348
|
text: string;
|
|
349
349
|
icon: string;
|
|
350
350
|
size: "small" | "medium";
|
|
@@ -352,8 +352,8 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
352
352
|
variant: "success" | "solid" | "subtle" | "ghost" | "outline" | "destructive" | undefined;
|
|
353
353
|
href: string | undefined;
|
|
354
354
|
}>;
|
|
355
|
-
bannerIcon:
|
|
356
|
-
bannerDismissible:
|
|
355
|
+
bannerIcon: vue179.ComputedRef<string | undefined>;
|
|
356
|
+
bannerDismissible: vue179.ComputedRef<boolean>;
|
|
357
357
|
setIsInstanceOwner: (getter: () => boolean) => void;
|
|
358
358
|
}, "userIsTrialing" | "bannerConfig" | "selectedApps" | "showExecutions" | "usageLeft" | "trialDaysLeft" | "trialTimeLeft" | "currentPlanData" | "currentUsageData" | "trialExpired" | "allExecutionsUsed" | "hasCloudPlan" | "codingSkill" | "shouldShowBanner" | "bannerForceShow" | "isBannerDismissed" | "bannerTimeLeft" | "bannerCta" | "bannerIcon" | "bannerDismissible">, Pick<{
|
|
359
359
|
state: {
|
|
@@ -402,17 +402,17 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
402
402
|
} | null;
|
|
403
403
|
loadingPlan: boolean;
|
|
404
404
|
};
|
|
405
|
-
usageLeft:
|
|
405
|
+
usageLeft: vue179.ComputedRef<{
|
|
406
406
|
workflowsLeft: number;
|
|
407
407
|
executionsLeft: number;
|
|
408
408
|
}>;
|
|
409
|
-
trialDaysLeft:
|
|
410
|
-
trialTimeLeft:
|
|
409
|
+
trialDaysLeft: vue179.ComputedRef<number>;
|
|
410
|
+
trialTimeLeft: vue179.ComputedRef<{
|
|
411
411
|
count: number;
|
|
412
412
|
unit: "days" | "hours" | "minutes";
|
|
413
413
|
}>;
|
|
414
|
-
userIsTrialing:
|
|
415
|
-
currentPlanData:
|
|
414
|
+
userIsTrialing: vue179.ComputedRef<boolean>;
|
|
415
|
+
currentPlanData: vue179.ComputedRef<{
|
|
416
416
|
planId: number;
|
|
417
417
|
monthlyExecutionsLimit: number;
|
|
418
418
|
activeWorkflowsLimit: number;
|
|
@@ -449,15 +449,15 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
449
449
|
} | undefined;
|
|
450
450
|
licenseFeatures?: Record<string, number> | undefined;
|
|
451
451
|
} | null>;
|
|
452
|
-
currentUsageData:
|
|
452
|
+
currentUsageData: vue179.ComputedRef<{
|
|
453
453
|
timeframe?: string | undefined;
|
|
454
454
|
executions: number;
|
|
455
455
|
activeWorkflows: number;
|
|
456
456
|
} | null>;
|
|
457
|
-
trialExpired:
|
|
458
|
-
allExecutionsUsed:
|
|
459
|
-
hasCloudPlan:
|
|
460
|
-
currentUserCloudInfo:
|
|
457
|
+
trialExpired: vue179.ComputedRef<boolean | undefined>;
|
|
458
|
+
allExecutionsUsed: vue179.ComputedRef<boolean>;
|
|
459
|
+
hasCloudPlan: vue179.ComputedRef<boolean>;
|
|
460
|
+
currentUserCloudInfo: vue179.Ref<{
|
|
461
461
|
confirmed: boolean;
|
|
462
462
|
username: string;
|
|
463
463
|
email: string;
|
|
@@ -490,10 +490,10 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
490
490
|
getAutoLoginCode: () => Promise<{
|
|
491
491
|
code: string;
|
|
492
492
|
}>;
|
|
493
|
-
selectedApps:
|
|
494
|
-
codingSkill:
|
|
495
|
-
shouldShowBanner:
|
|
496
|
-
bannerConfig:
|
|
493
|
+
selectedApps: vue179.ComputedRef<string[] | undefined>;
|
|
494
|
+
codingSkill: vue179.ComputedRef<number>;
|
|
495
|
+
shouldShowBanner: vue179.ComputedRef<boolean>;
|
|
496
|
+
bannerConfig: vue179.ComputedRef<{
|
|
497
497
|
timeLeft?: {
|
|
498
498
|
text?: string | undefined;
|
|
499
499
|
} | undefined;
|
|
@@ -510,14 +510,14 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
510
510
|
dismissible?: boolean | undefined;
|
|
511
511
|
forceShow?: boolean | undefined;
|
|
512
512
|
} | undefined>;
|
|
513
|
-
bannerForceShow:
|
|
514
|
-
isBannerDismissed:
|
|
515
|
-
bannerTimeLeft:
|
|
513
|
+
bannerForceShow: vue179.ComputedRef<boolean>;
|
|
514
|
+
isBannerDismissed: vue179.ComputedRef<boolean>;
|
|
515
|
+
bannerTimeLeft: vue179.ComputedRef<{
|
|
516
516
|
show: boolean;
|
|
517
517
|
text: string | undefined;
|
|
518
518
|
}>;
|
|
519
|
-
showExecutions:
|
|
520
|
-
bannerCta:
|
|
519
|
+
showExecutions: vue179.ComputedRef<boolean>;
|
|
520
|
+
bannerCta: vue179.ComputedRef<{
|
|
521
521
|
text: string;
|
|
522
522
|
icon: string;
|
|
523
523
|
size: "small" | "medium";
|
|
@@ -525,8 +525,8 @@ declare const useCloudPlanStore: pinia0.StoreDefinition<"cloudPlan", Pick<{
|
|
|
525
525
|
variant: "success" | "solid" | "subtle" | "ghost" | "outline" | "destructive" | undefined;
|
|
526
526
|
href: string | undefined;
|
|
527
527
|
}>;
|
|
528
|
-
bannerIcon:
|
|
529
|
-
bannerDismissible:
|
|
528
|
+
bannerIcon: vue179.ComputedRef<string | undefined>;
|
|
529
|
+
bannerDismissible: vue179.ComputedRef<boolean>;
|
|
530
530
|
setIsInstanceOwner: (getter: () => boolean) => void;
|
|
531
531
|
}, "reset" | "initialize" | "generateCloudDashboardAutoLoginLink" | "getOwnerCurrentPlan" | "getInstanceCurrentUsage" | "checkForCloudPlanData" | "fetchUserCloudAccount" | "getAutoLoginCode" | "setIsInstanceOwner">>;
|
|
532
532
|
//#endregion
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Ref } from "vue";
|
|
2
|
-
import * as
|
|
2
|
+
import * as pinia2 from "pinia";
|
|
3
3
|
|
|
4
4
|
//#region src/notifications.store.d.ts
|
|
5
5
|
interface NotificationsStore {
|
|
@@ -9,7 +9,7 @@ interface NotificationsStore {
|
|
|
9
9
|
allowErrors?: boolean;
|
|
10
10
|
}) => void;
|
|
11
11
|
}
|
|
12
|
-
declare const useNotificationsStore:
|
|
12
|
+
declare const useNotificationsStore: pinia2.StoreDefinition<"notifications", Pick<NotificationsStore, "areNotificationsSuppressed" | "allowErrorNotificationsWhenSuppressed">, Pick<NotificationsStore, never>, Pick<NotificationsStore, "setNotificationsSuppressed">>;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { NotificationsStore, useNotificationsStore };
|
|
15
15
|
//# sourceMappingURL=notifications.store.d.cts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia6 from "pinia";
|
|
2
2
|
import { Ref } from "vue";
|
|
3
3
|
|
|
4
4
|
//#region src/notifications.store.d.ts
|
|
@@ -9,7 +9,7 @@ interface NotificationsStore {
|
|
|
9
9
|
allowErrors?: boolean;
|
|
10
10
|
}) => void;
|
|
11
11
|
}
|
|
12
|
-
declare const useNotificationsStore:
|
|
12
|
+
declare const useNotificationsStore: pinia6.StoreDefinition<"notifications", Pick<NotificationsStore, "areNotificationsSuppressed" | "allowErrorNotificationsWhenSuppressed">, Pick<NotificationsStore, never>, Pick<NotificationsStore, "setNotificationsSuppressed">>;
|
|
13
13
|
//#endregion
|
|
14
14
|
export { NotificationsStore, useNotificationsStore };
|
|
15
15
|
//# sourceMappingURL=notifications.store.d.mts.map
|
package/dist/rbac.store.d.cts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue0 from "vue";
|
|
2
|
+
import * as pinia0 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: pinia0.StoreDefinition<"rbac", Pick<{
|
|
8
|
+
globalRoles: vue0.Ref<Role[], Role[]>;
|
|
9
|
+
rolesByProjectId: vue0.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
10
|
+
globalScopes: vue0.Ref<Scope[], Scope[]>;
|
|
11
|
+
scopesByProjectId: vue0.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
12
|
+
scopesByResourceId: vue0.Ref<{
|
|
13
13
|
chatHub: Record<string, Scope[]>;
|
|
14
14
|
logStreaming: Record<string, Scope[]>;
|
|
15
15
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -25,16 +25,18 @@ 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
|
+
project: Record<string, Scope[]>;
|
|
29
|
+
credential: Record<string, Scope[]>;
|
|
30
|
+
workflow: Record<string, Scope[]>;
|
|
31
|
+
apiKey: Record<string, Scope[]>;
|
|
28
32
|
agent: Record<string, Scope[]>;
|
|
29
33
|
annotationTag: Record<string, Scope[]>;
|
|
30
34
|
banner: Record<string, Scope[]>;
|
|
31
35
|
communityPackage: Record<string, Scope[]>;
|
|
32
|
-
credential: Record<string, Scope[]>;
|
|
33
36
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
34
37
|
externalSecret: Record<string, Scope[]>;
|
|
35
38
|
eventBusDestination: Record<string, Scope[]>;
|
|
36
39
|
orchestration: Record<string, Scope[]>;
|
|
37
|
-
project: Record<string, Scope[]>;
|
|
38
40
|
securityAudit: Record<string, Scope[]>;
|
|
39
41
|
securitySettings: Record<string, Scope[]>;
|
|
40
42
|
gitConnection: Record<string, Scope[]>;
|
|
@@ -43,7 +45,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
43
45
|
variable: Record<string, Scope[]>;
|
|
44
46
|
projectVariable: Record<string, Scope[]>;
|
|
45
47
|
workersView: Record<string, Scope[]>;
|
|
46
|
-
workflow: Record<string, Scope[]>;
|
|
47
48
|
folder: Record<string, Scope[]>;
|
|
48
49
|
dataTable: Record<string, Scope[]>;
|
|
49
50
|
execution: Record<string, Scope[]>;
|
|
@@ -52,12 +53,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
52
53
|
mcpApiKey: Record<string, Scope[]>;
|
|
53
54
|
chatHubAgent: Record<string, Scope[]>;
|
|
54
55
|
breakingChanges: Record<string, Scope[]>;
|
|
55
|
-
apiKey: Record<string, Scope[]>;
|
|
56
56
|
encryptionKey: Record<string, Scope[]>;
|
|
57
57
|
credentialResolver: Record<string, Scope[]>;
|
|
58
58
|
instanceAi: Record<string, Scope[]>;
|
|
59
59
|
roleMappingRule: Record<string, Scope[]>;
|
|
60
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "
|
|
60
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "project" | "credential" | "workflow" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "securityAudit" | "securitySettings" | "gitConnection" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
61
61
|
chatHub: Record<string, Scope[]>;
|
|
62
62
|
logStreaming: Record<string, Scope[]>;
|
|
63
63
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -73,16 +73,18 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
73
73
|
mcp: Record<string, Scope[]>;
|
|
74
74
|
otel: Record<string, Scope[]>;
|
|
75
75
|
role: Record<string, Scope[]>;
|
|
76
|
+
project: Record<string, Scope[]>;
|
|
77
|
+
credential: Record<string, Scope[]>;
|
|
78
|
+
workflow: Record<string, Scope[]>;
|
|
79
|
+
apiKey: Record<string, Scope[]>;
|
|
76
80
|
agent: Record<string, Scope[]>;
|
|
77
81
|
annotationTag: Record<string, Scope[]>;
|
|
78
82
|
banner: Record<string, Scope[]>;
|
|
79
83
|
communityPackage: Record<string, Scope[]>;
|
|
80
|
-
credential: Record<string, Scope[]>;
|
|
81
84
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
82
85
|
externalSecret: Record<string, Scope[]>;
|
|
83
86
|
eventBusDestination: Record<string, Scope[]>;
|
|
84
87
|
orchestration: Record<string, Scope[]>;
|
|
85
|
-
project: Record<string, Scope[]>;
|
|
86
88
|
securityAudit: Record<string, Scope[]>;
|
|
87
89
|
securitySettings: Record<string, Scope[]>;
|
|
88
90
|
gitConnection: Record<string, Scope[]>;
|
|
@@ -91,7 +93,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
91
93
|
variable: Record<string, Scope[]>;
|
|
92
94
|
projectVariable: Record<string, Scope[]>;
|
|
93
95
|
workersView: Record<string, Scope[]>;
|
|
94
|
-
workflow: Record<string, Scope[]>;
|
|
95
96
|
folder: Record<string, Scope[]>;
|
|
96
97
|
dataTable: Record<string, Scope[]>;
|
|
97
98
|
execution: Record<string, Scope[]>;
|
|
@@ -100,7 +101,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
100
101
|
mcpApiKey: Record<string, Scope[]>;
|
|
101
102
|
chatHubAgent: Record<string, Scope[]>;
|
|
102
103
|
breakingChanges: Record<string, Scope[]>;
|
|
103
|
-
apiKey: Record<string, Scope[]>;
|
|
104
104
|
encryptionKey: Record<string, Scope[]>;
|
|
105
105
|
credentialResolver: Record<string, Scope[]>;
|
|
106
106
|
instanceAi: Record<string, Scope[]>;
|
|
@@ -123,11 +123,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
123
123
|
projectId?: string;
|
|
124
124
|
}, options?: ScopeOptions) => boolean;
|
|
125
125
|
}, "globalRoles" | "rolesByProjectId" | "globalScopes" | "scopesByProjectId" | "scopesByResourceId">, Pick<{
|
|
126
|
-
globalRoles:
|
|
127
|
-
rolesByProjectId:
|
|
128
|
-
globalScopes:
|
|
129
|
-
scopesByProjectId:
|
|
130
|
-
scopesByResourceId:
|
|
126
|
+
globalRoles: vue0.Ref<Role[], Role[]>;
|
|
127
|
+
rolesByProjectId: vue0.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
128
|
+
globalScopes: vue0.Ref<Scope[], Scope[]>;
|
|
129
|
+
scopesByProjectId: vue0.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
130
|
+
scopesByResourceId: vue0.Ref<{
|
|
131
131
|
chatHub: Record<string, Scope[]>;
|
|
132
132
|
logStreaming: Record<string, Scope[]>;
|
|
133
133
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -143,16 +143,18 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
143
143
|
mcp: Record<string, Scope[]>;
|
|
144
144
|
otel: Record<string, Scope[]>;
|
|
145
145
|
role: Record<string, Scope[]>;
|
|
146
|
+
project: Record<string, Scope[]>;
|
|
147
|
+
credential: Record<string, Scope[]>;
|
|
148
|
+
workflow: Record<string, Scope[]>;
|
|
149
|
+
apiKey: Record<string, Scope[]>;
|
|
146
150
|
agent: Record<string, Scope[]>;
|
|
147
151
|
annotationTag: Record<string, Scope[]>;
|
|
148
152
|
banner: Record<string, Scope[]>;
|
|
149
153
|
communityPackage: Record<string, Scope[]>;
|
|
150
|
-
credential: Record<string, Scope[]>;
|
|
151
154
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
152
155
|
externalSecret: Record<string, Scope[]>;
|
|
153
156
|
eventBusDestination: Record<string, Scope[]>;
|
|
154
157
|
orchestration: Record<string, Scope[]>;
|
|
155
|
-
project: Record<string, Scope[]>;
|
|
156
158
|
securityAudit: Record<string, Scope[]>;
|
|
157
159
|
securitySettings: Record<string, Scope[]>;
|
|
158
160
|
gitConnection: Record<string, Scope[]>;
|
|
@@ -161,7 +163,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
161
163
|
variable: Record<string, Scope[]>;
|
|
162
164
|
projectVariable: Record<string, Scope[]>;
|
|
163
165
|
workersView: Record<string, Scope[]>;
|
|
164
|
-
workflow: Record<string, Scope[]>;
|
|
165
166
|
folder: Record<string, Scope[]>;
|
|
166
167
|
dataTable: Record<string, Scope[]>;
|
|
167
168
|
execution: Record<string, Scope[]>;
|
|
@@ -170,12 +171,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
170
171
|
mcpApiKey: Record<string, Scope[]>;
|
|
171
172
|
chatHubAgent: Record<string, Scope[]>;
|
|
172
173
|
breakingChanges: Record<string, Scope[]>;
|
|
173
|
-
apiKey: Record<string, Scope[]>;
|
|
174
174
|
encryptionKey: Record<string, Scope[]>;
|
|
175
175
|
credentialResolver: Record<string, Scope[]>;
|
|
176
176
|
instanceAi: Record<string, Scope[]>;
|
|
177
177
|
roleMappingRule: Record<string, Scope[]>;
|
|
178
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "
|
|
178
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "project" | "credential" | "workflow" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "securityAudit" | "securitySettings" | "gitConnection" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
179
179
|
chatHub: Record<string, Scope[]>;
|
|
180
180
|
logStreaming: Record<string, Scope[]>;
|
|
181
181
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -191,16 +191,18 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
191
191
|
mcp: Record<string, Scope[]>;
|
|
192
192
|
otel: Record<string, Scope[]>;
|
|
193
193
|
role: Record<string, Scope[]>;
|
|
194
|
+
project: Record<string, Scope[]>;
|
|
195
|
+
credential: Record<string, Scope[]>;
|
|
196
|
+
workflow: Record<string, Scope[]>;
|
|
197
|
+
apiKey: Record<string, Scope[]>;
|
|
194
198
|
agent: Record<string, Scope[]>;
|
|
195
199
|
annotationTag: Record<string, Scope[]>;
|
|
196
200
|
banner: Record<string, Scope[]>;
|
|
197
201
|
communityPackage: Record<string, Scope[]>;
|
|
198
|
-
credential: Record<string, Scope[]>;
|
|
199
202
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
200
203
|
externalSecret: Record<string, Scope[]>;
|
|
201
204
|
eventBusDestination: Record<string, Scope[]>;
|
|
202
205
|
orchestration: Record<string, Scope[]>;
|
|
203
|
-
project: Record<string, Scope[]>;
|
|
204
206
|
securityAudit: Record<string, Scope[]>;
|
|
205
207
|
securitySettings: Record<string, Scope[]>;
|
|
206
208
|
gitConnection: Record<string, Scope[]>;
|
|
@@ -209,7 +211,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
209
211
|
variable: Record<string, Scope[]>;
|
|
210
212
|
projectVariable: Record<string, Scope[]>;
|
|
211
213
|
workersView: Record<string, Scope[]>;
|
|
212
|
-
workflow: Record<string, Scope[]>;
|
|
213
214
|
folder: Record<string, Scope[]>;
|
|
214
215
|
dataTable: Record<string, Scope[]>;
|
|
215
216
|
execution: Record<string, Scope[]>;
|
|
@@ -218,7 +219,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
218
219
|
mcpApiKey: Record<string, Scope[]>;
|
|
219
220
|
chatHubAgent: Record<string, Scope[]>;
|
|
220
221
|
breakingChanges: Record<string, Scope[]>;
|
|
221
|
-
apiKey: Record<string, Scope[]>;
|
|
222
222
|
encryptionKey: Record<string, Scope[]>;
|
|
223
223
|
credentialResolver: Record<string, Scope[]>;
|
|
224
224
|
instanceAi: Record<string, Scope[]>;
|
|
@@ -241,11 +241,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
241
241
|
projectId?: string;
|
|
242
242
|
}, options?: ScopeOptions) => boolean;
|
|
243
243
|
}, never>, Pick<{
|
|
244
|
-
globalRoles:
|
|
245
|
-
rolesByProjectId:
|
|
246
|
-
globalScopes:
|
|
247
|
-
scopesByProjectId:
|
|
248
|
-
scopesByResourceId:
|
|
244
|
+
globalRoles: vue0.Ref<Role[], Role[]>;
|
|
245
|
+
rolesByProjectId: vue0.Ref<Record<string, string[]>, Record<string, string[]>>;
|
|
246
|
+
globalScopes: vue0.Ref<Scope[], Scope[]>;
|
|
247
|
+
scopesByProjectId: vue0.Ref<Record<string, Scope[]>, Record<string, Scope[]>>;
|
|
248
|
+
scopesByResourceId: vue0.Ref<{
|
|
249
249
|
chatHub: Record<string, Scope[]>;
|
|
250
250
|
logStreaming: Record<string, Scope[]>;
|
|
251
251
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -261,16 +261,18 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
261
261
|
mcp: Record<string, Scope[]>;
|
|
262
262
|
otel: Record<string, Scope[]>;
|
|
263
263
|
role: Record<string, Scope[]>;
|
|
264
|
+
project: Record<string, Scope[]>;
|
|
265
|
+
credential: Record<string, Scope[]>;
|
|
266
|
+
workflow: Record<string, Scope[]>;
|
|
267
|
+
apiKey: Record<string, Scope[]>;
|
|
264
268
|
agent: Record<string, Scope[]>;
|
|
265
269
|
annotationTag: Record<string, Scope[]>;
|
|
266
270
|
banner: Record<string, Scope[]>;
|
|
267
271
|
communityPackage: Record<string, Scope[]>;
|
|
268
|
-
credential: Record<string, Scope[]>;
|
|
269
272
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
270
273
|
externalSecret: Record<string, Scope[]>;
|
|
271
274
|
eventBusDestination: Record<string, Scope[]>;
|
|
272
275
|
orchestration: Record<string, Scope[]>;
|
|
273
|
-
project: Record<string, Scope[]>;
|
|
274
276
|
securityAudit: Record<string, Scope[]>;
|
|
275
277
|
securitySettings: Record<string, Scope[]>;
|
|
276
278
|
gitConnection: Record<string, Scope[]>;
|
|
@@ -279,7 +281,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
279
281
|
variable: Record<string, Scope[]>;
|
|
280
282
|
projectVariable: Record<string, Scope[]>;
|
|
281
283
|
workersView: Record<string, Scope[]>;
|
|
282
|
-
workflow: Record<string, Scope[]>;
|
|
283
284
|
folder: Record<string, Scope[]>;
|
|
284
285
|
dataTable: Record<string, Scope[]>;
|
|
285
286
|
execution: Record<string, Scope[]>;
|
|
@@ -288,12 +289,11 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
288
289
|
mcpApiKey: Record<string, Scope[]>;
|
|
289
290
|
chatHubAgent: Record<string, Scope[]>;
|
|
290
291
|
breakingChanges: Record<string, Scope[]>;
|
|
291
|
-
apiKey: Record<string, Scope[]>;
|
|
292
292
|
encryptionKey: Record<string, Scope[]>;
|
|
293
293
|
credentialResolver: Record<string, Scope[]>;
|
|
294
294
|
instanceAi: Record<string, Scope[]>;
|
|
295
295
|
roleMappingRule: Record<string, Scope[]>;
|
|
296
|
-
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "
|
|
296
|
+
}, Record<"chatHub" | "logStreaming" | "aiAssistant" | "license" | "ldap" | "saml" | "oidc" | "sourceControl" | "auditLogs" | "provisioning" | "community" | "insights" | "mcp" | "otel" | "role" | "project" | "credential" | "workflow" | "apiKey" | "agent" | "annotationTag" | "banner" | "communityPackage" | "externalSecretsProvider" | "externalSecret" | "eventBusDestination" | "orchestration" | "securityAudit" | "securitySettings" | "gitConnection" | "tag" | "user" | "variable" | "projectVariable" | "workersView" | "folder" | "dataTable" | "execution" | "testRun" | "workflowTags" | "mcpApiKey" | "chatHubAgent" | "breakingChanges" | "encryptionKey" | "credentialResolver" | "instanceAi" | "roleMappingRule", Record<string, Scope[]>> | {
|
|
297
297
|
chatHub: Record<string, Scope[]>;
|
|
298
298
|
logStreaming: Record<string, Scope[]>;
|
|
299
299
|
aiAssistant: Record<string, Scope[]>;
|
|
@@ -309,16 +309,18 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
309
309
|
mcp: Record<string, Scope[]>;
|
|
310
310
|
otel: Record<string, Scope[]>;
|
|
311
311
|
role: Record<string, Scope[]>;
|
|
312
|
+
project: Record<string, Scope[]>;
|
|
313
|
+
credential: Record<string, Scope[]>;
|
|
314
|
+
workflow: Record<string, Scope[]>;
|
|
315
|
+
apiKey: Record<string, Scope[]>;
|
|
312
316
|
agent: Record<string, Scope[]>;
|
|
313
317
|
annotationTag: Record<string, Scope[]>;
|
|
314
318
|
banner: Record<string, Scope[]>;
|
|
315
319
|
communityPackage: Record<string, Scope[]>;
|
|
316
|
-
credential: Record<string, Scope[]>;
|
|
317
320
|
externalSecretsProvider: Record<string, Scope[]>;
|
|
318
321
|
externalSecret: Record<string, Scope[]>;
|
|
319
322
|
eventBusDestination: Record<string, Scope[]>;
|
|
320
323
|
orchestration: Record<string, Scope[]>;
|
|
321
|
-
project: Record<string, Scope[]>;
|
|
322
324
|
securityAudit: Record<string, Scope[]>;
|
|
323
325
|
securitySettings: Record<string, Scope[]>;
|
|
324
326
|
gitConnection: Record<string, Scope[]>;
|
|
@@ -327,7 +329,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
327
329
|
variable: Record<string, Scope[]>;
|
|
328
330
|
projectVariable: Record<string, Scope[]>;
|
|
329
331
|
workersView: Record<string, Scope[]>;
|
|
330
|
-
workflow: Record<string, Scope[]>;
|
|
331
332
|
folder: Record<string, Scope[]>;
|
|
332
333
|
dataTable: Record<string, Scope[]>;
|
|
333
334
|
execution: Record<string, Scope[]>;
|
|
@@ -336,7 +337,6 @@ declare const useRBACStore: pinia1.StoreDefinition<"rbac", Pick<{
|
|
|
336
337
|
mcpApiKey: Record<string, Scope[]>;
|
|
337
338
|
chatHubAgent: Record<string, Scope[]>;
|
|
338
339
|
breakingChanges: Record<string, Scope[]>;
|
|
339
|
-
apiKey: Record<string, Scope[]>;
|
|
340
340
|
encryptionKey: Record<string, Scope[]>;
|
|
341
341
|
credentialResolver: Record<string, Scope[]>;
|
|
342
342
|
instanceAi: Record<string, Scope[]>;
|