circuit-json 0.0.261 → 0.0.263
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +27 -1
- package/dist/index.d.mts +365 -22
- package/dist/index.mjs +4 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -334,7 +334,8 @@ var source_component_base = z8.object({
|
|
|
334
334
|
are_pins_interchangeable: z8.boolean().optional(),
|
|
335
335
|
internally_connected_source_port_ids: z8.array(z8.array(z8.string())).optional(),
|
|
336
336
|
source_group_id: z8.string().optional(),
|
|
337
|
-
subcircuit_id: z8.string().optional()
|
|
337
|
+
subcircuit_id: z8.string().optional(),
|
|
338
|
+
do_not_place: z8.boolean().optional().default(false)
|
|
338
339
|
});
|
|
339
340
|
expectTypesMatch(true);
|
|
340
341
|
|
|
@@ -1641,7 +1642,7 @@ var pcb_trace = z73.object({
|
|
|
1641
1642
|
route_order_index: z73.number().optional(),
|
|
1642
1643
|
should_round_corners: z73.boolean().optional(),
|
|
1643
1644
|
trace_length: z73.number().optional(),
|
|
1644
|
-
|
|
1645
|
+
highlight_color: z73.string().optional(),
|
|
1645
1646
|
route: z73.array(pcb_trace_route_point)
|
|
1646
1647
|
}).describe("Defines a trace on the PCB");
|
|
1647
1648
|
expectTypesMatch(true);
|
|
@@ -1717,7 +1718,7 @@ var pcb_net = z78.object({
|
|
|
1717
1718
|
type: z78.literal("pcb_net"),
|
|
1718
1719
|
pcb_net_id: getZodPrefixedIdWithDefault("pcb_net"),
|
|
1719
1720
|
source_net_id: z78.string().optional(),
|
|
1720
|
-
|
|
1721
|
+
highlight_color: z78.string().optional()
|
|
1721
1722
|
}).describe("Defines a net on the PCB");
|
|
1722
1723
|
expectTypesMatch(true);
|
|
1723
1724
|
|