circuit-json 0.0.309 → 0.0.310

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
@@ -78,6 +78,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
78
78
  - [SourceSimpleSwitch](#sourcesimpleswitch)
79
79
  - [SourceSimpleTestPoint](#sourcesimpletestpoint)
80
80
  - [SourceSimpleTransistor](#sourcesimpletransistor)
81
+ - [SourceSimpleVoltageProbe](#sourcesimplevoltageprobe)
81
82
  - [SourceTrace](#sourcetrace)
82
83
  - [SourceTraceNotConnectedError](#sourcetracenotconnectederror)
83
84
  - [UnknownErrorFindingPart](#unknownerrorfindingpart)
@@ -750,6 +751,19 @@ interface SourceSimpleTransistor extends SourceComponentBase {
750
751
  }
751
752
  ```
752
753
 
754
+ ### SourceSimpleVoltageProbe
755
+
756
+ [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_voltage_probe.ts)
757
+
758
+ Defines a simple voltage probe component for simulation and measurement
759
+
760
+ ```typescript
761
+ /** Defines a simple voltage probe component for simulation and measurement */
762
+ interface SourceSimpleVoltageProbe extends SourceComponentBase {
763
+ ftype: "simple_voltage_probe"
764
+ }
765
+ ```
766
+
753
767
  ### SourceTrace
754
768
 
755
769
  [Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_trace.ts)
@@ -2576,6 +2590,7 @@ interface SchematicTraceEdge {
2576
2590
  interface SchematicVoltageProbe {
2577
2591
  type: "schematic_voltage_probe"
2578
2592
  schematic_voltage_probe_id: string
2593
+ source_component_id?: string
2579
2594
  position: Point
2580
2595
  schematic_trace_id: string
2581
2596
  voltage?: number
@@ -2668,6 +2683,7 @@ Defines a voltage probe for simulation, connected to a port or a net.
2668
2683
  interface SimulationVoltageProbe {
2669
2684
  type: "simulation_voltage_probe"
2670
2685
  simulation_voltage_probe_id: string
2686
+ source_component_id?: string
2671
2687
  source_port_id?: string
2672
2688
  source_net_id?: string
2673
2689
  name?: string
package/dist/index.d.mts CHANGED
@@ -8671,6 +8671,7 @@ type SchematicDebugObjectInput = z.input<typeof schematic_debug_object>;
8671
8671
  interface SchematicVoltageProbe {
8672
8672
  type: "schematic_voltage_probe";
8673
8673
  schematic_voltage_probe_id: string;
8674
+ source_component_id?: string;
8674
8675
  position: Point;
8675
8676
  schematic_trace_id: string;
8676
8677
  voltage?: number;
@@ -8680,6 +8681,7 @@ interface SchematicVoltageProbe {
8680
8681
  declare const schematic_voltage_probe: z.ZodObject<{
8681
8682
  type: z.ZodLiteral<"schematic_voltage_probe">;
8682
8683
  schematic_voltage_probe_id: z.ZodString;
8684
+ source_component_id: z.ZodOptional<z.ZodString>;
8683
8685
  position: z.ZodObject<{
8684
8686
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8685
8687
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -8703,6 +8705,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
8703
8705
  };
8704
8706
  schematic_voltage_probe_id: string;
8705
8707
  name?: string | undefined;
8708
+ source_component_id?: string | undefined;
8706
8709
  subcircuit_id?: string | undefined;
8707
8710
  voltage?: number | undefined;
8708
8711
  }, {
@@ -8714,6 +8717,7 @@ declare const schematic_voltage_probe: z.ZodObject<{
8714
8717
  };
8715
8718
  schematic_voltage_probe_id: string;
8716
8719
  name?: string | undefined;
8720
+ source_component_id?: string | undefined;
8717
8721
  subcircuit_id?: string | undefined;
8718
8722
  voltage?: string | number | undefined;
8719
8723
  }>;
@@ -9327,6 +9331,7 @@ interface SimulationSwitch {
9327
9331
  declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
9328
9332
  type: z.ZodLiteral<"simulation_voltage_probe">;
9329
9333
  simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
9334
+ source_component_id: z.ZodOptional<z.ZodString>;
9330
9335
  source_port_id: z.ZodOptional<z.ZodString>;
9331
9336
  source_net_id: z.ZodOptional<z.ZodString>;
9332
9337
  name: z.ZodOptional<z.ZodString>;
@@ -9335,12 +9340,14 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
9335
9340
  type: "simulation_voltage_probe";
9336
9341
  simulation_voltage_probe_id: string;
9337
9342
  name?: string | undefined;
9343
+ source_component_id?: string | undefined;
9338
9344
  subcircuit_id?: string | undefined;
9339
9345
  source_port_id?: string | undefined;
9340
9346
  source_net_id?: string | undefined;
9341
9347
  }, {
9342
9348
  type: "simulation_voltage_probe";
9343
9349
  name?: string | undefined;
9350
+ source_component_id?: string | undefined;
9344
9351
  subcircuit_id?: string | undefined;
9345
9352
  source_port_id?: string | undefined;
9346
9353
  source_net_id?: string | undefined;
@@ -9349,12 +9356,14 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
9349
9356
  type: "simulation_voltage_probe";
9350
9357
  simulation_voltage_probe_id: string;
9351
9358
  name?: string | undefined;
9359
+ source_component_id?: string | undefined;
9352
9360
  subcircuit_id?: string | undefined;
9353
9361
  source_port_id?: string | undefined;
9354
9362
  source_net_id?: string | undefined;
9355
9363
  }, {
9356
9364
  type: "simulation_voltage_probe";
9357
9365
  name?: string | undefined;
9366
+ source_component_id?: string | undefined;
9358
9367
  subcircuit_id?: string | undefined;
9359
9368
  source_port_id?: string | undefined;
9360
9369
  source_net_id?: string | undefined;
@@ -9367,6 +9376,7 @@ type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
9367
9376
  interface SimulationVoltageProbe {
9368
9377
  type: "simulation_voltage_probe";
9369
9378
  simulation_voltage_probe_id: string;
9379
+ source_component_id?: string;
9370
9380
  source_port_id?: string;
9371
9381
  source_net_id?: string;
9372
9382
  name?: string;
@@ -10731,6 +10741,52 @@ interface SourcePinMissingTraceWarning {
10731
10741
  subcircuit_id?: string;
10732
10742
  }
10733
10743
 
10744
+ declare const source_simple_voltage_probe: z.ZodObject<{
10745
+ type: z.ZodLiteral<"source_component">;
10746
+ source_component_id: z.ZodString;
10747
+ name: z.ZodString;
10748
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
10749
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
10750
+ display_value: z.ZodOptional<z.ZodString>;
10751
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
10752
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
10753
+ source_group_id: z.ZodOptional<z.ZodString>;
10754
+ subcircuit_id: z.ZodOptional<z.ZodString>;
10755
+ } & {
10756
+ ftype: z.ZodLiteral<"simple_voltage_probe">;
10757
+ }, "strip", z.ZodTypeAny, {
10758
+ type: "source_component";
10759
+ name: string;
10760
+ source_component_id: string;
10761
+ ftype: "simple_voltage_probe";
10762
+ subcircuit_id?: string | undefined;
10763
+ source_group_id?: string | undefined;
10764
+ manufacturer_part_number?: string | undefined;
10765
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10766
+ display_value?: string | undefined;
10767
+ are_pins_interchangeable?: boolean | undefined;
10768
+ internally_connected_source_port_ids?: string[][] | undefined;
10769
+ }, {
10770
+ type: "source_component";
10771
+ name: string;
10772
+ source_component_id: string;
10773
+ ftype: "simple_voltage_probe";
10774
+ subcircuit_id?: string | undefined;
10775
+ source_group_id?: string | undefined;
10776
+ manufacturer_part_number?: string | undefined;
10777
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
10778
+ display_value?: string | undefined;
10779
+ are_pins_interchangeable?: boolean | undefined;
10780
+ internally_connected_source_port_ids?: string[][] | undefined;
10781
+ }>;
10782
+ type SourceSimpleVoltageProbeInput = z.input<typeof source_simple_voltage_probe>;
10783
+ /**
10784
+ * Defines a simple voltage probe component for simulation and measurement
10785
+ */
10786
+ interface SourceSimpleVoltageProbe extends SourceComponentBase {
10787
+ ftype: "simple_voltage_probe";
10788
+ }
10789
+
10734
10790
  declare const any_source_component: z.ZodUnion<[z.ZodObject<{
10735
10791
  type: z.ZodLiteral<"source_component">;
10736
10792
  source_component_id: z.ZodString;
@@ -11564,6 +11620,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
11564
11620
  display_value?: string | undefined;
11565
11621
  are_pins_interchangeable?: boolean | undefined;
11566
11622
  internally_connected_source_port_ids?: string[][] | undefined;
11623
+ }>, z.ZodObject<{
11624
+ type: z.ZodLiteral<"source_component">;
11625
+ source_component_id: z.ZodString;
11626
+ name: z.ZodString;
11627
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
11628
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
11629
+ display_value: z.ZodOptional<z.ZodString>;
11630
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
11631
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
11632
+ source_group_id: z.ZodOptional<z.ZodString>;
11633
+ subcircuit_id: z.ZodOptional<z.ZodString>;
11634
+ } & {
11635
+ ftype: z.ZodLiteral<"simple_voltage_probe">;
11636
+ }, "strip", z.ZodTypeAny, {
11637
+ type: "source_component";
11638
+ name: string;
11639
+ source_component_id: string;
11640
+ ftype: "simple_voltage_probe";
11641
+ subcircuit_id?: string | undefined;
11642
+ source_group_id?: string | undefined;
11643
+ manufacturer_part_number?: string | undefined;
11644
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11645
+ display_value?: string | undefined;
11646
+ are_pins_interchangeable?: boolean | undefined;
11647
+ internally_connected_source_port_ids?: string[][] | undefined;
11648
+ }, {
11649
+ type: "source_component";
11650
+ name: string;
11651
+ source_component_id: string;
11652
+ ftype: "simple_voltage_probe";
11653
+ subcircuit_id?: string | undefined;
11654
+ source_group_id?: string | undefined;
11655
+ manufacturer_part_number?: string | undefined;
11656
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
11657
+ display_value?: string | undefined;
11658
+ are_pins_interchangeable?: boolean | undefined;
11659
+ internally_connected_source_port_ids?: string[][] | undefined;
11567
11660
  }>, z.ZodObject<{
11568
11661
  type: z.ZodLiteral<"source_project_metadata">;
11569
11662
  name: z.ZodOptional<z.ZodString>;
@@ -11749,7 +11842,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
11749
11842
  * Deprecated: use `AnySourceElement` instead
11750
11843
  */
11751
11844
  type AnySourceComponent = z.infer<typeof any_source_component>;
11752
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
11845
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
11753
11846
 
11754
11847
  declare const source_port: z.ZodObject<{
11755
11848
  type: z.ZodLiteral<"source_port">;
@@ -13120,6 +13213,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
13120
13213
  display_value?: string | undefined;
13121
13214
  are_pins_interchangeable?: boolean | undefined;
13122
13215
  internally_connected_source_port_ids?: string[][] | undefined;
13216
+ }>, z.ZodObject<{
13217
+ type: z.ZodLiteral<"source_component">;
13218
+ source_component_id: z.ZodString;
13219
+ name: z.ZodString;
13220
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
13221
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
13222
+ display_value: z.ZodOptional<z.ZodString>;
13223
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
13224
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
13225
+ source_group_id: z.ZodOptional<z.ZodString>;
13226
+ subcircuit_id: z.ZodOptional<z.ZodString>;
13227
+ } & {
13228
+ ftype: z.ZodLiteral<"simple_voltage_probe">;
13229
+ }, "strip", z.ZodTypeAny, {
13230
+ type: "source_component";
13231
+ name: string;
13232
+ source_component_id: string;
13233
+ ftype: "simple_voltage_probe";
13234
+ subcircuit_id?: string | undefined;
13235
+ source_group_id?: string | undefined;
13236
+ manufacturer_part_number?: string | undefined;
13237
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
13238
+ display_value?: string | undefined;
13239
+ are_pins_interchangeable?: boolean | undefined;
13240
+ internally_connected_source_port_ids?: string[][] | undefined;
13241
+ }, {
13242
+ type: "source_component";
13243
+ name: string;
13244
+ source_component_id: string;
13245
+ ftype: "simple_voltage_probe";
13246
+ subcircuit_id?: string | undefined;
13247
+ source_group_id?: string | undefined;
13248
+ manufacturer_part_number?: string | undefined;
13249
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
13250
+ display_value?: string | undefined;
13251
+ are_pins_interchangeable?: boolean | undefined;
13252
+ internally_connected_source_port_ids?: string[][] | undefined;
13123
13253
  }>, z.ZodObject<{
13124
13254
  type: z.ZodLiteral<"source_project_metadata">;
13125
13255
  name: z.ZodOptional<z.ZodString>;
@@ -19329,6 +19459,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
19329
19459
  }>]>, z.ZodObject<{
19330
19460
  type: z.ZodLiteral<"schematic_voltage_probe">;
19331
19461
  schematic_voltage_probe_id: z.ZodString;
19462
+ source_component_id: z.ZodOptional<z.ZodString>;
19332
19463
  position: z.ZodObject<{
19333
19464
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
19334
19465
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -19352,6 +19483,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
19352
19483
  };
19353
19484
  schematic_voltage_probe_id: string;
19354
19485
  name?: string | undefined;
19486
+ source_component_id?: string | undefined;
19355
19487
  subcircuit_id?: string | undefined;
19356
19488
  voltage?: number | undefined;
19357
19489
  }, {
@@ -19363,6 +19495,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
19363
19495
  };
19364
19496
  schematic_voltage_probe_id: string;
19365
19497
  name?: string | undefined;
19498
+ source_component_id?: string | undefined;
19366
19499
  subcircuit_id?: string | undefined;
19367
19500
  voltage?: string | number | undefined;
19368
19501
  }>, z.ZodObject<{
@@ -19861,6 +19994,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
19861
19994
  }>, z.ZodEffects<z.ZodObject<{
19862
19995
  type: z.ZodLiteral<"simulation_voltage_probe">;
19863
19996
  simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
19997
+ source_component_id: z.ZodOptional<z.ZodString>;
19864
19998
  source_port_id: z.ZodOptional<z.ZodString>;
19865
19999
  source_net_id: z.ZodOptional<z.ZodString>;
19866
20000
  name: z.ZodOptional<z.ZodString>;
@@ -19869,12 +20003,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
19869
20003
  type: "simulation_voltage_probe";
19870
20004
  simulation_voltage_probe_id: string;
19871
20005
  name?: string | undefined;
20006
+ source_component_id?: string | undefined;
19872
20007
  subcircuit_id?: string | undefined;
19873
20008
  source_port_id?: string | undefined;
19874
20009
  source_net_id?: string | undefined;
19875
20010
  }, {
19876
20011
  type: "simulation_voltage_probe";
19877
20012
  name?: string | undefined;
20013
+ source_component_id?: string | undefined;
19878
20014
  subcircuit_id?: string | undefined;
19879
20015
  source_port_id?: string | undefined;
19880
20016
  source_net_id?: string | undefined;
@@ -19883,12 +20019,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
19883
20019
  type: "simulation_voltage_probe";
19884
20020
  simulation_voltage_probe_id: string;
19885
20021
  name?: string | undefined;
20022
+ source_component_id?: string | undefined;
19886
20023
  subcircuit_id?: string | undefined;
19887
20024
  source_port_id?: string | undefined;
19888
20025
  source_net_id?: string | undefined;
19889
20026
  }, {
19890
20027
  type: "simulation_voltage_probe";
19891
20028
  name?: string | undefined;
20029
+ source_component_id?: string | undefined;
19892
20030
  subcircuit_id?: string | undefined;
19893
20031
  source_port_id?: string | undefined;
19894
20032
  source_net_id?: string | undefined;
@@ -20811,6 +20949,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20811
20949
  display_value?: string | undefined;
20812
20950
  are_pins_interchangeable?: boolean | undefined;
20813
20951
  internally_connected_source_port_ids?: string[][] | undefined;
20952
+ }>, z.ZodObject<{
20953
+ type: z.ZodLiteral<"source_component">;
20954
+ source_component_id: z.ZodString;
20955
+ name: z.ZodString;
20956
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
20957
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
20958
+ display_value: z.ZodOptional<z.ZodString>;
20959
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
20960
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
20961
+ source_group_id: z.ZodOptional<z.ZodString>;
20962
+ subcircuit_id: z.ZodOptional<z.ZodString>;
20963
+ } & {
20964
+ ftype: z.ZodLiteral<"simple_voltage_probe">;
20965
+ }, "strip", z.ZodTypeAny, {
20966
+ type: "source_component";
20967
+ name: string;
20968
+ source_component_id: string;
20969
+ ftype: "simple_voltage_probe";
20970
+ subcircuit_id?: string | undefined;
20971
+ source_group_id?: string | undefined;
20972
+ manufacturer_part_number?: string | undefined;
20973
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
20974
+ display_value?: string | undefined;
20975
+ are_pins_interchangeable?: boolean | undefined;
20976
+ internally_connected_source_port_ids?: string[][] | undefined;
20977
+ }, {
20978
+ type: "source_component";
20979
+ name: string;
20980
+ source_component_id: string;
20981
+ ftype: "simple_voltage_probe";
20982
+ subcircuit_id?: string | undefined;
20983
+ source_group_id?: string | undefined;
20984
+ manufacturer_part_number?: string | undefined;
20985
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
20986
+ display_value?: string | undefined;
20987
+ are_pins_interchangeable?: boolean | undefined;
20988
+ internally_connected_source_port_ids?: string[][] | undefined;
20814
20989
  }>, z.ZodObject<{
20815
20990
  type: z.ZodLiteral<"source_project_metadata">;
20816
20991
  name: z.ZodOptional<z.ZodString>;
@@ -27020,6 +27195,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
27020
27195
  }>]>, z.ZodObject<{
27021
27196
  type: z.ZodLiteral<"schematic_voltage_probe">;
27022
27197
  schematic_voltage_probe_id: z.ZodString;
27198
+ source_component_id: z.ZodOptional<z.ZodString>;
27023
27199
  position: z.ZodObject<{
27024
27200
  x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
27025
27201
  y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
@@ -27043,6 +27219,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
27043
27219
  };
27044
27220
  schematic_voltage_probe_id: string;
27045
27221
  name?: string | undefined;
27222
+ source_component_id?: string | undefined;
27046
27223
  subcircuit_id?: string | undefined;
27047
27224
  voltage?: number | undefined;
27048
27225
  }, {
@@ -27054,6 +27231,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
27054
27231
  };
27055
27232
  schematic_voltage_probe_id: string;
27056
27233
  name?: string | undefined;
27234
+ source_component_id?: string | undefined;
27057
27235
  subcircuit_id?: string | undefined;
27058
27236
  voltage?: string | number | undefined;
27059
27237
  }>, z.ZodObject<{
@@ -27552,6 +27730,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
27552
27730
  }>, z.ZodEffects<z.ZodObject<{
27553
27731
  type: z.ZodLiteral<"simulation_voltage_probe">;
27554
27732
  simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
27733
+ source_component_id: z.ZodOptional<z.ZodString>;
27555
27734
  source_port_id: z.ZodOptional<z.ZodString>;
27556
27735
  source_net_id: z.ZodOptional<z.ZodString>;
27557
27736
  name: z.ZodOptional<z.ZodString>;
@@ -27560,12 +27739,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
27560
27739
  type: "simulation_voltage_probe";
27561
27740
  simulation_voltage_probe_id: string;
27562
27741
  name?: string | undefined;
27742
+ source_component_id?: string | undefined;
27563
27743
  subcircuit_id?: string | undefined;
27564
27744
  source_port_id?: string | undefined;
27565
27745
  source_net_id?: string | undefined;
27566
27746
  }, {
27567
27747
  type: "simulation_voltage_probe";
27568
27748
  name?: string | undefined;
27749
+ source_component_id?: string | undefined;
27569
27750
  subcircuit_id?: string | undefined;
27570
27751
  source_port_id?: string | undefined;
27571
27752
  source_net_id?: string | undefined;
@@ -27574,12 +27755,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
27574
27755
  type: "simulation_voltage_probe";
27575
27756
  simulation_voltage_probe_id: string;
27576
27757
  name?: string | undefined;
27758
+ source_component_id?: string | undefined;
27577
27759
  subcircuit_id?: string | undefined;
27578
27760
  source_port_id?: string | undefined;
27579
27761
  source_net_id?: string | undefined;
27580
27762
  }, {
27581
27763
  type: "simulation_voltage_probe";
27582
27764
  name?: string | undefined;
27765
+ source_component_id?: string | undefined;
27583
27766
  subcircuit_id?: string | undefined;
27584
27767
  source_port_id?: string | undefined;
27585
27768
  source_net_id?: string | undefined;
@@ -27622,4 +27805,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
27622
27805
  */
27623
27806
  type CircuitJson = AnyCircuitElement[];
27624
27807
 
27625
- 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 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 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 SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, 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 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 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_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_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_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, 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_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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
27808
+ 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 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 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 SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, 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 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_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_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_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, 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_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 };