@truedat/core 4.43.0 → 4.43.3
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 +1 -1
- package/package.json +3 -3
- package/src/routes.js +7 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.43.
|
|
3
|
+
"version": "4.43.3",
|
|
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.43.
|
|
35
|
+
"@truedat/test": "4.43.3",
|
|
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": "072eb5d04ec38033c17e030c365502484815a96b"
|
|
110
110
|
}
|
package/src/routes.js
CHANGED
|
@@ -91,6 +91,7 @@ export const PROFILE_EXECUTION =
|
|
|
91
91
|
"/profileGroups/:group_id/profileExecutions/:id";
|
|
92
92
|
export const PROFILE_GROUP = "/profileGroups/:id";
|
|
93
93
|
export const QUALITY_DASHBOARD = "/quality_dashboard";
|
|
94
|
+
|
|
94
95
|
export const REMEDIATION_PLAN = "/rule_results/:rule_result_id/remediation";
|
|
95
96
|
export const REMEDIATION_EDIT =
|
|
96
97
|
"/rules/:id/implementations/:implementation_id/ruleResults/:rule_result_id/remediation/edit";
|
|
@@ -117,6 +118,10 @@ export const RULE_IMPLEMENTATION_MOVE =
|
|
|
117
118
|
"/rules/:id/implementations/:implementation_id/move";
|
|
118
119
|
export const RULE_IMPLEMENTATION_RESULT_DETAILS =
|
|
119
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";
|
|
120
125
|
export const RULE_IMPLEMENTATION_RESULTS =
|
|
121
126
|
"/rules/:id/implementations/:implementation_id/results";
|
|
122
127
|
export const RULE_IMPLEMENTATION_RESULTS_DETAILS =
|
|
@@ -268,6 +273,8 @@ const routes = {
|
|
|
268
273
|
RULE_IMPLEMENTATION_MOVE,
|
|
269
274
|
RULE_IMPLEMENTATION_NEW,
|
|
270
275
|
RULE_IMPLEMENTATION_RESULT_DETAILS,
|
|
276
|
+
RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS,
|
|
277
|
+
RULE_IMPLEMENTATION_RESULT_DETAILS_REMEDIATION_PLAN,
|
|
271
278
|
RULE_IMPLEMENTATION_RESULTS_DETAILS,
|
|
272
279
|
RULE_IMPLEMENTATION_RESULTS,
|
|
273
280
|
RULE_IMPLEMENTATION,
|