From 4fd6449ea7ec2248a063c8a145c4434184e91558 Mon Sep 17 00:00:00 2001 From: Abimael Martell Date: Thu, 14 Aug 2025 11:13:16 -0700 Subject: [PATCH] Add stroke to Schematic Trace --- src/schematic/schematic_trace.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/schematic/schematic_trace.ts b/src/schematic/schematic_trace.ts index 5dc7ef8..ebde7a2 100644 --- a/src/schematic/schematic_trace.ts +++ b/src/schematic/schematic_trace.ts @@ -26,6 +26,7 @@ export interface SchematicTrace { }[] edges: SchematicTraceEdge[] subcircuit_id?: string + stroke?: string } export const schematic_trace = z.object({ @@ -54,6 +55,7 @@ export const schematic_trace = z.object({ }), ), subcircuit_id: z.string().optional(), + stroke: z.string().optional(), }) export type SchematicTraceInput = z.input