@truedat/core 4.48.8 → 4.48.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,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.48.10] 2022-07-19
4
+
5
+ ### Added
6
+
7
+ - [TD-4975] Domain Structures route
8
+
3
9
  ## [4.48.8] 2022-07-18
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.48.8",
3
+ "version": "4.48.11",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -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": "e49b195088068688520a1cb02c64127e140615e6"
115
+ "gitHead": "c174776672b9079d23a00a6561db635d43cbeb32"
116
116
  }
package/src/routes.js CHANGED
@@ -40,6 +40,7 @@ export const DOMAIN_CONCEPTS = "/domains/:id/concepts";
40
40
  export const DOMAIN_EDIT = "/domains/:id/edit";
41
41
  export const DOMAIN_MEMBERS = "/domains/:id/members";
42
42
  export const DOMAIN_MEMBERS_NEW = "/domains/:id/members/new";
43
+ export const DOMAIN_STRUCTURES = "/domains/:id/structures";
43
44
  export const DOMAIN_NEW = "/domains/:id/new";
44
45
  export const EXECUTION_GROUP = "/executionGroups/:id";
45
46
  export const GRANTS = "/grants";
@@ -224,6 +225,7 @@ const routes = {
224
225
  DOMAIN_MEMBERS,
225
226
  DOMAIN_MEMBERS_NEW,
226
227
  DOMAIN_NEW,
228
+ DOMAIN_STRUCTURES,
227
229
  EXECUTION_GROUP,
228
230
  GRANTS,
229
231
  GRANTS_REQUESTS_CHECKOUT,