@truedat/core 6.6.1 → 6.6.2
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 +3 -3
- package/src/routes.js +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "6.6.
|
|
3
|
+
"version": "6.6.2",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/react-hooks": "^8.0.1",
|
|
38
38
|
"@testing-library/user-event": "^13.2.1",
|
|
39
|
-
"@truedat/test": "6.6.
|
|
39
|
+
"@truedat/test": "6.6.2",
|
|
40
40
|
"babel-jest": "^28.1.0",
|
|
41
41
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
42
42
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -118,5 +118,5 @@
|
|
|
118
118
|
"react-dom": ">= 16.8.6 < 17",
|
|
119
119
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
120
120
|
},
|
|
121
|
-
"gitHead": "
|
|
121
|
+
"gitHead": "b5defab13b213876e57046dc7d9885c6adc4a64d"
|
|
122
122
|
}
|
package/src/routes.js
CHANGED
|
@@ -69,6 +69,7 @@ export const GRANT_REQUEST = "/grantRequests/:id";
|
|
|
69
69
|
export const GRANT_REQUESTS = "/grantRequests";
|
|
70
70
|
export const GRANT_REQUESTS_APPROVALS_RESULT =
|
|
71
71
|
"/grantRequests/approvals/result";
|
|
72
|
+
export const GRANT_REQUEST_GROUP = "/grantRequestGroups/:id";
|
|
72
73
|
export const GRAPH = "/graphs/:id";
|
|
73
74
|
export const GRAPHS = "/graphs";
|
|
74
75
|
export const GROUP = "/groups/:id";
|
|
@@ -309,6 +310,7 @@ const routes = {
|
|
|
309
310
|
GRANT_REQUEST,
|
|
310
311
|
GRANT_REQUESTS,
|
|
311
312
|
GRANT_REQUESTS_APPROVALS_RESULT,
|
|
313
|
+
GRANT_REQUEST_GROUP,
|
|
312
314
|
GRAPH,
|
|
313
315
|
GRAPHS,
|
|
314
316
|
GROUP,
|