@mastra/client-js 1.20.1-alpha.0 → 1.21.0-alpha.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.
@@ -0,0 +1,45 @@
1
+ /**
2
+ * Hand-rolled in-memory OTLP/JSON collector for client-side tool
3
+ * observability.
4
+ *
5
+ * The full OTEL JS stack (`@opentelemetry/sdk-trace-base` +
6
+ * `@opentelemetry/sdk-logs` + `@opentelemetry/otlp-transformer`) would
7
+ * add ~100KB gzipped to the bundle for what amounts to a tree of nested
8
+ * span timers and a flat array of log records. Mastra users running
9
+ * sophisticated browser OTEL setups can plug their own collector
10
+ * implementation in via `ClientOptions.observability.collectorFactory`;
11
+ * this is the simple default.
12
+ *
13
+ * Output is OTLP/JSON conforming to the public spec at
14
+ * https://opentelemetry.io/docs/specs/otlp/. Only the fields the server
15
+ * proxy in `@mastra/observability` actually reads are populated.
16
+ */
17
+ import type { ObservabilityCollector, ObservabilityCollectorFactory } from './types.js';
18
+ /**
19
+ * Default factory used when the user opts into the
20
+ * `@mastra/client-js/observability` subpath.
21
+ */
22
+ export declare const createObservabilityCollector: ObservabilityCollectorFactory;
23
+ /**
24
+ * Returns the collector active inside the currently-running client
25
+ * tool's `execute` function, or `undefined` when no collector is in
26
+ * scope (e.g. when running outside a client tool, or when the user has
27
+ * not opted into the `@mastra/client-js/observability` subpath).
28
+ *
29
+ * This accessor is browser-safe and best-effort. Prefer the `observe`
30
+ * object passed to `clientTool.execute(args, { observe })`; it is
31
+ * scoped to the current tool invocation and does not rely on ambient
32
+ * async context.
33
+ *
34
+ * ```ts
35
+ * import { getCurrentObservabilityCollector } from '@mastra/client-js/observability';
36
+ *
37
+ * execute: async input => {
38
+ * const collector = getCurrentObservabilityCollector();
39
+ * collector?.log('info', 'starting work');
40
+ * const result = await collector?.span('http GET /users', () => fetch(...));
41
+ * }
42
+ * ```
43
+ */
44
+ export declare function getCurrentObservabilityCollector(): ObservabilityCollector | undefined;
45
+ //# sourceMappingURL=collector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"collector.d.ts","sourceRoot":"","sources":["../../src/observability/collector.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAIH,OAAO,KAAK,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC;AAgRrF;;;GAGG;AACH,eAAO,MAAM,4BAA4B,EAAE,6BACI,CAAC;AAMhD;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,wBAAgB,gCAAgC,IAAI,sBAAsB,GAAG,SAAS,CAErF"}
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Client observability internals.
3
+ *
4
+ * These files implement the in-memory OTLP/JSON collector that buffers
5
+ * spans and logs from inside client-side execute functions. The
6
+ * collector is created automatically by the SDK whenever the server
7
+ * sends a W3C trace context carrier — no user configuration needed.
8
+ *
9
+ * Users interact via `observe` on the tool execution context, not
10
+ * with the collector directly.
11
+ */
12
+ export { createObservabilityCollector } from './collector.js';
13
+ export type { ObservabilityCollector, ObservabilityCollectorFactory } from './types.js';
14
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/observability/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EAAE,4BAA4B,EAAE,MAAM,aAAa,CAAC;AAC3D,YAAY,EAAE,sBAAsB,EAAE,6BAA6B,EAAE,MAAM,SAAS,CAAC"}
@@ -0,0 +1,27 @@
1
+ /**
2
+ * Client observability types for @mastra/client-js.
3
+ *
4
+ * These are internal to the SDK — users interact via `observe` on the
5
+ * tool execution context, not with the collector directly.
6
+ */
7
+ import type { ClientObservabilityCarrier, ClientObservabilityPayload } from '@mastra/core/observability';
8
+ /**
9
+ * Per-invocation collector that buffers spans and logs from inside a
10
+ * client-side execute function. Created automatically by the SDK when
11
+ * the server sends a W3C carrier on a tool-call chunk.
12
+ */
13
+ export interface ObservabilityCollector {
14
+ /** The W3C carrier this collector is parented under. */
15
+ readonly parentContext: ClientObservabilityCarrier;
16
+ /** Wrap an async operation in a child span. */
17
+ span<T>(name: string, fn: () => Promise<T> | T, attributes?: Record<string, unknown>): Promise<T>;
18
+ /** Record a structured log entry against the current innermost span. */
19
+ log(level: 'debug' | 'info' | 'warn' | 'error' | 'fatal', message: string, data?: Record<string, unknown>): void;
20
+ /** Run a function with this collector as the active context. */
21
+ withContext<T>(fn: () => Promise<T> | T): Promise<T>;
22
+ /** Drain all buffered spans and logs into an OTLP/JSON payload. */
23
+ flush(): ClientObservabilityPayload;
24
+ }
25
+ /** Factory that creates a collector from a W3C carrier. */
26
+ export type ObservabilityCollectorFactory = (parentContext: ClientObservabilityCarrier) => ObservabilityCollector;
27
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/observability/types.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,KAAK,EAAE,0BAA0B,EAAE,0BAA0B,EAAE,MAAM,4BAA4B,CAAC;AAEzG;;;;GAIG;AACH,MAAM,WAAW,sBAAsB;IACrC,wDAAwD;IACxD,QAAQ,CAAC,aAAa,EAAE,0BAA0B,CAAC;IAEnD,+CAA+C;IAC/C,IAAI,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;IAElG,wEAAwE;IACxE,GAAG,CAAC,KAAK,EAAE,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,IAAI,CAAC;IAEjH,gEAAgE;IAChE,WAAW,CAAC,CAAC,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC,CAAC,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,CAAC,CAAC,CAAC;IAErD,mEAAmE;IACnE,KAAK,IAAI,0BAA0B,CAAC;CACrC;AAED,2DAA2D;AAC3D,MAAM,MAAM,6BAA6B,GAAG,CAAC,aAAa,EAAE,0BAA0B,KAAK,sBAAsB,CAAC"}
@@ -1,5 +1,5 @@
1
- import { processDataStream } from '../_types/@ai-sdk_ui-utils/dist/index.js';
2
- import type { JSONValue } from '../_types/@ai-sdk_ui-utils/dist/index.js';
1
+ import { processDataStream } from '../_types/@ai-sdk_ui-utils/dist/index.d.ts';
2
+ import type { JSONValue } from '../_types/@ai-sdk_ui-utils/dist/index.d.ts';
3
3
  import type { MessageListInput } from '@mastra/core/agent/message-list';
4
4
  import type { GenerateReturn } from '@mastra/core/llm';
5
5
  import type { RequestContext } from '@mastra/core/request-context';
@@ -1 +1 @@
1
- {"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/resources/agent.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"agent.d.ts","sourceRoot":"","sources":["../../src/resources/agent.ts"],"names":[],"mappings":"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"}
@@ -7907,7 +7907,7 @@ export type GetObservabilityTraces_QueryParams = {
7907
7907
  /** When true, excludes the end date from results (uses < instead of <=) */
7908
7908
  endExclusive?: boolean | undefined;
7909
7909
  } | undefined) | undefined) | any;
7910
- spanType?: (('agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined) | undefined;
7910
+ spanType?: (('agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined) | undefined;
7911
7911
  traceId?: (string | undefined) | undefined;
7912
7912
  entityType?: ((('agent' | 'scorer' | 'rag_ingestion' | 'trajectory' | 'input_processor' | 'input_step_processor' | 'output_processor' | 'output_step_processor' | 'workflow_step' | 'tool' | 'workflow_run' | 'memory') | null) | undefined) | undefined;
7913
7913
  entityId?: ((string | null) | undefined) | undefined;
@@ -7986,7 +7986,7 @@ export type GetObservabilityTraces_Response = {
7986
7986
  /** Human-readable span name */
7987
7987
  name: string;
7988
7988
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
7989
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
7989
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
7990
7990
  /** Whether this is an event (point-in-time) vs a span (duration) */
7991
7991
  isEvent: boolean;
7992
7992
  /** When the span started */
@@ -8082,7 +8082,7 @@ export type GetObservabilityTracesLight_QueryParams = {
8082
8082
  /** When true, excludes the end date from results (uses < instead of <=) */
8083
8083
  endExclusive?: boolean | undefined;
8084
8084
  } | undefined) | undefined) | any;
8085
- spanType?: (('agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined) | undefined;
8085
+ spanType?: (('agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined) | undefined;
8086
8086
  traceId?: (string | undefined) | undefined;
8087
8087
  entityType?: (string | undefined) | undefined;
8088
8088
  entityId?: ((string | null) | undefined) | undefined;
@@ -8151,7 +8151,7 @@ export type GetObservabilityTracesLight_Response = {
8151
8151
  /** Human-readable span name */
8152
8152
  name: string;
8153
8153
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
8154
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8154
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8155
8155
  /** Whether this is an event (point-in-time) vs a span (duration) */
8156
8156
  isEvent: boolean;
8157
8157
  /** When the span started */
@@ -8207,7 +8207,7 @@ export type GetObservabilityBranches_QueryParams = {
8207
8207
  /** When true, excludes the end date from results (uses < instead of <=) */
8208
8208
  endExclusive?: boolean | undefined;
8209
8209
  } | undefined) | undefined) | any;
8210
- spanType?: (('agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined) | undefined;
8210
+ spanType?: (('agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined) | undefined;
8211
8211
  traceId?: (string | undefined) | undefined;
8212
8212
  entityType?: ((('agent' | 'scorer' | 'rag_ingestion' | 'trajectory' | 'input_processor' | 'input_step_processor' | 'output_processor' | 'output_step_processor' | 'workflow_step' | 'tool' | 'workflow_run' | 'memory') | null) | undefined) | undefined;
8213
8213
  entityId?: ((string | null) | undefined) | undefined;
@@ -8274,7 +8274,7 @@ export type GetObservabilityBranches_Response = {
8274
8274
  /** Human-readable span name */
8275
8275
  name: string;
8276
8276
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
8277
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8277
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8278
8278
  /** Whether this is an event (point-in-time) vs a span (duration) */
8279
8279
  isEvent: boolean;
8280
8280
  /** When the span started */
@@ -8370,7 +8370,7 @@ export type GetObservabilityTracesTraceIdBranchesSpanId_Response = {
8370
8370
  /** Human-readable span name */
8371
8371
  name: string;
8372
8372
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
8373
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8373
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8374
8374
  /** Whether this is an event (point-in-time) vs a span (duration) */
8375
8375
  isEvent: boolean;
8376
8376
  /** When the span started */
@@ -8458,7 +8458,7 @@ export type GetObservabilityTracesTraceId_Response = {
8458
8458
  /** Human-readable span name */
8459
8459
  name: string;
8460
8460
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
8461
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8461
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8462
8462
  /** Whether this is an event (point-in-time) vs a span (duration) */
8463
8463
  isEvent: boolean;
8464
8464
  /** When the span started */
@@ -8546,7 +8546,7 @@ export type GetObservabilityTracesTraceIdLight_Response = {
8546
8546
  /** Human-readable span name */
8547
8547
  name: string;
8548
8548
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
8549
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8549
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8550
8550
  /** Whether this is an event (point-in-time) vs a span (duration) */
8551
8551
  isEvent: boolean;
8552
8552
  /** When the span started */
@@ -8597,7 +8597,7 @@ export type GetObservabilityTracesTraceIdSpansSpanId_Response = {
8597
8597
  /** Human-readable span name */
8598
8598
  name: string;
8599
8599
  /** Span type (e.g., WORKFLOW_RUN, AGENT_RUN, TOOL_CALL, etc.) */
8600
- spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8600
+ spanType: 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping';
8601
8601
  /** Whether this is an event (point-in-time) vs a span (duration) */
8602
8602
  isEvent: boolean;
8603
8603
  /** When the span started */
@@ -8786,7 +8786,7 @@ export type GetObservabilityTracesTraceIdSpanIdScores_Response = {
8786
8786
  entity: {
8787
8787
  [key: string]: unknown;
8788
8788
  };
8789
- entityType?: ('AGENT' | 'WORKFLOW' | 'TRAJECTORY' | 'STEP' | 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined;
8789
+ entityType?: ('AGENT' | 'WORKFLOW' | 'TRAJECTORY' | 'STEP' | 'agent_run' | 'scorer_run' | 'scorer_step' | 'generic' | 'model_generation' | 'model_step' | 'model_inference' | 'model_chunk' | 'mcp_tool_call' | 'processor_run' | 'tool_call' | 'client_tool_call' | 'workflow_run' | 'workflow_step' | 'workflow_conditional' | 'workflow_conditional_eval' | 'workflow_parallel' | 'workflow_loop' | 'workflow_sleep' | 'workflow_wait_event' | 'memory_operation' | 'workspace_action' | 'rag_ingestion' | 'rag_embedding' | 'rag_vector_operation' | 'rag_action' | 'graph_action' | 'mapping') | undefined;
8790
8790
  structuredOutput?: boolean | undefined;
8791
8791
  traceId?: string | undefined;
8792
8792
  spanId?: string | undefined;