@n8n/stores 2.35.0 → 2.35.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/roles.store.d.mts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia2 from "pinia";
|
|
2
2
|
import * as vue77 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:
|
|
7
|
+
declare const useRolesStore: pinia2.StoreDefinition<"roles", Pick<{
|
|
8
8
|
roles: vue77.Ref<{
|
|
9
9
|
global: {
|
|
10
10
|
slug: string;
|
|
@@ -914,6 +914,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
914
914
|
workflowBuilderAvailable: boolean;
|
|
915
915
|
sandboxUnavailableReason: string | null;
|
|
916
916
|
runDebugEnabled: boolean;
|
|
917
|
+
activationCapped?: boolean | undefined;
|
|
917
918
|
} | undefined;
|
|
918
919
|
'quick-connect'?: {
|
|
919
920
|
options: ({
|
|
@@ -1213,6 +1214,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
1213
1214
|
workflowBuilderAvailable: boolean;
|
|
1214
1215
|
sandboxUnavailableReason: string | null;
|
|
1215
1216
|
runDebugEnabled: boolean;
|
|
1217
|
+
activationCapped?: boolean | undefined;
|
|
1216
1218
|
} | undefined;
|
|
1217
1219
|
'quick-connect'?: {
|
|
1218
1220
|
options: ({
|
|
@@ -2180,6 +2182,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2180
2182
|
workflowBuilderAvailable: boolean;
|
|
2181
2183
|
sandboxUnavailableReason: string | null;
|
|
2182
2184
|
runDebugEnabled: boolean;
|
|
2185
|
+
activationCapped?: boolean | undefined;
|
|
2183
2186
|
} | undefined;
|
|
2184
2187
|
'quick-connect'?: {
|
|
2185
2188
|
options: ({
|
|
@@ -2479,6 +2482,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
2479
2482
|
workflowBuilderAvailable: boolean;
|
|
2480
2483
|
sandboxUnavailableReason: string | null;
|
|
2481
2484
|
runDebugEnabled: boolean;
|
|
2485
|
+
activationCapped?: boolean | undefined;
|
|
2482
2486
|
} | undefined;
|
|
2483
2487
|
'quick-connect'?: {
|
|
2484
2488
|
options: ({
|
|
@@ -3446,6 +3450,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3446
3450
|
workflowBuilderAvailable: boolean;
|
|
3447
3451
|
sandboxUnavailableReason: string | null;
|
|
3448
3452
|
runDebugEnabled: boolean;
|
|
3453
|
+
activationCapped?: boolean | undefined;
|
|
3449
3454
|
} | undefined;
|
|
3450
3455
|
'quick-connect'?: {
|
|
3451
3456
|
options: ({
|
|
@@ -3745,6 +3750,7 @@ declare const useSettingsStore: pinia3.StoreDefinition<"settings", Pick<{
|
|
|
3745
3750
|
workflowBuilderAvailable: boolean;
|
|
3746
3751
|
sandboxUnavailableReason: string | null;
|
|
3747
3752
|
runDebugEnabled: boolean;
|
|
3753
|
+
activationCapped?: boolean | undefined;
|
|
3748
3754
|
} | undefined;
|
|
3749
3755
|
'quick-connect'?: {
|
|
3750
3756
|
options: ({
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia3 from "pinia";
|
|
2
2
|
import * as vue95 from "vue";
|
|
3
3
|
import * as _n8n_api_types0 from "@n8n/api-types";
|
|
4
4
|
import { AuthenticationMethod, FrontendModuleSettings, FrontendSettings, IUserManagementSettings, WorkflowReviewsPolicy } from "@n8n/api-types";
|
|
@@ -6,7 +6,7 @@ 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: pinia3.StoreDefinition<"settings", Pick<{
|
|
10
10
|
settings: vue95.Ref<{
|
|
11
11
|
settingsMode?: "public" | "authenticated" | undefined;
|
|
12
12
|
inE2ETests: boolean;
|
|
@@ -914,6 +914,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
914
914
|
workflowBuilderAvailable: boolean;
|
|
915
915
|
sandboxUnavailableReason: string | null;
|
|
916
916
|
runDebugEnabled: boolean;
|
|
917
|
+
activationCapped?: boolean | undefined;
|
|
917
918
|
} | undefined;
|
|
918
919
|
'quick-connect'?: {
|
|
919
920
|
options: ({
|
|
@@ -1213,6 +1214,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
1213
1214
|
workflowBuilderAvailable: boolean;
|
|
1214
1215
|
sandboxUnavailableReason: string | null;
|
|
1215
1216
|
runDebugEnabled: boolean;
|
|
1217
|
+
activationCapped?: boolean | undefined;
|
|
1216
1218
|
} | undefined;
|
|
1217
1219
|
'quick-connect'?: {
|
|
1218
1220
|
options: ({
|
|
@@ -2180,6 +2182,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2180
2182
|
workflowBuilderAvailable: boolean;
|
|
2181
2183
|
sandboxUnavailableReason: string | null;
|
|
2182
2184
|
runDebugEnabled: boolean;
|
|
2185
|
+
activationCapped?: boolean | undefined;
|
|
2183
2186
|
} | undefined;
|
|
2184
2187
|
'quick-connect'?: {
|
|
2185
2188
|
options: ({
|
|
@@ -2479,6 +2482,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
2479
2482
|
workflowBuilderAvailable: boolean;
|
|
2480
2483
|
sandboxUnavailableReason: string | null;
|
|
2481
2484
|
runDebugEnabled: boolean;
|
|
2485
|
+
activationCapped?: boolean | undefined;
|
|
2482
2486
|
} | undefined;
|
|
2483
2487
|
'quick-connect'?: {
|
|
2484
2488
|
options: ({
|
|
@@ -3446,6 +3450,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3446
3450
|
workflowBuilderAvailable: boolean;
|
|
3447
3451
|
sandboxUnavailableReason: string | null;
|
|
3448
3452
|
runDebugEnabled: boolean;
|
|
3453
|
+
activationCapped?: boolean | undefined;
|
|
3449
3454
|
} | undefined;
|
|
3450
3455
|
'quick-connect'?: {
|
|
3451
3456
|
options: ({
|
|
@@ -3745,6 +3750,7 @@ declare const useSettingsStore: pinia4.StoreDefinition<"settings", Pick<{
|
|
|
3745
3750
|
workflowBuilderAvailable: boolean;
|
|
3746
3751
|
sandboxUnavailableReason: string | null;
|
|
3747
3752
|
runDebugEnabled: boolean;
|
|
3753
|
+
activationCapped?: boolean | undefined;
|
|
3748
3754
|
} | undefined;
|
|
3749
3755
|
'quick-connect'?: {
|
|
3750
3756
|
options: ({
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia4 from "pinia";
|
|
2
2
|
import { AgentRequestQuery } from "n8n-workflow";
|
|
3
3
|
import * as _vueuse_core0 from "@vueuse/core";
|
|
4
4
|
|
|
@@ -12,7 +12,7 @@ interface IAgentRequestStoreState {
|
|
|
12
12
|
[nodeName: string]: IAgentRequest;
|
|
13
13
|
};
|
|
14
14
|
}
|
|
15
|
-
declare const useAgentRequestStore:
|
|
15
|
+
declare const useAgentRequestStore: pinia4.StoreDefinition<"agentRequest", Pick<{
|
|
16
16
|
agentRequests: _vueuse_core0.RemovableRef<IAgentRequestStoreState>;
|
|
17
17
|
getAgentRequests: (workflowId: string, nodeId: string) => IAgentRequest["query"];
|
|
18
18
|
getQueryValue: (workflowId: string, nodeId: string, nodeName: string, paramName?: string) => unknown;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/stores",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.35.
|
|
4
|
+
"version": "2.35.2",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"LICENSE.md",
|
|
@@ -27,14 +27,14 @@
|
|
|
27
27
|
"bowser": "2.11.0",
|
|
28
28
|
"pinia": "^2.2.4",
|
|
29
29
|
"vue": "^3.5.13",
|
|
30
|
-
"@n8n/api-types": "1.35.
|
|
31
|
-
"@n8n/
|
|
32
|
-
"@n8n/i18n": "2.35.
|
|
33
|
-
"@n8n/permissions": "0.72.0",
|
|
30
|
+
"@n8n/api-types": "1.35.2",
|
|
31
|
+
"@n8n/composables": "1.25.2",
|
|
32
|
+
"@n8n/i18n": "2.35.2",
|
|
34
33
|
"@n8n/frontend-constants": "0.4.0",
|
|
35
|
-
"@n8n/
|
|
36
|
-
"n8n
|
|
37
|
-
"@n8n/
|
|
34
|
+
"@n8n/permissions": "0.72.0",
|
|
35
|
+
"@n8n/constants": "0.34.0",
|
|
36
|
+
"@n8n/rest-api-client": "2.35.2",
|
|
37
|
+
"n8n-workflow": "2.35.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"vitest-mock-extended": "^3.1.0",
|
|
51
51
|
"vue-tsc": "^2.2.8",
|
|
52
52
|
"@n8n/playwright-janitor": "0.1.0",
|
|
53
|
+
"@n8n/typescript-config": "1.9.0",
|
|
53
54
|
"@n8n/eslint-config": "0.0.1",
|
|
54
|
-
"@n8n/vitest-config": "1.20.0"
|
|
55
|
-
"@n8n/typescript-config": "1.9.0"
|
|
55
|
+
"@n8n/vitest-config": "1.20.0"
|
|
56
56
|
},
|
|
57
57
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
58
58
|
"homepage": "https://n8n.io",
|