circuit-json 0.0.262 → 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/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