Skip to content

Commit

Permalink
add correctly named fabrication ids
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Sep 11, 2024
1 parent 75822b5 commit 44fdd20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/pcb/pcb_fabrication_note_path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { length } from "src/units"
export const pcb_fabrication_note_path = z
.object({
type: z.literal("pcb_fabrication_note_path"),
fabrication_note_path_id: z.string(),
pcb_fabrication_note_path_id: z.string(),
pcb_component_id: z.string(),
layer: visible_layer,
route: z.array(point),
Expand Down
1 change: 1 addition & 0 deletions src/pcb/pcb_fabrication_note_text.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { distance } from "src/units"
export const pcb_fabrication_note_text = z
.object({
type: z.literal("pcb_fabrication_note_text"),
pcb_fabrication_note_text_id: z.string(),
font: z.literal("tscircuit2024").default("tscircuit2024"),
font_size: distance.default("1mm"),
pcb_component_id: z.string(),
Expand Down

0 comments on commit 44fdd20

Please sign in to comment.