@n8n/stores 1.23.0 → 1.25.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/chunk-CUT6urMc.cjs +30 -0
- package/dist/constants-BbnUagQU.cjs +54 -0
- package/dist/constants-BbnUagQU.cjs.map +1 -0
- package/dist/constants-C9J2fW5t.d.ts +47 -0
- package/dist/constants-DuYkHX7y.js +48 -0
- package/dist/constants-DuYkHX7y.js.map +1 -0
- package/dist/constants-DwkrkpBX.d.cts +47 -0
- package/dist/constants.cjs +2 -6
- package/dist/constants.d.cts +2 -45
- package/dist/constants.d.ts +2 -45
- package/dist/constants.js +3 -7
- package/dist/index.cjs +2 -6
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -7
- package/dist/metaTagConfig-DEzM-BAY.cjs +49 -0
- package/dist/metaTagConfig-DEzM-BAY.cjs.map +1 -0
- package/dist/metaTagConfig-DwSO4X1O.js +37 -0
- package/dist/metaTagConfig-DwSO4X1O.js.map +1 -0
- package/dist/metaTagConfig.cjs +3 -8
- package/dist/metaTagConfig.d.cts +3 -1
- package/dist/metaTagConfig.d.ts +3 -1
- package/dist/metaTagConfig.js +3 -9
- package/dist/useAgentRequestStore.cjs +49 -57
- package/dist/useAgentRequestStore.cjs.map +1 -1
- package/dist/useAgentRequestStore.d.cts +34 -32
- package/dist/useAgentRequestStore.d.ts +34 -32
- package/dist/useAgentRequestStore.js +46 -57
- package/dist/useAgentRequestStore.js.map +1 -1
- package/dist/useRootStore.cjs +163 -169
- package/dist/useRootStore.cjs.map +1 -1
- package/dist/useRootStore.d.cts +159 -157
- package/dist/useRootStore.d.ts +159 -157
- package/dist/useRootStore.js +160 -170
- package/dist/useRootStore.js.map +1 -1
- package/package.json +8 -8
- package/dist/chunk-FWZLY65U.cjs +0 -49
- package/dist/chunk-FWZLY65U.cjs.map +0 -1
- package/dist/chunk-MFIRIEND.js +0 -40
- package/dist/chunk-MFIRIEND.js.map +0 -1
- package/dist/chunk-T5NQGFO6.js +0 -49
- package/dist/chunk-T5NQGFO6.js.map +0 -1
- package/dist/chunk-TI4WVUCB.cjs +0 -40
- package/dist/chunk-TI4WVUCB.cjs.map +0 -1
- package/dist/constants.cjs.map +0 -1
- package/dist/constants.js.map +0 -1
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/metaTagConfig.cjs.map +0 -1
- package/dist/metaTagConfig.js.map +0 -1
package/dist/useRootStore.d.ts
CHANGED
|
@@ -1,164 +1,166 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as pinia0 from "pinia";
|
|
2
|
+
import * as vue0 from "vue";
|
|
3
3
|
|
|
4
|
+
//#region src/useRootStore.d.ts
|
|
4
5
|
type RootStoreState = {
|
|
6
|
+
baseUrl: string;
|
|
7
|
+
restEndpoint: string;
|
|
8
|
+
defaultLocale: string;
|
|
9
|
+
endpointForm: string;
|
|
10
|
+
endpointFormTest: string;
|
|
11
|
+
endpointFormWaiting: string;
|
|
12
|
+
endpointMcp: string;
|
|
13
|
+
endpointMcpTest: string;
|
|
14
|
+
endpointWebhook: string;
|
|
15
|
+
endpointWebhookTest: string;
|
|
16
|
+
endpointWebhookWaiting: string;
|
|
17
|
+
timezone: string;
|
|
18
|
+
executionTimeout: number;
|
|
19
|
+
maxExecutionTimeout: number;
|
|
20
|
+
versionCli: string;
|
|
21
|
+
oauthCallbackUrls: object;
|
|
22
|
+
n8nMetadata: {
|
|
23
|
+
[key: string]: string | number | undefined;
|
|
24
|
+
};
|
|
25
|
+
pushRef: string;
|
|
26
|
+
urlBaseWebhook: string;
|
|
27
|
+
urlBaseEditor: string;
|
|
28
|
+
instanceId: string;
|
|
29
|
+
binaryDataMode: 'default' | 'filesystem' | 's3';
|
|
30
|
+
};
|
|
31
|
+
declare const useRootStore: pinia0.StoreDefinition<"root", Pick<{
|
|
32
|
+
baseUrl: vue0.ComputedRef<string>;
|
|
33
|
+
formUrl: vue0.ComputedRef<string>;
|
|
34
|
+
formTestUrl: vue0.ComputedRef<string>;
|
|
35
|
+
formWaitingUrl: vue0.ComputedRef<string>;
|
|
36
|
+
mcpUrl: vue0.ComputedRef<string>;
|
|
37
|
+
mcpTestUrl: vue0.ComputedRef<string>;
|
|
38
|
+
webhookUrl: vue0.ComputedRef<string>;
|
|
39
|
+
webhookTestUrl: vue0.ComputedRef<string>;
|
|
40
|
+
webhookWaitingUrl: vue0.ComputedRef<string>;
|
|
41
|
+
restUrl: vue0.ComputedRef<string>;
|
|
42
|
+
restApiContext: vue0.ComputedRef<{
|
|
5
43
|
baseUrl: string;
|
|
6
|
-
restEndpoint: string;
|
|
7
|
-
defaultLocale: string;
|
|
8
|
-
endpointForm: string;
|
|
9
|
-
endpointFormTest: string;
|
|
10
|
-
endpointFormWaiting: string;
|
|
11
|
-
endpointMcp: string;
|
|
12
|
-
endpointMcpTest: string;
|
|
13
|
-
endpointWebhook: string;
|
|
14
|
-
endpointWebhookTest: string;
|
|
15
|
-
endpointWebhookWaiting: string;
|
|
16
|
-
timezone: string;
|
|
17
|
-
executionTimeout: number;
|
|
18
|
-
maxExecutionTimeout: number;
|
|
19
|
-
versionCli: string;
|
|
20
|
-
oauthCallbackUrls: object;
|
|
21
|
-
n8nMetadata: {
|
|
22
|
-
[key: string]: string | number | undefined;
|
|
23
|
-
};
|
|
24
44
|
pushRef: string;
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
setUrlBaseWebhook: (value: string) => void;
|
|
56
|
-
setUrlBaseEditor: (value: string) => void;
|
|
57
|
-
setEndpointForm: (value: string) => void;
|
|
58
|
-
setEndpointFormTest: (value: string) => void;
|
|
59
|
-
setEndpointFormWaiting: (value: string) => void;
|
|
60
|
-
setEndpointWebhook: (value: string) => void;
|
|
61
|
-
setEndpointWebhookTest: (value: string) => void;
|
|
62
|
-
setEndpointWebhookWaiting: (value: string) => void;
|
|
63
|
-
setEndpointMcp: (value: string) => void;
|
|
64
|
-
setEndpointMcpTest: (value: string) => void;
|
|
65
|
-
setTimezone: (value: string) => void;
|
|
66
|
-
setExecutionTimeout: (value: number) => void;
|
|
67
|
-
setMaxExecutionTimeout: (value: number) => void;
|
|
68
|
-
setVersionCli: (value: string) => void;
|
|
69
|
-
setInstanceId: (value: string) => void;
|
|
70
|
-
setOauthCallbackUrls: (value: RootStoreState["oauthCallbackUrls"]) => void;
|
|
71
|
-
setN8nMetadata: (value: RootStoreState["n8nMetadata"]) => void;
|
|
72
|
-
setDefaultLocale: (value: string) => void;
|
|
73
|
-
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
45
|
+
}>;
|
|
46
|
+
urlBaseEditor: vue0.ComputedRef<string>;
|
|
47
|
+
versionCli: vue0.ComputedRef<string>;
|
|
48
|
+
instanceId: vue0.ComputedRef<string>;
|
|
49
|
+
pushRef: vue0.ComputedRef<string>;
|
|
50
|
+
defaultLocale: vue0.ComputedRef<string>;
|
|
51
|
+
binaryDataMode: vue0.ComputedRef<"default" | "filesystem" | "s3">;
|
|
52
|
+
OAuthCallbackUrls: vue0.ComputedRef<object>;
|
|
53
|
+
executionTimeout: vue0.ComputedRef<number>;
|
|
54
|
+
maxExecutionTimeout: vue0.ComputedRef<number>;
|
|
55
|
+
timezone: vue0.ComputedRef<string>;
|
|
56
|
+
setUrlBaseWebhook: (value: string) => void;
|
|
57
|
+
setUrlBaseEditor: (value: string) => void;
|
|
58
|
+
setEndpointForm: (value: string) => void;
|
|
59
|
+
setEndpointFormTest: (value: string) => void;
|
|
60
|
+
setEndpointFormWaiting: (value: string) => void;
|
|
61
|
+
setEndpointWebhook: (value: string) => void;
|
|
62
|
+
setEndpointWebhookTest: (value: string) => void;
|
|
63
|
+
setEndpointWebhookWaiting: (value: string) => void;
|
|
64
|
+
setEndpointMcp: (value: string) => void;
|
|
65
|
+
setEndpointMcpTest: (value: string) => void;
|
|
66
|
+
setTimezone: (value: string) => void;
|
|
67
|
+
setExecutionTimeout: (value: number) => void;
|
|
68
|
+
setMaxExecutionTimeout: (value: number) => void;
|
|
69
|
+
setVersionCli: (value: string) => void;
|
|
70
|
+
setInstanceId: (value: string) => void;
|
|
71
|
+
setOauthCallbackUrls: (value: RootStoreState["oauthCallbackUrls"]) => void;
|
|
72
|
+
setN8nMetadata: (value: RootStoreState["n8nMetadata"]) => void;
|
|
73
|
+
setDefaultLocale: (value: string) => void;
|
|
74
|
+
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
74
75
|
}, never>, Pick<{
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
76
|
+
baseUrl: vue0.ComputedRef<string>;
|
|
77
|
+
formUrl: vue0.ComputedRef<string>;
|
|
78
|
+
formTestUrl: vue0.ComputedRef<string>;
|
|
79
|
+
formWaitingUrl: vue0.ComputedRef<string>;
|
|
80
|
+
mcpUrl: vue0.ComputedRef<string>;
|
|
81
|
+
mcpTestUrl: vue0.ComputedRef<string>;
|
|
82
|
+
webhookUrl: vue0.ComputedRef<string>;
|
|
83
|
+
webhookTestUrl: vue0.ComputedRef<string>;
|
|
84
|
+
webhookWaitingUrl: vue0.ComputedRef<string>;
|
|
85
|
+
restUrl: vue0.ComputedRef<string>;
|
|
86
|
+
restApiContext: vue0.ComputedRef<{
|
|
87
|
+
baseUrl: string;
|
|
88
|
+
pushRef: string;
|
|
89
|
+
}>;
|
|
90
|
+
urlBaseEditor: vue0.ComputedRef<string>;
|
|
91
|
+
versionCli: vue0.ComputedRef<string>;
|
|
92
|
+
instanceId: vue0.ComputedRef<string>;
|
|
93
|
+
pushRef: vue0.ComputedRef<string>;
|
|
94
|
+
defaultLocale: vue0.ComputedRef<string>;
|
|
95
|
+
binaryDataMode: vue0.ComputedRef<"default" | "filesystem" | "s3">;
|
|
96
|
+
OAuthCallbackUrls: vue0.ComputedRef<object>;
|
|
97
|
+
executionTimeout: vue0.ComputedRef<number>;
|
|
98
|
+
maxExecutionTimeout: vue0.ComputedRef<number>;
|
|
99
|
+
timezone: vue0.ComputedRef<string>;
|
|
100
|
+
setUrlBaseWebhook: (value: string) => void;
|
|
101
|
+
setUrlBaseEditor: (value: string) => void;
|
|
102
|
+
setEndpointForm: (value: string) => void;
|
|
103
|
+
setEndpointFormTest: (value: string) => void;
|
|
104
|
+
setEndpointFormWaiting: (value: string) => void;
|
|
105
|
+
setEndpointWebhook: (value: string) => void;
|
|
106
|
+
setEndpointWebhookTest: (value: string) => void;
|
|
107
|
+
setEndpointWebhookWaiting: (value: string) => void;
|
|
108
|
+
setEndpointMcp: (value: string) => void;
|
|
109
|
+
setEndpointMcpTest: (value: string) => void;
|
|
110
|
+
setTimezone: (value: string) => void;
|
|
111
|
+
setExecutionTimeout: (value: number) => void;
|
|
112
|
+
setMaxExecutionTimeout: (value: number) => void;
|
|
113
|
+
setVersionCli: (value: string) => void;
|
|
114
|
+
setInstanceId: (value: string) => void;
|
|
115
|
+
setOauthCallbackUrls: (value: RootStoreState["oauthCallbackUrls"]) => void;
|
|
116
|
+
setN8nMetadata: (value: RootStoreState["n8nMetadata"]) => void;
|
|
117
|
+
setDefaultLocale: (value: string) => void;
|
|
118
|
+
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
118
119
|
}, "baseUrl" | "defaultLocale" | "timezone" | "executionTimeout" | "maxExecutionTimeout" | "versionCli" | "pushRef" | "urlBaseEditor" | "instanceId" | "binaryDataMode" | "formUrl" | "formTestUrl" | "formWaitingUrl" | "mcpUrl" | "mcpTestUrl" | "webhookUrl" | "webhookTestUrl" | "webhookWaitingUrl" | "restUrl" | "restApiContext" | "OAuthCallbackUrls">, Pick<{
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
120
|
+
baseUrl: vue0.ComputedRef<string>;
|
|
121
|
+
formUrl: vue0.ComputedRef<string>;
|
|
122
|
+
formTestUrl: vue0.ComputedRef<string>;
|
|
123
|
+
formWaitingUrl: vue0.ComputedRef<string>;
|
|
124
|
+
mcpUrl: vue0.ComputedRef<string>;
|
|
125
|
+
mcpTestUrl: vue0.ComputedRef<string>;
|
|
126
|
+
webhookUrl: vue0.ComputedRef<string>;
|
|
127
|
+
webhookTestUrl: vue0.ComputedRef<string>;
|
|
128
|
+
webhookWaitingUrl: vue0.ComputedRef<string>;
|
|
129
|
+
restUrl: vue0.ComputedRef<string>;
|
|
130
|
+
restApiContext: vue0.ComputedRef<{
|
|
131
|
+
baseUrl: string;
|
|
132
|
+
pushRef: string;
|
|
133
|
+
}>;
|
|
134
|
+
urlBaseEditor: vue0.ComputedRef<string>;
|
|
135
|
+
versionCli: vue0.ComputedRef<string>;
|
|
136
|
+
instanceId: vue0.ComputedRef<string>;
|
|
137
|
+
pushRef: vue0.ComputedRef<string>;
|
|
138
|
+
defaultLocale: vue0.ComputedRef<string>;
|
|
139
|
+
binaryDataMode: vue0.ComputedRef<"default" | "filesystem" | "s3">;
|
|
140
|
+
OAuthCallbackUrls: vue0.ComputedRef<object>;
|
|
141
|
+
executionTimeout: vue0.ComputedRef<number>;
|
|
142
|
+
maxExecutionTimeout: vue0.ComputedRef<number>;
|
|
143
|
+
timezone: vue0.ComputedRef<string>;
|
|
144
|
+
setUrlBaseWebhook: (value: string) => void;
|
|
145
|
+
setUrlBaseEditor: (value: string) => void;
|
|
146
|
+
setEndpointForm: (value: string) => void;
|
|
147
|
+
setEndpointFormTest: (value: string) => void;
|
|
148
|
+
setEndpointFormWaiting: (value: string) => void;
|
|
149
|
+
setEndpointWebhook: (value: string) => void;
|
|
150
|
+
setEndpointWebhookTest: (value: string) => void;
|
|
151
|
+
setEndpointWebhookWaiting: (value: string) => void;
|
|
152
|
+
setEndpointMcp: (value: string) => void;
|
|
153
|
+
setEndpointMcpTest: (value: string) => void;
|
|
154
|
+
setTimezone: (value: string) => void;
|
|
155
|
+
setExecutionTimeout: (value: number) => void;
|
|
156
|
+
setMaxExecutionTimeout: (value: number) => void;
|
|
157
|
+
setVersionCli: (value: string) => void;
|
|
158
|
+
setInstanceId: (value: string) => void;
|
|
159
|
+
setOauthCallbackUrls: (value: RootStoreState["oauthCallbackUrls"]) => void;
|
|
160
|
+
setN8nMetadata: (value: RootStoreState["n8nMetadata"]) => void;
|
|
161
|
+
setDefaultLocale: (value: string) => void;
|
|
162
|
+
setBinaryDataMode: (value: RootStoreState["binaryDataMode"]) => void;
|
|
162
163
|
}, "setUrlBaseWebhook" | "setUrlBaseEditor" | "setEndpointForm" | "setEndpointFormTest" | "setEndpointFormWaiting" | "setEndpointWebhook" | "setEndpointWebhookTest" | "setEndpointWebhookWaiting" | "setEndpointMcp" | "setEndpointMcpTest" | "setTimezone" | "setExecutionTimeout" | "setMaxExecutionTimeout" | "setVersionCli" | "setInstanceId" | "setOauthCallbackUrls" | "setN8nMetadata" | "setDefaultLocale" | "setBinaryDataMode">>;
|
|
163
|
-
|
|
164
|
-
export {
|
|
164
|
+
//#endregion
|
|
165
|
+
export { RootStoreState, useRootStore };
|
|
166
|
+
//# sourceMappingURL=useRootStore.d.ts.map
|