/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 250c868597d7 */ import * as z from "zod/v4"; import { remap as remap$ } from "../../lib/primitives.js"; import { safeParse } from "../../lib/schemas.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { TempoGetTraceResponse, TempoGetTraceResponse$inboundSchema, } from "./tempogettraceresponse.js"; import { WorkflowExecutionStatus, WorkflowExecutionStatus$inboundSchema, } from "./workflowexecutionstatus.js"; export type WorkflowExecutionTraceOTelResponse = { /** * The name of the workflow */ workflowName: string; /** * The ID of the workflow execution */ executionId: string; /** * The parent execution ID of the workflow execution */ parentExecutionId?: string | null | undefined; /** * The root execution ID of the workflow execution */ rootExecutionId: string; /** * The unique run identifier (database UUID) */ runId?: string | null | undefined; /** * The status of the workflow execution */ status: WorkflowExecutionStatus | null; /** * The start time of the workflow execution */ startTime: Date; /** * The end time of the workflow execution, if available */ endTime: Date | null; /** * The total duration of the trace in milliseconds */ totalDurationMs?: number | null | undefined; /** * The result of the workflow execution, if available */ result: any | null; /** * The data source of the trace */ dataSource: string; /** * The ID of the trace */ otelTraceId?: string | null | undefined; /** * The raw OpenTelemetry trace data */ otelTraceData?: TempoGetTraceResponse | null | undefined; }; /** @internal */ export const WorkflowExecutionTraceOTelResponse$inboundSchema: z.ZodType< WorkflowExecutionTraceOTelResponse, unknown > = z.object({ workflow_name: z.string(), execution_id: z.string(), parent_execution_id: z.nullable(z.string()).optional(), root_execution_id: z.string(), run_id: z.nullable(z.string()).optional(), status: z.nullable(WorkflowExecutionStatus$inboundSchema), start_time: z.iso.datetime({ offset: true }).transform(v => new Date(v)), end_time: z.nullable( z.iso.datetime({ offset: true }).transform(v => new Date(v)), ), total_duration_ms: z.nullable(z.int()).optional(), result: z.nullable(z.any()), data_source: z.string(), otel_trace_id: z.nullable(z.string()).optional(), otel_trace_data: z.nullable(TempoGetTraceResponse$inboundSchema).optional(), }).transform((v) => { return remap$(v, { "workflow_name": "workflowName", "execution_id": "executionId", "parent_execution_id": "parentExecutionId", "root_execution_id": "rootExecutionId", "run_id": "runId", "start_time": "startTime", "end_time": "endTime", "total_duration_ms": "totalDurationMs", "data_source": "dataSource", "otel_trace_id": "otelTraceId", "otel_trace_data": "otelTraceData", }); }); export function workflowExecutionTraceOTelResponseFromJSON( jsonString: string, ): SafeParseResult { return safeParse( jsonString, (x) => WorkflowExecutionTraceOTelResponse$inboundSchema.parse(JSON.parse(x)), `Failed to parse 'WorkflowExecutionTraceOTelResponse' from JSON`, ); }