@truedat/core 7.3.4 → 7.4.1

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 +9 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/core",
3
- "version": "7.3.4",
3
+ "version": "7.4.1",
4
4
  "description": "Truedat Web Core",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -36,7 +36,7 @@
36
36
  "@testing-library/react": "^12.0.0",
37
37
  "@testing-library/react-hooks": "^8.0.1",
38
38
  "@testing-library/user-event": "^13.2.1",
39
- "@truedat/test": "7.3.4",
39
+ "@truedat/test": "7.4.1",
40
40
  "babel-jest": "^28.1.0",
41
41
  "babel-plugin-dynamic-import-node": "^2.3.3",
42
42
  "babel-plugin-lodash": "^3.3.4",
@@ -118,5 +118,5 @@
118
118
  "react-dom": ">= 16.8.6 < 17",
119
119
  "semantic-ui-react": ">= 2.0.3 < 2.2"
120
120
  },
121
- "gitHead": "681c0d026b5477fadf9b53fe5242cfb0ed11d973"
121
+ "gitHead": "3f0fb3cef1d8e517ab71b741d8e4617319960f58"
122
122
  }
package/src/routes.js CHANGED
@@ -170,11 +170,15 @@ export const QUALITY_CONTROLS_DEPRECATED = "/qualityControls/deprecated";
170
170
  export const QUALITY_CONTROLS_DRAFTS = "/qualityControls/drafts";
171
171
  export const QUALITY_CONTROLS_PUBLISHED = "/qualityControls";
172
172
  export const QUALITY_CONTROL_NEW = "/qualityControls/new";
173
- export const QUALITY_CONTROL_EDIT = "/qualityControls/:id/edit";
174
- export const QUALITY_CONTROL_NEW_DRAFT = "/qualityControls/:id/new_draft";
175
- export const QUALITY_CONTROL = "/qualityControls/:id";
176
- export const QUALITY_CONTROL_HISTORY = "/qualityControls/:id/history";
177
- export const QUALITY_CONTROL_SCORES = "/qualityControls/:id/scores";
173
+ export const QUALITY_CONTROL_EDIT =
174
+ "/qualityControls/:id/version/:version/edit";
175
+ export const QUALITY_CONTROL_NEW_DRAFT =
176
+ "/qualityControls/:id/version/:version/new_draft";
177
+ export const QUALITY_CONTROL = "/qualityControls/:id/version/:version";
178
+ export const QUALITY_CONTROL_HISTORY =
179
+ "/qualityControls/:id/version/:version/history";
180
+ export const QUALITY_CONTROL_SCORES =
181
+ "/qualityControls/:id/version/:version/scores";
178
182
 
179
183
  export const QUALITY_DASHBOARD = "/quality_dashboard";
180
184
  export const REFERENCE_DATASET = "/referenceDatasets/:id";