@truedat/core 4.36.8 → 4.37.2
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 +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.37.2",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -104,5 +104,5 @@
|
|
|
104
104
|
"react-dom": ">= 16.8.6 < 17",
|
|
105
105
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
106
106
|
},
|
|
107
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "ca6ba01d31ab5ec415b9b21d6ce02b418fc6e0ff"
|
|
108
108
|
}
|
package/src/routes.js
CHANGED
|
@@ -85,6 +85,7 @@ export const ROLES_NEW = "/roles/new";
|
|
|
85
85
|
export const RULE = "/rules/:id";
|
|
86
86
|
export const RULES = "/rules";
|
|
87
87
|
export const RULE_EDIT = "/rules/:id/edit";
|
|
88
|
+
export const RULE_EVENTS = "/rules/:id/events";
|
|
88
89
|
export const RULE_IMPLEMENTATION =
|
|
89
90
|
"/rules/:id/implementations/:implementation_id";
|
|
90
91
|
export const RULE_IMPLEMENTATIONS = "/rules/:id/implementations";
|
|
@@ -233,6 +234,7 @@ const routes = {
|
|
|
233
234
|
ROLES_NEW,
|
|
234
235
|
ROLES,
|
|
235
236
|
RULE_EDIT,
|
|
237
|
+
RULE_EVENTS,
|
|
236
238
|
RULE_IMPLEMENTATION_EVENTS,
|
|
237
239
|
RULE_IMPLEMENTATION_CLONE,
|
|
238
240
|
RULE_IMPLEMENTATION_EDIT,
|