@basaltkit/audit-viewer 1.0.1 → 1.0.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/dist/plugin.d.ts +1 -1
- package/dist/plugin.js +1 -1
- package/package.json +5 -4
package/dist/plugin.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type BasaltRoute } from '@basaltkit/
|
|
1
|
+
import { type BasaltRoute } from '@basaltkit/http';
|
|
2
2
|
import { AuditViewer, type AuditViewerOptions } from './viewer.js';
|
|
3
3
|
import { type AuditViewerHtmlOptions } from './html.js';
|
|
4
4
|
export declare const AUDIT_VIEWER: import("@basaltkit/core").Token<AuditViewer>;
|
package/dist/plugin.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { createToken, ctx, definePlugin } from '@basaltkit/core';
|
|
2
2
|
import { AUDIT } from '@basaltkit/audit';
|
|
3
|
-
import { route } from '@basaltkit/
|
|
3
|
+
import { route } from '@basaltkit/http';
|
|
4
4
|
import { z } from 'zod';
|
|
5
5
|
import { AuditViewer } from './viewer.js';
|
|
6
6
|
import { auditViewerHtml } from './html.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basaltkit/audit-viewer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Read-only viewer for the @basaltkit/audit trail: tenant-scoped, filterable, paginated queries with aggregate stats, plus a self-contained HTML browser.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"dist"
|
|
15
15
|
],
|
|
16
16
|
"dependencies": {
|
|
17
|
+
"@basaltkit/audit": "^1.2.2",
|
|
17
18
|
"@basaltkit/core": "^1.1.2",
|
|
18
|
-
"@basaltkit/
|
|
19
|
-
"@basaltkit/audit": "^1.2.2"
|
|
19
|
+
"@basaltkit/http": "^1.9.1"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"zod": "^3.24.0 || ^4.0.0"
|
|
@@ -26,7 +26,8 @@
|
|
|
26
26
|
"typescript": "^7.0.2",
|
|
27
27
|
"vitest": "^4.1.11",
|
|
28
28
|
"zod": "^3.24.0 || ^4.0.0",
|
|
29
|
-
"@basaltkit/auth": "^1.6.
|
|
29
|
+
"@basaltkit/auth": "^1.6.3",
|
|
30
|
+
"@basaltkit/fastify": "^1.6.1",
|
|
30
31
|
"@basaltkit/tenancy": "^1.3.3",
|
|
31
32
|
"@basaltkit/tsconfig": "^0.24.0"
|
|
32
33
|
},
|