diff --git a/src/pcb/pcb_fabrication_note_path.ts b/src/pcb/pcb_fabrication_note_path.ts index d95579c..ab675f5 100644 --- a/src/pcb/pcb_fabrication_note_path.ts +++ b/src/pcb/pcb_fabrication_note_path.ts @@ -11,6 +11,7 @@ export const pcb_fabrication_note_path = z layer: visible_layer, route: z.array(point), stroke_width: length, + color: z.string().optional(), }) .describe( "Defines a fabrication path on the PCB for fabricators or assemblers", diff --git a/src/pcb/pcb_fabrication_note_text.ts b/src/pcb/pcb_fabrication_note_text.ts index 0a87af8..7db9d29 100644 --- a/src/pcb/pcb_fabrication_note_text.ts +++ b/src/pcb/pcb_fabrication_note_text.ts @@ -15,6 +15,7 @@ export const pcb_fabrication_note_text = z anchor_alignment: z .enum(["center", "top_left", "top_right", "bottom_left", "bottom_right"]) .default("center"), + color: z.string().optional(), }) .describe( "Defines a fabrication note in text on the PCB, useful for leaving notes for assemblers or fabricators",