@truedat/core 5.3.0 → 5.3.2
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 +11 -1
- package/package.json +3 -3
- package/src/routes.js +6 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.2",
|
|
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.5",
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "5.2
|
|
38
|
+
"@truedat/test": "5.3.2",
|
|
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",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"react-dom": ">= 16.8.6 < 17",
|
|
118
118
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
119
119
|
},
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "ea33c4f9396f3843573b2508a93473bb3d98ee65"
|
|
121
121
|
}
|
package/src/routes.js
CHANGED
|
@@ -181,7 +181,9 @@ export const STRUCTURE_EVENTS = "/structures/:id/events";
|
|
|
181
181
|
export const STRUCTURE_GRANTS = "/structures/:id/grants";
|
|
182
182
|
export const STRUCTURE_IMPACT = "/structures/:id/impact";
|
|
183
183
|
export const STRUCTURE_LINEAGE = "/structures/:id/lineage";
|
|
184
|
-
export const
|
|
184
|
+
export const STRUCTURE_STRUCTURE_LINKS = "/structures/:id/structureLinks";
|
|
185
|
+
export const STRUCTURE_STRUCTURE_LINKS_NEW =
|
|
186
|
+
"/structures/:id/structureLinks/new";
|
|
185
187
|
export const STRUCTURE_LINKS = "/structures/:id/links";
|
|
186
188
|
export const STRUCTURE_LINKS_NEW = "/structures/:id/links/new";
|
|
187
189
|
export const STRUCTURE_METADATA = "/structures/:id/metadata";
|
|
@@ -370,7 +372,9 @@ const routes = {
|
|
|
370
372
|
STRUCTURE_GRANTS,
|
|
371
373
|
STRUCTURE_IMPACT,
|
|
372
374
|
STRUCTURE_LINEAGE,
|
|
373
|
-
|
|
375
|
+
STRUCTURE_STRUCTURE_LINKS,
|
|
376
|
+
STRUCTURE_STRUCTURE_LINKS,
|
|
377
|
+
STRUCTURE_STRUCTURE_LINKS_NEW,
|
|
374
378
|
STRUCTURE_LINKS,
|
|
375
379
|
STRUCTURE_LINKS_NEW,
|
|
376
380
|
STRUCTURE_METADATA,
|