@mostajs/audit 1.0.2 → 1.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.
- package/audit.wire.json +20 -0
- package/package.json +7 -1
package/audit.wire.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_doc": "Manifeste de câblage pour @mostajs/audit",
|
|
3
|
+
"package": "@mostajs/audit",
|
|
4
|
+
"version": "1.0.3",
|
|
5
|
+
"type": "functional",
|
|
6
|
+
|
|
7
|
+
"schemas": {
|
|
8
|
+
"from": "@mostajs/audit",
|
|
9
|
+
"exports": ["AuditLogSchema"]
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
"repositories": [
|
|
13
|
+
{ "class": "AuditLogRepository", "type": "AuditLogDTO", "factory": "auditLogRepo", "from": "@mostajs/audit" }
|
|
14
|
+
],
|
|
15
|
+
|
|
16
|
+
"menu": {
|
|
17
|
+
"name": "auditMenuContribution",
|
|
18
|
+
"from": "@mostajs/audit/lib/menu"
|
|
19
|
+
}
|
|
20
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mostajs/audit",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Reusable audit logging module — fire-and-forget logAudit() with paginated consultation",
|
|
5
5
|
"author": "Dr Hamid MADANI <drmdh@msn.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -27,10 +27,16 @@
|
|
|
27
27
|
"types": "./dist/types/index.d.ts",
|
|
28
28
|
"import": "./dist/types/index.js",
|
|
29
29
|
"default": "./dist/types/index.js"
|
|
30
|
+
},
|
|
31
|
+
"./lib/menu": {
|
|
32
|
+
"types": "./dist/lib/menu.d.ts",
|
|
33
|
+
"import": "./dist/lib/menu.js",
|
|
34
|
+
"default": "./dist/lib/menu.js"
|
|
30
35
|
}
|
|
31
36
|
},
|
|
32
37
|
"files": [
|
|
33
38
|
"dist",
|
|
39
|
+
"audit.wire.json",
|
|
34
40
|
"LICENSE",
|
|
35
41
|
"README.md"
|
|
36
42
|
],
|