@truedat/core 7.13.7 → 7.13.8
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 +3 -3
- package/src/routes.js +3 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "7.13.
|
|
3
|
+
"version": "7.13.8",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@testing-library/jest-dom": "^6.6.3",
|
|
49
49
|
"@testing-library/react": "^16.3.0",
|
|
50
50
|
"@testing-library/user-event": "^14.6.1",
|
|
51
|
-
"@truedat/test": "7.13.
|
|
51
|
+
"@truedat/test": "7.13.8",
|
|
52
52
|
"identity-obj-proxy": "^3.0.0",
|
|
53
53
|
"jest": "^29.7.0",
|
|
54
54
|
"redux-saga-test-plan": "^4.0.6"
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"slate-react": "^0.22.10",
|
|
86
86
|
"swr": "^2.3.3"
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "14e97850f4591da2e3b26dfd5192da159812a39a"
|
|
89
89
|
}
|
package/src/routes.js
CHANGED
|
@@ -57,7 +57,9 @@ export const CONFIGURATIONS = "/configurations";
|
|
|
57
57
|
export const CONFIGURATION_CREATE = "/configurations/new";
|
|
58
58
|
export const CONFIGURATION_EDIT = "/configurations/:external_id/edit";
|
|
59
59
|
export const DASHBOARD = "/dashboard";
|
|
60
|
+
export const DATA_VIEW = "/dataViews/:id";
|
|
60
61
|
export const DATA_VIEWS = "/dataViews";
|
|
62
|
+
export const DATA_VIEWS_NEW = "/dataViews/new";
|
|
61
63
|
export const DOMAIN = "/domains/:id";
|
|
62
64
|
export const DOMAINS = "/domains";
|
|
63
65
|
export const DOMAINS_ACTIONS = "/domains/:action";
|
|
@@ -322,6 +324,7 @@ const routes = {
|
|
|
322
324
|
CONFIGURATION_EDIT,
|
|
323
325
|
DASHBOARD,
|
|
324
326
|
DATA_VIEWS,
|
|
327
|
+
DATA_VIEWS_NEW,
|
|
325
328
|
DOMAIN,
|
|
326
329
|
DOMAINS,
|
|
327
330
|
DOMAINS_ACTIONS,
|