circuit-json 0.0.339 → 0.0.340

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
@@ -163,6 +163,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
163
163
  - [SchematicTrace](#schematictrace)
164
164
  - [SchematicVoltageProbe](#schematicvoltageprobe)
165
165
  - [Simulation Elements](#simulation-elements)
166
+ - [SimulationCurrentSource](#simulationcurrentsource)
166
167
  - [SimulationExperiment](#simulationexperiment)
167
168
  - [SimulationSwitch](#simulationswitch)
168
169
  - [SimulationTransientVoltageGraph](#simulationtransientvoltagegraph)
@@ -2693,6 +2694,46 @@ interface SchematicVoltageProbe {
2693
2694
 
2694
2695
  ## Simulation Elements
2695
2696
 
2697
+ ### SimulationCurrentSource
2698
+
2699
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_current_source.ts)
2700
+
2701
+ ```typescript
2702
+ type SimulationCurrentSource =
2703
+ | SimulationDcCurrentSource
2704
+ | SimulationAcCurrentSource
2705
+
2706
+ /** Defines a DC current source for simulation purposes. It forces a current
2707
+ * between two source ports. */
2708
+ interface SimulationDcCurrentSource {
2709
+ type: "simulation_current_source"
2710
+ simulation_current_source_id: string
2711
+ is_dc_source: true
2712
+ positive_source_port_id?: string
2713
+ positive_source_net_id?: string
2714
+ negative_source_port_id?: string
2715
+ negative_source_net_id?: string
2716
+ current: number
2717
+ }
2718
+
2719
+ /** Defines an AC current source for simulation purposes. */
2720
+ interface SimulationAcCurrentSource {
2721
+ type: "simulation_current_source"
2722
+ simulation_current_source_id: string
2723
+ is_dc_source: false
2724
+ terminal1_source_port_id?: string
2725
+ terminal2_source_port_id?: string
2726
+ terminal1_source_net_id?: string
2727
+ terminal2_source_net_id?: string
2728
+ current?: number
2729
+ frequency?: number
2730
+ peak_to_peak_current?: number
2731
+ wave_shape?: WaveShape
2732
+ phase?: number
2733
+ duty_cycle?: number
2734
+ }
2735
+ ```
2736
+
2696
2737
  ### SimulationExperiment
2697
2738
 
2698
2739
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/simulation/simulation_experiment.ts)
package/dist/index.d.mts CHANGED
@@ -9789,6 +9789,183 @@ interface SimulationAcVoltageSource {
9789
9789
  }
9790
9790
  type SimulationVoltageSource = SimulationDcVoltageSource | SimulationAcVoltageSource;
9791
9791
 
9792
+ declare const simulation_dc_current_source: z.ZodObject<{
9793
+ type: z.ZodLiteral<"simulation_current_source">;
9794
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9795
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
9796
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
9797
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
9798
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
9799
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
9800
+ current: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9801
+ }, "strip", z.ZodTypeAny, {
9802
+ type: "simulation_current_source";
9803
+ is_dc_source: true;
9804
+ simulation_current_source_id: string;
9805
+ current: number;
9806
+ positive_source_port_id?: string | undefined;
9807
+ negative_source_port_id?: string | undefined;
9808
+ positive_source_net_id?: string | undefined;
9809
+ negative_source_net_id?: string | undefined;
9810
+ }, {
9811
+ type: "simulation_current_source";
9812
+ current: string | number;
9813
+ is_dc_source?: true | undefined;
9814
+ positive_source_port_id?: string | undefined;
9815
+ negative_source_port_id?: string | undefined;
9816
+ positive_source_net_id?: string | undefined;
9817
+ negative_source_net_id?: string | undefined;
9818
+ simulation_current_source_id?: string | undefined;
9819
+ }>;
9820
+ declare const simulation_ac_current_source: z.ZodObject<{
9821
+ type: z.ZodLiteral<"simulation_current_source">;
9822
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9823
+ is_dc_source: z.ZodLiteral<false>;
9824
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
9825
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
9826
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
9827
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
9828
+ current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9829
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9830
+ peak_to_peak_current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9831
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
9832
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9833
+ duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
9834
+ }, "strip", z.ZodTypeAny, {
9835
+ type: "simulation_current_source";
9836
+ is_dc_source: false;
9837
+ simulation_current_source_id: string;
9838
+ terminal1_source_port_id?: string | undefined;
9839
+ terminal2_source_port_id?: string | undefined;
9840
+ terminal1_source_net_id?: string | undefined;
9841
+ terminal2_source_net_id?: string | undefined;
9842
+ frequency?: number | undefined;
9843
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
9844
+ phase?: number | undefined;
9845
+ duty_cycle?: number | undefined;
9846
+ current?: number | undefined;
9847
+ peak_to_peak_current?: number | undefined;
9848
+ }, {
9849
+ type: "simulation_current_source";
9850
+ is_dc_source: false;
9851
+ terminal1_source_port_id?: string | undefined;
9852
+ terminal2_source_port_id?: string | undefined;
9853
+ terminal1_source_net_id?: string | undefined;
9854
+ terminal2_source_net_id?: string | undefined;
9855
+ frequency?: string | number | undefined;
9856
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
9857
+ phase?: string | number | undefined;
9858
+ duty_cycle?: string | number | undefined;
9859
+ simulation_current_source_id?: string | undefined;
9860
+ current?: string | number | undefined;
9861
+ peak_to_peak_current?: string | number | undefined;
9862
+ }>;
9863
+ type SimulationAcCurrentSourceInput = z.input<typeof simulation_ac_current_source>;
9864
+ declare const simulation_current_source: z.ZodUnion<[z.ZodObject<{
9865
+ type: z.ZodLiteral<"simulation_current_source">;
9866
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9867
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
9868
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
9869
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
9870
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
9871
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
9872
+ current: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9873
+ }, "strip", z.ZodTypeAny, {
9874
+ type: "simulation_current_source";
9875
+ is_dc_source: true;
9876
+ simulation_current_source_id: string;
9877
+ current: number;
9878
+ positive_source_port_id?: string | undefined;
9879
+ negative_source_port_id?: string | undefined;
9880
+ positive_source_net_id?: string | undefined;
9881
+ negative_source_net_id?: string | undefined;
9882
+ }, {
9883
+ type: "simulation_current_source";
9884
+ current: string | number;
9885
+ is_dc_source?: true | undefined;
9886
+ positive_source_port_id?: string | undefined;
9887
+ negative_source_port_id?: string | undefined;
9888
+ positive_source_net_id?: string | undefined;
9889
+ negative_source_net_id?: string | undefined;
9890
+ simulation_current_source_id?: string | undefined;
9891
+ }>, z.ZodObject<{
9892
+ type: z.ZodLiteral<"simulation_current_source">;
9893
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9894
+ is_dc_source: z.ZodLiteral<false>;
9895
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
9896
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
9897
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
9898
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
9899
+ current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9900
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9901
+ peak_to_peak_current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9902
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
9903
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9904
+ duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
9905
+ }, "strip", z.ZodTypeAny, {
9906
+ type: "simulation_current_source";
9907
+ is_dc_source: false;
9908
+ simulation_current_source_id: string;
9909
+ terminal1_source_port_id?: string | undefined;
9910
+ terminal2_source_port_id?: string | undefined;
9911
+ terminal1_source_net_id?: string | undefined;
9912
+ terminal2_source_net_id?: string | undefined;
9913
+ frequency?: number | undefined;
9914
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
9915
+ phase?: number | undefined;
9916
+ duty_cycle?: number | undefined;
9917
+ current?: number | undefined;
9918
+ peak_to_peak_current?: number | undefined;
9919
+ }, {
9920
+ type: "simulation_current_source";
9921
+ is_dc_source: false;
9922
+ terminal1_source_port_id?: string | undefined;
9923
+ terminal2_source_port_id?: string | undefined;
9924
+ terminal1_source_net_id?: string | undefined;
9925
+ terminal2_source_net_id?: string | undefined;
9926
+ frequency?: string | number | undefined;
9927
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
9928
+ phase?: string | number | undefined;
9929
+ duty_cycle?: string | number | undefined;
9930
+ simulation_current_source_id?: string | undefined;
9931
+ current?: string | number | undefined;
9932
+ peak_to_peak_current?: string | number | undefined;
9933
+ }>]>;
9934
+ type SimulationCurrentSourceInput = z.input<typeof simulation_current_source>;
9935
+ /**
9936
+ * Defines a DC current source for simulation purposes. It forces a current
9937
+ * between two source ports.
9938
+ */
9939
+ interface SimulationDcCurrentSource {
9940
+ type: "simulation_current_source";
9941
+ simulation_current_source_id: string;
9942
+ is_dc_source: true;
9943
+ positive_source_port_id?: string;
9944
+ positive_source_net_id?: string;
9945
+ negative_source_port_id?: string;
9946
+ negative_source_net_id?: string;
9947
+ current: number;
9948
+ }
9949
+ /**
9950
+ * Defines an AC current source for simulation purposes.
9951
+ */
9952
+ interface SimulationAcCurrentSource {
9953
+ type: "simulation_current_source";
9954
+ simulation_current_source_id: string;
9955
+ is_dc_source: false;
9956
+ terminal1_source_port_id?: string;
9957
+ terminal2_source_port_id?: string;
9958
+ terminal1_source_net_id?: string;
9959
+ terminal2_source_net_id?: string;
9960
+ current?: number;
9961
+ frequency?: number;
9962
+ peak_to_peak_current?: number;
9963
+ wave_shape?: WaveShape;
9964
+ phase?: number;
9965
+ duty_cycle?: number;
9966
+ }
9967
+ type SimulationCurrentSource = SimulationDcCurrentSource | SimulationAcCurrentSource;
9968
+
9792
9969
  declare const experiment_type: z.ZodUnion<[z.ZodLiteral<"spice_dc_sweep">, z.ZodLiteral<"spice_dc_operating_point">, z.ZodLiteral<"spice_transient_analysis">, z.ZodLiteral<"spice_ac_analysis">]>;
9793
9970
  type ExperimentType = z.infer<typeof experiment_type>;
9794
9971
  interface SimulationExperiment {
@@ -21179,6 +21356,75 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
21179
21356
  wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
21180
21357
  phase?: string | number | undefined;
21181
21358
  duty_cycle?: string | number | undefined;
21359
+ }>]>, z.ZodUnion<[z.ZodObject<{
21360
+ type: z.ZodLiteral<"simulation_current_source">;
21361
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
21362
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
21363
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
21364
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
21365
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
21366
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
21367
+ current: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21368
+ }, "strip", z.ZodTypeAny, {
21369
+ type: "simulation_current_source";
21370
+ is_dc_source: true;
21371
+ simulation_current_source_id: string;
21372
+ current: number;
21373
+ positive_source_port_id?: string | undefined;
21374
+ negative_source_port_id?: string | undefined;
21375
+ positive_source_net_id?: string | undefined;
21376
+ negative_source_net_id?: string | undefined;
21377
+ }, {
21378
+ type: "simulation_current_source";
21379
+ current: string | number;
21380
+ is_dc_source?: true | undefined;
21381
+ positive_source_port_id?: string | undefined;
21382
+ negative_source_port_id?: string | undefined;
21383
+ positive_source_net_id?: string | undefined;
21384
+ negative_source_net_id?: string | undefined;
21385
+ simulation_current_source_id?: string | undefined;
21386
+ }>, z.ZodObject<{
21387
+ type: z.ZodLiteral<"simulation_current_source">;
21388
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
21389
+ is_dc_source: z.ZodLiteral<false>;
21390
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
21391
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
21392
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
21393
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
21394
+ current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
21395
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
21396
+ peak_to_peak_current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
21397
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
21398
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
21399
+ duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
21400
+ }, "strip", z.ZodTypeAny, {
21401
+ type: "simulation_current_source";
21402
+ is_dc_source: false;
21403
+ simulation_current_source_id: string;
21404
+ terminal1_source_port_id?: string | undefined;
21405
+ terminal2_source_port_id?: string | undefined;
21406
+ terminal1_source_net_id?: string | undefined;
21407
+ terminal2_source_net_id?: string | undefined;
21408
+ frequency?: number | undefined;
21409
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
21410
+ phase?: number | undefined;
21411
+ duty_cycle?: number | undefined;
21412
+ current?: number | undefined;
21413
+ peak_to_peak_current?: number | undefined;
21414
+ }, {
21415
+ type: "simulation_current_source";
21416
+ is_dc_source: false;
21417
+ terminal1_source_port_id?: string | undefined;
21418
+ terminal2_source_port_id?: string | undefined;
21419
+ terminal1_source_net_id?: string | undefined;
21420
+ terminal2_source_net_id?: string | undefined;
21421
+ frequency?: string | number | undefined;
21422
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
21423
+ phase?: string | number | undefined;
21424
+ duty_cycle?: string | number | undefined;
21425
+ simulation_current_source_id?: string | undefined;
21426
+ current?: string | number | undefined;
21427
+ peak_to_peak_current?: string | number | undefined;
21182
21428
  }>]>, z.ZodObject<{
21183
21429
  type: z.ZodLiteral<"simulation_experiment">;
21184
21430
  simulation_experiment_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -29354,6 +29600,75 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
29354
29600
  wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
29355
29601
  phase?: string | number | undefined;
29356
29602
  duty_cycle?: string | number | undefined;
29603
+ }>]>, z.ZodUnion<[z.ZodObject<{
29604
+ type: z.ZodLiteral<"simulation_current_source">;
29605
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
29606
+ is_dc_source: z.ZodDefault<z.ZodOptional<z.ZodLiteral<true>>>;
29607
+ positive_source_port_id: z.ZodOptional<z.ZodString>;
29608
+ negative_source_port_id: z.ZodOptional<z.ZodString>;
29609
+ positive_source_net_id: z.ZodOptional<z.ZodString>;
29610
+ negative_source_net_id: z.ZodOptional<z.ZodString>;
29611
+ current: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
29612
+ }, "strip", z.ZodTypeAny, {
29613
+ type: "simulation_current_source";
29614
+ is_dc_source: true;
29615
+ simulation_current_source_id: string;
29616
+ current: number;
29617
+ positive_source_port_id?: string | undefined;
29618
+ negative_source_port_id?: string | undefined;
29619
+ positive_source_net_id?: string | undefined;
29620
+ negative_source_net_id?: string | undefined;
29621
+ }, {
29622
+ type: "simulation_current_source";
29623
+ current: string | number;
29624
+ is_dc_source?: true | undefined;
29625
+ positive_source_port_id?: string | undefined;
29626
+ negative_source_port_id?: string | undefined;
29627
+ positive_source_net_id?: string | undefined;
29628
+ negative_source_net_id?: string | undefined;
29629
+ simulation_current_source_id?: string | undefined;
29630
+ }>, z.ZodObject<{
29631
+ type: z.ZodLiteral<"simulation_current_source">;
29632
+ simulation_current_source_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
29633
+ is_dc_source: z.ZodLiteral<false>;
29634
+ terminal1_source_port_id: z.ZodOptional<z.ZodString>;
29635
+ terminal2_source_port_id: z.ZodOptional<z.ZodString>;
29636
+ terminal1_source_net_id: z.ZodOptional<z.ZodString>;
29637
+ terminal2_source_net_id: z.ZodOptional<z.ZodString>;
29638
+ current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29639
+ frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29640
+ peak_to_peak_current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29641
+ wave_shape: z.ZodOptional<z.ZodEnum<["sinewave", "square", "triangle", "sawtooth"]>>;
29642
+ phase: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
29643
+ duty_cycle: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
29644
+ }, "strip", z.ZodTypeAny, {
29645
+ type: "simulation_current_source";
29646
+ is_dc_source: false;
29647
+ simulation_current_source_id: string;
29648
+ terminal1_source_port_id?: string | undefined;
29649
+ terminal2_source_port_id?: string | undefined;
29650
+ terminal1_source_net_id?: string | undefined;
29651
+ terminal2_source_net_id?: string | undefined;
29652
+ frequency?: number | undefined;
29653
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
29654
+ phase?: number | undefined;
29655
+ duty_cycle?: number | undefined;
29656
+ current?: number | undefined;
29657
+ peak_to_peak_current?: number | undefined;
29658
+ }, {
29659
+ type: "simulation_current_source";
29660
+ is_dc_source: false;
29661
+ terminal1_source_port_id?: string | undefined;
29662
+ terminal2_source_port_id?: string | undefined;
29663
+ terminal1_source_net_id?: string | undefined;
29664
+ terminal2_source_net_id?: string | undefined;
29665
+ frequency?: string | number | undefined;
29666
+ wave_shape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
29667
+ phase?: string | number | undefined;
29668
+ duty_cycle?: string | number | undefined;
29669
+ simulation_current_source_id?: string | undefined;
29670
+ current?: string | number | undefined;
29671
+ peak_to_peak_current?: string | number | undefined;
29357
29672
  }>]>, z.ZodObject<{
29358
29673
  type: z.ZodLiteral<"simulation_experiment">;
29359
29674
  simulation_experiment_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -29534,4 +29849,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
29534
29849
  */
29535
29850
  type CircuitJson = AnyCircuitElement[];
29536
29851
 
29537
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
29852
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardPolygon, type PcbCourtyardPolygonInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPath, type PcbCutoutPathInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNoteDimension, type PcbFabricationNoteDimensionInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteRect, type PcbFabricationNoteRectInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircle, type PcbHoleCircleInput, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRect, type PcbHoleRectInput, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, type PcbHoleWithPolygonPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbNet, type PcbNetInput, type PcbNoteDimension, type PcbNoteDimensionInput, type PcbNoteLine, type PcbNoteLineInput, type PcbNotePath, type PcbNotePathInput, type PcbNoteRect, type PcbNoteRectInput, type PcbNoteText, type PcbNoteTextInput, type PcbPanel, type PcbPanelInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenPill, type PcbSilkscreenPillDeprecated, type PcbSilkscreenPillInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadPolygon, type PcbSmtPadRect, type PcbSmtPadRotatedPill, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbThermalSpoke, type PcbThermalSpokeInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceMissingError, type PcbTraceMissingErrorInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcCurrentSource, type SimulationAcCurrentSourceInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_outline, pcb_courtyard_polygon, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_path, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_dimension, pcb_fabrication_note_path, pcb_fabrication_note_rect, pcb_fabrication_note_text, pcb_footprint_overlap_error, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_circle_shape, pcb_hole_oval_shape, pcb_hole_pill_shape, pcb_hole_rect_shape, pcb_hole_rotated_pill_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_net, pcb_note_dimension, pcb_note_line, pcb_note_path, pcb_note_rect, pcb_note_text, pcb_panel, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_connected_error, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_pill, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_thermal_spoke, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_missing_error, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };