circuit-json 0.0.156 → 0.0.158

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 CHANGED
@@ -69,7 +69,7 @@ and is the primary way that Circuit JSON is defined and maintained.
69
69
  - [PcbFabricationNoteText](#pcbfabricationnotetext)
70
70
  - [PcbGroup](#pcbgroup)
71
71
  - [PcbHole](#pcbhole)
72
- - [PcbManualEditConflictError](#pcbmanualeditconflicterror)
72
+ - [PcbManualEditConflictWarning](#pcbmanualeditconflictwarning)
73
73
  - [PcbMissingFootprintError](#pcbmissingfootprinterror)
74
74
  - [PcbPlacementError](#pcbplacementerror)
75
75
  - [PcbPlatedHole](#pcbplatedhole)
@@ -540,15 +540,15 @@ interface PcbHoleCircleOrSquare {
540
540
  }
541
541
  ```
542
542
 
543
- ### PcbManualEditConflictError
543
+ ### PcbManualEditConflictWarning
544
544
 
545
- Error emitted when a component has both manual placement (via manualEdits) and explicit pcbX/pcbY coordinates
545
+ Warning emitted when a component has both manual placement (via manualEdits) and explicit pcbX/pcbY coordinates
546
546
 
547
547
  ```typescript
548
- /** Error emitted when a component has both manual placement (via manualEdits) and explicit pcbX/pcbY coordinates */
549
- interface PcbManualEditConflictError {
550
- type: "pcb_manual_edit_conflict_error"
551
- pcb_error_id: string
548
+ /** Warning emitted when a component has both manual placement (via manualEdits) and explicit pcbX/pcbY coordinates */
549
+ interface PcbManualEditConflictWarning {
550
+ type: "pcb_manual_edit_conflict_warning"
551
+ pcb_manual_edit_conflict_warning_id: string
552
552
  message: string
553
553
  pcb_component_id: string
554
554
  pcb_group_id?: string
@@ -997,7 +997,7 @@ Warning emitted when a component has both manual placement (via manualEdits) and
997
997
  /** Warning emitted when a component has both manual placement (via manualEdits) and explicit schX/schY coordinates */
998
998
  interface SchematicManualEditConflictWarning {
999
999
  type: "schematic_manual_edit_conflict_warning"
1000
- schematic_warning_id: string
1000
+ schematic_manual_edit_conflict_warning_id: string
1001
1001
  message: string
1002
1002
  schematic_component_id: string
1003
1003
  schematic_group_id?: string