@n8n/stores 2.37.3 → 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 +27 -27
- package/dist/rbac.store.d.mts +27 -27
- package/dist/roles.store.d.cts +19 -19
- 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 +73 -73
- 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 +9 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia1 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: pinia1.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;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia0 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: pinia0.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/dist/useRootStore.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as vue32 from "vue";
|
|
2
|
+
import * as pinia3 from "pinia";
|
|
3
3
|
|
|
4
4
|
//#region src/useRootStore.d.ts
|
|
5
5
|
type RootStoreState = {
|
|
@@ -31,36 +31,36 @@ type RootStoreState = {
|
|
|
31
31
|
instanceId: string;
|
|
32
32
|
binaryDataMode: 'default' | 'filesystem' | 's3' | 'azure' | 'database';
|
|
33
33
|
};
|
|
34
|
-
declare const useRootStore:
|
|
35
|
-
baseUrl:
|
|
36
|
-
formUrl:
|
|
37
|
-
formTestUrl:
|
|
38
|
-
formWaitingUrl:
|
|
39
|
-
mcpUrl:
|
|
40
|
-
mcpTestUrl:
|
|
41
|
-
webhookUrl:
|
|
42
|
-
webhookTestUrl:
|
|
43
|
-
webhookWaitingUrl:
|
|
44
|
-
restUrl:
|
|
45
|
-
restApiContext:
|
|
34
|
+
declare const useRootStore: pinia3.StoreDefinition<"root", Pick<{
|
|
35
|
+
baseUrl: vue32.ComputedRef<string>;
|
|
36
|
+
formUrl: vue32.ComputedRef<string>;
|
|
37
|
+
formTestUrl: vue32.ComputedRef<string>;
|
|
38
|
+
formWaitingUrl: vue32.ComputedRef<string>;
|
|
39
|
+
mcpUrl: vue32.ComputedRef<string>;
|
|
40
|
+
mcpTestUrl: vue32.ComputedRef<string>;
|
|
41
|
+
webhookUrl: vue32.ComputedRef<string>;
|
|
42
|
+
webhookTestUrl: vue32.ComputedRef<string>;
|
|
43
|
+
webhookWaitingUrl: vue32.ComputedRef<string>;
|
|
44
|
+
restUrl: vue32.ComputedRef<string>;
|
|
45
|
+
restApiContext: vue32.ComputedRef<{
|
|
46
46
|
baseUrl: string;
|
|
47
47
|
pushRef: string;
|
|
48
48
|
}>;
|
|
49
|
-
publicApiContext:
|
|
49
|
+
publicApiContext: vue32.ComputedRef<{
|
|
50
50
|
baseUrl: string;
|
|
51
51
|
}>;
|
|
52
|
-
urlBaseEditor:
|
|
53
|
-
urlBaseWebhook:
|
|
54
|
-
versionCli:
|
|
55
|
-
instanceId:
|
|
56
|
-
pushRef:
|
|
57
|
-
defaultLocale:
|
|
58
|
-
binaryDataMode:
|
|
59
|
-
OAuthCallbackUrls:
|
|
60
|
-
jwksUri:
|
|
61
|
-
executionTimeout:
|
|
62
|
-
maxExecutionTimeout:
|
|
63
|
-
timezone:
|
|
52
|
+
urlBaseEditor: vue32.ComputedRef<string>;
|
|
53
|
+
urlBaseWebhook: vue32.ComputedRef<string>;
|
|
54
|
+
versionCli: vue32.ComputedRef<string>;
|
|
55
|
+
instanceId: vue32.ComputedRef<string>;
|
|
56
|
+
pushRef: vue32.ComputedRef<string>;
|
|
57
|
+
defaultLocale: vue32.ComputedRef<string>;
|
|
58
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
59
|
+
OAuthCallbackUrls: vue32.ComputedRef<object>;
|
|
60
|
+
jwksUri: vue32.ComputedRef<string>;
|
|
61
|
+
executionTimeout: vue32.ComputedRef<number>;
|
|
62
|
+
maxExecutionTimeout: vue32.ComputedRef<number>;
|
|
63
|
+
timezone: vue32.ComputedRef<string>;
|
|
64
64
|
setUrlBaseWebhook: (value: string) => void;
|
|
65
65
|
setUrlBaseEditor: (value: string) => void;
|
|
66
66
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -85,35 +85,35 @@ declare const useRootStore: pinia4.StoreDefinition<"root", Pick<{
|
|
|
85
85
|
setPushRef: (value: string) => void;
|
|
86
86
|
setPublicApiPath: (value: string) => void;
|
|
87
87
|
}, never>, Pick<{
|
|
88
|
-
baseUrl:
|
|
89
|
-
formUrl:
|
|
90
|
-
formTestUrl:
|
|
91
|
-
formWaitingUrl:
|
|
92
|
-
mcpUrl:
|
|
93
|
-
mcpTestUrl:
|
|
94
|
-
webhookUrl:
|
|
95
|
-
webhookTestUrl:
|
|
96
|
-
webhookWaitingUrl:
|
|
97
|
-
restUrl:
|
|
98
|
-
restApiContext:
|
|
88
|
+
baseUrl: vue32.ComputedRef<string>;
|
|
89
|
+
formUrl: vue32.ComputedRef<string>;
|
|
90
|
+
formTestUrl: vue32.ComputedRef<string>;
|
|
91
|
+
formWaitingUrl: vue32.ComputedRef<string>;
|
|
92
|
+
mcpUrl: vue32.ComputedRef<string>;
|
|
93
|
+
mcpTestUrl: vue32.ComputedRef<string>;
|
|
94
|
+
webhookUrl: vue32.ComputedRef<string>;
|
|
95
|
+
webhookTestUrl: vue32.ComputedRef<string>;
|
|
96
|
+
webhookWaitingUrl: vue32.ComputedRef<string>;
|
|
97
|
+
restUrl: vue32.ComputedRef<string>;
|
|
98
|
+
restApiContext: vue32.ComputedRef<{
|
|
99
99
|
baseUrl: string;
|
|
100
100
|
pushRef: string;
|
|
101
101
|
}>;
|
|
102
|
-
publicApiContext:
|
|
102
|
+
publicApiContext: vue32.ComputedRef<{
|
|
103
103
|
baseUrl: string;
|
|
104
104
|
}>;
|
|
105
|
-
urlBaseEditor:
|
|
106
|
-
urlBaseWebhook:
|
|
107
|
-
versionCli:
|
|
108
|
-
instanceId:
|
|
109
|
-
pushRef:
|
|
110
|
-
defaultLocale:
|
|
111
|
-
binaryDataMode:
|
|
112
|
-
OAuthCallbackUrls:
|
|
113
|
-
jwksUri:
|
|
114
|
-
executionTimeout:
|
|
115
|
-
maxExecutionTimeout:
|
|
116
|
-
timezone:
|
|
105
|
+
urlBaseEditor: vue32.ComputedRef<string>;
|
|
106
|
+
urlBaseWebhook: vue32.ComputedRef<string>;
|
|
107
|
+
versionCli: vue32.ComputedRef<string>;
|
|
108
|
+
instanceId: vue32.ComputedRef<string>;
|
|
109
|
+
pushRef: vue32.ComputedRef<string>;
|
|
110
|
+
defaultLocale: vue32.ComputedRef<string>;
|
|
111
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
112
|
+
OAuthCallbackUrls: vue32.ComputedRef<object>;
|
|
113
|
+
jwksUri: vue32.ComputedRef<string>;
|
|
114
|
+
executionTimeout: vue32.ComputedRef<number>;
|
|
115
|
+
maxExecutionTimeout: vue32.ComputedRef<number>;
|
|
116
|
+
timezone: vue32.ComputedRef<string>;
|
|
117
117
|
setUrlBaseWebhook: (value: string) => void;
|
|
118
118
|
setUrlBaseEditor: (value: string) => void;
|
|
119
119
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -138,35 +138,35 @@ declare const useRootStore: pinia4.StoreDefinition<"root", Pick<{
|
|
|
138
138
|
setPushRef: (value: string) => void;
|
|
139
139
|
setPublicApiPath: (value: string) => void;
|
|
140
140
|
}, "executionTimeout" | "maxExecutionTimeout" | "jwksUri" | "timezone" | "urlBaseWebhook" | "urlBaseEditor" | "versionCli" | "binaryDataMode" | "instanceId" | "defaultLocale" | "baseUrl" | "pushRef" | "formUrl" | "formTestUrl" | "formWaitingUrl" | "mcpUrl" | "mcpTestUrl" | "webhookUrl" | "webhookTestUrl" | "webhookWaitingUrl" | "restUrl" | "restApiContext" | "publicApiContext" | "OAuthCallbackUrls">, Pick<{
|
|
141
|
-
baseUrl:
|
|
142
|
-
formUrl:
|
|
143
|
-
formTestUrl:
|
|
144
|
-
formWaitingUrl:
|
|
145
|
-
mcpUrl:
|
|
146
|
-
mcpTestUrl:
|
|
147
|
-
webhookUrl:
|
|
148
|
-
webhookTestUrl:
|
|
149
|
-
webhookWaitingUrl:
|
|
150
|
-
restUrl:
|
|
151
|
-
restApiContext:
|
|
141
|
+
baseUrl: vue32.ComputedRef<string>;
|
|
142
|
+
formUrl: vue32.ComputedRef<string>;
|
|
143
|
+
formTestUrl: vue32.ComputedRef<string>;
|
|
144
|
+
formWaitingUrl: vue32.ComputedRef<string>;
|
|
145
|
+
mcpUrl: vue32.ComputedRef<string>;
|
|
146
|
+
mcpTestUrl: vue32.ComputedRef<string>;
|
|
147
|
+
webhookUrl: vue32.ComputedRef<string>;
|
|
148
|
+
webhookTestUrl: vue32.ComputedRef<string>;
|
|
149
|
+
webhookWaitingUrl: vue32.ComputedRef<string>;
|
|
150
|
+
restUrl: vue32.ComputedRef<string>;
|
|
151
|
+
restApiContext: vue32.ComputedRef<{
|
|
152
152
|
baseUrl: string;
|
|
153
153
|
pushRef: string;
|
|
154
154
|
}>;
|
|
155
|
-
publicApiContext:
|
|
155
|
+
publicApiContext: vue32.ComputedRef<{
|
|
156
156
|
baseUrl: string;
|
|
157
157
|
}>;
|
|
158
|
-
urlBaseEditor:
|
|
159
|
-
urlBaseWebhook:
|
|
160
|
-
versionCli:
|
|
161
|
-
instanceId:
|
|
162
|
-
pushRef:
|
|
163
|
-
defaultLocale:
|
|
164
|
-
binaryDataMode:
|
|
165
|
-
OAuthCallbackUrls:
|
|
166
|
-
jwksUri:
|
|
167
|
-
executionTimeout:
|
|
168
|
-
maxExecutionTimeout:
|
|
169
|
-
timezone:
|
|
158
|
+
urlBaseEditor: vue32.ComputedRef<string>;
|
|
159
|
+
urlBaseWebhook: vue32.ComputedRef<string>;
|
|
160
|
+
versionCli: vue32.ComputedRef<string>;
|
|
161
|
+
instanceId: vue32.ComputedRef<string>;
|
|
162
|
+
pushRef: vue32.ComputedRef<string>;
|
|
163
|
+
defaultLocale: vue32.ComputedRef<string>;
|
|
164
|
+
binaryDataMode: vue32.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
165
|
+
OAuthCallbackUrls: vue32.ComputedRef<object>;
|
|
166
|
+
jwksUri: vue32.ComputedRef<string>;
|
|
167
|
+
executionTimeout: vue32.ComputedRef<number>;
|
|
168
|
+
maxExecutionTimeout: vue32.ComputedRef<number>;
|
|
169
|
+
timezone: vue32.ComputedRef<string>;
|
|
170
170
|
setUrlBaseWebhook: (value: string) => void;
|
|
171
171
|
setUrlBaseEditor: (value: string) => void;
|
|
172
172
|
setUrlBaseWebhookTest: (value: string) => void;
|
package/dist/useRootStore.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as pinia4 from "pinia";
|
|
2
|
-
import * as
|
|
2
|
+
import * as vue347 from "vue";
|
|
3
3
|
|
|
4
4
|
//#region src/useRootStore.d.ts
|
|
5
5
|
type RootStoreState = {
|
|
@@ -32,35 +32,35 @@ type RootStoreState = {
|
|
|
32
32
|
binaryDataMode: 'default' | 'filesystem' | 's3' | 'azure' | 'database';
|
|
33
33
|
};
|
|
34
34
|
declare const useRootStore: pinia4.StoreDefinition<"root", Pick<{
|
|
35
|
-
baseUrl:
|
|
36
|
-
formUrl:
|
|
37
|
-
formTestUrl:
|
|
38
|
-
formWaitingUrl:
|
|
39
|
-
mcpUrl:
|
|
40
|
-
mcpTestUrl:
|
|
41
|
-
webhookUrl:
|
|
42
|
-
webhookTestUrl:
|
|
43
|
-
webhookWaitingUrl:
|
|
44
|
-
restUrl:
|
|
45
|
-
restApiContext:
|
|
35
|
+
baseUrl: vue347.ComputedRef<string>;
|
|
36
|
+
formUrl: vue347.ComputedRef<string>;
|
|
37
|
+
formTestUrl: vue347.ComputedRef<string>;
|
|
38
|
+
formWaitingUrl: vue347.ComputedRef<string>;
|
|
39
|
+
mcpUrl: vue347.ComputedRef<string>;
|
|
40
|
+
mcpTestUrl: vue347.ComputedRef<string>;
|
|
41
|
+
webhookUrl: vue347.ComputedRef<string>;
|
|
42
|
+
webhookTestUrl: vue347.ComputedRef<string>;
|
|
43
|
+
webhookWaitingUrl: vue347.ComputedRef<string>;
|
|
44
|
+
restUrl: vue347.ComputedRef<string>;
|
|
45
|
+
restApiContext: vue347.ComputedRef<{
|
|
46
46
|
baseUrl: string;
|
|
47
47
|
pushRef: string;
|
|
48
48
|
}>;
|
|
49
|
-
publicApiContext:
|
|
49
|
+
publicApiContext: vue347.ComputedRef<{
|
|
50
50
|
baseUrl: string;
|
|
51
51
|
}>;
|
|
52
|
-
urlBaseEditor:
|
|
53
|
-
urlBaseWebhook:
|
|
54
|
-
versionCli:
|
|
55
|
-
instanceId:
|
|
56
|
-
pushRef:
|
|
57
|
-
defaultLocale:
|
|
58
|
-
binaryDataMode:
|
|
59
|
-
OAuthCallbackUrls:
|
|
60
|
-
jwksUri:
|
|
61
|
-
executionTimeout:
|
|
62
|
-
maxExecutionTimeout:
|
|
63
|
-
timezone:
|
|
52
|
+
urlBaseEditor: vue347.ComputedRef<string>;
|
|
53
|
+
urlBaseWebhook: vue347.ComputedRef<string>;
|
|
54
|
+
versionCli: vue347.ComputedRef<string>;
|
|
55
|
+
instanceId: vue347.ComputedRef<string>;
|
|
56
|
+
pushRef: vue347.ComputedRef<string>;
|
|
57
|
+
defaultLocale: vue347.ComputedRef<string>;
|
|
58
|
+
binaryDataMode: vue347.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
59
|
+
OAuthCallbackUrls: vue347.ComputedRef<object>;
|
|
60
|
+
jwksUri: vue347.ComputedRef<string>;
|
|
61
|
+
executionTimeout: vue347.ComputedRef<number>;
|
|
62
|
+
maxExecutionTimeout: vue347.ComputedRef<number>;
|
|
63
|
+
timezone: vue347.ComputedRef<string>;
|
|
64
64
|
setUrlBaseWebhook: (value: string) => void;
|
|
65
65
|
setUrlBaseEditor: (value: string) => void;
|
|
66
66
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -85,35 +85,35 @@ declare const useRootStore: pinia4.StoreDefinition<"root", Pick<{
|
|
|
85
85
|
setPushRef: (value: string) => void;
|
|
86
86
|
setPublicApiPath: (value: string) => void;
|
|
87
87
|
}, never>, Pick<{
|
|
88
|
-
baseUrl:
|
|
89
|
-
formUrl:
|
|
90
|
-
formTestUrl:
|
|
91
|
-
formWaitingUrl:
|
|
92
|
-
mcpUrl:
|
|
93
|
-
mcpTestUrl:
|
|
94
|
-
webhookUrl:
|
|
95
|
-
webhookTestUrl:
|
|
96
|
-
webhookWaitingUrl:
|
|
97
|
-
restUrl:
|
|
98
|
-
restApiContext:
|
|
88
|
+
baseUrl: vue347.ComputedRef<string>;
|
|
89
|
+
formUrl: vue347.ComputedRef<string>;
|
|
90
|
+
formTestUrl: vue347.ComputedRef<string>;
|
|
91
|
+
formWaitingUrl: vue347.ComputedRef<string>;
|
|
92
|
+
mcpUrl: vue347.ComputedRef<string>;
|
|
93
|
+
mcpTestUrl: vue347.ComputedRef<string>;
|
|
94
|
+
webhookUrl: vue347.ComputedRef<string>;
|
|
95
|
+
webhookTestUrl: vue347.ComputedRef<string>;
|
|
96
|
+
webhookWaitingUrl: vue347.ComputedRef<string>;
|
|
97
|
+
restUrl: vue347.ComputedRef<string>;
|
|
98
|
+
restApiContext: vue347.ComputedRef<{
|
|
99
99
|
baseUrl: string;
|
|
100
100
|
pushRef: string;
|
|
101
101
|
}>;
|
|
102
|
-
publicApiContext:
|
|
102
|
+
publicApiContext: vue347.ComputedRef<{
|
|
103
103
|
baseUrl: string;
|
|
104
104
|
}>;
|
|
105
|
-
urlBaseEditor:
|
|
106
|
-
urlBaseWebhook:
|
|
107
|
-
versionCli:
|
|
108
|
-
instanceId:
|
|
109
|
-
pushRef:
|
|
110
|
-
defaultLocale:
|
|
111
|
-
binaryDataMode:
|
|
112
|
-
OAuthCallbackUrls:
|
|
113
|
-
jwksUri:
|
|
114
|
-
executionTimeout:
|
|
115
|
-
maxExecutionTimeout:
|
|
116
|
-
timezone:
|
|
105
|
+
urlBaseEditor: vue347.ComputedRef<string>;
|
|
106
|
+
urlBaseWebhook: vue347.ComputedRef<string>;
|
|
107
|
+
versionCli: vue347.ComputedRef<string>;
|
|
108
|
+
instanceId: vue347.ComputedRef<string>;
|
|
109
|
+
pushRef: vue347.ComputedRef<string>;
|
|
110
|
+
defaultLocale: vue347.ComputedRef<string>;
|
|
111
|
+
binaryDataMode: vue347.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
112
|
+
OAuthCallbackUrls: vue347.ComputedRef<object>;
|
|
113
|
+
jwksUri: vue347.ComputedRef<string>;
|
|
114
|
+
executionTimeout: vue347.ComputedRef<number>;
|
|
115
|
+
maxExecutionTimeout: vue347.ComputedRef<number>;
|
|
116
|
+
timezone: vue347.ComputedRef<string>;
|
|
117
117
|
setUrlBaseWebhook: (value: string) => void;
|
|
118
118
|
setUrlBaseEditor: (value: string) => void;
|
|
119
119
|
setUrlBaseWebhookTest: (value: string) => void;
|
|
@@ -138,35 +138,35 @@ declare const useRootStore: pinia4.StoreDefinition<"root", Pick<{
|
|
|
138
138
|
setPushRef: (value: string) => void;
|
|
139
139
|
setPublicApiPath: (value: string) => void;
|
|
140
140
|
}, "executionTimeout" | "maxExecutionTimeout" | "jwksUri" | "timezone" | "urlBaseWebhook" | "urlBaseEditor" | "versionCli" | "binaryDataMode" | "instanceId" | "defaultLocale" | "baseUrl" | "pushRef" | "formUrl" | "formTestUrl" | "formWaitingUrl" | "mcpUrl" | "mcpTestUrl" | "webhookUrl" | "webhookTestUrl" | "webhookWaitingUrl" | "restUrl" | "restApiContext" | "publicApiContext" | "OAuthCallbackUrls">, Pick<{
|
|
141
|
-
baseUrl:
|
|
142
|
-
formUrl:
|
|
143
|
-
formTestUrl:
|
|
144
|
-
formWaitingUrl:
|
|
145
|
-
mcpUrl:
|
|
146
|
-
mcpTestUrl:
|
|
147
|
-
webhookUrl:
|
|
148
|
-
webhookTestUrl:
|
|
149
|
-
webhookWaitingUrl:
|
|
150
|
-
restUrl:
|
|
151
|
-
restApiContext:
|
|
141
|
+
baseUrl: vue347.ComputedRef<string>;
|
|
142
|
+
formUrl: vue347.ComputedRef<string>;
|
|
143
|
+
formTestUrl: vue347.ComputedRef<string>;
|
|
144
|
+
formWaitingUrl: vue347.ComputedRef<string>;
|
|
145
|
+
mcpUrl: vue347.ComputedRef<string>;
|
|
146
|
+
mcpTestUrl: vue347.ComputedRef<string>;
|
|
147
|
+
webhookUrl: vue347.ComputedRef<string>;
|
|
148
|
+
webhookTestUrl: vue347.ComputedRef<string>;
|
|
149
|
+
webhookWaitingUrl: vue347.ComputedRef<string>;
|
|
150
|
+
restUrl: vue347.ComputedRef<string>;
|
|
151
|
+
restApiContext: vue347.ComputedRef<{
|
|
152
152
|
baseUrl: string;
|
|
153
153
|
pushRef: string;
|
|
154
154
|
}>;
|
|
155
|
-
publicApiContext:
|
|
155
|
+
publicApiContext: vue347.ComputedRef<{
|
|
156
156
|
baseUrl: string;
|
|
157
157
|
}>;
|
|
158
|
-
urlBaseEditor:
|
|
159
|
-
urlBaseWebhook:
|
|
160
|
-
versionCli:
|
|
161
|
-
instanceId:
|
|
162
|
-
pushRef:
|
|
163
|
-
defaultLocale:
|
|
164
|
-
binaryDataMode:
|
|
165
|
-
OAuthCallbackUrls:
|
|
166
|
-
jwksUri:
|
|
167
|
-
executionTimeout:
|
|
168
|
-
maxExecutionTimeout:
|
|
169
|
-
timezone:
|
|
158
|
+
urlBaseEditor: vue347.ComputedRef<string>;
|
|
159
|
+
urlBaseWebhook: vue347.ComputedRef<string>;
|
|
160
|
+
versionCli: vue347.ComputedRef<string>;
|
|
161
|
+
instanceId: vue347.ComputedRef<string>;
|
|
162
|
+
pushRef: vue347.ComputedRef<string>;
|
|
163
|
+
defaultLocale: vue347.ComputedRef<string>;
|
|
164
|
+
binaryDataMode: vue347.ComputedRef<"default" | "filesystem" | "s3" | "azure" | "database">;
|
|
165
|
+
OAuthCallbackUrls: vue347.ComputedRef<object>;
|
|
166
|
+
jwksUri: vue347.ComputedRef<string>;
|
|
167
|
+
executionTimeout: vue347.ComputedRef<number>;
|
|
168
|
+
maxExecutionTimeout: vue347.ComputedRef<number>;
|
|
169
|
+
timezone: vue347.ComputedRef<string>;
|
|
170
170
|
setUrlBaseWebhook: (value: string) => void;
|
|
171
171
|
setUrlBaseEditor: (value: string) => void;
|
|
172
172
|
setUrlBaseWebhookTest: (value: string) => void;
|
package/dist/users.store.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { t as IInviteResponse } from "./invitation2.api.cjs";
|
|
2
2
|
import { t as ModalOpeners } from "./modalOpeners2.cjs";
|
|
3
|
-
import * as
|
|
4
|
-
import * as
|
|
3
|
+
import * as vue104 from "vue";
|
|
4
|
+
import * as pinia4 from "pinia";
|
|
5
5
|
import { LoginRequestDto, PasswordUpdateRequestDto, SettingsUpdateRequestDto, User, UserSelfSettingsUpdateRequestDto, UserUpdateRequestDto, UsersListFilterDto } from "@n8n/api-types";
|
|
6
6
|
import { AssignableGlobalRole } from "@n8n/permissions";
|
|
7
7
|
import { CurrentUserResponse, IPersonalizationLatestVersion, IUser, IUserResponse, UpdateGlobalRolePayload } from "@n8n/rest-api-client/api/users";
|
|
@@ -12,23 +12,23 @@ import * as mfaApi from "@n8n/rest-api-client/api/mfa";
|
|
|
12
12
|
//#region src/users.store.d.ts
|
|
13
13
|
type LoginHook = (user: CurrentUserResponse) => void | Promise<void>;
|
|
14
14
|
type LogoutHook = () => void | Promise<void>;
|
|
15
|
-
declare const useUsersStore:
|
|
16
|
-
initialized:
|
|
17
|
-
currentUserId:
|
|
18
|
-
usersById:
|
|
19
|
-
allUsers:
|
|
20
|
-
currentUser:
|
|
21
|
-
userActivated:
|
|
22
|
-
isDefaultUser:
|
|
23
|
-
isInstanceOwner:
|
|
24
|
-
isAdmin:
|
|
25
|
-
isAdminOrOwner:
|
|
26
|
-
mfaEnabled:
|
|
27
|
-
globalRoleName:
|
|
28
|
-
userClaimedAiCredits:
|
|
29
|
-
isEasyAIWorkflowOnboardingDone:
|
|
30
|
-
canUserUpdateVersion:
|
|
31
|
-
usersLimitNotReached:
|
|
15
|
+
declare const useUsersStore: pinia4.StoreDefinition<"users", Pick<{
|
|
16
|
+
initialized: vue104.Ref<boolean, boolean>;
|
|
17
|
+
currentUserId: vue104.Ref<string | null, string | null>;
|
|
18
|
+
usersById: vue104.Ref<Record<string, IUser>, Record<string, IUser>>;
|
|
19
|
+
allUsers: vue104.ComputedRef<IUser[]>;
|
|
20
|
+
currentUser: vue104.ComputedRef<IUser | null>;
|
|
21
|
+
userActivated: vue104.ComputedRef<boolean>;
|
|
22
|
+
isDefaultUser: vue104.ComputedRef<boolean>;
|
|
23
|
+
isInstanceOwner: vue104.ComputedRef<boolean>;
|
|
24
|
+
isAdmin: vue104.ComputedRef<boolean>;
|
|
25
|
+
isAdminOrOwner: vue104.ComputedRef<boolean>;
|
|
26
|
+
mfaEnabled: vue104.ComputedRef<boolean>;
|
|
27
|
+
globalRoleName: vue104.ComputedRef<string>;
|
|
28
|
+
userClaimedAiCredits: vue104.ComputedRef<boolean | undefined>;
|
|
29
|
+
isEasyAIWorkflowOnboardingDone: vue104.ComputedRef<boolean>;
|
|
30
|
+
canUserUpdateVersion: vue104.ComputedRef<boolean>;
|
|
31
|
+
usersLimitNotReached: vue104.ComputedRef<boolean>;
|
|
32
32
|
addUsers: (newUsers: User[]) => void;
|
|
33
33
|
loginWithCookie: () => Promise<void>;
|
|
34
34
|
initialize: () => Promise<void>;
|
|
@@ -191,22 +191,22 @@ declare const useUsersStore: pinia5.StoreDefinition<"users", Pick<{
|
|
|
191
191
|
}[];
|
|
192
192
|
}, [filter?: UsersListFilterDto | undefined], true>;
|
|
193
193
|
}, "initialized" | "currentUserId" | "usersById" | "usersList">, Pick<{
|
|
194
|
-
initialized:
|
|
195
|
-
currentUserId:
|
|
196
|
-
usersById:
|
|
197
|
-
allUsers:
|
|
198
|
-
currentUser:
|
|
199
|
-
userActivated:
|
|
200
|
-
isDefaultUser:
|
|
201
|
-
isInstanceOwner:
|
|
202
|
-
isAdmin:
|
|
203
|
-
isAdminOrOwner:
|
|
204
|
-
mfaEnabled:
|
|
205
|
-
globalRoleName:
|
|
206
|
-
userClaimedAiCredits:
|
|
207
|
-
isEasyAIWorkflowOnboardingDone:
|
|
208
|
-
canUserUpdateVersion:
|
|
209
|
-
usersLimitNotReached:
|
|
194
|
+
initialized: vue104.Ref<boolean, boolean>;
|
|
195
|
+
currentUserId: vue104.Ref<string | null, string | null>;
|
|
196
|
+
usersById: vue104.Ref<Record<string, IUser>, Record<string, IUser>>;
|
|
197
|
+
allUsers: vue104.ComputedRef<IUser[]>;
|
|
198
|
+
currentUser: vue104.ComputedRef<IUser | null>;
|
|
199
|
+
userActivated: vue104.ComputedRef<boolean>;
|
|
200
|
+
isDefaultUser: vue104.ComputedRef<boolean>;
|
|
201
|
+
isInstanceOwner: vue104.ComputedRef<boolean>;
|
|
202
|
+
isAdmin: vue104.ComputedRef<boolean>;
|
|
203
|
+
isAdminOrOwner: vue104.ComputedRef<boolean>;
|
|
204
|
+
mfaEnabled: vue104.ComputedRef<boolean>;
|
|
205
|
+
globalRoleName: vue104.ComputedRef<string>;
|
|
206
|
+
userClaimedAiCredits: vue104.ComputedRef<boolean | undefined>;
|
|
207
|
+
isEasyAIWorkflowOnboardingDone: vue104.ComputedRef<boolean>;
|
|
208
|
+
canUserUpdateVersion: vue104.ComputedRef<boolean>;
|
|
209
|
+
usersLimitNotReached: vue104.ComputedRef<boolean>;
|
|
210
210
|
addUsers: (newUsers: User[]) => void;
|
|
211
211
|
loginWithCookie: () => Promise<void>;
|
|
212
212
|
initialize: () => Promise<void>;
|
|
@@ -369,22 +369,22 @@ declare const useUsersStore: pinia5.StoreDefinition<"users", Pick<{
|
|
|
369
369
|
}[];
|
|
370
370
|
}, [filter?: UsersListFilterDto | undefined], true>;
|
|
371
371
|
}, "allUsers" | "currentUser" | "userActivated" | "isDefaultUser" | "isInstanceOwner" | "isAdmin" | "isAdminOrOwner" | "mfaEnabled" | "globalRoleName" | "userClaimedAiCredits" | "isEasyAIWorkflowOnboardingDone" | "canUserUpdateVersion" | "usersLimitNotReached">, Pick<{
|
|
372
|
-
initialized:
|
|
373
|
-
currentUserId:
|
|
374
|
-
usersById:
|
|
375
|
-
allUsers:
|
|
376
|
-
currentUser:
|
|
377
|
-
userActivated:
|
|
378
|
-
isDefaultUser:
|
|
379
|
-
isInstanceOwner:
|
|
380
|
-
isAdmin:
|
|
381
|
-
isAdminOrOwner:
|
|
382
|
-
mfaEnabled:
|
|
383
|
-
globalRoleName:
|
|
384
|
-
userClaimedAiCredits:
|
|
385
|
-
isEasyAIWorkflowOnboardingDone:
|
|
386
|
-
canUserUpdateVersion:
|
|
387
|
-
usersLimitNotReached:
|
|
372
|
+
initialized: vue104.Ref<boolean, boolean>;
|
|
373
|
+
currentUserId: vue104.Ref<string | null, string | null>;
|
|
374
|
+
usersById: vue104.Ref<Record<string, IUser>, Record<string, IUser>>;
|
|
375
|
+
allUsers: vue104.ComputedRef<IUser[]>;
|
|
376
|
+
currentUser: vue104.ComputedRef<IUser | null>;
|
|
377
|
+
userActivated: vue104.ComputedRef<boolean>;
|
|
378
|
+
isDefaultUser: vue104.ComputedRef<boolean>;
|
|
379
|
+
isInstanceOwner: vue104.ComputedRef<boolean>;
|
|
380
|
+
isAdmin: vue104.ComputedRef<boolean>;
|
|
381
|
+
isAdminOrOwner: vue104.ComputedRef<boolean>;
|
|
382
|
+
mfaEnabled: vue104.ComputedRef<boolean>;
|
|
383
|
+
globalRoleName: vue104.ComputedRef<string>;
|
|
384
|
+
userClaimedAiCredits: vue104.ComputedRef<boolean | undefined>;
|
|
385
|
+
isEasyAIWorkflowOnboardingDone: vue104.ComputedRef<boolean>;
|
|
386
|
+
canUserUpdateVersion: vue104.ComputedRef<boolean>;
|
|
387
|
+
usersLimitNotReached: vue104.ComputedRef<boolean>;
|
|
388
388
|
addUsers: (newUsers: User[]) => void;
|
|
389
389
|
loginWithCookie: () => Promise<void>;
|
|
390
390
|
initialize: () => Promise<void>;
|
|
@@ -546,7 +546,7 @@ declare const useUsersStore: pinia5.StoreDefinition<"users", Pick<{
|
|
|
546
546
|
isManagedByEnv?: boolean | undefined;
|
|
547
547
|
}[];
|
|
548
548
|
}, [filter?: UsersListFilterDto | undefined], true>;
|
|
549
|
-
}, "initialize" | "generateInviteLink" | "addUsers" | "loginWithCookie" | "setPersonalizationAnswers" | "loginWithCreds" | "logout" | "registerLoginHook" | "registerLogoutHook" | "
|
|
549
|
+
}, "initialize" | "registerModalOpeners" | "generateInviteLink" | "addUsers" | "loginWithCookie" | "setPersonalizationAnswers" | "loginWithCreds" | "logout" | "registerLoginHook" | "registerLogoutHook" | "setPermissionsResolvers" | "createOwner" | "validateSignupToken" | "acceptInvitation" | "sendForgotPasswordEmail" | "validatePasswordToken" | "changePassword" | "updateUser" | "updateUserName" | "updateUserSettings" | "updateOtherUserSettings" | "updateCurrentUserPassword" | "deleteUser" | "fetchUsers" | "inviteUsers" | "reinviteUser" | "getUserPasswordResetLink" | "submitPersonalizationSurvey" | "showPersonalizationSurvey" | "fetchMfaQR" | "verifyMfaCode" | "enableMfa" | "disableMfa" | "updateEnforceMfa" | "canEnableMFA" | "sendConfirmationEmail" | "updateGlobalRole" | "setEasyAIWorkflowOnboardingDone" | "isCalloutDismissed" | "setCalloutDismissed" | "submitContactEmail" | "setUserQuota">>;
|
|
550
550
|
//#endregion
|
|
551
551
|
export { LoginHook, useUsersStore };
|
|
552
552
|
//# sourceMappingURL=users.store.d.cts.map
|