@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.58.4] 2022-12-22
4
+
5
+ ### Added
6
+
7
+ - [TD-4300] Basic implementation route
8
+
3
9
  ## [4.58.3] 2022-12-21
4
10
 
5
11
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "4.58.3",
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.3",
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": "d6ce0fa41e1d1ca09130b8beab9e21019314726e"
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,