@agenttrace-io/cli 0.2.1 → 0.2.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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* AgentTrace CLI
|
|
4
4
|
* Command-line interface for querying traces, runs, stats and exports
|
|
5
5
|
*/
|
|
6
|
-
export declare const VERSION = "0.2.
|
|
6
|
+
export declare const VERSION = "0.2.2";
|
|
7
7
|
/** Published npm package name. */
|
|
8
8
|
export declare const PACKAGE_NAME = "@agenttrace-io/cli";
|
|
9
9
|
declare function main(): void | Promise<void>;
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { AgentTrace, TraceStorage, } from '@agenttrace-io/sdk';
|
|
|
7
7
|
import { startDashboard } from '@agenttrace-io/dashboard';
|
|
8
8
|
import { existsSync, writeFileSync } from 'node:fs';
|
|
9
9
|
import { fileURLToPath } from 'node:url';
|
|
10
|
-
export const VERSION = '0.2.
|
|
10
|
+
export const VERSION = '0.2.2';
|
|
11
11
|
/** Published npm package name. */
|
|
12
12
|
export const PACKAGE_NAME = '@agenttrace-io/cli';
|
|
13
13
|
function getDbPath() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenttrace-io/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "CLI for AgentTrace — trace, dashboard, stats, costs, alerts, wrap any agent",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"agenttrace": "./dist/index.js"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@agenttrace-io/dashboard": "0.2.
|
|
13
|
-
"@agenttrace-io/sdk": "0.2.
|
|
12
|
+
"@agenttrace-io/dashboard": "0.2.2",
|
|
13
|
+
"@agenttrace-io/sdk": "0.2.2"
|
|
14
14
|
},
|
|
15
15
|
"main": "./dist/index.js",
|
|
16
16
|
"types": "./dist/index.d.ts",
|