circuit-json 0.0.167 → 0.0.169
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 -1
- package/dist/index.d.mts +326 -10
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -187,6 +187,7 @@ interface SourceComponentBase {
|
|
|
187
187
|
supplier_part_numbers?: Partial<Record<SupplierName, string[]>>
|
|
188
188
|
display_value?: string
|
|
189
189
|
are_pins_interchangeable?: boolean
|
|
190
|
+
internally_connected_source_port_ids?: string[][]
|
|
190
191
|
}
|
|
191
192
|
```
|
|
192
193
|
|
|
@@ -1089,7 +1090,7 @@ interface SchematicPort {
|
|
|
1089
1090
|
```typescript
|
|
1090
1091
|
interface SchematicText {
|
|
1091
1092
|
type: "schematic_text"
|
|
1092
|
-
schematic_component_id
|
|
1093
|
+
schematic_component_id?: string
|
|
1093
1094
|
schematic_text_id: string
|
|
1094
1095
|
text: string
|
|
1095
1096
|
position: {
|