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/README.md +14 -2
- package/dist/index.d.mts +316 -0
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,8 +87,19 @@ and is the primary way that Circuit JSON is defined and maintained.
|
|
|
87
87
|
- [PcbTrace](#pcbtrace)
|
|
88
88
|
- [PcbTraceError](#pcbtraceerror)
|
|
89
89
|
- [PcbTraceHint](#pcbtracehint)
|
|
90
|
-
- [Schematic Elements](#schematic-elements)
|
|
91
|
-
|
|
90
|
+
- [Schematic Elements](#schematic-elements)
|
|
91
|
+
- [SchematicBox](#schematicbox)
|
|
92
|
+
- [SchematicComponent](#schematiccomponent)
|
|
93
|
+
- [SchematicError](#schematicerror)
|
|
94
|
+
- [SchematicLine](#schematicline)
|
|
95
|
+
- [SchematicManualEditConflictWarning](#schematicmanualeditconflictwarning)
|
|
96
|
+
- [SchematicPath](#schematicpath)
|
|
97
|
+
- [SchematicPort](#schematicport)
|
|
98
|
+
- [SchematicText](#schematictext)
|
|
99
|
+
- [SchematicTrace](#schematictrace)
|
|
100
|
+
- [SchematicVoltageProbe](#schematicvoltageprobe)
|
|
101
|
+
|
|
102
|
+
<!-- toc:end -->
|
|
92
103
|
|
|
93
104
|
## Typescript Usage
|
|
94
105
|
|
|
@@ -173,6 +184,7 @@ interface SourceComponentBase {
|
|
|
173
184
|
manufacturer_part_number?: string
|
|
174
185
|
supplier_part_numbers?: Partial<Record<SupplierName, string[]>>
|
|
175
186
|
display_value?: string
|
|
187
|
+
are_pins_interchangeable?: boolean
|
|
176
188
|
}
|
|
177
189
|
```
|
|
178
190
|
|