Skip to content

Commit

Permalink
add the source_group_is missing in pcb_group
Browse files Browse the repository at this point in the history
  • Loading branch information
imrishabh18 committed Jan 20, 2025
1 parent 95eb8ae commit a3cf138
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pcb/pcb_group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ export const pcb_group = z
.object({
type: z.literal("pcb_group"),
pcb_group_id: getZodPrefixedIdWithDefault("pcb_group"),
source_group_id: z.string(),
is_subcircuit: z.boolean().optional(),
subcircuit_id: z.string().optional(),
width: length,
Expand All @@ -27,6 +28,7 @@ type InferredPcbGroup = z.infer<typeof pcb_group>
export interface PcbGroup {
type: "pcb_group"
pcb_group_id: string
source_group_id: string
is_subcircuit?: boolean
subcircuit_id?: string
width: Length
Expand Down

0 comments on commit a3cf138

Please sign in to comment.