circuit-json 0.0.168 → 0.0.170
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 +2 -0
- package/dist/index.d.mts +326 -0
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -303,7 +303,8 @@ var source_component_base = z7.object({
|
|
|
303
303
|
manufacturer_part_number: z7.string().optional(),
|
|
304
304
|
supplier_part_numbers: z7.record(supplier_name, z7.array(z7.string())).optional(),
|
|
305
305
|
display_value: z7.string().optional(),
|
|
306
|
-
are_pins_interchangeable: z7.boolean().optional()
|
|
306
|
+
are_pins_interchangeable: z7.boolean().optional(),
|
|
307
|
+
internally_connected_source_port_ids: z7.array(z7.array(z7.string())).optional()
|
|
307
308
|
});
|
|
308
309
|
expectTypesMatch(true);
|
|
309
310
|
|
|
@@ -735,6 +736,7 @@ var schematic_text = z41.object({
|
|
|
735
736
|
schematic_component_id: z41.string().optional(),
|
|
736
737
|
schematic_text_id: z41.string(),
|
|
737
738
|
text: z41.string(),
|
|
739
|
+
font_size: z41.number().default(1),
|
|
738
740
|
position: z41.object({
|
|
739
741
|
x: distance,
|
|
740
742
|
y: distance
|