@truedat/core 4.53.10 → 4.53.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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.53.11] 2022-10-20
4
+
5
+ ### Changed
6
+
7
+ - [TD-5234] Route `/structures/:id/rules_implementations` changed to
8
+ `/structures/:id/rules`
9
+
3
10
  ## [4.53.10] 2022-10-17
4
11
 
5
12
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.53.10",
3
+ "version": "4.53.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.53.10",
38
+ "@truedat/test": "4.53.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": "66304ff9ac3d25820b3bec2d0147f21cb0a2c579"
115
+ "gitHead": "f0bff07f7491edcbe2195f2ff9d0ef74736edef9"
116
116
  }
package/src/routes.js CHANGED
@@ -168,8 +168,7 @@ export const STRUCTURE_NOTES = "/structures/:id/notes";
168
168
  export const STRUCTURE_NOTES_EDIT = "/structures/:id/notes/edit";
169
169
  export const STRUCTURE_PARENTS = "/structures/:id/parents";
170
170
  export const STRUCTURE_PROFILE = "/structures/:id/profile";
171
- export const STRUCTURE_RULES_IMPLEMENTATIONS =
172
- "/structures/:id/rules_implementations";
171
+ export const STRUCTURE_RULES = "/structures/:id/rules";
173
172
  export const STRUCTURE_TAGS = "/structureTags";
174
173
  export const STRUCTURE_TAGS_NEW = "/structureTags/new";
175
174
  export const STRUCTURE_TAG_EDIT = "/structureTags/:id/edit";
@@ -337,7 +336,7 @@ const routes = {
337
336
  STRUCTURE_NOTES_EDIT,
338
337
  STRUCTURE_PARENTS,
339
338
  STRUCTURE_PROFILE,
340
- STRUCTURE_RULES_IMPLEMENTATIONS,
339
+ STRUCTURE_RULES,
341
340
  STRUCTURE_TAGS,
342
341
  STRUCTURE_TAGS_NEW,
343
342
  STRUCTURE_TAG_EDIT,