@n8n/stores 2.31.2 → 2.32.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/constants2.cjs +0 -1
- package/dist/constants2.cjs.map +1 -1
- package/dist/constants2.d.cts +0 -1
- package/dist/constants2.d.mts +0 -1
- package/dist/constants2.mjs +0 -1
- package/dist/constants2.mjs.map +1 -1
- package/dist/rbac.store.cjs +106 -0
- package/dist/rbac.store.cjs.map +1 -0
- package/dist/rbac.store.d.cts +358 -0
- package/dist/rbac.store.d.mts +358 -0
- package/dist/rbac.store.mjs +106 -0
- package/dist/rbac.store.mjs.map +1 -0
- package/dist/useAgentRequestStore.cjs +1 -1
- package/dist/useAgentRequestStore.d.cts +1 -1
- package/dist/useAgentRequestStore.d.mts +1 -1
- package/dist/useAgentRequestStore.mjs +1 -1
- package/dist/useRootStore.cjs +1 -1
- package/dist/useRootStore.d.cts +72 -72
- package/dist/useRootStore.d.mts +72 -72
- package/dist/useRootStore.mjs +1 -1
- package/package.json +9 -7
package/dist/useRootStore.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue14 from "vue";
|
|
2
|
+
import * as pinia1 from "pinia";
|
|
3
3
|
|
|
4
4
|
//#region src/useRootStore.d.ts
|
|
5
5
|
type RootStoreState = {
|
|
@@ -30,33 +30,33 @@ type RootStoreState = {
|
|
|
30
30
|
instanceId: string;
|
|
31
31
|
binaryDataMode: 'default' | 'filesystem' | 's3' | 'azure' | 'database';
|
|
32
32
|
};
|
|
33
|
-
declare const useRootStore:
|
|
34
|
-
baseUrl:
|
|
35
|
-
formUrl:
|
|
36
|
-
formTestUrl:
|
|
37
|
-
formWaitingUrl:
|
|
38
|
-
mcpUrl:
|
|
39
|
-
mcpTestUrl:
|
|
40
|
-
webhookUrl:
|
|
41
|
-
webhookTestUrl:
|
|
42
|
-
webhookWaitingUrl:
|
|
43
|
-
restUrl:
|
|
44
|
-
restApiContext:
|
|
33
|
+
declare const useRootStore: pinia1.StoreDefinition<"root", Pick<{
|
|
34
|
+
baseUrl: vue14.ComputedRef<string>;
|
|
35
|
+
formUrl: vue14.ComputedRef<string>;
|
|
36
|
+
formTestUrl: vue14.ComputedRef<string>;
|
|
37
|
+
formWaitingUrl: vue14.ComputedRef<string>;
|
|
38
|
+
mcpUrl: vue14.ComputedRef<string>;
|
|
39
|
+
mcpTestUrl: vue14.ComputedRef<string>;
|
|
40
|
+
webhookUrl: vue14.ComputedRef<string>;
|
|
41
|
+
webhookTestUrl: vue14.ComputedRef<string>;
|
|
42
|
+
webhookWaitingUrl: vue14.ComputedRef<string>;
|
|
43
|
+
restUrl: vue14.ComputedRef<string>;
|
|
44
|
+
restApiContext: vue14.ComputedRef<{
|
|
45
45
|
baseUrl: string;
|
|
46
46
|
pushRef: string;
|
|
47
47
|
}>;
|
|
48
|
-
urlBaseEditor:
|
|
49
|
-
urlBaseWebhook:
|
|
50
|
-
versionCli:
|
|
51
|
-
instanceId:
|
|
52
|
-
pushRef:
|
|
53
|
-
defaultLocale:
|
|
54
|
-
binaryDataMode:
|
|
55
|
-
OAuthCallbackUrls:
|
|
56
|
-
jwksUri:
|
|
57
|
-
executionTimeout:
|
|
58
|
-
maxExecutionTimeout:
|
|
59
|
-
timezone:
|
|
48
|
+
urlBaseEditor: vue14.ComputedRef<string>;
|
|
49
|
+
urlBaseWebhook: vue14.ComputedRef<string>;
|
|
50
|
+
versionCli: vue14.ComputedRef<string>;
|
|
51
|
+
instanceId: vue14.ComputedRef<string>;
|
|
52
|
+
pushRef: vue14.ComputedRef<string>;
|
|
53
|
+
defaultLocale: vue14.ComputedRef<string>;
|
|
54
|
+
binaryDataMode: vue14.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
55
|
+
OAuthCallbackUrls: vue14.ComputedRef<object>;
|
|
56
|
+
jwksUri: vue14.ComputedRef<string>;
|
|
57
|
+
executionTimeout: vue14.ComputedRef<number>;
|
|
58
|
+
maxExecutionTimeout: vue14.ComputedRef<number>;
|
|
59
|
+
timezone: vue14.ComputedRef<string>;
|
|
60
60
|
setUrlBaseWebhook: (value: string) => void;
|
|
61
61
|
setUrlBaseEditor: (value: string) => void;
|
|
62
62
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -80,32 +80,32 @@ declare const useRootStore: pinia0.StoreDefinition<"root", Pick<{
|
|
|
80
80
|
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
81
81
|
setPushRef: (value: string) => void;
|
|
82
82
|
}, never>, Pick<{
|
|
83
|
-
baseUrl:
|
|
84
|
-
formUrl:
|
|
85
|
-
formTestUrl:
|
|
86
|
-
formWaitingUrl:
|
|
87
|
-
mcpUrl:
|
|
88
|
-
mcpTestUrl:
|
|
89
|
-
webhookUrl:
|
|
90
|
-
webhookTestUrl:
|
|
91
|
-
webhookWaitingUrl:
|
|
92
|
-
restUrl:
|
|
93
|
-
restApiContext:
|
|
83
|
+
baseUrl: vue14.ComputedRef<string>;
|
|
84
|
+
formUrl: vue14.ComputedRef<string>;
|
|
85
|
+
formTestUrl: vue14.ComputedRef<string>;
|
|
86
|
+
formWaitingUrl: vue14.ComputedRef<string>;
|
|
87
|
+
mcpUrl: vue14.ComputedRef<string>;
|
|
88
|
+
mcpTestUrl: vue14.ComputedRef<string>;
|
|
89
|
+
webhookUrl: vue14.ComputedRef<string>;
|
|
90
|
+
webhookTestUrl: vue14.ComputedRef<string>;
|
|
91
|
+
webhookWaitingUrl: vue14.ComputedRef<string>;
|
|
92
|
+
restUrl: vue14.ComputedRef<string>;
|
|
93
|
+
restApiContext: vue14.ComputedRef<{
|
|
94
94
|
baseUrl: string;
|
|
95
95
|
pushRef: string;
|
|
96
96
|
}>;
|
|
97
|
-
urlBaseEditor:
|
|
98
|
-
urlBaseWebhook:
|
|
99
|
-
versionCli:
|
|
100
|
-
instanceId:
|
|
101
|
-
pushRef:
|
|
102
|
-
defaultLocale:
|
|
103
|
-
binaryDataMode:
|
|
104
|
-
OAuthCallbackUrls:
|
|
105
|
-
jwksUri:
|
|
106
|
-
executionTimeout:
|
|
107
|
-
maxExecutionTimeout:
|
|
108
|
-
timezone:
|
|
97
|
+
urlBaseEditor: vue14.ComputedRef<string>;
|
|
98
|
+
urlBaseWebhook: vue14.ComputedRef<string>;
|
|
99
|
+
versionCli: vue14.ComputedRef<string>;
|
|
100
|
+
instanceId: vue14.ComputedRef<string>;
|
|
101
|
+
pushRef: vue14.ComputedRef<string>;
|
|
102
|
+
defaultLocale: vue14.ComputedRef<string>;
|
|
103
|
+
binaryDataMode: vue14.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
104
|
+
OAuthCallbackUrls: vue14.ComputedRef<object>;
|
|
105
|
+
jwksUri: vue14.ComputedRef<string>;
|
|
106
|
+
executionTimeout: vue14.ComputedRef<number>;
|
|
107
|
+
maxExecutionTimeout: vue14.ComputedRef<number>;
|
|
108
|
+
timezone: vue14.ComputedRef<string>;
|
|
109
109
|
setUrlBaseWebhook: (value: string) => void;
|
|
110
110
|
setUrlBaseEditor: (value: string) => void;
|
|
111
111
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -129,32 +129,32 @@ declare const useRootStore: pinia0.StoreDefinition<"root", Pick<{
|
|
|
129
129
|
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
130
130
|
setPushRef: (value: string) => void;
|
|
131
131
|
}, "baseUrl" | "defaultLocale" | "timezone" | "executionTimeout" | "maxExecutionTimeout" | "versionCli" | "jwksUri" | "pushRef" | "urlBaseWebhook" | "urlBaseEditor" | "instanceId" | "binaryDataMode" | "formUrl" | "formTestUrl" | "formWaitingUrl" | "mcpUrl" | "mcpTestUrl" | "webhookUrl" | "webhookTestUrl" | "webhookWaitingUrl" | "restUrl" | "restApiContext" | "OAuthCallbackUrls">, Pick<{
|
|
132
|
-
baseUrl:
|
|
133
|
-
formUrl:
|
|
134
|
-
formTestUrl:
|
|
135
|
-
formWaitingUrl:
|
|
136
|
-
mcpUrl:
|
|
137
|
-
mcpTestUrl:
|
|
138
|
-
webhookUrl:
|
|
139
|
-
webhookTestUrl:
|
|
140
|
-
webhookWaitingUrl:
|
|
141
|
-
restUrl:
|
|
142
|
-
restApiContext:
|
|
132
|
+
baseUrl: vue14.ComputedRef<string>;
|
|
133
|
+
formUrl: vue14.ComputedRef<string>;
|
|
134
|
+
formTestUrl: vue14.ComputedRef<string>;
|
|
135
|
+
formWaitingUrl: vue14.ComputedRef<string>;
|
|
136
|
+
mcpUrl: vue14.ComputedRef<string>;
|
|
137
|
+
mcpTestUrl: vue14.ComputedRef<string>;
|
|
138
|
+
webhookUrl: vue14.ComputedRef<string>;
|
|
139
|
+
webhookTestUrl: vue14.ComputedRef<string>;
|
|
140
|
+
webhookWaitingUrl: vue14.ComputedRef<string>;
|
|
141
|
+
restUrl: vue14.ComputedRef<string>;
|
|
142
|
+
restApiContext: vue14.ComputedRef<{
|
|
143
143
|
baseUrl: string;
|
|
144
144
|
pushRef: string;
|
|
145
145
|
}>;
|
|
146
|
-
urlBaseEditor:
|
|
147
|
-
urlBaseWebhook:
|
|
148
|
-
versionCli:
|
|
149
|
-
instanceId:
|
|
150
|
-
pushRef:
|
|
151
|
-
defaultLocale:
|
|
152
|
-
binaryDataMode:
|
|
153
|
-
OAuthCallbackUrls:
|
|
154
|
-
jwksUri:
|
|
155
|
-
executionTimeout:
|
|
156
|
-
maxExecutionTimeout:
|
|
157
|
-
timezone:
|
|
146
|
+
urlBaseEditor: vue14.ComputedRef<string>;
|
|
147
|
+
urlBaseWebhook: vue14.ComputedRef<string>;
|
|
148
|
+
versionCli: vue14.ComputedRef<string>;
|
|
149
|
+
instanceId: vue14.ComputedRef<string>;
|
|
150
|
+
pushRef: vue14.ComputedRef<string>;
|
|
151
|
+
defaultLocale: vue14.ComputedRef<string>;
|
|
152
|
+
binaryDataMode: vue14.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
153
|
+
OAuthCallbackUrls: vue14.ComputedRef<object>;
|
|
154
|
+
jwksUri: vue14.ComputedRef<string>;
|
|
155
|
+
executionTimeout: vue14.ComputedRef<number>;
|
|
156
|
+
maxExecutionTimeout: vue14.ComputedRef<number>;
|
|
157
|
+
timezone: vue14.ComputedRef<string>;
|
|
158
158
|
setUrlBaseWebhook: (value: string) => void;
|
|
159
159
|
setUrlBaseEditor: (value: string) => void;
|
|
160
160
|
setUrlBaseWebhookTest: (value: string) => void;
|
package/dist/useRootStore.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia1 from "pinia";
|
|
2
|
+
import * as vue14 from "vue";
|
|
3
3
|
|
|
4
4
|
//#region src/useRootStore.d.ts
|
|
5
5
|
type RootStoreState = {
|
|
@@ -30,33 +30,33 @@ type RootStoreState = {
|
|
|
30
30
|
instanceId: string;
|
|
31
31
|
binaryDataMode: 'default' | 'filesystem' | 's3' | 'azure' | 'database';
|
|
32
32
|
};
|
|
33
|
-
declare const useRootStore:
|
|
34
|
-
baseUrl:
|
|
35
|
-
formUrl:
|
|
36
|
-
formTestUrl:
|
|
37
|
-
formWaitingUrl:
|
|
38
|
-
mcpUrl:
|
|
39
|
-
mcpTestUrl:
|
|
40
|
-
webhookUrl:
|
|
41
|
-
webhookTestUrl:
|
|
42
|
-
webhookWaitingUrl:
|
|
43
|
-
restUrl:
|
|
44
|
-
restApiContext:
|
|
33
|
+
declare const useRootStore: pinia1.StoreDefinition<"root", Pick<{
|
|
34
|
+
baseUrl: vue14.ComputedRef<string>;
|
|
35
|
+
formUrl: vue14.ComputedRef<string>;
|
|
36
|
+
formTestUrl: vue14.ComputedRef<string>;
|
|
37
|
+
formWaitingUrl: vue14.ComputedRef<string>;
|
|
38
|
+
mcpUrl: vue14.ComputedRef<string>;
|
|
39
|
+
mcpTestUrl: vue14.ComputedRef<string>;
|
|
40
|
+
webhookUrl: vue14.ComputedRef<string>;
|
|
41
|
+
webhookTestUrl: vue14.ComputedRef<string>;
|
|
42
|
+
webhookWaitingUrl: vue14.ComputedRef<string>;
|
|
43
|
+
restUrl: vue14.ComputedRef<string>;
|
|
44
|
+
restApiContext: vue14.ComputedRef<{
|
|
45
45
|
baseUrl: string;
|
|
46
46
|
pushRef: string;
|
|
47
47
|
}>;
|
|
48
|
-
urlBaseEditor:
|
|
49
|
-
urlBaseWebhook:
|
|
50
|
-
versionCli:
|
|
51
|
-
instanceId:
|
|
52
|
-
pushRef:
|
|
53
|
-
defaultLocale:
|
|
54
|
-
binaryDataMode:
|
|
55
|
-
OAuthCallbackUrls:
|
|
56
|
-
jwksUri:
|
|
57
|
-
executionTimeout:
|
|
58
|
-
maxExecutionTimeout:
|
|
59
|
-
timezone:
|
|
48
|
+
urlBaseEditor: vue14.ComputedRef<string>;
|
|
49
|
+
urlBaseWebhook: vue14.ComputedRef<string>;
|
|
50
|
+
versionCli: vue14.ComputedRef<string>;
|
|
51
|
+
instanceId: vue14.ComputedRef<string>;
|
|
52
|
+
pushRef: vue14.ComputedRef<string>;
|
|
53
|
+
defaultLocale: vue14.ComputedRef<string>;
|
|
54
|
+
binaryDataMode: vue14.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
55
|
+
OAuthCallbackUrls: vue14.ComputedRef<object>;
|
|
56
|
+
jwksUri: vue14.ComputedRef<string>;
|
|
57
|
+
executionTimeout: vue14.ComputedRef<number>;
|
|
58
|
+
maxExecutionTimeout: vue14.ComputedRef<number>;
|
|
59
|
+
timezone: vue14.ComputedRef<string>;
|
|
60
60
|
setUrlBaseWebhook: (value: string) => void;
|
|
61
61
|
setUrlBaseEditor: (value: string) => void;
|
|
62
62
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -80,32 +80,32 @@ declare const useRootStore: pinia0.StoreDefinition<"root", Pick<{
|
|
|
80
80
|
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
81
81
|
setPushRef: (value: string) => void;
|
|
82
82
|
}, never>, Pick<{
|
|
83
|
-
baseUrl:
|
|
84
|
-
formUrl:
|
|
85
|
-
formTestUrl:
|
|
86
|
-
formWaitingUrl:
|
|
87
|
-
mcpUrl:
|
|
88
|
-
mcpTestUrl:
|
|
89
|
-
webhookUrl:
|
|
90
|
-
webhookTestUrl:
|
|
91
|
-
webhookWaitingUrl:
|
|
92
|
-
restUrl:
|
|
93
|
-
restApiContext:
|
|
83
|
+
baseUrl: vue14.ComputedRef<string>;
|
|
84
|
+
formUrl: vue14.ComputedRef<string>;
|
|
85
|
+
formTestUrl: vue14.ComputedRef<string>;
|
|
86
|
+
formWaitingUrl: vue14.ComputedRef<string>;
|
|
87
|
+
mcpUrl: vue14.ComputedRef<string>;
|
|
88
|
+
mcpTestUrl: vue14.ComputedRef<string>;
|
|
89
|
+
webhookUrl: vue14.ComputedRef<string>;
|
|
90
|
+
webhookTestUrl: vue14.ComputedRef<string>;
|
|
91
|
+
webhookWaitingUrl: vue14.ComputedRef<string>;
|
|
92
|
+
restUrl: vue14.ComputedRef<string>;
|
|
93
|
+
restApiContext: vue14.ComputedRef<{
|
|
94
94
|
baseUrl: string;
|
|
95
95
|
pushRef: string;
|
|
96
96
|
}>;
|
|
97
|
-
urlBaseEditor:
|
|
98
|
-
urlBaseWebhook:
|
|
99
|
-
versionCli:
|
|
100
|
-
instanceId:
|
|
101
|
-
pushRef:
|
|
102
|
-
defaultLocale:
|
|
103
|
-
binaryDataMode:
|
|
104
|
-
OAuthCallbackUrls:
|
|
105
|
-
jwksUri:
|
|
106
|
-
executionTimeout:
|
|
107
|
-
maxExecutionTimeout:
|
|
108
|
-
timezone:
|
|
97
|
+
urlBaseEditor: vue14.ComputedRef<string>;
|
|
98
|
+
urlBaseWebhook: vue14.ComputedRef<string>;
|
|
99
|
+
versionCli: vue14.ComputedRef<string>;
|
|
100
|
+
instanceId: vue14.ComputedRef<string>;
|
|
101
|
+
pushRef: vue14.ComputedRef<string>;
|
|
102
|
+
defaultLocale: vue14.ComputedRef<string>;
|
|
103
|
+
binaryDataMode: vue14.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
104
|
+
OAuthCallbackUrls: vue14.ComputedRef<object>;
|
|
105
|
+
jwksUri: vue14.ComputedRef<string>;
|
|
106
|
+
executionTimeout: vue14.ComputedRef<number>;
|
|
107
|
+
maxExecutionTimeout: vue14.ComputedRef<number>;
|
|
108
|
+
timezone: vue14.ComputedRef<string>;
|
|
109
109
|
setUrlBaseWebhook: (value: string) => void;
|
|
110
110
|
setUrlBaseEditor: (value: string) => void;
|
|
111
111
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -129,32 +129,32 @@ declare const useRootStore: pinia0.StoreDefinition<"root", Pick<{
|
|
|
129
129
|
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
130
130
|
setPushRef: (value: string) => void;
|
|
131
131
|
}, "baseUrl" | "defaultLocale" | "timezone" | "executionTimeout" | "maxExecutionTimeout" | "versionCli" | "jwksUri" | "pushRef" | "urlBaseWebhook" | "urlBaseEditor" | "instanceId" | "binaryDataMode" | "formUrl" | "formTestUrl" | "formWaitingUrl" | "mcpUrl" | "mcpTestUrl" | "webhookUrl" | "webhookTestUrl" | "webhookWaitingUrl" | "restUrl" | "restApiContext" | "OAuthCallbackUrls">, Pick<{
|
|
132
|
-
baseUrl:
|
|
133
|
-
formUrl:
|
|
134
|
-
formTestUrl:
|
|
135
|
-
formWaitingUrl:
|
|
136
|
-
mcpUrl:
|
|
137
|
-
mcpTestUrl:
|
|
138
|
-
webhookUrl:
|
|
139
|
-
webhookTestUrl:
|
|
140
|
-
webhookWaitingUrl:
|
|
141
|
-
restUrl:
|
|
142
|
-
restApiContext:
|
|
132
|
+
baseUrl: vue14.ComputedRef<string>;
|
|
133
|
+
formUrl: vue14.ComputedRef<string>;
|
|
134
|
+
formTestUrl: vue14.ComputedRef<string>;
|
|
135
|
+
formWaitingUrl: vue14.ComputedRef<string>;
|
|
136
|
+
mcpUrl: vue14.ComputedRef<string>;
|
|
137
|
+
mcpTestUrl: vue14.ComputedRef<string>;
|
|
138
|
+
webhookUrl: vue14.ComputedRef<string>;
|
|
139
|
+
webhookTestUrl: vue14.ComputedRef<string>;
|
|
140
|
+
webhookWaitingUrl: vue14.ComputedRef<string>;
|
|
141
|
+
restUrl: vue14.ComputedRef<string>;
|
|
142
|
+
restApiContext: vue14.ComputedRef<{
|
|
143
143
|
baseUrl: string;
|
|
144
144
|
pushRef: string;
|
|
145
145
|
}>;
|
|
146
|
-
urlBaseEditor:
|
|
147
|
-
urlBaseWebhook:
|
|
148
|
-
versionCli:
|
|
149
|
-
instanceId:
|
|
150
|
-
pushRef:
|
|
151
|
-
defaultLocale:
|
|
152
|
-
binaryDataMode:
|
|
153
|
-
OAuthCallbackUrls:
|
|
154
|
-
jwksUri:
|
|
155
|
-
executionTimeout:
|
|
156
|
-
maxExecutionTimeout:
|
|
157
|
-
timezone:
|
|
146
|
+
urlBaseEditor: vue14.ComputedRef<string>;
|
|
147
|
+
urlBaseWebhook: vue14.ComputedRef<string>;
|
|
148
|
+
versionCli: vue14.ComputedRef<string>;
|
|
149
|
+
instanceId: vue14.ComputedRef<string>;
|
|
150
|
+
pushRef: vue14.ComputedRef<string>;
|
|
151
|
+
defaultLocale: vue14.ComputedRef<string>;
|
|
152
|
+
binaryDataMode: vue14.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
153
|
+
OAuthCallbackUrls: vue14.ComputedRef<object>;
|
|
154
|
+
jwksUri: vue14.ComputedRef<string>;
|
|
155
|
+
executionTimeout: vue14.ComputedRef<number>;
|
|
156
|
+
maxExecutionTimeout: vue14.ComputedRef<number>;
|
|
157
|
+
timezone: vue14.ComputedRef<string>;
|
|
158
158
|
setUrlBaseWebhook: (value: string) => void;
|
|
159
159
|
setUrlBaseEditor: (value: string) => void;
|
|
160
160
|
setUrlBaseWebhookTest: (value: string) => void;
|
package/dist/useRootStore.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { t as STORES } from "./constants2.mjs";
|
|
2
2
|
import { n as getConfigFromMetaTag } from "./metaTagConfig2.mjs";
|
|
3
3
|
import { defineStore } from "pinia";
|
|
4
|
-
import { randomString, setGlobalState } from "n8n-workflow";
|
|
5
4
|
import { computed, ref } from "vue";
|
|
5
|
+
import { randomString, setGlobalState } from "n8n-workflow";
|
|
6
6
|
|
|
7
7
|
//#region src/useRootStore.ts
|
|
8
8
|
const { VUE_APP_URL_BASE_API } = import.meta.env;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/stores",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.32.0",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
7
|
+
"LICENSE_EE.md",
|
|
8
|
+
"LICENSE.md"
|
|
9
9
|
],
|
|
10
10
|
"main": "dist/index.cjs",
|
|
11
11
|
"module": "dist/index.mjs",
|
|
@@ -23,10 +23,12 @@
|
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@vueuse/core": "^
|
|
26
|
+
"@vueuse/core": "^14.3.0",
|
|
27
27
|
"pinia": "^2.2.4",
|
|
28
28
|
"vue": "^3.5.13",
|
|
29
|
-
"n8n
|
|
29
|
+
"@n8n/permissions": "0.69.0",
|
|
30
|
+
"n8n-workflow": "2.32.0",
|
|
31
|
+
"@n8n/api-types": "1.32.0"
|
|
30
32
|
},
|
|
31
33
|
"devDependencies": {
|
|
32
34
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -34,7 +36,7 @@
|
|
|
34
36
|
"@testing-library/vue": "^8.1.0",
|
|
35
37
|
"@vitejs/plugin-vue": "^5.2.4",
|
|
36
38
|
"@vue/tsconfig": "^0.7.0",
|
|
37
|
-
"@vueuse/core": "^
|
|
39
|
+
"@vueuse/core": "^14.3.0",
|
|
38
40
|
"tsdown": "^0.16.5",
|
|
39
41
|
"typescript": "6.0.2",
|
|
40
42
|
"vite": "^8.0.2",
|
|
@@ -43,7 +45,7 @@
|
|
|
43
45
|
"@n8n/eslint-config": "0.0.1",
|
|
44
46
|
"@n8n/playwright-janitor": "0.1.0",
|
|
45
47
|
"@n8n/typescript-config": "1.9.0",
|
|
46
|
-
"@n8n/vitest-config": "1.
|
|
48
|
+
"@n8n/vitest-config": "1.19.0"
|
|
47
49
|
},
|
|
48
50
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
49
51
|
"homepage": "https://n8n.io",
|