@truedat/core 4.42.5 → 4.43.1
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 +15 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.43.1",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
|
|
33
33
|
"@babel/preset-env": "^7.15.0",
|
|
34
34
|
"@babel/preset-react": "^7.14.5",
|
|
35
|
-
"@truedat/test": "4.
|
|
35
|
+
"@truedat/test": "4.43.1",
|
|
36
36
|
"babel-jest": "^27.0.6",
|
|
37
37
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
38
38
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"react-dom": ">= 16.8.6 < 17",
|
|
107
107
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "7ea6f37972e3a70706913ada33751b955313801f"
|
|
110
110
|
}
|
package/src/routes.js
CHANGED
|
@@ -57,9 +57,13 @@ export const GROUP_CREATE = "/groups/new";
|
|
|
57
57
|
export const GROUP_EDIT = "/groups/:id/edit";
|
|
58
58
|
export const IMPLEMENTATIONS = "/implementations";
|
|
59
59
|
export const IMPLEMENTATION_CONCEPT_LINKS =
|
|
60
|
-
"/rules/:id/implementations/:implementation_id/links";
|
|
60
|
+
"/rules/:id/implementations/:implementation_id/links/concepts";
|
|
61
61
|
export const IMPLEMENTATION_CONCEPT_LINKS_NEW =
|
|
62
|
-
"/rules/:id/implementations/:implementation_id/links/new";
|
|
62
|
+
"/rules/:id/implementations/:implementation_id/links/concepts/new";
|
|
63
|
+
export const IMPLEMENTATION_STRUCTURES =
|
|
64
|
+
"/rules/:id/implementations/:implementation_id/structures";
|
|
65
|
+
export const IMPLEMENTATION_STRUCTURES_NEW =
|
|
66
|
+
"/rules/:id/implementations/:implementation_id/structures/new";
|
|
63
67
|
export const INGEST = "/ingests/:id";
|
|
64
68
|
export const INGESTS = "/ingests";
|
|
65
69
|
export const INGESTS_NEW = "/ingests/new";
|
|
@@ -87,6 +91,7 @@ export const PROFILE_EXECUTION =
|
|
|
87
91
|
"/profileGroups/:group_id/profileExecutions/:id";
|
|
88
92
|
export const PROFILE_GROUP = "/profileGroups/:id";
|
|
89
93
|
export const QUALITY_DASHBOARD = "/quality_dashboard";
|
|
94
|
+
|
|
90
95
|
export const REMEDIATION_PLAN = "/rule_results/:rule_result_id/remediation";
|
|
91
96
|
export const REMEDIATION_EDIT =
|
|
92
97
|
"/rules/:id/implementations/:implementation_id/ruleResults/:rule_result_id/remediation/edit";
|
|
@@ -113,6 +118,10 @@ export const RULE_IMPLEMENTATION_MOVE =
|
|
|
113
118
|
"/rules/:id/implementations/:implementation_id/move";
|
|
114
119
|
export const RULE_IMPLEMENTATION_RESULT_DETAILS =
|
|
115
120
|
"/rules/:id/implementations/:implementation_id/results/:rule_result_id";
|
|
121
|
+
export const RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS =
|
|
122
|
+
"/rules/:id/implementations/:implementation_id/results/:rule_result_id/segment_results";
|
|
123
|
+
export const RULE_IMPLEMENTATION_RESULT_DETAILS_REMEDIATION_PLAN =
|
|
124
|
+
"/rules/:id/implementations/:implementation_id/results/:rule_result_id/remediation_plan";
|
|
116
125
|
export const RULE_IMPLEMENTATION_RESULTS =
|
|
117
126
|
"/rules/:id/implementations/:implementation_id/results";
|
|
118
127
|
export const RULE_IMPLEMENTATION_RESULTS_DETAILS =
|
|
@@ -259,9 +268,13 @@ const routes = {
|
|
|
259
268
|
RULE_IMPLEMENTATION_EVENTS,
|
|
260
269
|
IMPLEMENTATION_CONCEPT_LINKS,
|
|
261
270
|
IMPLEMENTATION_CONCEPT_LINKS_NEW,
|
|
271
|
+
IMPLEMENTATION_STRUCTURES,
|
|
272
|
+
IMPLEMENTATION_STRUCTURES_NEW,
|
|
262
273
|
RULE_IMPLEMENTATION_MOVE,
|
|
263
274
|
RULE_IMPLEMENTATION_NEW,
|
|
264
275
|
RULE_IMPLEMENTATION_RESULT_DETAILS,
|
|
276
|
+
RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS,
|
|
277
|
+
RULE_IMPLEMENTATION_RESULT_DETAILS_REMEDIATION_PLAN,
|
|
265
278
|
RULE_IMPLEMENTATION_RESULTS_DETAILS,
|
|
266
279
|
RULE_IMPLEMENTATION_RESULTS,
|
|
267
280
|
RULE_IMPLEMENTATION,
|