@truedat/core 4.46.6 → 4.46.7
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 +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.46.
|
|
3
|
+
"version": "4.46.7",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@testing-library/jest-dom": "^5.16.4",
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "4.46.
|
|
38
|
+
"@truedat/test": "4.46.7",
|
|
39
39
|
"babel-jest": "^28.1.0",
|
|
40
40
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
41
41
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"react-dom": ">= 16.8.6 < 17",
|
|
113
113
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
114
114
|
},
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "2b1c3f0fcf94a7b510f171c06cfb2e1550a14166"
|
|
116
116
|
}
|
package/src/routes.js
CHANGED
|
@@ -71,6 +71,8 @@ export const IMPLEMENTATION_EVENTS =
|
|
|
71
71
|
export const IMPLEMENTATION_EDIT = "/implementations/:implementation_id/edit";
|
|
72
72
|
export const IMPLEMENTATION_CLONE = "/implementations/:implementation_id/clone";
|
|
73
73
|
export const IMPLEMENTATION_MOVE = "/implementations/:implementation_id/move";
|
|
74
|
+
export const IMPLEMENTATION_HISTORY =
|
|
75
|
+
"/implementations/:implementation_id/history";
|
|
74
76
|
export const IMPLEMENTATION_RESULT_DETAILS =
|
|
75
77
|
"/implementations/:implementation_id/results/:rule_result_id";
|
|
76
78
|
export const IMPLEMENTATION_RESULT_SEGMENTS_RESULTS =
|
|
@@ -242,6 +244,7 @@ const routes = {
|
|
|
242
244
|
IMPLEMENTATION_CONCEPT_LINKS_NEW,
|
|
243
245
|
IMPLEMENTATION_EDIT,
|
|
244
246
|
IMPLEMENTATION_EVENTS,
|
|
247
|
+
IMPLEMENTATION_HISTORY,
|
|
245
248
|
IMPLEMENTATION_MOVE,
|
|
246
249
|
IMPLEMENTATION_NEW,
|
|
247
250
|
IMPLEMENTATION_NEW_RAW,
|