@truedat/core 4.58.3 → 4.58.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/CHANGELOG.md +6 -0
- package/package.json +3 -3
- package/src/routes.js +2 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.58.
|
|
3
|
+
"version": "4.58.4",
|
|
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.5",
|
|
36
36
|
"@testing-library/react": "^12.0.0",
|
|
37
37
|
"@testing-library/user-event": "^13.2.1",
|
|
38
|
-
"@truedat/test": "4.58.
|
|
38
|
+
"@truedat/test": "4.58.4",
|
|
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",
|
|
@@ -117,5 +117,5 @@
|
|
|
117
117
|
"react-dom": ">= 16.8.6 < 17",
|
|
118
118
|
"semantic-ui-react": ">= 2.0.3 < 2.2"
|
|
119
119
|
},
|
|
120
|
-
"gitHead": "
|
|
120
|
+
"gitHead": "852f36764d42a458272b3d5a5d204d928d5243c4"
|
|
121
121
|
}
|
package/src/routes.js
CHANGED
|
@@ -80,6 +80,7 @@ export const IMPLEMENTATION_HISTORY =
|
|
|
80
80
|
"/implementations/:implementation_id/history";
|
|
81
81
|
export const IMPLEMENTATION_MOVE = "/implementations/:implementation_id/move";
|
|
82
82
|
export const IMPLEMENTATION_NEW = "/implementations/new";
|
|
83
|
+
export const IMPLEMENTATION_NEW_BASIC = "/implementations/basic";
|
|
83
84
|
export const IMPLEMENTATION_NEW_RAW = "/implementations/new_raw";
|
|
84
85
|
export const IMPLEMENTATION_RESULTS =
|
|
85
86
|
"/implementations/:implementation_id/results";
|
|
@@ -270,6 +271,7 @@ const routes = {
|
|
|
270
271
|
IMPLEMENTATION_HISTORY,
|
|
271
272
|
IMPLEMENTATION_MOVE,
|
|
272
273
|
IMPLEMENTATION_NEW,
|
|
274
|
+
IMPLEMENTATION_NEW_BASIC,
|
|
273
275
|
IMPLEMENTATION_NEW_RAW,
|
|
274
276
|
IMPLEMENTATION_RESULTS,
|
|
275
277
|
IMPLEMENTATION_RESULTS_DETAILS,
|