@trackunit/react-graphql-hooks 1.12.7 → 1.12.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-graphql-hooks",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.9",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@apollo/client": "3.13.8",
|
|
11
11
|
"react": "19.0.0",
|
|
12
|
-
"@trackunit/i18n-library-translation": "1.11.
|
|
13
|
-
"@trackunit/shared-utils": "1.13.
|
|
12
|
+
"@trackunit/i18n-library-translation": "1.11.8",
|
|
13
|
+
"@trackunit/shared-utils": "1.13.8",
|
|
14
14
|
"es-toolkit": "^1.39.10",
|
|
15
|
-
"@trackunit/react-components": "1.15.
|
|
15
|
+
"@trackunit/react-components": "1.15.9"
|
|
16
16
|
},
|
|
17
17
|
"module": "./index.esm.js",
|
|
18
18
|
"main": "./index.cjs.js",
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
* @returns {TEdge[]} A new array with the edges from the previous array and the new array, but only if the item's key is unique.
|
|
9
9
|
*/
|
|
10
10
|
export declare const unionEdgesByNodeKey: <TEdge extends {
|
|
11
|
-
node: { [
|
|
11
|
+
node: { [KeyNode in keyof TEdge["node"]]: unknown; };
|
|
12
12
|
}>(key: keyof TEdge["node"], previousEdges: Array<TEdge> | undefined | null, newEdges: Array<TEdge> | undefined | null) => Array<TEdge>;
|