@n8n/stores 2.32.0 → 2.32.1
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as pinia1 from "pinia";
|
|
2
2
|
import * as _vueuse_core0 from "@vueuse/core";
|
|
3
3
|
import { AgentRequestQuery } from "n8n-workflow";
|
|
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;
|
package/dist/useRootStore.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vue14 from "vue";
|
|
2
|
-
import * as
|
|
2
|
+
import * as pinia0 from "pinia";
|
|
3
3
|
|
|
4
4
|
//#region src/useRootStore.d.ts
|
|
5
5
|
type RootStoreState = {
|
|
@@ -30,7 +30,7 @@ type RootStoreState = {
|
|
|
30
30
|
instanceId: string;
|
|
31
31
|
binaryDataMode: 'default' | 'filesystem' | 's3' | 'azure' | 'database';
|
|
32
32
|
};
|
|
33
|
-
declare const useRootStore:
|
|
33
|
+
declare const useRootStore: pinia0.StoreDefinition<"root", Pick<{
|
|
34
34
|
baseUrl: vue14.ComputedRef<string>;
|
|
35
35
|
formUrl: vue14.ComputedRef<string>;
|
|
36
36
|
formTestUrl: vue14.ComputedRef<string>;
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@n8n/stores",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.32.
|
|
4
|
+
"version": "2.32.1",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
|
-
"
|
|
8
|
-
"
|
|
7
|
+
"LICENSE.md",
|
|
8
|
+
"LICENSE_EE.md"
|
|
9
9
|
],
|
|
10
10
|
"main": "dist/index.cjs",
|
|
11
11
|
"module": "dist/index.mjs",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"pinia": "^2.2.4",
|
|
28
28
|
"vue": "^3.5.13",
|
|
29
29
|
"@n8n/permissions": "0.69.0",
|
|
30
|
-
"n8n-workflow": "2.32.
|
|
31
|
-
"@n8n/api-types": "1.32.
|
|
30
|
+
"n8n-workflow": "2.32.1",
|
|
31
|
+
"@n8n/api-types": "1.32.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"vue-tsc": "^2.2.8",
|
|
45
45
|
"@n8n/eslint-config": "0.0.1",
|
|
46
46
|
"@n8n/playwright-janitor": "0.1.0",
|
|
47
|
-
"@n8n/
|
|
48
|
-
"@n8n/
|
|
47
|
+
"@n8n/vitest-config": "1.19.0",
|
|
48
|
+
"@n8n/typescript-config": "1.9.0"
|
|
49
49
|
},
|
|
50
50
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
51
51
|
"homepage": "https://n8n.io",
|