@truedat/core 4.54.9 → 4.54.12
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 +6 -0
- package/package.json +3 -3
- package/src/routes.js +2 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.54.
|
|
3
|
+
"version": "4.54.12",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@testing-library/jest-dom": "^5.16.4",
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "4.54.
|
|
38
|
+
"@truedat/test": "4.54.12",
|
|
39
39
|
"babel-jest": "^28.1.0",
|
|
40
40
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
41
41
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"react-dom": ">= 16.8.6 < 17",
|
|
113
113
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
114
114
|
},
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "98b0eb7a9b7818b4c3879809fde0916f9b5f4ec9"
|
|
116
116
|
}
|
package/src/routes.js
CHANGED
|
@@ -162,6 +162,7 @@ export const STRUCTURE_EVENTS = "/structures/:id/events";
|
|
|
162
162
|
export const STRUCTURE_GRANTS = "/structures/:id/grants";
|
|
163
163
|
export const STRUCTURE_IMPACT = "/structures/:id/impact";
|
|
164
164
|
export const STRUCTURE_LINEAGE = "/structures/:id/lineage";
|
|
165
|
+
export const STRUCTURE_LINKED_STRUCTURES = "/structures/:id/structureLinks";
|
|
165
166
|
export const STRUCTURE_LINKS = "/structures/:id/links";
|
|
166
167
|
export const STRUCTURE_LINKS_NEW = "/structures/:id/links/new";
|
|
167
168
|
export const STRUCTURE_METADATA = "/structures/:id/metadata";
|
|
@@ -331,6 +332,7 @@ const routes = {
|
|
|
331
332
|
STRUCTURE_GRANTS,
|
|
332
333
|
STRUCTURE_IMPACT,
|
|
333
334
|
STRUCTURE_LINEAGE,
|
|
335
|
+
STRUCTURE_LINKED_STRUCTURES,
|
|
334
336
|
STRUCTURE_LINKS,
|
|
335
337
|
STRUCTURE_LINKS_NEW,
|
|
336
338
|
STRUCTURE_METADATA,
|