@truedat/core 5.0.2 → 5.0.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/routes.js +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "5.0.2",
3
+ "version": "5.0.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": "5.0.2",
38
+ "@truedat/test": "5.0.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": "627767d6f31541ef09a077d7e535fb488a05700c"
120
+ "gitHead": "91d484a16499494eedec012362b3a7f45cb1cbc9"
121
121
  }
package/src/routes.js CHANGED
@@ -79,6 +79,10 @@ export const IMPLEMENTATION_CONCEPT_LINKS =
79
79
  export const IMPLEMENTATION_CONCEPT_LINKS_NEW =
80
80
  "/implementations/:implementation_id/links/concepts/new";
81
81
  export const IMPLEMENTATION_EDIT = "/implementations/:implementation_id/edit";
82
+ export const IMPLEMENTATION_EDIT_AS_DEFAULT =
83
+ "/implementations/:implementation_id/edit_as_default";
84
+ export const IMPLEMENTATION_EDIT_AS_RAW =
85
+ "/implementations/:implementation_id/edit_as_raw";
82
86
  export const IMPLEMENTATION_EVENTS =
83
87
  "/implementations/:implementation_id/events";
84
88
  export const IMPLEMENTATION_EXECUTIONS =
@@ -280,6 +284,8 @@ const routes = {
280
284
  IMPLEMENTATION_CONCEPT_LINKS,
281
285
  IMPLEMENTATION_CONCEPT_LINKS_NEW,
282
286
  IMPLEMENTATION_EDIT,
287
+ IMPLEMENTATION_EDIT_AS_DEFAULT,
288
+ IMPLEMENTATION_EDIT_AS_RAW,
283
289
  IMPLEMENTATION_EVENTS,
284
290
  IMPLEMENTATION_EXECUTIONS,
285
291
  IMPLEMENTATION_HISTORY,