@truedat/core 4.54.8 → 4.54.11

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,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.54.11] 2022-11-14
4
+
5
+ ### Added
6
+
7
+ - [TD-5038] Links between structures tab
8
+
9
+ ## [4.54.9] 2022-10-28
10
+
11
+ ### Added
12
+
13
+ - [TD-4977] Route `/domains/:id/implementations`
14
+
3
15
  ## [4.54.2] 2022-10-25
4
16
 
5
17
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.54.8",
3
+ "version": "4.54.11",
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.8",
38
+ "@truedat/test": "4.54.11",
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": "f2274cf8a260efe11653e9e9132962cf0162c4c2"
115
+ "gitHead": "72603ee10a5ad665f0c742e33a6014de94c4ba53"
116
116
  }
package/src/routes.js CHANGED
@@ -37,6 +37,7 @@ export const DOMAINS_ACTIONS = "/domains/:action";
37
37
  export const DOMAINS_NEW = "/domains/new";
38
38
  export const DOMAINS_SEARCH = "/domains/search";
39
39
  export const DOMAIN_CONCEPTS = "/domains/:id/concepts";
40
+ export const DOMAIN_IMPLEMENTATIONS = "/domains/:id/implementations";
40
41
  export const DOMAIN_EDIT = "/domains/:id/edit";
41
42
  export const DOMAIN_MEMBERS = "/domains/:id/members";
42
43
  export const DOMAIN_MEMBERS_NEW = "/domains/:id/members/new";
@@ -161,6 +162,7 @@ export const STRUCTURE_EVENTS = "/structures/:id/events";
161
162
  export const STRUCTURE_GRANTS = "/structures/:id/grants";
162
163
  export const STRUCTURE_IMPACT = "/structures/:id/impact";
163
164
  export const STRUCTURE_LINEAGE = "/structures/:id/lineage";
165
+ export const STRUCTURE_LINKED_STRUCTURES = "/structures/:id/structureLinks";
164
166
  export const STRUCTURE_LINKS = "/structures/:id/links";
165
167
  export const STRUCTURE_LINKS_NEW = "/structures/:id/links/new";
166
168
  export const STRUCTURE_METADATA = "/structures/:id/metadata";
@@ -225,6 +227,7 @@ const routes = {
225
227
  DOMAINS_SEARCH,
226
228
  DOMAIN_CONCEPTS,
227
229
  DOMAIN_EDIT,
230
+ DOMAIN_IMPLEMENTATIONS,
228
231
  DOMAIN_MEMBERS,
229
232
  DOMAIN_MEMBERS_NEW,
230
233
  DOMAIN_NEW,
@@ -329,6 +332,7 @@ const routes = {
329
332
  STRUCTURE_GRANTS,
330
333
  STRUCTURE_IMPACT,
331
334
  STRUCTURE_LINEAGE,
335
+ STRUCTURE_LINKED_STRUCTURES,
332
336
  STRUCTURE_LINKS,
333
337
  STRUCTURE_LINKS_NEW,
334
338
  STRUCTURE_METADATA,