circuit-json 0.0.297 → 0.0.298
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 +19 -0
- package/dist/index.d.mts +2101 -2024
- package/dist/index.mjs +19 -3
- 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
|
|
|
@@ -2606,6 +2607,24 @@ interface SimulationTransientVoltageGraph {
|
|
|
2606
2607
|
}
|
|
2607
2608
|
```
|
|
2608
2609
|
|
|
2610
|
+
### SimulationUnknownExperimentError
|
|
2611
|
+
|
|
2612
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_unknown_experiment_error.ts)
|
|
2613
|
+
|
|
2614
|
+
An unknown error occurred during the simulation experiment.
|
|
2615
|
+
|
|
2616
|
+
```typescript
|
|
2617
|
+
/** An unknown error occurred during the simulation experiment. */
|
|
2618
|
+
interface SimulationUnknownExperimentError {
|
|
2619
|
+
type: "simulation_unknown_experiment_error"
|
|
2620
|
+
simulation_unknown_experiment_error_id: string
|
|
2621
|
+
error_type: "simulation_unknown_experiment_error"
|
|
2622
|
+
message: string
|
|
2623
|
+
simulation_experiment_id?: string
|
|
2624
|
+
subcircuit_id?: string
|
|
2625
|
+
}
|
|
2626
|
+
```
|
|
2627
|
+
|
|
2609
2628
|
### SimulationVoltageProbe
|
|
2610
2629
|
|
|
2611
2630
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_voltage_probe.ts)
|