circuit-json 0.0.297 → 0.0.299
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 +21 -0
- package/dist/index.d.mts +2121 -2024
- package/dist/index.mjs +22 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -161,6 +161,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
161
161
|
- [SimulationExperiment](#simulationexperiment)
|
|
162
162
|
- [SimulationSwitch](#simulationswitch)
|
|
163
163
|
- [SimulationTransientVoltageGraph](#simulationtransientvoltagegraph)
|
|
164
|
+
- [SimulationUnknownExperimentError](#simulationunknownexperimenterror)
|
|
164
165
|
- [SimulationVoltageProbe](#simulationvoltageprobe)
|
|
165
166
|
- [SimulationVoltageSource](#simulationvoltagesource)
|
|
166
167
|
|
|
@@ -2059,6 +2060,8 @@ interface PcbVia {
|
|
|
2059
2060
|
to_layer?: LayerRef
|
|
2060
2061
|
layers: LayerRef[]
|
|
2061
2062
|
pcb_trace_id?: string
|
|
2063
|
+
net_is_assignable?: boolean
|
|
2064
|
+
net_assigned?: boolean
|
|
2062
2065
|
}
|
|
2063
2066
|
```
|
|
2064
2067
|
|
|
@@ -2606,6 +2609,24 @@ interface SimulationTransientVoltageGraph {
|
|
|
2606
2609
|
}
|
|
2607
2610
|
```
|
|
2608
2611
|
|
|
2612
|
+
### SimulationUnknownExperimentError
|
|
2613
|
+
|
|
2614
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_unknown_experiment_error.ts)
|
|
2615
|
+
|
|
2616
|
+
An unknown error occurred during the simulation experiment.
|
|
2617
|
+
|
|
2618
|
+
```typescript
|
|
2619
|
+
/** An unknown error occurred during the simulation experiment. */
|
|
2620
|
+
interface SimulationUnknownExperimentError {
|
|
2621
|
+
type: "simulation_unknown_experiment_error"
|
|
2622
|
+
simulation_unknown_experiment_error_id: string
|
|
2623
|
+
error_type: "simulation_unknown_experiment_error"
|
|
2624
|
+
message: string
|
|
2625
|
+
simulation_experiment_id?: string
|
|
2626
|
+
subcircuit_id?: string
|
|
2627
|
+
}
|
|
2628
|
+
```
|
|
2629
|
+
|
|
2609
2630
|
### SimulationVoltageProbe
|
|
2610
2631
|
|
|
2611
2632
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_voltage_probe.ts)
|