@truedat/audit 4.45.1 → 4.45.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/components/Subscriptions.js +1 -0
- package/src/components/__tests__/__snapshots__/Subscriptions.spec.js.snap +19 -0
- package/src/messages/en.js +1 -0
- package/src/messages/es.js +1 -0
- package/src/reducers/auditRedirect.js +1 -1
- package/src/reducers/searchSubscription.js +1 -1
- package/src/sagas/searchSubscriptions.js +2 -2
- package/src/subscriptionConstants.js +1 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/audit",
|
|
3
|
-
"version": "4.45.
|
|
3
|
+
"version": "4.45.4",
|
|
4
4
|
"description": "Truedat Web Audit Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
]
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@truedat/auth": "4.45.
|
|
88
|
+
"@truedat/auth": "4.45.4",
|
|
89
89
|
"@truedat/core": "4.45.1",
|
|
90
90
|
"axios": "^0.19.2",
|
|
91
91
|
"path-to-regexp": "^1.7.0",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"react-dom": ">= 16.8.6 < 17",
|
|
108
108
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "40ec430c50a2da5eca991e9b946e8e47ffe1e477"
|
|
111
111
|
}
|
|
@@ -222,6 +222,25 @@ exports[`<Subscriptions /> matches the latest snapshot 1`] = `
|
|
|
222
222
|
Quality Rule
|
|
223
223
|
</label>
|
|
224
224
|
</div>
|
|
225
|
+
<div
|
|
226
|
+
class="ui checked checkbox"
|
|
227
|
+
>
|
|
228
|
+
<input
|
|
229
|
+
checked=""
|
|
230
|
+
class="hidden"
|
|
231
|
+
readonly=""
|
|
232
|
+
tabindex="0"
|
|
233
|
+
type="checkbox"
|
|
234
|
+
value=""
|
|
235
|
+
/>
|
|
236
|
+
<label>
|
|
237
|
+
<i
|
|
238
|
+
aria-hidden="true"
|
|
239
|
+
class="tags icon"
|
|
240
|
+
/>
|
|
241
|
+
Quality Implementation
|
|
242
|
+
</label>
|
|
243
|
+
</div>
|
|
225
244
|
<div
|
|
226
245
|
class="ui checked checkbox"
|
|
227
246
|
>
|
package/src/messages/en.js
CHANGED
|
@@ -60,6 +60,7 @@ export default {
|
|
|
60
60
|
"subscriptions.resource.type.domains": "Domain and children",
|
|
61
61
|
"subscriptions.resource.type.concept": "Concept",
|
|
62
62
|
"subscriptions.resource.type.rule": "Quality Rule",
|
|
63
|
+
"subscriptions.resource.type.implementation": "Quality Implementation",
|
|
63
64
|
"subscriptions.resource.type.source": "Source",
|
|
64
65
|
|
|
65
66
|
"subscriptions.template.label": "Template",
|
package/src/messages/es.js
CHANGED
|
@@ -60,6 +60,7 @@ export default {
|
|
|
60
60
|
"subscriptions.resource.type.domains": "Dominio e hijos",
|
|
61
61
|
"subscriptions.resource.type.concept": "Concepto",
|
|
62
62
|
"subscriptions.resource.type.rule": "Regla de Calidad",
|
|
63
|
+
"subscriptions.resource.type.implementation": "Implementación de Calidad",
|
|
63
64
|
"subscriptions.resource.type.source": "Origen",
|
|
64
65
|
|
|
65
66
|
"subscriptions.template.label": "Plantilla",
|
|
@@ -8,8 +8,8 @@ export function* searchSubscriptionsSaga({ payload }) {
|
|
|
8
8
|
try {
|
|
9
9
|
const body = {
|
|
10
10
|
filters: {
|
|
11
|
-
scope: _.pick(["resource_id", "resource_type", "events"])(payload)
|
|
12
|
-
}
|
|
11
|
+
scope: _.pick(["resource_id", "resource_type", "events"])(payload),
|
|
12
|
+
},
|
|
13
13
|
};
|
|
14
14
|
const url = API_SUBSCRIPTIONS_SEARCH;
|
|
15
15
|
yield put(searchSubscriptions.request());
|