@truedat/core 7.4.0 → 7.4.2
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 +9 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "7.4.
|
|
3
|
+
"version": "7.4.2",
|
|
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.4.
|
|
39
|
+
"@truedat/test": "7.4.2",
|
|
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": "
|
|
121
|
+
"gitHead": "bfc4801642aec7b29767605d30866b52f67aacce"
|
|
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 =
|
|
174
|
-
|
|
175
|
-
export const
|
|
176
|
-
|
|
177
|
-
export const
|
|
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";
|