@agenttrace-io/sdk 0.3.1 → 0.3.3
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 +4 -1
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Drop-in tracing for any AI agent
|
|
4
4
|
*/
|
|
5
5
|
import { Trace, Run, TraceConfig, TraceFilter, TraceStats, TokenUsage, ToolCall, ExportFormat, Scorer, ScorerResult, EvaluateOptions, CostBreakdown, AlertCondition, AlertHistory, TraceTreeNode, HealthReport, AgentUsageRecord, AgentUsageFilter, UsageStats, AgentWho, AgentSession, CreatedApiKey, WebhookConfig, WebhookEvent, WebhookDelivery } from './types.js';
|
|
6
|
-
export declare const VERSION = "0.3.
|
|
6
|
+
export declare const VERSION = "0.3.3";
|
|
7
7
|
export declare const PACKAGE_NAME = "@agenttrace-io/sdk";
|
|
8
8
|
export type { Trace, Run, TraceConfig, TraceFilter, TraceStats, TokenUsage, ToolCall, ExportFormat, DashboardConfig, AgentFramework, FrameworkIntegration, Scorer, ScorerResult, EvaluateOptions, CostBreakdown, AlertCondition, AlertHistory, TraceTreeNode, HealthReport, AgentUsageRecord, AgentUsageFilter, UsageStats, AgentWho, AgentSession, ApiKey, CreatedApiKey, WebhookConfig, WebhookEvent, WebhookDelivery, } from './types.js';
|
|
9
9
|
import { TraceContext } from './types.js';
|
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { randomUUID, createHash, createHmac } from 'node:crypto';
|
|
|
6
6
|
import { EventEmitter } from 'node:events';
|
|
7
7
|
import { TraceStorage } from './storage.js';
|
|
8
8
|
import { TokenBucketRateLimiter } from './rate-limiter.js';
|
|
9
|
-
export const VERSION = '0.3.
|
|
9
|
+
export const VERSION = '0.3.3';
|
|
10
10
|
export const PACKAGE_NAME = '@agenttrace-io/sdk';
|
|
11
11
|
// Value import — TraceContext is a class (value), not just a type.
|
|
12
12
|
// Must be a separate import from the type-only block above so isolatedModules
|
package/package.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenttrace-io/sdk",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Drop-in tracing SDK for AI agents — track tokens, cost, latency, and tool calls",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20.0.0 <24.0.0"
|
|
9
|
+
},
|
|
7
10
|
"main": "./dist/index.js",
|
|
8
11
|
"types": "./dist/index.d.ts",
|
|
9
12
|
"exports": {
|