@truedat/core 4.43.4 → 4.43.5
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 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.43.
|
|
3
|
+
"version": "4.43.5",
|
|
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.5",
|
|
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": "ab63882af7d0c31643f56b9c7eafca813763dd9e"
|
|
110
110
|
}
|
package/src/routes.js
CHANGED
|
@@ -91,7 +91,6 @@ 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
|
-
|
|
95
94
|
export const REMEDIATION_PLAN = "/rule_results/:rule_result_id/remediation";
|
|
96
95
|
export const REMEDIATION_EDIT =
|
|
97
96
|
"/rules/:id/implementations/:implementation_id/ruleResults/:rule_result_id/remediation/edit";
|
|
@@ -120,7 +119,7 @@ export const RULE_IMPLEMENTATION_RESULT_DETAILS =
|
|
|
120
119
|
"/rules/:id/implementations/:implementation_id/results/:rule_result_id";
|
|
121
120
|
export const RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS =
|
|
122
121
|
"/rules/:id/implementations/:implementation_id/results/:rule_result_id/segment_results";
|
|
123
|
-
export const
|
|
122
|
+
export const RULE_IMPLEMENTATION_RESULT_REMEDIATION_PLAN =
|
|
124
123
|
"/rules/:id/implementations/:implementation_id/results/:rule_result_id/remediation_plan";
|
|
125
124
|
export const RULE_IMPLEMENTATION_RESULTS =
|
|
126
125
|
"/rules/:id/implementations/:implementation_id/results";
|
|
@@ -275,7 +274,7 @@ const routes = {
|
|
|
275
274
|
RULE_IMPLEMENTATION_NEW,
|
|
276
275
|
RULE_IMPLEMENTATION_RESULT_DETAILS,
|
|
277
276
|
RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS,
|
|
278
|
-
|
|
277
|
+
RULE_IMPLEMENTATION_RESULT_REMEDIATION_PLAN,
|
|
279
278
|
RULE_IMPLEMENTATION_RESULTS_DETAILS,
|
|
280
279
|
RULE_IMPLEMENTATION_RESULTS,
|
|
281
280
|
RULE_IMPLEMENTATION,
|