circuit-json 0.0.199 → 0.0.201
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 +6 -0
- package/dist/index.d.mts +98 -26
- package/dist/index.mjs +10 -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
|
|
@@ -272,6 +273,7 @@ interface SourceProjectMetadata {
|
|
|
272
273
|
type: "source_project_metadata"
|
|
273
274
|
name?: string
|
|
274
275
|
software_used_string?: string
|
|
276
|
+
project_url?: string
|
|
275
277
|
created_at?: string // ISO8601 timestamp
|
|
276
278
|
}
|
|
277
279
|
```
|
|
@@ -551,6 +553,7 @@ interface SourceTrace {
|
|
|
551
553
|
interface PcbAutoroutingErrorInterface {
|
|
552
554
|
type: "pcb_autorouting_error"
|
|
553
555
|
pcb_error_id: string
|
|
556
|
+
error_type: "pcb_autorouting_error"
|
|
554
557
|
message: string
|
|
555
558
|
}
|
|
556
559
|
```
|
|
@@ -783,6 +786,7 @@ Defines a placement error on the PCB
|
|
|
783
786
|
interface PcbPlacementError {
|
|
784
787
|
type: "pcb_placement_error"
|
|
785
788
|
pcb_placement_error_id: string
|
|
789
|
+
error_type: "pcb_placement_error"
|
|
786
790
|
message: string
|
|
787
791
|
}
|
|
788
792
|
```
|
|
@@ -883,6 +887,7 @@ Defines a trace error on the PCB where a port is not matched
|
|
|
883
887
|
interface PcbPortNotMatchedError {
|
|
884
888
|
type: "pcb_port_not_matched_error"
|
|
885
889
|
pcb_error_id: string
|
|
890
|
+
error_type: "pcb_port_not_matched_error"
|
|
886
891
|
message: string
|
|
887
892
|
pcb_component_ids: string[]
|
|
888
893
|
}
|
|
@@ -1239,6 +1244,7 @@ interface SchematicGroup {
|
|
|
1239
1244
|
interface SchematicLayoutError {
|
|
1240
1245
|
type: "schematic_layout_error"
|
|
1241
1246
|
schematic_layout_error_id: string
|
|
1247
|
+
error_type: "schematic_layout_error"
|
|
1242
1248
|
message: string
|
|
1243
1249
|
source_group_id: string
|
|
1244
1250
|
schematic_group_id: string
|