circuit-json 0.0.200 → 0.0.202
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 +7 -0
- package/dist/index.d.mts +99 -26
- package/dist/index.mjs +11 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -215,6 +215,7 @@ interface SourceComponentBase {
|
|
|
215
215
|
interface SourceFailedToCreateComponentError {
|
|
216
216
|
type: "source_failed_to_create_component_error"
|
|
217
217
|
source_failed_to_create_component_error_id: string
|
|
218
|
+
error_type: "source_failed_to_create_component_error"
|
|
218
219
|
message: string
|
|
219
220
|
component_name?: string
|
|
220
221
|
subcircuit_id?: string
|
|
@@ -552,6 +553,7 @@ interface SourceTrace {
|
|
|
552
553
|
interface PcbAutoroutingErrorInterface {
|
|
553
554
|
type: "pcb_autorouting_error"
|
|
554
555
|
pcb_error_id: string
|
|
556
|
+
error_type: "pcb_autorouting_error"
|
|
555
557
|
message: string
|
|
556
558
|
}
|
|
557
559
|
```
|
|
@@ -746,6 +748,7 @@ Warning emitted when a component has both manual placement (via manualEdits) and
|
|
|
746
748
|
interface PcbManualEditConflictWarning {
|
|
747
749
|
type: "pcb_manual_edit_conflict_warning"
|
|
748
750
|
pcb_manual_edit_conflict_warning_id: string
|
|
751
|
+
warning_type: "pcb_manual_edit_conflict_warning"
|
|
749
752
|
message: string
|
|
750
753
|
pcb_component_id: string
|
|
751
754
|
pcb_group_id?: string
|
|
@@ -784,6 +787,7 @@ Defines a placement error on the PCB
|
|
|
784
787
|
interface PcbPlacementError {
|
|
785
788
|
type: "pcb_placement_error"
|
|
786
789
|
pcb_placement_error_id: string
|
|
790
|
+
error_type: "pcb_placement_error"
|
|
787
791
|
message: string
|
|
788
792
|
}
|
|
789
793
|
```
|
|
@@ -884,6 +888,7 @@ Defines a trace error on the PCB where a port is not matched
|
|
|
884
888
|
interface PcbPortNotMatchedError {
|
|
885
889
|
type: "pcb_port_not_matched_error"
|
|
886
890
|
pcb_error_id: string
|
|
891
|
+
error_type: "pcb_port_not_matched_error"
|
|
887
892
|
message: string
|
|
888
893
|
pcb_component_ids: string[]
|
|
889
894
|
}
|
|
@@ -1240,6 +1245,7 @@ interface SchematicGroup {
|
|
|
1240
1245
|
interface SchematicLayoutError {
|
|
1241
1246
|
type: "schematic_layout_error"
|
|
1242
1247
|
schematic_layout_error_id: string
|
|
1248
|
+
error_type: "schematic_layout_error"
|
|
1243
1249
|
message: string
|
|
1244
1250
|
source_group_id: string
|
|
1245
1251
|
schematic_group_id: string
|
|
@@ -1275,6 +1281,7 @@ Warning emitted when a component has both manual placement (via manualEdits) and
|
|
|
1275
1281
|
interface SchematicManualEditConflictWarning {
|
|
1276
1282
|
type: "schematic_manual_edit_conflict_warning"
|
|
1277
1283
|
schematic_manual_edit_conflict_warning_id: string
|
|
1284
|
+
warning_type: "schematic_manual_edit_conflict_warning"
|
|
1278
1285
|
message: string
|
|
1279
1286
|
schematic_component_id: string
|
|
1280
1287
|
schematic_group_id?: string
|