@agenttrace-io/dashboard 0.3.2 → 0.4.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/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
*/
|
|
5
5
|
import { Express } from 'express';
|
|
6
6
|
import { AgentTrace, DashboardConfig } from '@agenttrace-io/sdk';
|
|
7
|
-
export declare const VERSION = "0.3.
|
|
7
|
+
export declare const VERSION = "0.3.3";
|
|
8
8
|
export declare const PACKAGE_NAME = "@agenttrace-io/dashboard";
|
|
9
9
|
export interface ApiKeyRecord {
|
|
10
10
|
id: string;
|
package/dist/index.js
CHANGED
|
@@ -9,7 +9,7 @@ import fs from 'node:fs';
|
|
|
9
9
|
import os from 'node:os';
|
|
10
10
|
import crypto from 'node:crypto';
|
|
11
11
|
import { AgentTrace } from '@agenttrace-io/sdk';
|
|
12
|
-
export const VERSION = '0.3.
|
|
12
|
+
export const VERSION = '0.3.3';
|
|
13
13
|
export const PACKAGE_NAME = '@agenttrace-io/dashboard';
|
|
14
14
|
const __filename = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname = path.dirname(__filename);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenttrace-io/dashboard",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Local web dashboard for AgentTrace — view runs, traces, costs, and stats",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=20.0.0"
|
|
8
|
+
"node": ">=20.0.0 <24.0.0"
|
|
9
9
|
},
|
|
10
10
|
"main": "./dist/index.js",
|
|
11
11
|
"types": "./dist/index.d.ts",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"express": "^5.2.1",
|
|
38
|
-
"@agenttrace-io/sdk": "0.
|
|
38
|
+
"@agenttrace-io/sdk": "0.4.1"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/express": "^5.0.6",
|