@truedat/audit 5.0.0 → 5.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [5.0.1] 2023-01-26
4
+
5
+ ### Added
6
+
7
+ - [TD-5473] New subscribable event `structure_note_updated`
8
+
3
9
  ## [4.58.6] 2022-12-23
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/audit",
3
- "version": "5.0.0",
3
+ "version": "5.0.1",
4
4
  "description": "Truedat Web Audit Module",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -34,7 +34,7 @@
34
34
  "@testing-library/jest-dom": "^5.16.5",
35
35
  "@testing-library/react": "^12.0.0",
36
36
  "@testing-library/user-event": "^13.2.1",
37
- "@truedat/test": "5.0.0",
37
+ "@truedat/test": "5.0.1",
38
38
  "babel-jest": "^28.1.0",
39
39
  "babel-plugin-dynamic-import-node": "^2.3.3",
40
40
  "babel-plugin-lodash": "^3.3.4",
@@ -84,8 +84,8 @@
84
84
  ]
85
85
  },
86
86
  "dependencies": {
87
- "@truedat/auth": "5.0.0",
88
- "@truedat/core": "5.0.0",
87
+ "@truedat/auth": "5.0.1",
88
+ "@truedat/core": "5.0.1",
89
89
  "moment": "^2.29.4",
90
90
  "path-to-regexp": "^1.7.0",
91
91
  "prop-types": "^15.8.1",
@@ -107,5 +107,5 @@
107
107
  "react-dom": ">= 16.8.6 < 17",
108
108
  "semantic-ui-react": ">= 2.0.3 < 2.2"
109
109
  },
110
- "gitHead": "688cd20866f3c91f8390588f65d8c75402ad06e4"
110
+ "gitHead": "7eda377af42b503fda5e1f0e8cebcaf4d38dec32"
111
111
  }
@@ -126,6 +126,7 @@ export default {
126
126
  "Structure Note pending to approval",
127
127
  "subscriptions.events.structure_note_published": "Structure Note published",
128
128
  "subscriptions.events.structure_note_rejected": "Structure Note rejected",
129
+ "subscriptions.events.structure_note_updated": "Structure Note updated",
129
130
  "subscriptions.events.structure_note_versioned": "Structure Note versioned",
130
131
 
131
132
  "subscriptions.events.structure_tag_linked": "Structure tag linked",
@@ -139,6 +139,8 @@ export default {
139
139
  "Nota de estructura publicada",
140
140
  "subscriptions.events.structure_note_rejected":
141
141
  "Nota de estructura rechazada",
142
+ "subscriptions.events.structure_note_updated":
143
+ "Nota de estructura modificada",
142
144
  "subscriptions.events.structure_note_versioned":
143
145
  "Nota de estructura versionada",
144
146
 
@@ -42,6 +42,7 @@ export const STRUCTURE_EVENTS = [
42
42
  "structure_note_deprecated",
43
43
  "structure_note_deleted",
44
44
  "structure_note_draft",
45
+ "structure_note_updated",
45
46
  "structure_tag_linked",
46
47
  "structure_tag_link_updated",
47
48
  "structure_tag_link_deleted",