@truedat/core 4.36.3 → 4.36.4
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/package.json +2 -2
- package/src/routes.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.36.
|
|
3
|
+
"version": "4.36.4",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -103,5 +103,5 @@
|
|
|
103
103
|
"react-dom": ">= 16.8.6 < 17",
|
|
104
104
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
105
105
|
},
|
|
106
|
-
"gitHead": "
|
|
106
|
+
"gitHead": "4dbf4f9e5188b82b17d053b65e76506e60aa6722"
|
|
107
107
|
}
|
package/src/routes.js
CHANGED
|
@@ -88,6 +88,8 @@ export const RULE_EDIT = "/rules/:id/edit";
|
|
|
88
88
|
export const RULE_IMPLEMENTATION =
|
|
89
89
|
"/rules/:id/implementations/:implementation_id";
|
|
90
90
|
export const RULE_IMPLEMENTATIONS = "/rules/:id/implementations";
|
|
91
|
+
export const RULE_IMPLEMENTATION_EVENTS =
|
|
92
|
+
"/rules/:id/implementations/:implementation_id/events";
|
|
91
93
|
export const RULE_IMPLEMENTATION_NEW = "/rules/:id/implementations/new";
|
|
92
94
|
export const RULE_IMPLEMENTATION_EDIT =
|
|
93
95
|
"/rules/:id/implementations/:implementation_id/edit";
|
|
@@ -231,6 +233,7 @@ const routes = {
|
|
|
231
233
|
ROLES_NEW,
|
|
232
234
|
ROLES,
|
|
233
235
|
RULE_EDIT,
|
|
236
|
+
RULE_IMPLEMENTATION_EVENTS,
|
|
234
237
|
RULE_IMPLEMENTATION_CLONE,
|
|
235
238
|
RULE_IMPLEMENTATION_EDIT,
|
|
236
239
|
RULE_IMPLEMENTATION_MOVE,
|