circuit-json 0.0.161 → 0.0.163

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
@@ -302,7 +302,8 @@ var source_component_base = z7.object({
302
302
  name: z7.string(),
303
303
  manufacturer_part_number: z7.string().optional(),
304
304
  supplier_part_numbers: z7.record(supplier_name, z7.array(z7.string())).optional(),
305
- display_value: z7.string().optional()
305
+ display_value: z7.string().optional(),
306
+ are_pins_interchangeable: z7.boolean().optional()
306
307
  });
307
308
  expectTypesMatch(true);
308
309