circuit-json 0.0.263 → 0.0.265
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 +1 -1
- package/dist/index.d.mts +10 -343
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -334,8 +334,7 @@ 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()
|
|
338
|
-
do_not_place: z8.boolean().optional().default(false)
|
|
337
|
+
subcircuit_id: z8.string().optional()
|
|
339
338
|
});
|
|
340
339
|
expectTypesMatch(true);
|
|
341
340
|
|
|
@@ -1215,6 +1214,7 @@ var pcb_component = z66.object({
|
|
|
1215
1214
|
rotation,
|
|
1216
1215
|
width: length,
|
|
1217
1216
|
height: length,
|
|
1217
|
+
do_not_place: z66.boolean().optional(),
|
|
1218
1218
|
subcircuit_id: z66.string().optional(),
|
|
1219
1219
|
pcb_group_id: z66.string().optional()
|
|
1220
1220
|
}).describe("Defines a component on the PCB");
|