@evalops/sdk-ts 0.1.99 → 0.1.100

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.
@@ -693,6 +693,41 @@ export type AgentRunLinkage = Message<"agentruntime.v1.AgentRunLinkage"> & {
693
693
  * Use `create(AgentRunLinkageSchema)` to create a new message.
694
694
  */
695
695
  export declare const AgentRunLinkageSchema: GenMessage<AgentRunLinkage>;
696
+ /**
697
+ * RuntimeTraceContext captures the W3C trace context that causally owns a
698
+ * durable AgentRun lifecycle record. It is persisted with runs, events, and
699
+ * steps so retries, worker claims, and parked waits can resume the same
700
+ * distributed trace instead of starting unrelated service-local traces.
701
+ *
702
+ * @generated from message agentruntime.v1.RuntimeTraceContext
703
+ */
704
+ export type RuntimeTraceContext = Message<"agentruntime.v1.RuntimeTraceContext"> & {
705
+ /**
706
+ * @generated from field: string trace_id = 1;
707
+ */
708
+ traceId: string;
709
+ /**
710
+ * @generated from field: string span_id = 2;
711
+ */
712
+ spanId: string;
713
+ /**
714
+ * @generated from field: string parent_span_id = 3;
715
+ */
716
+ parentSpanId: string;
717
+ /**
718
+ * @generated from field: string traceparent = 4;
719
+ */
720
+ traceparent: string;
721
+ /**
722
+ * @generated from field: string tracestate = 5;
723
+ */
724
+ tracestate: string;
725
+ };
726
+ /**
727
+ * Describes the message agentruntime.v1.RuntimeTraceContext.
728
+ * Use `create(RuntimeTraceContextSchema)` to create a new message.
729
+ */
730
+ export declare const RuntimeTraceContextSchema: GenMessage<RuntimeTraceContext>;
696
731
  /**
697
732
  * AgentRun is the canonical agent runtime execution record. It owns the
698
733
  * durable child records needed to resume from checkpoints and audit each
@@ -825,6 +860,10 @@ export type AgentRun = Message<"agentruntime.v1.AgentRun"> & {
825
860
  * @generated from field: repeated agentruntime.v1.AgentRunCheckpoint checkpoints = 33;
826
861
  */
827
862
  checkpoints: AgentRunCheckpoint[];
863
+ /**
864
+ * @generated from field: agentruntime.v1.RuntimeTraceContext trace_context = 34;
865
+ */
866
+ traceContext?: RuntimeTraceContext | undefined;
828
867
  };
829
868
  /**
830
869
  * Describes the message agentruntime.v1.AgentRun.
@@ -942,6 +981,10 @@ export type AgentRunStep = Message<"agentruntime.v1.AgentRunStep"> & {
942
981
  * @generated from field: codex.v1.CodexRunProgress codex_progress = 17;
943
982
  */
944
983
  codexProgress?: CodexRunProgress | undefined;
984
+ /**
985
+ * @generated from field: agentruntime.v1.RuntimeTraceContext trace_context = 18;
986
+ */
987
+ traceContext?: RuntimeTraceContext | undefined;
945
988
  };
946
989
  /**
947
990
  * Describes the message agentruntime.v1.AgentRunStep.
@@ -1282,6 +1325,10 @@ export type RuntimeEvent = Message<"agentruntime.v1.RuntimeEvent"> & {
1282
1325
  * @generated from field: codex.v1.CodexOutcomeSignal codex_outcome = 20;
1283
1326
  */
1284
1327
  codexOutcome?: CodexOutcomeSignal | undefined;
1328
+ /**
1329
+ * @generated from field: agentruntime.v1.RuntimeTraceContext trace_context = 21;
1330
+ */
1331
+ traceContext?: RuntimeTraceContext | undefined;
1285
1332
  };
1286
1333
  /**
1287
1334
  * Describes the message agentruntime.v1.RuntimeEvent.