@truedat/core 4.42.6 → 4.43.0
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 +8 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.43.0",
|
|
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.0",
|
|
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": "ad0f63f2d98ae377883743b839858d9d671d2431"
|
|
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";
|
|
@@ -259,6 +263,8 @@ const routes = {
|
|
|
259
263
|
RULE_IMPLEMENTATION_EVENTS,
|
|
260
264
|
IMPLEMENTATION_CONCEPT_LINKS,
|
|
261
265
|
IMPLEMENTATION_CONCEPT_LINKS_NEW,
|
|
266
|
+
IMPLEMENTATION_STRUCTURES,
|
|
267
|
+
IMPLEMENTATION_STRUCTURES_NEW,
|
|
262
268
|
RULE_IMPLEMENTATION_MOVE,
|
|
263
269
|
RULE_IMPLEMENTATION_NEW,
|
|
264
270
|
RULE_IMPLEMENTATION_RESULT_DETAILS,
|