@txo/service-graphql-react 2.5.11 → 2.5.13
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/CHANGELOG.md +14 -0
- package/lib/Api/ErrorMapHelper.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.5.13](https://github.com/technology-studio/service-graphql-react/compare/v2.5.12...v2.5.13) (2024-04-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @txo/service-graphql to ^4.4.5 ([4490dce](https://github.com/technology-studio/service-graphql-react/commit/4490dcef6e5ddc7e0f3a122a110bccdca5e39115))
|
|
7
|
+
|
|
8
|
+
## [2.5.12](https://github.com/technology-studio/service-graphql-react/compare/v2.5.11...v2.5.12) (2024-04-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update dependency type-fest to ^4.15.0 ([39f4cd0](https://github.com/technology-studio/service-graphql-react/commit/39f4cd092d565d4dfce5d8d44fb1ef78e243e74e))
|
|
14
|
+
|
|
1
15
|
## [2.5.11](https://github.com/technology-studio/service-graphql-react/compare/v2.5.10...v2.5.11) (2024-04-02)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -7,4 +7,4 @@ import type { ServiceError } from '@txo/service-prop';
|
|
|
7
7
|
import type { ErrorMap, ErrorMapper } from '../Model/Types';
|
|
8
8
|
export declare const ignoreError: () => ErrorMapper;
|
|
9
9
|
export declare const validationError: (message?: string) => ErrorMapper;
|
|
10
|
-
export declare const applyErrorMap: (serviceErrorList: ServiceError[], errorMap: ErrorMap, onFieldErrors?: (
|
|
10
|
+
export declare const applyErrorMap: (serviceErrorList: ServiceError[], errorMap: ErrorMap, onFieldErrors?: (fieldErrors: Record<string, Record<string, string>>) => void) => ServiceError[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@txo/service-graphql-react",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.13",
|
|
4
4
|
"description": "Technology Studio - Service graphql react",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@txo/hooks-react": "^2.3.20",
|
|
41
|
-
"@txo/service-graphql": "^4.4.
|
|
41
|
+
"@txo/service-graphql": "^4.4.5",
|
|
42
42
|
"@txo/service-prop": "^2.2.16",
|
|
43
43
|
"@txo/types": "^1.7.0",
|
|
44
44
|
"lodash.get": "^4.4.2",
|
|
45
45
|
"lodash.set": "^4.3.2",
|
|
46
|
-
"type-fest": "^4.
|
|
46
|
+
"type-fest": "^4.15.0"
|
|
47
47
|
},
|
|
48
48
|
"peerDependencies": {
|
|
49
49
|
"@apollo/client": "^3.9.10",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@apollo/client": "^3.9.10",
|
|
56
|
-
"@txo-peer-dep/log": "^4.0.
|
|
56
|
+
"@txo-peer-dep/log": "^4.0.4",
|
|
57
57
|
"@txo-peer-dep/service-error-handler-react": "^1.2.26",
|
|
58
58
|
"@txo-peer-dep/service-graphql": "^3.3.2",
|
|
59
59
|
"@txo/commitlint": "^1.0.14",
|
|
@@ -64,9 +64,9 @@
|
|
|
64
64
|
"@types/lodash.get": "^4.4.9",
|
|
65
65
|
"@types/lodash.set": "^4.3.9",
|
|
66
66
|
"@types/node-fetch": "^2.6.11",
|
|
67
|
-
"@types/react": "^18.2.
|
|
67
|
+
"@types/react": "^18.2.75",
|
|
68
68
|
"concurrently": "^8.2.2",
|
|
69
|
-
"eslint-config-txo-typescript-react": "^2.0.
|
|
69
|
+
"eslint-config-txo-typescript-react": "^2.0.51",
|
|
70
70
|
"graphql": "^16.8.1",
|
|
71
71
|
"husky": "^8.0.3",
|
|
72
72
|
"jest": "^29.7.0",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"redux-saga": "^1.3.0",
|
|
77
77
|
"rimraf": "^5.0.5",
|
|
78
78
|
"ts-jest": "^29.1.2",
|
|
79
|
-
"typescript": "^5.4.
|
|
79
|
+
"typescript": "^5.4.4"
|
|
80
80
|
}
|
|
81
81
|
}
|