@nestjs-dash/audit-log 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.
Files changed (2) hide show
  1. package/README.md +2 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -49,7 +49,8 @@ const eventsToday = await dataSource
49
49
 
50
50
  ## What gets logged
51
51
 
52
- Every create/update/delete/bulk-action/relation-manager mutation made through the admin UI or the JSON API, with the actor, the resource/record touched, and the full `before`/`after` snapshot.
52
+ Every create/update/delete/bulk-action/relation-manager mutation made through the **admin UI** (`AdminController` / `/admin/...`), with the actor, the resource/record touched, and the full `before`/`after` snapshot. Mutations made only through the JSON API (`AdminApiController` / `/api/...`) are **not** audited — the interceptor does not bind there.
53
+
53
54
 
54
55
  ## Part of nestjs-dash
55
56
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestjs-dash/audit-log",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "description": "Audit log plugin for NestJS Dash (resource-mutation audit trail + built-in read-only Activity resource)",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -17,8 +17,8 @@
17
17
  "access": "public"
18
18
  },
19
19
  "dependencies": {
20
- "@nestjs-dash/core": "1.1.0",
21
- "@nestjs-dash/nestjs": "1.1.0"
20
+ "@nestjs-dash/core": "1.1.1",
21
+ "@nestjs-dash/nestjs": "1.1.2"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@nestjs-dash/typescript-config": "0.1.0",