@truedat/core 7.5.12 → 7.5.13
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.5.
|
|
3
|
+
"version": "7.5.13",
|
|
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.5.
|
|
51
|
+
"@truedat/test": "7.5.13",
|
|
52
52
|
"identity-obj-proxy": "^3.0.0",
|
|
53
53
|
"jest": "^29.7.0",
|
|
54
54
|
"redux-saga-test-plan": "^4.0.6"
|
|
@@ -86,5 +86,5 @@
|
|
|
86
86
|
"slate-react": "^0.22.10",
|
|
87
87
|
"swr": "^2.3.3"
|
|
88
88
|
},
|
|
89
|
-
"gitHead": "
|
|
89
|
+
"gitHead": "83de799e59c0d13d4d52812070d232d24f0b5f82"
|
|
90
90
|
}
|
package/src/routes.js
CHANGED
|
@@ -45,6 +45,8 @@ export const CONCEPT_LINKS_STRUCTURES =
|
|
|
45
45
|
"/concepts/:business_concept_id/versions/:id/links/structures";
|
|
46
46
|
export const CONCEPT_LINKS_STRUCTURES_NEW =
|
|
47
47
|
"/concepts/:business_concept_id/versions/:id/links/structures/new";
|
|
48
|
+
export const CONCEPT_LINKS_STRUCTURES_SUGGEST =
|
|
49
|
+
"/concepts/:business_concept_id/versions/:id/links/structures/suggest";
|
|
48
50
|
export const CONCEPT_RULES =
|
|
49
51
|
"/concepts/:business_concept_id/versions/:id/rules";
|
|
50
52
|
export const CONCEPT_RULES_NEW =
|
|
@@ -308,6 +310,7 @@ const routes = {
|
|
|
308
310
|
CONCEPT_LINKS_MANAGEMENT,
|
|
309
311
|
CONCEPT_LINKS_STRUCTURES,
|
|
310
312
|
CONCEPT_LINKS_STRUCTURES_NEW,
|
|
313
|
+
CONCEPT_LINKS_STRUCTURES_SUGGEST,
|
|
311
314
|
CONCEPT_RULES,
|
|
312
315
|
CONCEPT_RULES_NEW,
|
|
313
316
|
CONCEPT_VERSION,
|