@truedat/core 4.44.0 → 4.44.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.44.1] 2022-05-11
4
+
5
+ ### Changed
6
+
7
+ - [TD-4089] Changes RULE_IMPLEMENTATION routes to drop the "rule" parent
8
+
3
9
  ## [4.44.0] 2022-05-10
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.44.0",
3
+ "version": "4.44.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.44.0",
35
+ "@truedat/test": "4.44.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": "55fd4a8be70ca0d1bd4f3cb7b5eaf073b0350029"
109
+ "gitHead": "20d38381ed4cb6658d1122a4bff08a13fedc2d59"
110
110
  }
package/src/routes.js CHANGED
@@ -55,13 +55,33 @@ export const GROUP_CREATE = "/groups/new";
55
55
  export const GROUP_EDIT = "/groups/:id/edit";
56
56
  export const IMPLEMENTATIONS = "/implementations";
57
57
  export const IMPLEMENTATION_CONCEPT_LINKS =
58
- "/rules/:id/implementations/:implementation_id/links/concepts";
58
+ "/implementations/:implementation_id/links/concepts";
59
59
  export const IMPLEMENTATION_CONCEPT_LINKS_NEW =
60
- "/rules/:id/implementations/:implementation_id/links/concepts/new";
60
+ "/implementations/:implementation_id/links/concepts/new";
61
61
  export const IMPLEMENTATION_STRUCTURES =
62
- "/rules/:id/implementations/:implementation_id/structures";
62
+ "/implementations/:implementation_id/structures";
63
63
  export const IMPLEMENTATION_STRUCTURES_NEW =
64
- "/rules/:id/implementations/:implementation_id/structures/new";
64
+ "/implementations/:implementation_id/structures/new";
65
+ export const IMPLEMENTATION_NEW = "/implementations/new";
66
+ export const IMPLEMENTATION_NEW_RAW = "/implementations/new_raw";
67
+ export const IMPLEMENTATION = "/implementations/:implementation_id(\\d+)";
68
+ export const IMPLEMENTATION_EVENTS =
69
+ "/implementations/:implementation_id/events";
70
+ export const IMPLEMENTATION_EDIT = "/implementations/:implementation_id/edit";
71
+ export const IMPLEMENTATION_CLONE = "/implementations/:implementation_id/clone";
72
+ export const IMPLEMENTATION_MOVE = "/implementations/:implementation_id/move";
73
+ export const IMPLEMENTATION_RESULT_DETAILS =
74
+ "/implementations/:implementation_id/results/:rule_result_id";
75
+ export const IMPLEMENTATION_RESULT_SEGMENTS_RESULTS =
76
+ "/implementations/:implementation_id/results/:rule_result_id/segment_results";
77
+ export const IMPLEMENTATION_RESULT_REMEDIATION_PLAN =
78
+ "/implementations/:implementation_id/results/:rule_result_id/remediation_plan";
79
+ export const IMPLEMENTATION_RESULT_DETAILS_REMEDIATION_PLAN =
80
+ "/implementations/:implementation_id/results/:rule_result_id/remediation_plan";
81
+ export const IMPLEMENTATION_RESULTS =
82
+ "/implementations/:implementation_id/results";
83
+ export const IMPLEMENTATION_RESULTS_DETAILS =
84
+ "/implementations/:implementation_id/detail";
65
85
  export const INGEST = "/ingests/:id";
66
86
  export const INGESTS = "/ingests";
67
87
  export const INGESTS_NEW = "/ingests/new";
@@ -101,30 +121,9 @@ export const RULE = "/rules/:id(\\d+)";
101
121
  export const RULES = "/rules";
102
122
  export const RULE_EDIT = "/rules/:id/edit";
103
123
  export const RULE_EVENTS = "/rules/:id/events";
104
- export const RULE_IMPLEMENTATION =
105
- "/rules/:id/implementations/:implementation_id(\\d+)";
106
124
  export const RULE_IMPLEMENTATIONS = "/rules/:id/implementations";
107
- export const RULE_IMPLEMENTATION_CLONE =
108
- "/rules/:id/implementations/:implementation_id/clone";
109
- export const RULE_IMPLEMENTATION_EDIT =
110
- "/rules/:id/implementations/:implementation_id/edit";
111
- export const RULE_IMPLEMENTATION_EVENTS =
112
- "/rules/:id/implementations/:implementation_id/events";
113
- export const RULE_IMPLEMENTATION_MOVE =
114
- "/rules/:id/implementations/:implementation_id/move";
115
125
  export const RULE_IMPLEMENTATION_NEW = "/rules/:id/implementations/new";
116
- export const RULE_IMPLEMENTATION_RESULT_DETAILS =
117
- "/rules/:id/implementations/:implementation_id/results/:rule_result_id";
118
- export const RULE_IMPLEMENTATION_RESULT_DETAILS_REMEDIATION_PLAN =
119
- "/rules/:id/implementations/:implementation_id/results/:rule_result_id/remediation_plan";
120
- export const RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS =
121
- "/rules/:id/implementations/:implementation_id/results/:rule_result_id/segment_results";
122
- export const RULE_IMPLEMENTATION_RESULT_REMEDIATION_PLAN =
123
- "/rules/:id/implementations/:implementation_id/results/:rule_result_id/remediation_plan";
124
- export const RULE_IMPLEMENTATION_RESULTS =
125
- "/rules/:id/implementations/:implementation_id/results";
126
- export const RULE_IMPLEMENTATION_RESULTS_DETAILS =
127
- "/rules/:id/implementations/:implementation_id/detail";
126
+ export const RULE_IMPLEMENTATION_NEW_RAW = "/rules/:id/implementations/new_raw";
128
127
  export const RULE_NEW = "/rules/new";
129
128
  export const SAMPLE = "/sample";
130
129
  export const SEARCH = "/search";
@@ -231,10 +230,18 @@ const routes = {
231
230
  GROUP_CREATE,
232
231
  GROUP_EDIT,
233
232
  IMPLEMENTATIONS,
234
- IMPLEMENTATION_CONCEPT_LINKS,
235
- IMPLEMENTATION_CONCEPT_LINKS_NEW,
236
- IMPLEMENTATION_STRUCTURES,
237
- IMPLEMENTATION_STRUCTURES_NEW,
233
+ IMPLEMENTATION_NEW,
234
+ IMPLEMENTATION_NEW_RAW,
235
+ IMPLEMENTATION,
236
+ IMPLEMENTATION_EDIT,
237
+ IMPLEMENTATION_EVENTS,
238
+ IMPLEMENTATION_CLONE,
239
+ IMPLEMENTATION_MOVE,
240
+ IMPLEMENTATION_RESULT_DETAILS,
241
+ IMPLEMENTATION_RESULT_SEGMENTS_RESULTS,
242
+ IMPLEMENTATION_RESULT_REMEDIATION_PLAN,
243
+ IMPLEMENTATION_RESULTS,
244
+ IMPLEMENTATION_RESULTS_DETAILS,
238
245
  INGEST,
239
246
  INGESTS,
240
247
  INGESTS_NEW,
@@ -269,23 +276,12 @@ const routes = {
269
276
  RULES,
270
277
  RULE_EDIT,
271
278
  RULE_EVENTS,
272
- RULE_IMPLEMENTATION,
273
- RULE_IMPLEMENTATIONS,
274
- RULE_IMPLEMENTATION_CLONE,
275
- RULE_IMPLEMENTATION_EDIT,
276
- RULE_IMPLEMENTATION_EVENTS,
277
- RULE_IMPLEMENTATION_MOVE,
279
+ IMPLEMENTATION_CONCEPT_LINKS,
280
+ IMPLEMENTATION_CONCEPT_LINKS_NEW,
281
+ IMPLEMENTATION_STRUCTURES,
282
+ IMPLEMENTATION_STRUCTURES_NEW,
278
283
  RULE_IMPLEMENTATION_NEW,
279
- RULE_IMPLEMENTATION_RESULTS,
280
- RULE_IMPLEMENTATION_RESULTS_DETAILS,
281
- RULE_IMPLEMENTATION_RESULT_DETAILS,
282
- RULE_IMPLEMENTATION_RESULT_DETAILS_REMEDIATION_PLAN,
283
- RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS,
284
- RULE_IMPLEMENTATION_RESULT_SEGMENTS_RESULTS,
285
- RULE_IMPLEMENTATION_RESULT_REMEDIATION_PLAN,
286
- RULE_IMPLEMENTATION_RESULTS_DETAILS,
287
- RULE_IMPLEMENTATION_RESULTS,
288
- RULE_IMPLEMENTATION,
284
+ RULE_IMPLEMENTATION_NEW_RAW,
289
285
  RULE_IMPLEMENTATIONS,
290
286
  RULE_NEW,
291
287
  SAMPLE,