agent-inspect 6.3.0 → 6.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/CHANGELOG.md +12 -0
- package/README.md +2 -2
- package/package.json +2 -2
- package/packages/cli/dist/{chunk-YS2I722C.mjs → chunk-M6PC5KUT.mjs} +78 -31
- package/packages/cli/dist/chunk-M6PC5KUT.mjs.map +1 -0
- package/packages/cli/dist/index.cjs +153 -42
- package/packages/cli/dist/index.cjs.map +1 -1
- package/packages/cli/dist/index.mjs +88 -36
- package/packages/cli/dist/index.mjs.map +1 -1
- package/packages/cli/dist/{src-FVNE44UA.mjs → src-27LC2BB3.mjs} +8 -5
- package/packages/cli/dist/src-27LC2BB3.mjs.map +1 -0
- package/packages/core/dist/advanced.cjs +91 -35
- package/packages/core/dist/advanced.cjs.map +1 -1
- package/packages/core/dist/advanced.d.cts +36 -12
- package/packages/core/dist/advanced.d.ts +36 -12
- package/packages/core/dist/advanced.mjs +77 -24
- package/packages/core/dist/advanced.mjs.map +1 -1
- package/packages/core/dist/checks.cjs +113 -0
- package/packages/core/dist/checks.cjs.map +1 -1
- package/packages/core/dist/checks.d.cts +40 -599
- package/packages/core/dist/checks.d.ts +40 -599
- package/packages/core/dist/checks.mjs +1 -1
- package/packages/core/dist/{chunk-QLYOCCEF.mjs → chunk-EWHN6NA4.mjs} +114 -3
- package/packages/core/dist/chunk-EWHN6NA4.mjs.map +1 -0
- package/packages/core/dist/{context-DyKbkmd4.d.cts → context-BHAgRjOe.d.cts} +4 -4
- package/packages/core/dist/{context-BJ5UQLDi.d.ts → context-Blyjb5my.d.ts} +4 -4
- package/packages/core/dist/diff.d.cts +3 -3
- package/packages/core/dist/diff.d.ts +3 -3
- package/packages/core/dist/exporters.cjs +75 -0
- package/packages/core/dist/exporters.cjs.map +1 -1
- package/packages/core/dist/exporters.d.cts +29 -4
- package/packages/core/dist/exporters.d.ts +29 -4
- package/packages/core/dist/exporters.mjs +71 -1
- package/packages/core/dist/exporters.mjs.map +1 -1
- package/packages/core/dist/index-BblJEdYZ.d.ts +618 -0
- package/packages/core/dist/index-DyKk7iR9.d.cts +618 -0
- package/packages/core/dist/index.d.cts +7 -7
- package/packages/core/dist/index.d.ts +7 -7
- package/packages/core/dist/{inspect-event-IqwOHbGo.d.cts → inspect-event-DVg84S4v.d.cts} +1 -1
- package/packages/core/dist/{inspect-event-IqwOHbGo.d.ts → inspect-event-DVg84S4v.d.ts} +1 -1
- package/packages/core/dist/{log-config-CW8w5YQ9.d.cts → log-config-BG1WmWf2.d.cts} +1 -1
- package/packages/core/dist/{log-config-SRA4xTp8.d.ts → log-config-Ck0aT_Ou.d.ts} +1 -1
- package/packages/core/dist/logs.d.cts +3 -3
- package/packages/core/dist/logs.d.ts +3 -3
- package/packages/core/dist/{persisted-inspect-event-DruwqARZ.d.ts → persisted-inspect-event-ChE7pGb7.d.ts} +1 -1
- package/packages/core/dist/{persisted-inspect-event-Gd-W8vB7.d.cts → persisted-inspect-event-d-mSP8kd.d.cts} +1 -1
- package/packages/core/dist/persisted.d.cts +5 -5
- package/packages/core/dist/persisted.d.ts +5 -5
- package/packages/core/dist/readers.d.cts +2 -2
- package/packages/core/dist/readers.d.ts +2 -2
- package/packages/core/dist/{types-J3Xtuf9x.d.cts → types-B562HgN_.d.cts} +1 -1
- package/packages/core/dist/{types-J3Xtuf9x.d.ts → types-B562HgN_.d.ts} +1 -1
- package/packages/core/dist/{types-B1X87dUW.d.cts → types-BLX3tiOW.d.cts} +1 -1
- package/packages/core/dist/{types-BVkjSd0q.d.ts → types-MuwXSJ4b.d.ts} +1 -1
- package/packages/core/dist/writers.d.cts +2 -2
- package/packages/core/dist/writers.d.ts +2 -2
- package/packages/cli/dist/chunk-YS2I722C.mjs.map +0 -1
- package/packages/cli/dist/src-FVNE44UA.mjs.map +0 -1
- package/packages/core/dist/chunk-QLYOCCEF.mjs.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as LogIngestConfig, a as LogEventMapping, R as RedactionRule } from './log-config-
|
|
2
|
-
export { b as RedactionStrategy } from './log-config-
|
|
3
|
-
import {
|
|
1
|
+
import { L as LogIngestConfig, a as LogEventMapping, R as RedactionRule } from './log-config-BG1WmWf2.cjs';
|
|
2
|
+
export { b as RedactionStrategy } from './log-config-BG1WmWf2.cjs';
|
|
3
|
+
import { c as InspectEvent, a as InspectRunTree } from './inspect-event-DVg84S4v.cjs';
|
|
4
4
|
|
|
5
5
|
type ParserWarningCode = "MALFORMED_JSON" | "MISSING_RUN_ID" | "MISSING_EVENT" | "MISSING_TIMESTAMP" | "UNSUPPORTED_LOG4JS_PAYLOAD" | "CONFIG_ERROR" | "UNKNOWN";
|
|
6
6
|
interface ParserWarning {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { L as LogIngestConfig, a as LogEventMapping, R as RedactionRule } from './log-config-
|
|
2
|
-
export { b as RedactionStrategy } from './log-config-
|
|
3
|
-
import {
|
|
1
|
+
import { L as LogIngestConfig, a as LogEventMapping, R as RedactionRule } from './log-config-Ck0aT_Ou.js';
|
|
2
|
+
export { b as RedactionStrategy } from './log-config-Ck0aT_Ou.js';
|
|
3
|
+
import { c as InspectEvent, a as InspectRunTree } from './inspect-event-DVg84S4v.js';
|
|
4
4
|
|
|
5
5
|
type ParserWarningCode = "MALFORMED_JSON" | "MISSING_RUN_ID" | "MISSING_EVENT" | "MISSING_TIMESTAMP" | "UNSUPPORTED_LOG4JS_PAYLOAD" | "CONFIG_ERROR" | "UNKNOWN";
|
|
6
6
|
interface ParserWarning {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as InspectKind, A as AttributionConfidence } from './inspect-event-
|
|
1
|
+
import { I as InspectKind, A as AttributionConfidence } from './inspect-event-DVg84S4v.js';
|
|
2
2
|
|
|
3
3
|
type PersistedSchemaVersion = "0.2" | "1.0";
|
|
4
4
|
type PersistedEventSourceType = "manual" | "json-log" | "log4js" | "adapter" | "ai-sdk" | "otel";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { I as InspectKind, A as AttributionConfidence } from './inspect-event-
|
|
1
|
+
import { I as InspectKind, A as AttributionConfidence } from './inspect-event-DVg84S4v.cjs';
|
|
2
2
|
|
|
3
3
|
type PersistedSchemaVersion = "0.2" | "1.0";
|
|
4
4
|
type PersistedEventSourceType = "manual" | "json-log" | "log4js" | "adapter" | "ai-sdk" | "otel";
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { P as PersistedInspectEvent } from './persisted-inspect-event-
|
|
2
|
-
export { a as PersistedEventSource, b as PersistedEventSourceType, c as PersistedEventStatus, d as PersistedInspectError, e as PersistedInspectEventV02, f as PersistedInspectEventV10, g as PersistedSchemaVersion, h as PersistedTokenUsage, i as PersistedTraceContext, j as isPersistedInspectEvent, k as isPersistedInspectEventV02, l as isPersistedInspectEventV10 } from './persisted-inspect-event-
|
|
3
|
-
import { h as TraceEvent } from './types-
|
|
4
|
-
import {
|
|
5
|
-
import './log-config-
|
|
1
|
+
import { P as PersistedInspectEvent } from './persisted-inspect-event-d-mSP8kd.cjs';
|
|
2
|
+
export { a as PersistedEventSource, b as PersistedEventSourceType, c as PersistedEventStatus, d as PersistedInspectError, e as PersistedInspectEventV02, f as PersistedInspectEventV10, g as PersistedSchemaVersion, h as PersistedTokenUsage, i as PersistedTraceContext, j as isPersistedInspectEvent, k as isPersistedInspectEventV02, l as isPersistedInspectEventV10 } from './persisted-inspect-event-d-mSP8kd.cjs';
|
|
3
|
+
import { h as TraceEvent } from './types-BLX3tiOW.cjs';
|
|
4
|
+
import { c as InspectEvent, a as InspectRunTree } from './inspect-event-DVg84S4v.cjs';
|
|
5
|
+
import './log-config-BG1WmWf2.cjs';
|
|
6
6
|
|
|
7
7
|
interface TraceEventToPersistedOptions {
|
|
8
8
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { P as PersistedInspectEvent } from './persisted-inspect-event-
|
|
2
|
-
export { a as PersistedEventSource, b as PersistedEventSourceType, c as PersistedEventStatus, d as PersistedInspectError, e as PersistedInspectEventV02, f as PersistedInspectEventV10, g as PersistedSchemaVersion, h as PersistedTokenUsage, i as PersistedTraceContext, j as isPersistedInspectEvent, k as isPersistedInspectEventV02, l as isPersistedInspectEventV10 } from './persisted-inspect-event-
|
|
3
|
-
import { h as TraceEvent } from './types-
|
|
4
|
-
import {
|
|
5
|
-
import './log-config-
|
|
1
|
+
import { P as PersistedInspectEvent } from './persisted-inspect-event-ChE7pGb7.js';
|
|
2
|
+
export { a as PersistedEventSource, b as PersistedEventSourceType, c as PersistedEventStatus, d as PersistedInspectError, e as PersistedInspectEventV02, f as PersistedInspectEventV10, g as PersistedSchemaVersion, h as PersistedTokenUsage, i as PersistedTraceContext, j as isPersistedInspectEvent, k as isPersistedInspectEventV02, l as isPersistedInspectEventV10 } from './persisted-inspect-event-ChE7pGb7.js';
|
|
3
|
+
import { h as TraceEvent } from './types-MuwXSJ4b.js';
|
|
4
|
+
import { c as InspectEvent, a as InspectRunTree } from './inspect-event-DVg84S4v.js';
|
|
5
|
+
import './log-config-Ck0aT_Ou.js';
|
|
6
6
|
|
|
7
7
|
interface TraceEventToPersistedOptions {
|
|
8
8
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { P as PersistedInspectEvent } from './persisted-inspect-event-
|
|
1
|
+
import { a as InspectRunTree } from './inspect-event-DVg84S4v.cjs';
|
|
2
|
+
import { P as PersistedInspectEvent } from './persisted-inspect-event-d-mSP8kd.cjs';
|
|
3
3
|
|
|
4
4
|
type TraceInput = {
|
|
5
5
|
type: "file";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { P as PersistedInspectEvent } from './persisted-inspect-event-
|
|
1
|
+
import { a as InspectRunTree } from './inspect-event-DVg84S4v.js';
|
|
2
|
+
import { P as PersistedInspectEvent } from './persisted-inspect-event-ChE7pGb7.js';
|
|
3
3
|
|
|
4
4
|
type TraceInput = {
|
|
5
5
|
type: "file";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as PersistedInspectEvent } from './persisted-inspect-event-
|
|
2
|
-
import './inspect-event-
|
|
1
|
+
import { P as PersistedInspectEvent } from './persisted-inspect-event-d-mSP8kd.cjs';
|
|
2
|
+
import './inspect-event-DVg84S4v.cjs';
|
|
3
3
|
|
|
4
4
|
interface TraceWriterStats {
|
|
5
5
|
writtenEvents: number;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { P as PersistedInspectEvent } from './persisted-inspect-event-
|
|
2
|
-
import './inspect-event-
|
|
1
|
+
import { P as PersistedInspectEvent } from './persisted-inspect-event-ChE7pGb7.js';
|
|
2
|
+
import './inspect-event-DVg84S4v.js';
|
|
3
3
|
|
|
4
4
|
interface TraceWriterStats {
|
|
5
5
|
writtenEvents: number;
|