@truedat/core 5.3.0 → 5.3.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,6 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## [Unreleased]
3
+ ## [5.3.1] 2023-03-11
4
+
5
+ ### Added
6
+
7
+ - [TD-5509] Structure to structure link form Routes
4
8
 
5
9
  ### Added
6
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "5.3.0",
3
+ "version": "5.3.1",
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.4",
38
+ "@truedat/test": "5.3.1",
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": "4893c314084a4ea7ca48a4e251d4e47565f3f030"
120
+ "gitHead": "6f7ae72a2abda5e41480fa5254c3c37447821a45"
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 STRUCTURE_LINKED_STRUCTURES = "/structures/:id/structureLinks";
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
- STRUCTURE_LINKED_STRUCTURES,
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,