@fctc/interface-logic 2.8.8 → 2.8.9
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/configs.js +2 -2
- package/dist/configs.mjs +2 -2
- package/dist/environment.js +2 -2
- package/dist/environment.mjs +2 -2
- package/dist/hooks.js +2 -2
- package/dist/hooks.mjs +2 -2
- package/dist/provider.js +2 -2
- package/dist/provider.mjs +2 -2
- package/dist/services.js +2 -2
- package/dist/services.mjs +2 -2
- package/dist/utils.js +2 -2
- package/dist/utils.mjs +2 -2
- package/package.json +90 -90
package/dist/configs.js
CHANGED
|
@@ -1711,7 +1711,7 @@ function evaluate(ast, context = {}) {
|
|
|
1711
1711
|
return ast2.value;
|
|
1712
1712
|
case 5:
|
|
1713
1713
|
if (ast2.value in evalContext) {
|
|
1714
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1714
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1715
1715
|
return evalContext[ast2.value]?.id;
|
|
1716
1716
|
}
|
|
1717
1717
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1782,7 +1782,7 @@ function evaluate(ast, context = {}) {
|
|
|
1782
1782
|
} else if (typeof leftVal === "number") {
|
|
1783
1783
|
result = leftVal;
|
|
1784
1784
|
} else {
|
|
1785
|
-
result = leftVal[ast2.key];
|
|
1785
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1786
1786
|
}
|
|
1787
1787
|
if (typeof result === "function") {
|
|
1788
1788
|
const bound = result.bind(leftVal);
|
package/dist/configs.mjs
CHANGED
|
@@ -1675,7 +1675,7 @@ function evaluate(ast, context = {}) {
|
|
|
1675
1675
|
return ast2.value;
|
|
1676
1676
|
case 5:
|
|
1677
1677
|
if (ast2.value in evalContext) {
|
|
1678
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1678
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1679
1679
|
return evalContext[ast2.value]?.id;
|
|
1680
1680
|
}
|
|
1681
1681
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1746,7 +1746,7 @@ function evaluate(ast, context = {}) {
|
|
|
1746
1746
|
} else if (typeof leftVal === "number") {
|
|
1747
1747
|
result = leftVal;
|
|
1748
1748
|
} else {
|
|
1749
|
-
result = leftVal[ast2.key];
|
|
1749
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1750
1750
|
}
|
|
1751
1751
|
if (typeof result === "function") {
|
|
1752
1752
|
const bound = result.bind(leftVal);
|
package/dist/environment.js
CHANGED
|
@@ -1713,7 +1713,7 @@ function evaluate(ast, context = {}) {
|
|
|
1713
1713
|
return ast2.value;
|
|
1714
1714
|
case 5:
|
|
1715
1715
|
if (ast2.value in evalContext) {
|
|
1716
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1716
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1717
1717
|
return evalContext[ast2.value]?.id;
|
|
1718
1718
|
}
|
|
1719
1719
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1784,7 +1784,7 @@ function evaluate(ast, context = {}) {
|
|
|
1784
1784
|
} else if (typeof leftVal === "number") {
|
|
1785
1785
|
result = leftVal;
|
|
1786
1786
|
} else {
|
|
1787
|
-
result = leftVal[ast2.key];
|
|
1787
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1788
1788
|
}
|
|
1789
1789
|
if (typeof result === "function") {
|
|
1790
1790
|
const bound = result.bind(leftVal);
|
package/dist/environment.mjs
CHANGED
|
@@ -1675,7 +1675,7 @@ function evaluate(ast, context = {}) {
|
|
|
1675
1675
|
return ast2.value;
|
|
1676
1676
|
case 5:
|
|
1677
1677
|
if (ast2.value in evalContext) {
|
|
1678
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1678
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1679
1679
|
return evalContext[ast2.value]?.id;
|
|
1680
1680
|
}
|
|
1681
1681
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1746,7 +1746,7 @@ function evaluate(ast, context = {}) {
|
|
|
1746
1746
|
} else if (typeof leftVal === "number") {
|
|
1747
1747
|
result = leftVal;
|
|
1748
1748
|
} else {
|
|
1749
|
-
result = leftVal[ast2.key];
|
|
1749
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1750
1750
|
}
|
|
1751
1751
|
if (typeof result === "function") {
|
|
1752
1752
|
const bound = result.bind(leftVal);
|
package/dist/hooks.js
CHANGED
|
@@ -1839,7 +1839,7 @@ function evaluate(ast, context = {}) {
|
|
|
1839
1839
|
return ast2.value;
|
|
1840
1840
|
case 5:
|
|
1841
1841
|
if (ast2.value in evalContext) {
|
|
1842
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1842
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1843
1843
|
return evalContext[ast2.value]?.id;
|
|
1844
1844
|
}
|
|
1845
1845
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1910,7 +1910,7 @@ function evaluate(ast, context = {}) {
|
|
|
1910
1910
|
} else if (typeof leftVal === "number") {
|
|
1911
1911
|
result = leftVal;
|
|
1912
1912
|
} else {
|
|
1913
|
-
result = leftVal[ast2.key];
|
|
1913
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1914
1914
|
}
|
|
1915
1915
|
if (typeof result === "function") {
|
|
1916
1916
|
const bound = result.bind(leftVal);
|
package/dist/hooks.mjs
CHANGED
|
@@ -1719,7 +1719,7 @@ function evaluate(ast, context = {}) {
|
|
|
1719
1719
|
return ast2.value;
|
|
1720
1720
|
case 5:
|
|
1721
1721
|
if (ast2.value in evalContext) {
|
|
1722
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1722
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1723
1723
|
return evalContext[ast2.value]?.id;
|
|
1724
1724
|
}
|
|
1725
1725
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1790,7 +1790,7 @@ function evaluate(ast, context = {}) {
|
|
|
1790
1790
|
} else if (typeof leftVal === "number") {
|
|
1791
1791
|
result = leftVal;
|
|
1792
1792
|
} else {
|
|
1793
|
-
result = leftVal[ast2.key];
|
|
1793
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1794
1794
|
}
|
|
1795
1795
|
if (typeof result === "function") {
|
|
1796
1796
|
const bound = result.bind(leftVal);
|
package/dist/provider.js
CHANGED
|
@@ -2412,7 +2412,7 @@ function evaluate(ast, context = {}) {
|
|
|
2412
2412
|
return ast2.value;
|
|
2413
2413
|
case 5:
|
|
2414
2414
|
if (ast2.value in evalContext) {
|
|
2415
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
2415
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
2416
2416
|
return evalContext[ast2.value]?.id;
|
|
2417
2417
|
}
|
|
2418
2418
|
return evalContext[ast2.value] ?? false;
|
|
@@ -2483,7 +2483,7 @@ function evaluate(ast, context = {}) {
|
|
|
2483
2483
|
} else if (typeof leftVal === "number") {
|
|
2484
2484
|
result = leftVal;
|
|
2485
2485
|
} else {
|
|
2486
|
-
result = leftVal[ast2.key];
|
|
2486
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
2487
2487
|
}
|
|
2488
2488
|
if (typeof result === "function") {
|
|
2489
2489
|
const bound = result.bind(leftVal);
|
package/dist/provider.mjs
CHANGED
|
@@ -2369,7 +2369,7 @@ function evaluate(ast, context = {}) {
|
|
|
2369
2369
|
return ast2.value;
|
|
2370
2370
|
case 5:
|
|
2371
2371
|
if (ast2.value in evalContext) {
|
|
2372
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
2372
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
2373
2373
|
return evalContext[ast2.value]?.id;
|
|
2374
2374
|
}
|
|
2375
2375
|
return evalContext[ast2.value] ?? false;
|
|
@@ -2440,7 +2440,7 @@ function evaluate(ast, context = {}) {
|
|
|
2440
2440
|
} else if (typeof leftVal === "number") {
|
|
2441
2441
|
result = leftVal;
|
|
2442
2442
|
} else {
|
|
2443
|
-
result = leftVal[ast2.key];
|
|
2443
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
2444
2444
|
}
|
|
2445
2445
|
if (typeof result === "function") {
|
|
2446
2446
|
const bound = result.bind(leftVal);
|
package/dist/services.js
CHANGED
|
@@ -1753,7 +1753,7 @@ function evaluate(ast, context = {}) {
|
|
|
1753
1753
|
return ast2.value;
|
|
1754
1754
|
case 5:
|
|
1755
1755
|
if (ast2.value in evalContext) {
|
|
1756
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1756
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1757
1757
|
return evalContext[ast2.value]?.id;
|
|
1758
1758
|
}
|
|
1759
1759
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1824,7 +1824,7 @@ function evaluate(ast, context = {}) {
|
|
|
1824
1824
|
} else if (typeof leftVal === "number") {
|
|
1825
1825
|
result = leftVal;
|
|
1826
1826
|
} else {
|
|
1827
|
-
result = leftVal[ast2.key];
|
|
1827
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1828
1828
|
}
|
|
1829
1829
|
if (typeof result === "function") {
|
|
1830
1830
|
const bound = result.bind(leftVal);
|
package/dist/services.mjs
CHANGED
|
@@ -1709,7 +1709,7 @@ function evaluate(ast, context = {}) {
|
|
|
1709
1709
|
return ast2.value;
|
|
1710
1710
|
case 5:
|
|
1711
1711
|
if (ast2.value in evalContext) {
|
|
1712
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1712
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1713
1713
|
return evalContext[ast2.value]?.id;
|
|
1714
1714
|
}
|
|
1715
1715
|
return evalContext[ast2.value] ?? false;
|
|
@@ -1780,7 +1780,7 @@ function evaluate(ast, context = {}) {
|
|
|
1780
1780
|
} else if (typeof leftVal === "number") {
|
|
1781
1781
|
result = leftVal;
|
|
1782
1782
|
} else {
|
|
1783
|
-
result = leftVal[ast2.key];
|
|
1783
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
1784
1784
|
}
|
|
1785
1785
|
if (typeof result === "function") {
|
|
1786
1786
|
const bound = result.bind(leftVal);
|
package/dist/utils.js
CHANGED
|
@@ -2045,7 +2045,7 @@ function evaluate(ast, context = {}) {
|
|
|
2045
2045
|
return ast2.value;
|
|
2046
2046
|
case 5:
|
|
2047
2047
|
if (ast2.value in evalContext) {
|
|
2048
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
2048
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
2049
2049
|
return evalContext[ast2.value]?.id;
|
|
2050
2050
|
}
|
|
2051
2051
|
return evalContext[ast2.value] ?? false;
|
|
@@ -2116,7 +2116,7 @@ function evaluate(ast, context = {}) {
|
|
|
2116
2116
|
} else if (typeof leftVal === "number") {
|
|
2117
2117
|
result = leftVal;
|
|
2118
2118
|
} else {
|
|
2119
|
-
result = leftVal[ast2.key];
|
|
2119
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
2120
2120
|
}
|
|
2121
2121
|
if (typeof result === "function") {
|
|
2122
2122
|
const bound = result.bind(leftVal);
|
package/dist/utils.mjs
CHANGED
|
@@ -1980,7 +1980,7 @@ function evaluate(ast, context = {}) {
|
|
|
1980
1980
|
return ast2.value;
|
|
1981
1981
|
case 5:
|
|
1982
1982
|
if (ast2.value in evalContext) {
|
|
1983
|
-
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id) {
|
|
1983
|
+
if (typeof evalContext[ast2.value] === "object" && evalContext[ast2.value]?.id && ast2?.value !== "parent") {
|
|
1984
1984
|
return evalContext[ast2.value]?.id;
|
|
1985
1985
|
}
|
|
1986
1986
|
return evalContext[ast2.value] ?? false;
|
|
@@ -2051,7 +2051,7 @@ function evaluate(ast, context = {}) {
|
|
|
2051
2051
|
} else if (typeof leftVal === "number") {
|
|
2052
2052
|
result = leftVal;
|
|
2053
2053
|
} else {
|
|
2054
|
-
result = leftVal[ast2.key];
|
|
2054
|
+
result = leftVal[ast2.key]?.id ?? leftVal[ast2.key];
|
|
2055
2055
|
}
|
|
2056
2056
|
if (typeof result === "function") {
|
|
2057
2057
|
const bound = result.bind(leftVal);
|
package/package.json
CHANGED
|
@@ -1,90 +1,90 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@fctc/interface-logic",
|
|
3
|
-
"version": "2.8.
|
|
4
|
-
"types": "dist/index.d.ts",
|
|
5
|
-
"main": "dist/index.cjs",
|
|
6
|
-
"module": "dist/index.mjs",
|
|
7
|
-
"exports": {
|
|
8
|
-
".": {
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.mjs",
|
|
11
|
-
"require": "./dist/index.cjs"
|
|
12
|
-
},
|
|
13
|
-
"./configs": {
|
|
14
|
-
"types": "./dist/configs.d.ts",
|
|
15
|
-
"import": "./dist/configs.mjs",
|
|
16
|
-
"require": "./dist/configs.cjs"
|
|
17
|
-
},
|
|
18
|
-
"./constants": {
|
|
19
|
-
"types": "./dist/constants.d.ts",
|
|
20
|
-
"import": "./dist/constants.mjs",
|
|
21
|
-
"require": "./dist/constants.cjs"
|
|
22
|
-
},
|
|
23
|
-
"./environment": {
|
|
24
|
-
"types": "./dist/environment.d.ts",
|
|
25
|
-
"import": "./dist/environment.mjs",
|
|
26
|
-
"require": "./dist/environment.cjs"
|
|
27
|
-
},
|
|
28
|
-
"./hooks": {
|
|
29
|
-
"types": "./dist/hooks.d.ts",
|
|
30
|
-
"import": "./dist/hooks.mjs",
|
|
31
|
-
"require": "./dist/hooks.cjs"
|
|
32
|
-
},
|
|
33
|
-
"./provider": {
|
|
34
|
-
"types": "./dist/provider.d.ts",
|
|
35
|
-
"import": "./dist/provider.mjs",
|
|
36
|
-
"require": "./dist/provider.cjs"
|
|
37
|
-
},
|
|
38
|
-
"./services": {
|
|
39
|
-
"types": "./dist/services.d.ts",
|
|
40
|
-
"import": "./dist/services.mjs",
|
|
41
|
-
"require": "./dist/services.cjs"
|
|
42
|
-
},
|
|
43
|
-
"./store": {
|
|
44
|
-
"types": "./dist/store.d.ts",
|
|
45
|
-
"import": "./dist/store.mjs",
|
|
46
|
-
"require": "./dist/store.cjs"
|
|
47
|
-
},
|
|
48
|
-
"./utils": {
|
|
49
|
-
"types": "./dist/utils.d.ts",
|
|
50
|
-
"import": "./dist/utils.mjs",
|
|
51
|
-
"require": "./dist/utils.cjs"
|
|
52
|
-
},
|
|
53
|
-
"./types": {
|
|
54
|
-
"types": "./dist/types.d.ts",
|
|
55
|
-
"import": "./dist/types.mjs",
|
|
56
|
-
"require": "./dist/types.cjs"
|
|
57
|
-
},
|
|
58
|
-
"./models": {
|
|
59
|
-
"types": "./dist/models.d.ts",
|
|
60
|
-
"import": "./dist/models.mjs",
|
|
61
|
-
"require": "./dist/models.cjs"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"files": [
|
|
65
|
-
"dist"
|
|
66
|
-
],
|
|
67
|
-
"scripts": {
|
|
68
|
-
"build": "tsup",
|
|
69
|
-
"test": "jest"
|
|
70
|
-
},
|
|
71
|
-
"peerDependencies": {
|
|
72
|
-
"react": "18.0.0",
|
|
73
|
-
"@tanstack/react-query": "^5.83.0"
|
|
74
|
-
},
|
|
75
|
-
"dependencies": {
|
|
76
|
-
"@reduxjs/toolkit": "^2.8.2",
|
|
77
|
-
"@tanstack/react-query": "^5.83.0",
|
|
78
|
-
"axios": "^1.11.0",
|
|
79
|
-
"moment": "^2.30.1",
|
|
80
|
-
"react-redux": "^9.2.0"
|
|
81
|
-
},
|
|
82
|
-
"devDependencies": {
|
|
83
|
-
"@types/react": "^18.3.1",
|
|
84
|
-
"react": "18.0.0",
|
|
85
|
-
"jest": "^29.7.0",
|
|
86
|
-
"tsup": "^8.0.0",
|
|
87
|
-
"typescript": "^5.8.2"
|
|
88
|
-
},
|
|
89
|
-
"packageManager": "yarn@1.22.0"
|
|
90
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@fctc/interface-logic",
|
|
3
|
+
"version": "2.8.9",
|
|
4
|
+
"types": "dist/index.d.ts",
|
|
5
|
+
"main": "dist/index.cjs",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.mjs",
|
|
11
|
+
"require": "./dist/index.cjs"
|
|
12
|
+
},
|
|
13
|
+
"./configs": {
|
|
14
|
+
"types": "./dist/configs.d.ts",
|
|
15
|
+
"import": "./dist/configs.mjs",
|
|
16
|
+
"require": "./dist/configs.cjs"
|
|
17
|
+
},
|
|
18
|
+
"./constants": {
|
|
19
|
+
"types": "./dist/constants.d.ts",
|
|
20
|
+
"import": "./dist/constants.mjs",
|
|
21
|
+
"require": "./dist/constants.cjs"
|
|
22
|
+
},
|
|
23
|
+
"./environment": {
|
|
24
|
+
"types": "./dist/environment.d.ts",
|
|
25
|
+
"import": "./dist/environment.mjs",
|
|
26
|
+
"require": "./dist/environment.cjs"
|
|
27
|
+
},
|
|
28
|
+
"./hooks": {
|
|
29
|
+
"types": "./dist/hooks.d.ts",
|
|
30
|
+
"import": "./dist/hooks.mjs",
|
|
31
|
+
"require": "./dist/hooks.cjs"
|
|
32
|
+
},
|
|
33
|
+
"./provider": {
|
|
34
|
+
"types": "./dist/provider.d.ts",
|
|
35
|
+
"import": "./dist/provider.mjs",
|
|
36
|
+
"require": "./dist/provider.cjs"
|
|
37
|
+
},
|
|
38
|
+
"./services": {
|
|
39
|
+
"types": "./dist/services.d.ts",
|
|
40
|
+
"import": "./dist/services.mjs",
|
|
41
|
+
"require": "./dist/services.cjs"
|
|
42
|
+
},
|
|
43
|
+
"./store": {
|
|
44
|
+
"types": "./dist/store.d.ts",
|
|
45
|
+
"import": "./dist/store.mjs",
|
|
46
|
+
"require": "./dist/store.cjs"
|
|
47
|
+
},
|
|
48
|
+
"./utils": {
|
|
49
|
+
"types": "./dist/utils.d.ts",
|
|
50
|
+
"import": "./dist/utils.mjs",
|
|
51
|
+
"require": "./dist/utils.cjs"
|
|
52
|
+
},
|
|
53
|
+
"./types": {
|
|
54
|
+
"types": "./dist/types.d.ts",
|
|
55
|
+
"import": "./dist/types.mjs",
|
|
56
|
+
"require": "./dist/types.cjs"
|
|
57
|
+
},
|
|
58
|
+
"./models": {
|
|
59
|
+
"types": "./dist/models.d.ts",
|
|
60
|
+
"import": "./dist/models.mjs",
|
|
61
|
+
"require": "./dist/models.cjs"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"files": [
|
|
65
|
+
"dist"
|
|
66
|
+
],
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsup",
|
|
69
|
+
"test": "jest"
|
|
70
|
+
},
|
|
71
|
+
"peerDependencies": {
|
|
72
|
+
"react": "18.0.0",
|
|
73
|
+
"@tanstack/react-query": "^5.83.0"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"@reduxjs/toolkit": "^2.8.2",
|
|
77
|
+
"@tanstack/react-query": "^5.83.0",
|
|
78
|
+
"axios": "^1.11.0",
|
|
79
|
+
"moment": "^2.30.1",
|
|
80
|
+
"react-redux": "^9.2.0"
|
|
81
|
+
},
|
|
82
|
+
"devDependencies": {
|
|
83
|
+
"@types/react": "^18.3.1",
|
|
84
|
+
"react": "18.0.0",
|
|
85
|
+
"jest": "^29.7.0",
|
|
86
|
+
"tsup": "^8.0.0",
|
|
87
|
+
"typescript": "^5.8.2"
|
|
88
|
+
},
|
|
89
|
+
"packageManager": "yarn@1.22.0"
|
|
90
|
+
}
|