circuit-json 0.0.436 → 0.0.438

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/dist/index.d.mts CHANGED
@@ -26404,22 +26404,6 @@ interface SimulationSwitch {
26404
26404
  switching_frequency?: number;
26405
26405
  }
26406
26406
 
26407
- declare const simulation_voltage_probe_display_options: z.ZodObject<{
26408
- label: z.ZodOptional<z.ZodString>;
26409
- center: z.ZodOptional<z.ZodNumber>;
26410
- offset_divs: z.ZodOptional<z.ZodNumber>;
26411
- units_per_div: z.ZodOptional<z.ZodNumber>;
26412
- }, "strip", z.ZodTypeAny, {
26413
- center?: number | undefined;
26414
- label?: string | undefined;
26415
- offset_divs?: number | undefined;
26416
- units_per_div?: number | undefined;
26417
- }, {
26418
- center?: number | undefined;
26419
- label?: string | undefined;
26420
- offset_divs?: number | undefined;
26421
- units_per_div?: number | undefined;
26422
- }>;
26423
26407
  declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26424
26408
  type: z.ZodLiteral<"simulation_voltage_probe">;
26425
26409
  simulation_voltage_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -26431,22 +26415,6 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26431
26415
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
26432
26416
  subcircuit_id: z.ZodOptional<z.ZodString>;
26433
26417
  color: z.ZodOptional<z.ZodString>;
26434
- display_options: z.ZodOptional<z.ZodObject<{
26435
- label: z.ZodOptional<z.ZodString>;
26436
- center: z.ZodOptional<z.ZodNumber>;
26437
- offset_divs: z.ZodOptional<z.ZodNumber>;
26438
- units_per_div: z.ZodOptional<z.ZodNumber>;
26439
- }, "strip", z.ZodTypeAny, {
26440
- center?: number | undefined;
26441
- label?: string | undefined;
26442
- offset_divs?: number | undefined;
26443
- units_per_div?: number | undefined;
26444
- }, {
26445
- center?: number | undefined;
26446
- label?: string | undefined;
26447
- offset_divs?: number | undefined;
26448
- units_per_div?: number | undefined;
26449
- }>>;
26450
26418
  }, "strip", z.ZodTypeAny, {
26451
26419
  type: "simulation_voltage_probe";
26452
26420
  simulation_voltage_probe_id: string;
@@ -26458,12 +26426,6 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26458
26426
  signal_input_source_net_id?: string | undefined;
26459
26427
  reference_input_source_port_id?: string | undefined;
26460
26428
  reference_input_source_net_id?: string | undefined;
26461
- display_options?: {
26462
- center?: number | undefined;
26463
- label?: string | undefined;
26464
- offset_divs?: number | undefined;
26465
- units_per_div?: number | undefined;
26466
- } | undefined;
26467
26429
  }, {
26468
26430
  type: "simulation_voltage_probe";
26469
26431
  name?: string | undefined;
@@ -26475,12 +26437,6 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26475
26437
  signal_input_source_net_id?: string | undefined;
26476
26438
  reference_input_source_port_id?: string | undefined;
26477
26439
  reference_input_source_net_id?: string | undefined;
26478
- display_options?: {
26479
- center?: number | undefined;
26480
- label?: string | undefined;
26481
- offset_divs?: number | undefined;
26482
- units_per_div?: number | undefined;
26483
- } | undefined;
26484
26440
  }>, {
26485
26441
  type: "simulation_voltage_probe";
26486
26442
  simulation_voltage_probe_id: string;
@@ -26492,12 +26448,6 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26492
26448
  signal_input_source_net_id?: string | undefined;
26493
26449
  reference_input_source_port_id?: string | undefined;
26494
26450
  reference_input_source_net_id?: string | undefined;
26495
- display_options?: {
26496
- center?: number | undefined;
26497
- label?: string | undefined;
26498
- offset_divs?: number | undefined;
26499
- units_per_div?: number | undefined;
26500
- } | undefined;
26501
26451
  }, {
26502
26452
  type: "simulation_voltage_probe";
26503
26453
  name?: string | undefined;
@@ -26509,12 +26459,6 @@ declare const simulation_voltage_probe: z.ZodEffects<z.ZodObject<{
26509
26459
  signal_input_source_net_id?: string | undefined;
26510
26460
  reference_input_source_port_id?: string | undefined;
26511
26461
  reference_input_source_net_id?: string | undefined;
26512
- display_options?: {
26513
- center?: number | undefined;
26514
- label?: string | undefined;
26515
- offset_divs?: number | undefined;
26516
- units_per_div?: number | undefined;
26517
- } | undefined;
26518
26462
  }>;
26519
26463
  type SimulationVoltageProbeInput = z.input<typeof simulation_voltage_probe>;
26520
26464
  /**
@@ -26533,31 +26477,8 @@ interface SimulationVoltageProbe {
26533
26477
  reference_input_source_net_id?: string;
26534
26478
  subcircuit_id?: string;
26535
26479
  color?: string;
26536
- display_options?: SimulationVoltageProbeDisplayOptions;
26537
- }
26538
- interface SimulationVoltageProbeDisplayOptions {
26539
- label?: string;
26540
- center?: number;
26541
- offset_divs?: number;
26542
- units_per_div?: number;
26543
26480
  }
26544
26481
 
26545
- declare const simulation_current_probe_display_options: z.ZodObject<{
26546
- label: z.ZodOptional<z.ZodString>;
26547
- center: z.ZodOptional<z.ZodNumber>;
26548
- offset_divs: z.ZodOptional<z.ZodNumber>;
26549
- units_per_div: z.ZodOptional<z.ZodNumber>;
26550
- }, "strip", z.ZodTypeAny, {
26551
- center?: number | undefined;
26552
- label?: string | undefined;
26553
- offset_divs?: number | undefined;
26554
- units_per_div?: number | undefined;
26555
- }, {
26556
- center?: number | undefined;
26557
- label?: string | undefined;
26558
- offset_divs?: number | undefined;
26559
- units_per_div?: number | undefined;
26560
- }>;
26561
26482
  declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26562
26483
  type: z.ZodLiteral<"simulation_current_probe">;
26563
26484
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -26569,22 +26490,6 @@ declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26569
26490
  negative_source_net_id: z.ZodOptional<z.ZodString>;
26570
26491
  subcircuit_id: z.ZodOptional<z.ZodString>;
26571
26492
  color: z.ZodOptional<z.ZodString>;
26572
- display_options: z.ZodOptional<z.ZodObject<{
26573
- label: z.ZodOptional<z.ZodString>;
26574
- center: z.ZodOptional<z.ZodNumber>;
26575
- offset_divs: z.ZodOptional<z.ZodNumber>;
26576
- units_per_div: z.ZodOptional<z.ZodNumber>;
26577
- }, "strip", z.ZodTypeAny, {
26578
- center?: number | undefined;
26579
- label?: string | undefined;
26580
- offset_divs?: number | undefined;
26581
- units_per_div?: number | undefined;
26582
- }, {
26583
- center?: number | undefined;
26584
- label?: string | undefined;
26585
- offset_divs?: number | undefined;
26586
- units_per_div?: number | undefined;
26587
- }>>;
26588
26493
  }, "strip", z.ZodTypeAny, {
26589
26494
  type: "simulation_current_probe";
26590
26495
  simulation_current_probe_id: string;
@@ -26596,12 +26501,6 @@ declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26596
26501
  negative_source_port_id?: string | undefined;
26597
26502
  positive_source_net_id?: string | undefined;
26598
26503
  negative_source_net_id?: string | undefined;
26599
- display_options?: {
26600
- center?: number | undefined;
26601
- label?: string | undefined;
26602
- offset_divs?: number | undefined;
26603
- units_per_div?: number | undefined;
26604
- } | undefined;
26605
26504
  }, {
26606
26505
  type: "simulation_current_probe";
26607
26506
  name?: string | undefined;
@@ -26612,12 +26511,6 @@ declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26612
26511
  negative_source_port_id?: string | undefined;
26613
26512
  positive_source_net_id?: string | undefined;
26614
26513
  negative_source_net_id?: string | undefined;
26615
- display_options?: {
26616
- center?: number | undefined;
26617
- label?: string | undefined;
26618
- offset_divs?: number | undefined;
26619
- units_per_div?: number | undefined;
26620
- } | undefined;
26621
26514
  simulation_current_probe_id?: string | undefined;
26622
26515
  }>, {
26623
26516
  type: "simulation_current_probe";
@@ -26630,12 +26523,6 @@ declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26630
26523
  negative_source_port_id?: string | undefined;
26631
26524
  positive_source_net_id?: string | undefined;
26632
26525
  negative_source_net_id?: string | undefined;
26633
- display_options?: {
26634
- center?: number | undefined;
26635
- label?: string | undefined;
26636
- offset_divs?: number | undefined;
26637
- units_per_div?: number | undefined;
26638
- } | undefined;
26639
26526
  }, {
26640
26527
  type: "simulation_current_probe";
26641
26528
  name?: string | undefined;
@@ -26646,12 +26533,6 @@ declare const simulation_current_probe: z.ZodEffects<z.ZodObject<{
26646
26533
  negative_source_port_id?: string | undefined;
26647
26534
  positive_source_net_id?: string | undefined;
26648
26535
  negative_source_net_id?: string | undefined;
26649
- display_options?: {
26650
- center?: number | undefined;
26651
- label?: string | undefined;
26652
- offset_divs?: number | undefined;
26653
- units_per_div?: number | undefined;
26654
- } | undefined;
26655
26536
  simulation_current_probe_id?: string | undefined;
26656
26537
  }>;
26657
26538
  type SimulationCurrentProbeInput = z.input<typeof simulation_current_probe>;
@@ -26670,13 +26551,6 @@ interface SimulationCurrentProbe {
26670
26551
  negative_source_net_id?: string;
26671
26552
  subcircuit_id?: string;
26672
26553
  color?: string;
26673
- display_options?: SimulationCurrentProbeDisplayOptions;
26674
- }
26675
- interface SimulationCurrentProbeDisplayOptions {
26676
- label?: string;
26677
- center?: number;
26678
- offset_divs?: number;
26679
- units_per_div?: number;
26680
26554
  }
26681
26555
 
26682
26556
  declare const simulation_unknown_experiment_error: z.ZodObject<{
@@ -26800,6 +26674,97 @@ interface SimulationSpiceSubcircuit {
26800
26674
  subcircuit_source: string;
26801
26675
  }
26802
26676
 
26677
+ declare const simulation_oscilloscope_trace: z.ZodEffects<z.ZodObject<{
26678
+ type: z.ZodLiteral<"simulation_oscilloscope_trace">;
26679
+ simulation_oscilloscope_trace_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
26680
+ simulation_transient_voltage_graph_id: z.ZodOptional<z.ZodString>;
26681
+ simulation_transient_current_graph_id: z.ZodOptional<z.ZodString>;
26682
+ simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
26683
+ simulation_current_probe_id: z.ZodOptional<z.ZodString>;
26684
+ display_name: z.ZodOptional<z.ZodString>;
26685
+ color: z.ZodOptional<z.ZodString>;
26686
+ display_center_value: z.ZodOptional<z.ZodNumber>;
26687
+ display_center_offset_divs: z.ZodOptional<z.ZodNumber>;
26688
+ volts_per_div: z.ZodOptional<z.ZodNumber>;
26689
+ amps_per_div: z.ZodOptional<z.ZodNumber>;
26690
+ }, "strip", z.ZodTypeAny, {
26691
+ type: "simulation_oscilloscope_trace";
26692
+ simulation_oscilloscope_trace_id: string;
26693
+ color?: string | undefined;
26694
+ simulation_transient_voltage_graph_id?: string | undefined;
26695
+ simulation_transient_current_graph_id?: string | undefined;
26696
+ simulation_voltage_probe_id?: string | undefined;
26697
+ simulation_current_probe_id?: string | undefined;
26698
+ display_name?: string | undefined;
26699
+ display_center_value?: number | undefined;
26700
+ display_center_offset_divs?: number | undefined;
26701
+ volts_per_div?: number | undefined;
26702
+ amps_per_div?: number | undefined;
26703
+ }, {
26704
+ type: "simulation_oscilloscope_trace";
26705
+ color?: string | undefined;
26706
+ simulation_transient_voltage_graph_id?: string | undefined;
26707
+ simulation_transient_current_graph_id?: string | undefined;
26708
+ simulation_voltage_probe_id?: string | undefined;
26709
+ simulation_current_probe_id?: string | undefined;
26710
+ simulation_oscilloscope_trace_id?: string | undefined;
26711
+ display_name?: string | undefined;
26712
+ display_center_value?: number | undefined;
26713
+ display_center_offset_divs?: number | undefined;
26714
+ volts_per_div?: number | undefined;
26715
+ amps_per_div?: number | undefined;
26716
+ }>, {
26717
+ type: "simulation_oscilloscope_trace";
26718
+ simulation_oscilloscope_trace_id: string;
26719
+ color?: string | undefined;
26720
+ simulation_transient_voltage_graph_id?: string | undefined;
26721
+ simulation_transient_current_graph_id?: string | undefined;
26722
+ simulation_voltage_probe_id?: string | undefined;
26723
+ simulation_current_probe_id?: string | undefined;
26724
+ display_name?: string | undefined;
26725
+ display_center_value?: number | undefined;
26726
+ display_center_offset_divs?: number | undefined;
26727
+ volts_per_div?: number | undefined;
26728
+ amps_per_div?: number | undefined;
26729
+ }, {
26730
+ type: "simulation_oscilloscope_trace";
26731
+ color?: string | undefined;
26732
+ simulation_transient_voltage_graph_id?: string | undefined;
26733
+ simulation_transient_current_graph_id?: string | undefined;
26734
+ simulation_voltage_probe_id?: string | undefined;
26735
+ simulation_current_probe_id?: string | undefined;
26736
+ simulation_oscilloscope_trace_id?: string | undefined;
26737
+ display_name?: string | undefined;
26738
+ display_center_value?: number | undefined;
26739
+ display_center_offset_divs?: number | undefined;
26740
+ volts_per_div?: number | undefined;
26741
+ amps_per_div?: number | undefined;
26742
+ }>;
26743
+ type SimulationOscilloscopeTraceInput = z.input<typeof simulation_oscilloscope_trace>;
26744
+ /**
26745
+ * Defines how a simulation measurement is rendered as an oscilloscope-style
26746
+ * trace. Display fields live here because they describe the relationship
26747
+ * between measurement data and a graph, not the probe itself.
26748
+ *
26749
+ * Scope display fields map measured values into display divisions using
26750
+ * display_div = display_center_offset_divs + (raw_value - display_center_value) / units_per_div.
26751
+ * Use volts_per_div for voltage traces and amps_per_div for current traces.
26752
+ */
26753
+ interface SimulationOscilloscopeTrace {
26754
+ type: "simulation_oscilloscope_trace";
26755
+ simulation_oscilloscope_trace_id: string;
26756
+ simulation_transient_voltage_graph_id?: string;
26757
+ simulation_transient_current_graph_id?: string;
26758
+ simulation_voltage_probe_id?: string;
26759
+ simulation_current_probe_id?: string;
26760
+ display_name?: string;
26761
+ color?: string;
26762
+ display_center_value?: number;
26763
+ display_center_offset_divs?: number;
26764
+ volts_per_div?: number;
26765
+ amps_per_div?: number;
26766
+ }
26767
+
26803
26768
  interface SourceComponentBase {
26804
26769
  type: "source_component";
26805
26770
  ftype?: string;
@@ -26833,11 +26798,11 @@ declare const source_component_base: z.ZodObject<{
26833
26798
  source_component_id: string;
26834
26799
  subcircuit_id?: string | undefined;
26835
26800
  source_group_id?: string | undefined;
26801
+ display_name?: string | undefined;
26836
26802
  ftype?: string | undefined;
26837
26803
  manufacturer_part_number?: string | undefined;
26838
26804
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26839
26805
  display_value?: string | undefined;
26840
- display_name?: string | undefined;
26841
26806
  are_pins_interchangeable?: boolean | undefined;
26842
26807
  internally_connected_source_port_ids?: string[][] | undefined;
26843
26808
  }, {
@@ -26846,11 +26811,11 @@ declare const source_component_base: z.ZodObject<{
26846
26811
  source_component_id: string;
26847
26812
  subcircuit_id?: string | undefined;
26848
26813
  source_group_id?: string | undefined;
26814
+ display_name?: string | undefined;
26849
26815
  ftype?: string | undefined;
26850
26816
  manufacturer_part_number?: string | undefined;
26851
26817
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26852
26818
  display_value?: string | undefined;
26853
- display_name?: string | undefined;
26854
26819
  are_pins_interchangeable?: boolean | undefined;
26855
26820
  internally_connected_source_port_ids?: string[][] | undefined;
26856
26821
  }>;
@@ -26881,10 +26846,10 @@ declare const source_simple_capacitor: z.ZodObject<{
26881
26846
  capacitance: number;
26882
26847
  subcircuit_id?: string | undefined;
26883
26848
  source_group_id?: string | undefined;
26849
+ display_name?: string | undefined;
26884
26850
  manufacturer_part_number?: string | undefined;
26885
26851
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26886
26852
  display_value?: string | undefined;
26887
- display_name?: string | undefined;
26888
26853
  are_pins_interchangeable?: boolean | undefined;
26889
26854
  internally_connected_source_port_ids?: string[][] | undefined;
26890
26855
  max_voltage_rating?: number | undefined;
@@ -26898,10 +26863,10 @@ declare const source_simple_capacitor: z.ZodObject<{
26898
26863
  capacitance: string | number;
26899
26864
  subcircuit_id?: string | undefined;
26900
26865
  source_group_id?: string | undefined;
26866
+ display_name?: string | undefined;
26901
26867
  manufacturer_part_number?: string | undefined;
26902
26868
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26903
26869
  display_value?: string | undefined;
26904
- display_name?: string | undefined;
26905
26870
  are_pins_interchangeable?: boolean | undefined;
26906
26871
  internally_connected_source_port_ids?: string[][] | undefined;
26907
26872
  max_voltage_rating?: string | number | undefined;
@@ -26944,10 +26909,10 @@ declare const source_simple_resistor: z.ZodObject<{
26944
26909
  resistance: number;
26945
26910
  subcircuit_id?: string | undefined;
26946
26911
  source_group_id?: string | undefined;
26912
+ display_name?: string | undefined;
26947
26913
  manufacturer_part_number?: string | undefined;
26948
26914
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26949
26915
  display_value?: string | undefined;
26950
- display_name?: string | undefined;
26951
26916
  are_pins_interchangeable?: boolean | undefined;
26952
26917
  internally_connected_source_port_ids?: string[][] | undefined;
26953
26918
  display_resistance?: string | undefined;
@@ -26959,10 +26924,10 @@ declare const source_simple_resistor: z.ZodObject<{
26959
26924
  resistance: string | number;
26960
26925
  subcircuit_id?: string | undefined;
26961
26926
  source_group_id?: string | undefined;
26927
+ display_name?: string | undefined;
26962
26928
  manufacturer_part_number?: string | undefined;
26963
26929
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
26964
26930
  display_value?: string | undefined;
26965
- display_name?: string | undefined;
26966
26931
  are_pins_interchangeable?: boolean | undefined;
26967
26932
  internally_connected_source_port_ids?: string[][] | undefined;
26968
26933
  display_resistance?: string | undefined;
@@ -26998,10 +26963,10 @@ declare const source_simple_diode: z.ZodObject<{
26998
26963
  ftype: "simple_diode";
26999
26964
  subcircuit_id?: string | undefined;
27000
26965
  source_group_id?: string | undefined;
26966
+ display_name?: string | undefined;
27001
26967
  manufacturer_part_number?: string | undefined;
27002
26968
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27003
26969
  display_value?: string | undefined;
27004
- display_name?: string | undefined;
27005
26970
  are_pins_interchangeable?: boolean | undefined;
27006
26971
  internally_connected_source_port_ids?: string[][] | undefined;
27007
26972
  }, {
@@ -27011,10 +26976,10 @@ declare const source_simple_diode: z.ZodObject<{
27011
26976
  ftype: "simple_diode";
27012
26977
  subcircuit_id?: string | undefined;
27013
26978
  source_group_id?: string | undefined;
26979
+ display_name?: string | undefined;
27014
26980
  manufacturer_part_number?: string | undefined;
27015
26981
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27016
26982
  display_value?: string | undefined;
27017
- display_name?: string | undefined;
27018
26983
  are_pins_interchangeable?: boolean | undefined;
27019
26984
  internally_connected_source_port_ids?: string[][] | undefined;
27020
26985
  }>;
@@ -27047,10 +27012,10 @@ declare const source_simple_fiducial: z.ZodObject<{
27047
27012
  ftype: "simple_fiducial";
27048
27013
  subcircuit_id?: string | undefined;
27049
27014
  source_group_id?: string | undefined;
27015
+ display_name?: string | undefined;
27050
27016
  manufacturer_part_number?: string | undefined;
27051
27017
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27052
27018
  display_value?: string | undefined;
27053
- display_name?: string | undefined;
27054
27019
  are_pins_interchangeable?: boolean | undefined;
27055
27020
  internally_connected_source_port_ids?: string[][] | undefined;
27056
27021
  }, {
@@ -27060,10 +27025,10 @@ declare const source_simple_fiducial: z.ZodObject<{
27060
27025
  ftype: "simple_fiducial";
27061
27026
  subcircuit_id?: string | undefined;
27062
27027
  source_group_id?: string | undefined;
27028
+ display_name?: string | undefined;
27063
27029
  manufacturer_part_number?: string | undefined;
27064
27030
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27065
27031
  display_value?: string | undefined;
27066
- display_name?: string | undefined;
27067
27032
  are_pins_interchangeable?: boolean | undefined;
27068
27033
  internally_connected_source_port_ids?: string[][] | undefined;
27069
27034
  }>;
@@ -27099,10 +27064,10 @@ declare const source_simple_led: z.ZodObject<{
27099
27064
  subcircuit_id?: string | undefined;
27100
27065
  color?: string | undefined;
27101
27066
  source_group_id?: string | undefined;
27067
+ display_name?: string | undefined;
27102
27068
  manufacturer_part_number?: string | undefined;
27103
27069
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27104
27070
  display_value?: string | undefined;
27105
- display_name?: string | undefined;
27106
27071
  are_pins_interchangeable?: boolean | undefined;
27107
27072
  internally_connected_source_port_ids?: string[][] | undefined;
27108
27073
  wavelength?: string | undefined;
@@ -27114,10 +27079,10 @@ declare const source_simple_led: z.ZodObject<{
27114
27079
  subcircuit_id?: string | undefined;
27115
27080
  color?: string | undefined;
27116
27081
  source_group_id?: string | undefined;
27082
+ display_name?: string | undefined;
27117
27083
  manufacturer_part_number?: string | undefined;
27118
27084
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27119
27085
  display_value?: string | undefined;
27120
- display_name?: string | undefined;
27121
27086
  are_pins_interchangeable?: boolean | undefined;
27122
27087
  internally_connected_source_port_ids?: string[][] | undefined;
27123
27088
  wavelength?: string | undefined;
@@ -27153,10 +27118,10 @@ declare const source_simple_ground: z.ZodObject<{
27153
27118
  ftype: "simple_ground";
27154
27119
  subcircuit_id?: string | undefined;
27155
27120
  source_group_id?: string | undefined;
27121
+ display_name?: string | undefined;
27156
27122
  manufacturer_part_number?: string | undefined;
27157
27123
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27158
27124
  display_value?: string | undefined;
27159
- display_name?: string | undefined;
27160
27125
  are_pins_interchangeable?: boolean | undefined;
27161
27126
  internally_connected_source_port_ids?: string[][] | undefined;
27162
27127
  }, {
@@ -27166,10 +27131,10 @@ declare const source_simple_ground: z.ZodObject<{
27166
27131
  ftype: "simple_ground";
27167
27132
  subcircuit_id?: string | undefined;
27168
27133
  source_group_id?: string | undefined;
27134
+ display_name?: string | undefined;
27169
27135
  manufacturer_part_number?: string | undefined;
27170
27136
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27171
27137
  display_value?: string | undefined;
27172
- display_name?: string | undefined;
27173
27138
  are_pins_interchangeable?: boolean | undefined;
27174
27139
  internally_connected_source_port_ids?: string[][] | undefined;
27175
27140
  }>;
@@ -27202,10 +27167,10 @@ declare const source_simple_chip: z.ZodObject<{
27202
27167
  ftype: "simple_chip";
27203
27168
  subcircuit_id?: string | undefined;
27204
27169
  source_group_id?: string | undefined;
27170
+ display_name?: string | undefined;
27205
27171
  manufacturer_part_number?: string | undefined;
27206
27172
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27207
27173
  display_value?: string | undefined;
27208
- display_name?: string | undefined;
27209
27174
  are_pins_interchangeable?: boolean | undefined;
27210
27175
  internally_connected_source_port_ids?: string[][] | undefined;
27211
27176
  }, {
@@ -27215,10 +27180,10 @@ declare const source_simple_chip: z.ZodObject<{
27215
27180
  ftype: "simple_chip";
27216
27181
  subcircuit_id?: string | undefined;
27217
27182
  source_group_id?: string | undefined;
27183
+ display_name?: string | undefined;
27218
27184
  manufacturer_part_number?: string | undefined;
27219
27185
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27220
27186
  display_value?: string | undefined;
27221
- display_name?: string | undefined;
27222
27187
  are_pins_interchangeable?: boolean | undefined;
27223
27188
  internally_connected_source_port_ids?: string[][] | undefined;
27224
27189
  }>;
@@ -27253,10 +27218,10 @@ declare const source_simple_power_source: z.ZodObject<{
27253
27218
  ftype: "simple_power_source";
27254
27219
  subcircuit_id?: string | undefined;
27255
27220
  source_group_id?: string | undefined;
27221
+ display_name?: string | undefined;
27256
27222
  manufacturer_part_number?: string | undefined;
27257
27223
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27258
27224
  display_value?: string | undefined;
27259
- display_name?: string | undefined;
27260
27225
  are_pins_interchangeable?: boolean | undefined;
27261
27226
  internally_connected_source_port_ids?: string[][] | undefined;
27262
27227
  }, {
@@ -27267,10 +27232,10 @@ declare const source_simple_power_source: z.ZodObject<{
27267
27232
  ftype: "simple_power_source";
27268
27233
  subcircuit_id?: string | undefined;
27269
27234
  source_group_id?: string | undefined;
27235
+ display_name?: string | undefined;
27270
27236
  manufacturer_part_number?: string | undefined;
27271
27237
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27272
27238
  display_value?: string | undefined;
27273
- display_name?: string | undefined;
27274
27239
  are_pins_interchangeable?: boolean | undefined;
27275
27240
  internally_connected_source_port_ids?: string[][] | undefined;
27276
27241
  }>;
@@ -27316,10 +27281,10 @@ declare const source_simple_current_source: z.ZodObject<{
27316
27281
  phase?: number | undefined;
27317
27282
  duty_cycle?: number | undefined;
27318
27283
  peak_to_peak_current?: number | undefined;
27284
+ display_name?: string | undefined;
27319
27285
  manufacturer_part_number?: string | undefined;
27320
27286
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27321
27287
  display_value?: string | undefined;
27322
- display_name?: string | undefined;
27323
27288
  are_pins_interchangeable?: boolean | undefined;
27324
27289
  internally_connected_source_port_ids?: string[][] | undefined;
27325
27290
  }, {
@@ -27335,10 +27300,10 @@ declare const source_simple_current_source: z.ZodObject<{
27335
27300
  phase?: number | undefined;
27336
27301
  duty_cycle?: number | undefined;
27337
27302
  peak_to_peak_current?: string | number | undefined;
27303
+ display_name?: string | undefined;
27338
27304
  manufacturer_part_number?: string | undefined;
27339
27305
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27340
27306
  display_value?: string | undefined;
27341
- display_name?: string | undefined;
27342
27307
  are_pins_interchangeable?: boolean | undefined;
27343
27308
  internally_connected_source_port_ids?: string[][] | undefined;
27344
27309
  }>;
@@ -27356,6 +27321,55 @@ interface SourceSimpleCurrentSource extends SourceComponentBase {
27356
27321
  duty_cycle?: number;
27357
27322
  }
27358
27323
 
27324
+ declare const source_simple_ammeter: z.ZodObject<{
27325
+ type: z.ZodLiteral<"source_component">;
27326
+ source_component_id: z.ZodString;
27327
+ name: z.ZodString;
27328
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
27329
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
27330
+ display_value: z.ZodOptional<z.ZodString>;
27331
+ display_name: z.ZodOptional<z.ZodString>;
27332
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
27333
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
27334
+ source_group_id: z.ZodOptional<z.ZodString>;
27335
+ subcircuit_id: z.ZodOptional<z.ZodString>;
27336
+ } & {
27337
+ ftype: z.ZodLiteral<"simple_ammeter">;
27338
+ }, "strip", z.ZodTypeAny, {
27339
+ type: "source_component";
27340
+ name: string;
27341
+ source_component_id: string;
27342
+ ftype: "simple_ammeter";
27343
+ subcircuit_id?: string | undefined;
27344
+ source_group_id?: string | undefined;
27345
+ display_name?: string | undefined;
27346
+ manufacturer_part_number?: string | undefined;
27347
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27348
+ display_value?: string | undefined;
27349
+ are_pins_interchangeable?: boolean | undefined;
27350
+ internally_connected_source_port_ids?: string[][] | undefined;
27351
+ }, {
27352
+ type: "source_component";
27353
+ name: string;
27354
+ source_component_id: string;
27355
+ ftype: "simple_ammeter";
27356
+ subcircuit_id?: string | undefined;
27357
+ source_group_id?: string | undefined;
27358
+ display_name?: string | undefined;
27359
+ manufacturer_part_number?: string | undefined;
27360
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27361
+ display_value?: string | undefined;
27362
+ are_pins_interchangeable?: boolean | undefined;
27363
+ internally_connected_source_port_ids?: string[][] | undefined;
27364
+ }>;
27365
+ type SourceSimpleAmmeterInput = z.input<typeof source_simple_ammeter>;
27366
+ /**
27367
+ * Defines a simple ammeter component for simulation and measurement
27368
+ */
27369
+ interface SourceSimpleAmmeter extends SourceComponentBase {
27370
+ ftype: "simple_ammeter";
27371
+ }
27372
+
27359
27373
  declare const source_pin_attributes: z.ZodObject<{
27360
27374
  must_be_connected: z.ZodOptional<z.ZodBoolean>;
27361
27375
  provides_power: z.ZodOptional<z.ZodBoolean>;
@@ -27540,10 +27554,10 @@ declare const source_simple_battery: z.ZodObject<{
27540
27554
  capacity: number;
27541
27555
  subcircuit_id?: string | undefined;
27542
27556
  source_group_id?: string | undefined;
27557
+ display_name?: string | undefined;
27543
27558
  manufacturer_part_number?: string | undefined;
27544
27559
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27545
27560
  display_value?: string | undefined;
27546
- display_name?: string | undefined;
27547
27561
  are_pins_interchangeable?: boolean | undefined;
27548
27562
  internally_connected_source_port_ids?: string[][] | undefined;
27549
27563
  }, {
@@ -27554,10 +27568,10 @@ declare const source_simple_battery: z.ZodObject<{
27554
27568
  capacity: string | number;
27555
27569
  subcircuit_id?: string | undefined;
27556
27570
  source_group_id?: string | undefined;
27571
+ display_name?: string | undefined;
27557
27572
  manufacturer_part_number?: string | undefined;
27558
27573
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27559
27574
  display_value?: string | undefined;
27560
- display_name?: string | undefined;
27561
27575
  are_pins_interchangeable?: boolean | undefined;
27562
27576
  internally_connected_source_port_ids?: string[][] | undefined;
27563
27577
  }>;
@@ -27595,10 +27609,10 @@ declare const source_simple_inductor: z.ZodObject<{
27595
27609
  inductance: number;
27596
27610
  subcircuit_id?: string | undefined;
27597
27611
  source_group_id?: string | undefined;
27612
+ display_name?: string | undefined;
27598
27613
  manufacturer_part_number?: string | undefined;
27599
27614
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27600
27615
  display_value?: string | undefined;
27601
- display_name?: string | undefined;
27602
27616
  are_pins_interchangeable?: boolean | undefined;
27603
27617
  internally_connected_source_port_ids?: string[][] | undefined;
27604
27618
  display_inductance?: string | undefined;
@@ -27611,10 +27625,10 @@ declare const source_simple_inductor: z.ZodObject<{
27611
27625
  inductance: string | number;
27612
27626
  subcircuit_id?: string | undefined;
27613
27627
  source_group_id?: string | undefined;
27628
+ display_name?: string | undefined;
27614
27629
  manufacturer_part_number?: string | undefined;
27615
27630
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27616
27631
  display_value?: string | undefined;
27617
- display_name?: string | undefined;
27618
27632
  are_pins_interchangeable?: boolean | undefined;
27619
27633
  internally_connected_source_port_ids?: string[][] | undefined;
27620
27634
  display_inductance?: string | undefined;
@@ -27652,10 +27666,10 @@ declare const source_simple_push_button: z.ZodObject<{
27652
27666
  ftype: "simple_push_button";
27653
27667
  subcircuit_id?: string | undefined;
27654
27668
  source_group_id?: string | undefined;
27669
+ display_name?: string | undefined;
27655
27670
  manufacturer_part_number?: string | undefined;
27656
27671
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27657
27672
  display_value?: string | undefined;
27658
- display_name?: string | undefined;
27659
27673
  are_pins_interchangeable?: boolean | undefined;
27660
27674
  internally_connected_source_port_ids?: string[][] | undefined;
27661
27675
  }, {
@@ -27665,10 +27679,10 @@ declare const source_simple_push_button: z.ZodObject<{
27665
27679
  ftype: "simple_push_button";
27666
27680
  subcircuit_id?: string | undefined;
27667
27681
  source_group_id?: string | undefined;
27682
+ display_name?: string | undefined;
27668
27683
  manufacturer_part_number?: string | undefined;
27669
27684
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27670
27685
  display_value?: string | undefined;
27671
- display_name?: string | undefined;
27672
27686
  are_pins_interchangeable?: boolean | undefined;
27673
27687
  internally_connected_source_port_ids?: string[][] | undefined;
27674
27688
  }>;
@@ -27704,10 +27718,10 @@ declare const source_simple_potentiometer: z.ZodObject<{
27704
27718
  max_resistance: number;
27705
27719
  subcircuit_id?: string | undefined;
27706
27720
  source_group_id?: string | undefined;
27721
+ display_name?: string | undefined;
27707
27722
  manufacturer_part_number?: string | undefined;
27708
27723
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27709
27724
  display_value?: string | undefined;
27710
- display_name?: string | undefined;
27711
27725
  are_pins_interchangeable?: boolean | undefined;
27712
27726
  internally_connected_source_port_ids?: string[][] | undefined;
27713
27727
  display_max_resistance?: string | undefined;
@@ -27719,10 +27733,10 @@ declare const source_simple_potentiometer: z.ZodObject<{
27719
27733
  max_resistance: string | number;
27720
27734
  subcircuit_id?: string | undefined;
27721
27735
  source_group_id?: string | undefined;
27736
+ display_name?: string | undefined;
27722
27737
  manufacturer_part_number?: string | undefined;
27723
27738
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27724
27739
  display_value?: string | undefined;
27725
- display_name?: string | undefined;
27726
27740
  are_pins_interchangeable?: boolean | undefined;
27727
27741
  internally_connected_source_port_ids?: string[][] | undefined;
27728
27742
  display_max_resistance?: string | undefined;
@@ -27759,10 +27773,10 @@ declare const source_simple_crystal: z.ZodObject<{
27759
27773
  ftype: "simple_crystal";
27760
27774
  subcircuit_id?: string | undefined;
27761
27775
  source_group_id?: string | undefined;
27776
+ display_name?: string | undefined;
27762
27777
  manufacturer_part_number?: string | undefined;
27763
27778
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27764
27779
  display_value?: string | undefined;
27765
- display_name?: string | undefined;
27766
27780
  are_pins_interchangeable?: boolean | undefined;
27767
27781
  internally_connected_source_port_ids?: string[][] | undefined;
27768
27782
  load_capacitance?: number | undefined;
@@ -27775,10 +27789,10 @@ declare const source_simple_crystal: z.ZodObject<{
27775
27789
  ftype: "simple_crystal";
27776
27790
  subcircuit_id?: string | undefined;
27777
27791
  source_group_id?: string | undefined;
27792
+ display_name?: string | undefined;
27778
27793
  manufacturer_part_number?: string | undefined;
27779
27794
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27780
27795
  display_value?: string | undefined;
27781
- display_name?: string | undefined;
27782
27796
  are_pins_interchangeable?: boolean | undefined;
27783
27797
  internally_connected_source_port_ids?: string[][] | undefined;
27784
27798
  load_capacitance?: number | undefined;
@@ -27820,10 +27834,10 @@ declare const source_simple_pin_header: z.ZodObject<{
27820
27834
  gender: "male" | "female";
27821
27835
  subcircuit_id?: string | undefined;
27822
27836
  source_group_id?: string | undefined;
27837
+ display_name?: string | undefined;
27823
27838
  manufacturer_part_number?: string | undefined;
27824
27839
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27825
27840
  display_value?: string | undefined;
27826
- display_name?: string | undefined;
27827
27841
  are_pins_interchangeable?: boolean | undefined;
27828
27842
  internally_connected_source_port_ids?: string[][] | undefined;
27829
27843
  }, {
@@ -27834,10 +27848,10 @@ declare const source_simple_pin_header: z.ZodObject<{
27834
27848
  pin_count: number;
27835
27849
  subcircuit_id?: string | undefined;
27836
27850
  source_group_id?: string | undefined;
27851
+ display_name?: string | undefined;
27837
27852
  manufacturer_part_number?: string | undefined;
27838
27853
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27839
27854
  display_value?: string | undefined;
27840
- display_name?: string | undefined;
27841
27855
  are_pins_interchangeable?: boolean | undefined;
27842
27856
  internally_connected_source_port_ids?: string[][] | undefined;
27843
27857
  gender?: "male" | "female" | undefined;
@@ -27871,10 +27885,10 @@ declare const source_simple_connector: z.ZodObject<{
27871
27885
  ftype: "simple_connector";
27872
27886
  subcircuit_id?: string | undefined;
27873
27887
  source_group_id?: string | undefined;
27888
+ display_name?: string | undefined;
27874
27889
  manufacturer_part_number?: string | undefined;
27875
27890
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27876
27891
  display_value?: string | undefined;
27877
- display_name?: string | undefined;
27878
27892
  are_pins_interchangeable?: boolean | undefined;
27879
27893
  internally_connected_source_port_ids?: string[][] | undefined;
27880
27894
  standard?: "usb_c" | "m2" | undefined;
@@ -27885,10 +27899,10 @@ declare const source_simple_connector: z.ZodObject<{
27885
27899
  ftype: "simple_connector";
27886
27900
  subcircuit_id?: string | undefined;
27887
27901
  source_group_id?: string | undefined;
27902
+ display_name?: string | undefined;
27888
27903
  manufacturer_part_number?: string | undefined;
27889
27904
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27890
27905
  display_value?: string | undefined;
27891
- display_name?: string | undefined;
27892
27906
  are_pins_interchangeable?: boolean | undefined;
27893
27907
  internally_connected_source_port_ids?: string[][] | undefined;
27894
27908
  standard?: "usb_c" | "m2" | undefined;
@@ -27923,10 +27937,10 @@ declare const source_simple_pinout: z.ZodObject<{
27923
27937
  ftype: "simple_pinout";
27924
27938
  subcircuit_id?: string | undefined;
27925
27939
  source_group_id?: string | undefined;
27940
+ display_name?: string | undefined;
27926
27941
  manufacturer_part_number?: string | undefined;
27927
27942
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27928
27943
  display_value?: string | undefined;
27929
- display_name?: string | undefined;
27930
27944
  are_pins_interchangeable?: boolean | undefined;
27931
27945
  internally_connected_source_port_ids?: string[][] | undefined;
27932
27946
  }, {
@@ -27936,10 +27950,10 @@ declare const source_simple_pinout: z.ZodObject<{
27936
27950
  ftype: "simple_pinout";
27937
27951
  subcircuit_id?: string | undefined;
27938
27952
  source_group_id?: string | undefined;
27953
+ display_name?: string | undefined;
27939
27954
  manufacturer_part_number?: string | undefined;
27940
27955
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27941
27956
  display_value?: string | undefined;
27942
- display_name?: string | undefined;
27943
27957
  are_pins_interchangeable?: boolean | undefined;
27944
27958
  internally_connected_source_port_ids?: string[][] | undefined;
27945
27959
  }>;
@@ -27977,10 +27991,10 @@ declare const source_simple_resonator: z.ZodObject<{
27977
27991
  load_capacitance: number;
27978
27992
  subcircuit_id?: string | undefined;
27979
27993
  source_group_id?: string | undefined;
27994
+ display_name?: string | undefined;
27980
27995
  manufacturer_part_number?: string | undefined;
27981
27996
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27982
27997
  display_value?: string | undefined;
27983
- display_name?: string | undefined;
27984
27998
  are_pins_interchangeable?: boolean | undefined;
27985
27999
  internally_connected_source_port_ids?: string[][] | undefined;
27986
28000
  equivalent_series_resistance?: number | undefined;
@@ -27993,10 +28007,10 @@ declare const source_simple_resonator: z.ZodObject<{
27993
28007
  load_capacitance: string | number;
27994
28008
  subcircuit_id?: string | undefined;
27995
28009
  source_group_id?: string | undefined;
28010
+ display_name?: string | undefined;
27996
28011
  manufacturer_part_number?: string | undefined;
27997
28012
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27998
28013
  display_value?: string | undefined;
27999
- display_name?: string | undefined;
28000
28014
  are_pins_interchangeable?: boolean | undefined;
28001
28015
  internally_connected_source_port_ids?: string[][] | undefined;
28002
28016
  equivalent_series_resistance?: string | number | undefined;
@@ -28035,10 +28049,10 @@ declare const source_simple_transistor: z.ZodObject<{
28035
28049
  transistor_type: "npn" | "pnp";
28036
28050
  subcircuit_id?: string | undefined;
28037
28051
  source_group_id?: string | undefined;
28052
+ display_name?: string | undefined;
28038
28053
  manufacturer_part_number?: string | undefined;
28039
28054
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28040
28055
  display_value?: string | undefined;
28041
- display_name?: string | undefined;
28042
28056
  are_pins_interchangeable?: boolean | undefined;
28043
28057
  internally_connected_source_port_ids?: string[][] | undefined;
28044
28058
  }, {
@@ -28049,10 +28063,10 @@ declare const source_simple_transistor: z.ZodObject<{
28049
28063
  transistor_type: "npn" | "pnp";
28050
28064
  subcircuit_id?: string | undefined;
28051
28065
  source_group_id?: string | undefined;
28066
+ display_name?: string | undefined;
28052
28067
  manufacturer_part_number?: string | undefined;
28053
28068
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28054
28069
  display_value?: string | undefined;
28055
- display_name?: string | undefined;
28056
28070
  are_pins_interchangeable?: boolean | undefined;
28057
28071
  internally_connected_source_port_ids?: string[][] | undefined;
28058
28072
  }>;
@@ -28098,10 +28112,10 @@ declare const source_simple_test_point: z.ZodObject<{
28098
28112
  hole_diameter?: string | number | undefined;
28099
28113
  pad_shape?: "circle" | "rect" | undefined;
28100
28114
  source_group_id?: string | undefined;
28115
+ display_name?: string | undefined;
28101
28116
  manufacturer_part_number?: string | undefined;
28102
28117
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28103
28118
  display_value?: string | undefined;
28104
- display_name?: string | undefined;
28105
28119
  are_pins_interchangeable?: boolean | undefined;
28106
28120
  internally_connected_source_port_ids?: string[][] | undefined;
28107
28121
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -28117,10 +28131,10 @@ declare const source_simple_test_point: z.ZodObject<{
28117
28131
  hole_diameter?: string | number | undefined;
28118
28132
  pad_shape?: "circle" | "rect" | undefined;
28119
28133
  source_group_id?: string | undefined;
28134
+ display_name?: string | undefined;
28120
28135
  manufacturer_part_number?: string | undefined;
28121
28136
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28122
28137
  display_value?: string | undefined;
28123
- display_name?: string | undefined;
28124
28138
  are_pins_interchangeable?: boolean | undefined;
28125
28139
  internally_connected_source_port_ids?: string[][] | undefined;
28126
28140
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -28167,10 +28181,10 @@ declare const source_simple_mosfet: z.ZodObject<{
28167
28181
  mosfet_mode: "enhancement" | "depletion";
28168
28182
  subcircuit_id?: string | undefined;
28169
28183
  source_group_id?: string | undefined;
28184
+ display_name?: string | undefined;
28170
28185
  manufacturer_part_number?: string | undefined;
28171
28186
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28172
28187
  display_value?: string | undefined;
28173
- display_name?: string | undefined;
28174
28188
  are_pins_interchangeable?: boolean | undefined;
28175
28189
  internally_connected_source_port_ids?: string[][] | undefined;
28176
28190
  }, {
@@ -28182,10 +28196,10 @@ declare const source_simple_mosfet: z.ZodObject<{
28182
28196
  mosfet_mode: "enhancement" | "depletion";
28183
28197
  subcircuit_id?: string | undefined;
28184
28198
  source_group_id?: string | undefined;
28199
+ display_name?: string | undefined;
28185
28200
  manufacturer_part_number?: string | undefined;
28186
28201
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28187
28202
  display_value?: string | undefined;
28188
- display_name?: string | undefined;
28189
28203
  are_pins_interchangeable?: boolean | undefined;
28190
28204
  internally_connected_source_port_ids?: string[][] | undefined;
28191
28205
  }>;
@@ -28222,10 +28236,10 @@ declare const source_simple_op_amp: z.ZodObject<{
28222
28236
  ftype: "simple_op_amp";
28223
28237
  subcircuit_id?: string | undefined;
28224
28238
  source_group_id?: string | undefined;
28239
+ display_name?: string | undefined;
28225
28240
  manufacturer_part_number?: string | undefined;
28226
28241
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28227
28242
  display_value?: string | undefined;
28228
- display_name?: string | undefined;
28229
28243
  are_pins_interchangeable?: boolean | undefined;
28230
28244
  internally_connected_source_port_ids?: string[][] | undefined;
28231
28245
  }, {
@@ -28235,10 +28249,10 @@ declare const source_simple_op_amp: z.ZodObject<{
28235
28249
  ftype: "simple_op_amp";
28236
28250
  subcircuit_id?: string | undefined;
28237
28251
  source_group_id?: string | undefined;
28252
+ display_name?: string | undefined;
28238
28253
  manufacturer_part_number?: string | undefined;
28239
28254
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28240
28255
  display_value?: string | undefined;
28241
- display_name?: string | undefined;
28242
28256
  are_pins_interchangeable?: boolean | undefined;
28243
28257
  internally_connected_source_port_ids?: string[][] | undefined;
28244
28258
  }>;
@@ -28271,10 +28285,10 @@ declare const source_simple_switch: z.ZodObject<{
28271
28285
  ftype: "simple_switch";
28272
28286
  subcircuit_id?: string | undefined;
28273
28287
  source_group_id?: string | undefined;
28288
+ display_name?: string | undefined;
28274
28289
  manufacturer_part_number?: string | undefined;
28275
28290
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28276
28291
  display_value?: string | undefined;
28277
- display_name?: string | undefined;
28278
28292
  are_pins_interchangeable?: boolean | undefined;
28279
28293
  internally_connected_source_port_ids?: string[][] | undefined;
28280
28294
  }, {
@@ -28284,10 +28298,10 @@ declare const source_simple_switch: z.ZodObject<{
28284
28298
  ftype: "simple_switch";
28285
28299
  subcircuit_id?: string | undefined;
28286
28300
  source_group_id?: string | undefined;
28301
+ display_name?: string | undefined;
28287
28302
  manufacturer_part_number?: string | undefined;
28288
28303
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28289
28304
  display_value?: string | undefined;
28290
- display_name?: string | undefined;
28291
28305
  are_pins_interchangeable?: boolean | undefined;
28292
28306
  internally_connected_source_port_ids?: string[][] | undefined;
28293
28307
  }>;
@@ -28694,10 +28708,10 @@ declare const source_simple_voltage_probe: z.ZodObject<{
28694
28708
  ftype: "simple_voltage_probe";
28695
28709
  subcircuit_id?: string | undefined;
28696
28710
  source_group_id?: string | undefined;
28711
+ display_name?: string | undefined;
28697
28712
  manufacturer_part_number?: string | undefined;
28698
28713
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28699
28714
  display_value?: string | undefined;
28700
- display_name?: string | undefined;
28701
28715
  are_pins_interchangeable?: boolean | undefined;
28702
28716
  internally_connected_source_port_ids?: string[][] | undefined;
28703
28717
  }, {
@@ -28707,10 +28721,10 @@ declare const source_simple_voltage_probe: z.ZodObject<{
28707
28721
  ftype: "simple_voltage_probe";
28708
28722
  subcircuit_id?: string | undefined;
28709
28723
  source_group_id?: string | undefined;
28724
+ display_name?: string | undefined;
28710
28725
  manufacturer_part_number?: string | undefined;
28711
28726
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28712
28727
  display_value?: string | undefined;
28713
- display_name?: string | undefined;
28714
28728
  are_pins_interchangeable?: boolean | undefined;
28715
28729
  internally_connected_source_port_ids?: string[][] | undefined;
28716
28730
  }>;
@@ -28743,10 +28757,10 @@ declare const source_interconnect: z.ZodObject<{
28743
28757
  ftype: "interconnect";
28744
28758
  subcircuit_id?: string | undefined;
28745
28759
  source_group_id?: string | undefined;
28760
+ display_name?: string | undefined;
28746
28761
  manufacturer_part_number?: string | undefined;
28747
28762
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28748
28763
  display_value?: string | undefined;
28749
- display_name?: string | undefined;
28750
28764
  are_pins_interchangeable?: boolean | undefined;
28751
28765
  internally_connected_source_port_ids?: string[][] | undefined;
28752
28766
  }, {
@@ -28756,10 +28770,10 @@ declare const source_interconnect: z.ZodObject<{
28756
28770
  ftype: "interconnect";
28757
28771
  subcircuit_id?: string | undefined;
28758
28772
  source_group_id?: string | undefined;
28773
+ display_name?: string | undefined;
28759
28774
  manufacturer_part_number?: string | undefined;
28760
28775
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28761
28776
  display_value?: string | undefined;
28762
- display_name?: string | undefined;
28763
28777
  are_pins_interchangeable?: boolean | undefined;
28764
28778
  internally_connected_source_port_ids?: string[][] | undefined;
28765
28779
  }>;
@@ -28886,10 +28900,10 @@ declare const source_simple_voltage_source: z.ZodObject<{
28886
28900
  fall_time?: number | undefined;
28887
28901
  pulse_width?: number | undefined;
28888
28902
  period?: number | undefined;
28903
+ display_name?: string | undefined;
28889
28904
  manufacturer_part_number?: string | undefined;
28890
28905
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28891
28906
  display_value?: string | undefined;
28892
- display_name?: string | undefined;
28893
28907
  are_pins_interchangeable?: boolean | undefined;
28894
28908
  internally_connected_source_port_ids?: string[][] | undefined;
28895
28909
  }, {
@@ -28910,10 +28924,10 @@ declare const source_simple_voltage_source: z.ZodObject<{
28910
28924
  fall_time?: string | number | undefined;
28911
28925
  pulse_width?: string | number | undefined;
28912
28926
  period?: string | number | undefined;
28927
+ display_name?: string | undefined;
28913
28928
  manufacturer_part_number?: string | undefined;
28914
28929
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28915
28930
  display_value?: string | undefined;
28916
- display_name?: string | undefined;
28917
28931
  are_pins_interchangeable?: boolean | undefined;
28918
28932
  internally_connected_source_port_ids?: string[][] | undefined;
28919
28933
  }>;
@@ -28960,10 +28974,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
28960
28974
  resistance: number;
28961
28975
  subcircuit_id?: string | undefined;
28962
28976
  source_group_id?: string | undefined;
28977
+ display_name?: string | undefined;
28963
28978
  manufacturer_part_number?: string | undefined;
28964
28979
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28965
28980
  display_value?: string | undefined;
28966
- display_name?: string | undefined;
28967
28981
  are_pins_interchangeable?: boolean | undefined;
28968
28982
  internally_connected_source_port_ids?: string[][] | undefined;
28969
28983
  display_resistance?: string | undefined;
@@ -28975,10 +28989,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
28975
28989
  resistance: string | number;
28976
28990
  subcircuit_id?: string | undefined;
28977
28991
  source_group_id?: string | undefined;
28992
+ display_name?: string | undefined;
28978
28993
  manufacturer_part_number?: string | undefined;
28979
28994
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28980
28995
  display_value?: string | undefined;
28981
- display_name?: string | undefined;
28982
28996
  are_pins_interchangeable?: boolean | undefined;
28983
28997
  internally_connected_source_port_ids?: string[][] | undefined;
28984
28998
  display_resistance?: string | undefined;
@@ -29008,10 +29022,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29008
29022
  capacitance: number;
29009
29023
  subcircuit_id?: string | undefined;
29010
29024
  source_group_id?: string | undefined;
29025
+ display_name?: string | undefined;
29011
29026
  manufacturer_part_number?: string | undefined;
29012
29027
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29013
29028
  display_value?: string | undefined;
29014
- display_name?: string | undefined;
29015
29029
  are_pins_interchangeable?: boolean | undefined;
29016
29030
  internally_connected_source_port_ids?: string[][] | undefined;
29017
29031
  max_voltage_rating?: number | undefined;
@@ -29025,10 +29039,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29025
29039
  capacitance: string | number;
29026
29040
  subcircuit_id?: string | undefined;
29027
29041
  source_group_id?: string | undefined;
29042
+ display_name?: string | undefined;
29028
29043
  manufacturer_part_number?: string | undefined;
29029
29044
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29030
29045
  display_value?: string | undefined;
29031
- display_name?: string | undefined;
29032
29046
  are_pins_interchangeable?: boolean | undefined;
29033
29047
  internally_connected_source_port_ids?: string[][] | undefined;
29034
29048
  max_voltage_rating?: string | number | undefined;
@@ -29055,10 +29069,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29055
29069
  ftype: "simple_diode";
29056
29070
  subcircuit_id?: string | undefined;
29057
29071
  source_group_id?: string | undefined;
29072
+ display_name?: string | undefined;
29058
29073
  manufacturer_part_number?: string | undefined;
29059
29074
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29060
29075
  display_value?: string | undefined;
29061
- display_name?: string | undefined;
29062
29076
  are_pins_interchangeable?: boolean | undefined;
29063
29077
  internally_connected_source_port_ids?: string[][] | undefined;
29064
29078
  }, {
@@ -29068,10 +29082,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29068
29082
  ftype: "simple_diode";
29069
29083
  subcircuit_id?: string | undefined;
29070
29084
  source_group_id?: string | undefined;
29085
+ display_name?: string | undefined;
29071
29086
  manufacturer_part_number?: string | undefined;
29072
29087
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29073
29088
  display_value?: string | undefined;
29074
- display_name?: string | undefined;
29075
29089
  are_pins_interchangeable?: boolean | undefined;
29076
29090
  internally_connected_source_port_ids?: string[][] | undefined;
29077
29091
  }>, z.ZodObject<{
@@ -29095,10 +29109,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29095
29109
  ftype: "simple_fiducial";
29096
29110
  subcircuit_id?: string | undefined;
29097
29111
  source_group_id?: string | undefined;
29112
+ display_name?: string | undefined;
29098
29113
  manufacturer_part_number?: string | undefined;
29099
29114
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29100
29115
  display_value?: string | undefined;
29101
- display_name?: string | undefined;
29102
29116
  are_pins_interchangeable?: boolean | undefined;
29103
29117
  internally_connected_source_port_ids?: string[][] | undefined;
29104
29118
  }, {
@@ -29108,10 +29122,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29108
29122
  ftype: "simple_fiducial";
29109
29123
  subcircuit_id?: string | undefined;
29110
29124
  source_group_id?: string | undefined;
29125
+ display_name?: string | undefined;
29111
29126
  manufacturer_part_number?: string | undefined;
29112
29127
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29113
29128
  display_value?: string | undefined;
29114
- display_name?: string | undefined;
29115
29129
  are_pins_interchangeable?: boolean | undefined;
29116
29130
  internally_connected_source_port_ids?: string[][] | undefined;
29117
29131
  }>, z.ZodObject<{
@@ -29138,10 +29152,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29138
29152
  subcircuit_id?: string | undefined;
29139
29153
  color?: string | undefined;
29140
29154
  source_group_id?: string | undefined;
29155
+ display_name?: string | undefined;
29141
29156
  manufacturer_part_number?: string | undefined;
29142
29157
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29143
29158
  display_value?: string | undefined;
29144
- display_name?: string | undefined;
29145
29159
  are_pins_interchangeable?: boolean | undefined;
29146
29160
  internally_connected_source_port_ids?: string[][] | undefined;
29147
29161
  wavelength?: string | undefined;
@@ -29153,10 +29167,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29153
29167
  subcircuit_id?: string | undefined;
29154
29168
  color?: string | undefined;
29155
29169
  source_group_id?: string | undefined;
29170
+ display_name?: string | undefined;
29156
29171
  manufacturer_part_number?: string | undefined;
29157
29172
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29158
29173
  display_value?: string | undefined;
29159
- display_name?: string | undefined;
29160
29174
  are_pins_interchangeable?: boolean | undefined;
29161
29175
  internally_connected_source_port_ids?: string[][] | undefined;
29162
29176
  wavelength?: string | undefined;
@@ -29181,10 +29195,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29181
29195
  ftype: "simple_ground";
29182
29196
  subcircuit_id?: string | undefined;
29183
29197
  source_group_id?: string | undefined;
29198
+ display_name?: string | undefined;
29184
29199
  manufacturer_part_number?: string | undefined;
29185
29200
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29186
29201
  display_value?: string | undefined;
29187
- display_name?: string | undefined;
29188
29202
  are_pins_interchangeable?: boolean | undefined;
29189
29203
  internally_connected_source_port_ids?: string[][] | undefined;
29190
29204
  }, {
@@ -29194,10 +29208,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29194
29208
  ftype: "simple_ground";
29195
29209
  subcircuit_id?: string | undefined;
29196
29210
  source_group_id?: string | undefined;
29211
+ display_name?: string | undefined;
29197
29212
  manufacturer_part_number?: string | undefined;
29198
29213
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29199
29214
  display_value?: string | undefined;
29200
- display_name?: string | undefined;
29201
29215
  are_pins_interchangeable?: boolean | undefined;
29202
29216
  internally_connected_source_port_ids?: string[][] | undefined;
29203
29217
  }>, z.ZodObject<{
@@ -29221,10 +29235,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29221
29235
  ftype: "simple_chip";
29222
29236
  subcircuit_id?: string | undefined;
29223
29237
  source_group_id?: string | undefined;
29238
+ display_name?: string | undefined;
29224
29239
  manufacturer_part_number?: string | undefined;
29225
29240
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29226
29241
  display_value?: string | undefined;
29227
- display_name?: string | undefined;
29228
29242
  are_pins_interchangeable?: boolean | undefined;
29229
29243
  internally_connected_source_port_ids?: string[][] | undefined;
29230
29244
  }, {
@@ -29234,10 +29248,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29234
29248
  ftype: "simple_chip";
29235
29249
  subcircuit_id?: string | undefined;
29236
29250
  source_group_id?: string | undefined;
29251
+ display_name?: string | undefined;
29237
29252
  manufacturer_part_number?: string | undefined;
29238
29253
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29239
29254
  display_value?: string | undefined;
29240
- display_name?: string | undefined;
29241
29255
  are_pins_interchangeable?: boolean | undefined;
29242
29256
  internally_connected_source_port_ids?: string[][] | undefined;
29243
29257
  }>, z.ZodObject<{
@@ -29263,10 +29277,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29263
29277
  ftype: "simple_power_source";
29264
29278
  subcircuit_id?: string | undefined;
29265
29279
  source_group_id?: string | undefined;
29280
+ display_name?: string | undefined;
29266
29281
  manufacturer_part_number?: string | undefined;
29267
29282
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29268
29283
  display_value?: string | undefined;
29269
- display_name?: string | undefined;
29270
29284
  are_pins_interchangeable?: boolean | undefined;
29271
29285
  internally_connected_source_port_ids?: string[][] | undefined;
29272
29286
  }, {
@@ -29277,10 +29291,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29277
29291
  ftype: "simple_power_source";
29278
29292
  subcircuit_id?: string | undefined;
29279
29293
  source_group_id?: string | undefined;
29294
+ display_name?: string | undefined;
29280
29295
  manufacturer_part_number?: string | undefined;
29281
29296
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29282
29297
  display_value?: string | undefined;
29283
- display_name?: string | undefined;
29284
29298
  are_pins_interchangeable?: boolean | undefined;
29285
29299
  internally_connected_source_port_ids?: string[][] | undefined;
29286
29300
  }>, z.ZodObject<{
@@ -29316,10 +29330,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29316
29330
  phase?: number | undefined;
29317
29331
  duty_cycle?: number | undefined;
29318
29332
  peak_to_peak_current?: number | undefined;
29333
+ display_name?: string | undefined;
29319
29334
  manufacturer_part_number?: string | undefined;
29320
29335
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29321
29336
  display_value?: string | undefined;
29322
- display_name?: string | undefined;
29323
29337
  are_pins_interchangeable?: boolean | undefined;
29324
29338
  internally_connected_source_port_ids?: string[][] | undefined;
29325
29339
  }, {
@@ -29335,10 +29349,50 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29335
29349
  phase?: number | undefined;
29336
29350
  duty_cycle?: number | undefined;
29337
29351
  peak_to_peak_current?: string | number | undefined;
29352
+ display_name?: string | undefined;
29338
29353
  manufacturer_part_number?: string | undefined;
29339
29354
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29340
29355
  display_value?: string | undefined;
29356
+ are_pins_interchangeable?: boolean | undefined;
29357
+ internally_connected_source_port_ids?: string[][] | undefined;
29358
+ }>, z.ZodObject<{
29359
+ type: z.ZodLiteral<"source_component">;
29360
+ source_component_id: z.ZodString;
29361
+ name: z.ZodString;
29362
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
29363
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
29364
+ display_value: z.ZodOptional<z.ZodString>;
29365
+ display_name: z.ZodOptional<z.ZodString>;
29366
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
29367
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
29368
+ source_group_id: z.ZodOptional<z.ZodString>;
29369
+ subcircuit_id: z.ZodOptional<z.ZodString>;
29370
+ } & {
29371
+ ftype: z.ZodLiteral<"simple_ammeter">;
29372
+ }, "strip", z.ZodTypeAny, {
29373
+ type: "source_component";
29374
+ name: string;
29375
+ source_component_id: string;
29376
+ ftype: "simple_ammeter";
29377
+ subcircuit_id?: string | undefined;
29378
+ source_group_id?: string | undefined;
29341
29379
  display_name?: string | undefined;
29380
+ manufacturer_part_number?: string | undefined;
29381
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29382
+ display_value?: string | undefined;
29383
+ are_pins_interchangeable?: boolean | undefined;
29384
+ internally_connected_source_port_ids?: string[][] | undefined;
29385
+ }, {
29386
+ type: "source_component";
29387
+ name: string;
29388
+ source_component_id: string;
29389
+ ftype: "simple_ammeter";
29390
+ subcircuit_id?: string | undefined;
29391
+ source_group_id?: string | undefined;
29392
+ display_name?: string | undefined;
29393
+ manufacturer_part_number?: string | undefined;
29394
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29395
+ display_value?: string | undefined;
29342
29396
  are_pins_interchangeable?: boolean | undefined;
29343
29397
  internally_connected_source_port_ids?: string[][] | undefined;
29344
29398
  }>, z.ZodObject<{
@@ -29364,10 +29418,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29364
29418
  capacity: number;
29365
29419
  subcircuit_id?: string | undefined;
29366
29420
  source_group_id?: string | undefined;
29421
+ display_name?: string | undefined;
29367
29422
  manufacturer_part_number?: string | undefined;
29368
29423
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29369
29424
  display_value?: string | undefined;
29370
- display_name?: string | undefined;
29371
29425
  are_pins_interchangeable?: boolean | undefined;
29372
29426
  internally_connected_source_port_ids?: string[][] | undefined;
29373
29427
  }, {
@@ -29378,10 +29432,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29378
29432
  capacity: string | number;
29379
29433
  subcircuit_id?: string | undefined;
29380
29434
  source_group_id?: string | undefined;
29435
+ display_name?: string | undefined;
29381
29436
  manufacturer_part_number?: string | undefined;
29382
29437
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29383
29438
  display_value?: string | undefined;
29384
- display_name?: string | undefined;
29385
29439
  are_pins_interchangeable?: boolean | undefined;
29386
29440
  internally_connected_source_port_ids?: string[][] | undefined;
29387
29441
  }>, z.ZodObject<{
@@ -29409,10 +29463,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29409
29463
  inductance: number;
29410
29464
  subcircuit_id?: string | undefined;
29411
29465
  source_group_id?: string | undefined;
29466
+ display_name?: string | undefined;
29412
29467
  manufacturer_part_number?: string | undefined;
29413
29468
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29414
29469
  display_value?: string | undefined;
29415
- display_name?: string | undefined;
29416
29470
  are_pins_interchangeable?: boolean | undefined;
29417
29471
  internally_connected_source_port_ids?: string[][] | undefined;
29418
29472
  display_inductance?: string | undefined;
@@ -29425,10 +29479,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29425
29479
  inductance: string | number;
29426
29480
  subcircuit_id?: string | undefined;
29427
29481
  source_group_id?: string | undefined;
29482
+ display_name?: string | undefined;
29428
29483
  manufacturer_part_number?: string | undefined;
29429
29484
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29430
29485
  display_value?: string | undefined;
29431
- display_name?: string | undefined;
29432
29486
  are_pins_interchangeable?: boolean | undefined;
29433
29487
  internally_connected_source_port_ids?: string[][] | undefined;
29434
29488
  display_inductance?: string | undefined;
@@ -29454,10 +29508,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29454
29508
  ftype: "simple_push_button";
29455
29509
  subcircuit_id?: string | undefined;
29456
29510
  source_group_id?: string | undefined;
29511
+ display_name?: string | undefined;
29457
29512
  manufacturer_part_number?: string | undefined;
29458
29513
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29459
29514
  display_value?: string | undefined;
29460
- display_name?: string | undefined;
29461
29515
  are_pins_interchangeable?: boolean | undefined;
29462
29516
  internally_connected_source_port_ids?: string[][] | undefined;
29463
29517
  }, {
@@ -29467,10 +29521,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29467
29521
  ftype: "simple_push_button";
29468
29522
  subcircuit_id?: string | undefined;
29469
29523
  source_group_id?: string | undefined;
29524
+ display_name?: string | undefined;
29470
29525
  manufacturer_part_number?: string | undefined;
29471
29526
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29472
29527
  display_value?: string | undefined;
29473
- display_name?: string | undefined;
29474
29528
  are_pins_interchangeable?: boolean | undefined;
29475
29529
  internally_connected_source_port_ids?: string[][] | undefined;
29476
29530
  }>, z.ZodObject<{
@@ -29497,10 +29551,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29497
29551
  max_resistance: number;
29498
29552
  subcircuit_id?: string | undefined;
29499
29553
  source_group_id?: string | undefined;
29554
+ display_name?: string | undefined;
29500
29555
  manufacturer_part_number?: string | undefined;
29501
29556
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29502
29557
  display_value?: string | undefined;
29503
- display_name?: string | undefined;
29504
29558
  are_pins_interchangeable?: boolean | undefined;
29505
29559
  internally_connected_source_port_ids?: string[][] | undefined;
29506
29560
  display_max_resistance?: string | undefined;
@@ -29512,10 +29566,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29512
29566
  max_resistance: string | number;
29513
29567
  subcircuit_id?: string | undefined;
29514
29568
  source_group_id?: string | undefined;
29569
+ display_name?: string | undefined;
29515
29570
  manufacturer_part_number?: string | undefined;
29516
29571
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29517
29572
  display_value?: string | undefined;
29518
- display_name?: string | undefined;
29519
29573
  are_pins_interchangeable?: boolean | undefined;
29520
29574
  internally_connected_source_port_ids?: string[][] | undefined;
29521
29575
  display_max_resistance?: string | undefined;
@@ -29544,10 +29598,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29544
29598
  ftype: "simple_crystal";
29545
29599
  subcircuit_id?: string | undefined;
29546
29600
  source_group_id?: string | undefined;
29601
+ display_name?: string | undefined;
29547
29602
  manufacturer_part_number?: string | undefined;
29548
29603
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29549
29604
  display_value?: string | undefined;
29550
- display_name?: string | undefined;
29551
29605
  are_pins_interchangeable?: boolean | undefined;
29552
29606
  internally_connected_source_port_ids?: string[][] | undefined;
29553
29607
  load_capacitance?: number | undefined;
@@ -29560,10 +29614,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29560
29614
  ftype: "simple_crystal";
29561
29615
  subcircuit_id?: string | undefined;
29562
29616
  source_group_id?: string | undefined;
29617
+ display_name?: string | undefined;
29563
29618
  manufacturer_part_number?: string | undefined;
29564
29619
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29565
29620
  display_value?: string | undefined;
29566
- display_name?: string | undefined;
29567
29621
  are_pins_interchangeable?: boolean | undefined;
29568
29622
  internally_connected_source_port_ids?: string[][] | undefined;
29569
29623
  load_capacitance?: number | undefined;
@@ -29593,10 +29647,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29593
29647
  gender: "male" | "female";
29594
29648
  subcircuit_id?: string | undefined;
29595
29649
  source_group_id?: string | undefined;
29650
+ display_name?: string | undefined;
29596
29651
  manufacturer_part_number?: string | undefined;
29597
29652
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29598
29653
  display_value?: string | undefined;
29599
- display_name?: string | undefined;
29600
29654
  are_pins_interchangeable?: boolean | undefined;
29601
29655
  internally_connected_source_port_ids?: string[][] | undefined;
29602
29656
  }, {
@@ -29607,10 +29661,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29607
29661
  pin_count: number;
29608
29662
  subcircuit_id?: string | undefined;
29609
29663
  source_group_id?: string | undefined;
29664
+ display_name?: string | undefined;
29610
29665
  manufacturer_part_number?: string | undefined;
29611
29666
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29612
29667
  display_value?: string | undefined;
29613
- display_name?: string | undefined;
29614
29668
  are_pins_interchangeable?: boolean | undefined;
29615
29669
  internally_connected_source_port_ids?: string[][] | undefined;
29616
29670
  gender?: "male" | "female" | undefined;
@@ -29636,10 +29690,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29636
29690
  ftype: "simple_connector";
29637
29691
  subcircuit_id?: string | undefined;
29638
29692
  source_group_id?: string | undefined;
29693
+ display_name?: string | undefined;
29639
29694
  manufacturer_part_number?: string | undefined;
29640
29695
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29641
29696
  display_value?: string | undefined;
29642
- display_name?: string | undefined;
29643
29697
  are_pins_interchangeable?: boolean | undefined;
29644
29698
  internally_connected_source_port_ids?: string[][] | undefined;
29645
29699
  standard?: "usb_c" | "m2" | undefined;
@@ -29650,10 +29704,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29650
29704
  ftype: "simple_connector";
29651
29705
  subcircuit_id?: string | undefined;
29652
29706
  source_group_id?: string | undefined;
29707
+ display_name?: string | undefined;
29653
29708
  manufacturer_part_number?: string | undefined;
29654
29709
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29655
29710
  display_value?: string | undefined;
29656
- display_name?: string | undefined;
29657
29711
  are_pins_interchangeable?: boolean | undefined;
29658
29712
  internally_connected_source_port_ids?: string[][] | undefined;
29659
29713
  standard?: "usb_c" | "m2" | undefined;
@@ -29678,10 +29732,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29678
29732
  ftype: "simple_pinout";
29679
29733
  subcircuit_id?: string | undefined;
29680
29734
  source_group_id?: string | undefined;
29735
+ display_name?: string | undefined;
29681
29736
  manufacturer_part_number?: string | undefined;
29682
29737
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29683
29738
  display_value?: string | undefined;
29684
- display_name?: string | undefined;
29685
29739
  are_pins_interchangeable?: boolean | undefined;
29686
29740
  internally_connected_source_port_ids?: string[][] | undefined;
29687
29741
  }, {
@@ -29691,10 +29745,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29691
29745
  ftype: "simple_pinout";
29692
29746
  subcircuit_id?: string | undefined;
29693
29747
  source_group_id?: string | undefined;
29748
+ display_name?: string | undefined;
29694
29749
  manufacturer_part_number?: string | undefined;
29695
29750
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29696
29751
  display_value?: string | undefined;
29697
- display_name?: string | undefined;
29698
29752
  are_pins_interchangeable?: boolean | undefined;
29699
29753
  internally_connected_source_port_ids?: string[][] | undefined;
29700
29754
  }>, z.ZodObject<{
@@ -29723,10 +29777,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29723
29777
  load_capacitance: number;
29724
29778
  subcircuit_id?: string | undefined;
29725
29779
  source_group_id?: string | undefined;
29780
+ display_name?: string | undefined;
29726
29781
  manufacturer_part_number?: string | undefined;
29727
29782
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29728
29783
  display_value?: string | undefined;
29729
- display_name?: string | undefined;
29730
29784
  are_pins_interchangeable?: boolean | undefined;
29731
29785
  internally_connected_source_port_ids?: string[][] | undefined;
29732
29786
  equivalent_series_resistance?: number | undefined;
@@ -29739,10 +29793,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29739
29793
  load_capacitance: string | number;
29740
29794
  subcircuit_id?: string | undefined;
29741
29795
  source_group_id?: string | undefined;
29796
+ display_name?: string | undefined;
29742
29797
  manufacturer_part_number?: string | undefined;
29743
29798
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29744
29799
  display_value?: string | undefined;
29745
- display_name?: string | undefined;
29746
29800
  are_pins_interchangeable?: boolean | undefined;
29747
29801
  internally_connected_source_port_ids?: string[][] | undefined;
29748
29802
  equivalent_series_resistance?: string | number | undefined;
@@ -29767,10 +29821,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29767
29821
  ftype: "simple_switch";
29768
29822
  subcircuit_id?: string | undefined;
29769
29823
  source_group_id?: string | undefined;
29824
+ display_name?: string | undefined;
29770
29825
  manufacturer_part_number?: string | undefined;
29771
29826
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29772
29827
  display_value?: string | undefined;
29773
- display_name?: string | undefined;
29774
29828
  are_pins_interchangeable?: boolean | undefined;
29775
29829
  internally_connected_source_port_ids?: string[][] | undefined;
29776
29830
  }, {
@@ -29780,10 +29834,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29780
29834
  ftype: "simple_switch";
29781
29835
  subcircuit_id?: string | undefined;
29782
29836
  source_group_id?: string | undefined;
29837
+ display_name?: string | undefined;
29783
29838
  manufacturer_part_number?: string | undefined;
29784
29839
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29785
29840
  display_value?: string | undefined;
29786
- display_name?: string | undefined;
29787
29841
  are_pins_interchangeable?: boolean | undefined;
29788
29842
  internally_connected_source_port_ids?: string[][] | undefined;
29789
29843
  }>, z.ZodObject<{
@@ -29809,10 +29863,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29809
29863
  transistor_type: "npn" | "pnp";
29810
29864
  subcircuit_id?: string | undefined;
29811
29865
  source_group_id?: string | undefined;
29866
+ display_name?: string | undefined;
29812
29867
  manufacturer_part_number?: string | undefined;
29813
29868
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29814
29869
  display_value?: string | undefined;
29815
- display_name?: string | undefined;
29816
29870
  are_pins_interchangeable?: boolean | undefined;
29817
29871
  internally_connected_source_port_ids?: string[][] | undefined;
29818
29872
  }, {
@@ -29823,10 +29877,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29823
29877
  transistor_type: "npn" | "pnp";
29824
29878
  subcircuit_id?: string | undefined;
29825
29879
  source_group_id?: string | undefined;
29880
+ display_name?: string | undefined;
29826
29881
  manufacturer_part_number?: string | undefined;
29827
29882
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29828
29883
  display_value?: string | undefined;
29829
- display_name?: string | undefined;
29830
29884
  are_pins_interchangeable?: boolean | undefined;
29831
29885
  internally_connected_source_port_ids?: string[][] | undefined;
29832
29886
  }>, z.ZodObject<{
@@ -29860,10 +29914,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29860
29914
  hole_diameter?: string | number | undefined;
29861
29915
  pad_shape?: "circle" | "rect" | undefined;
29862
29916
  source_group_id?: string | undefined;
29917
+ display_name?: string | undefined;
29863
29918
  manufacturer_part_number?: string | undefined;
29864
29919
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29865
29920
  display_value?: string | undefined;
29866
- display_name?: string | undefined;
29867
29921
  are_pins_interchangeable?: boolean | undefined;
29868
29922
  internally_connected_source_port_ids?: string[][] | undefined;
29869
29923
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -29879,10 +29933,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29879
29933
  hole_diameter?: string | number | undefined;
29880
29934
  pad_shape?: "circle" | "rect" | undefined;
29881
29935
  source_group_id?: string | undefined;
29936
+ display_name?: string | undefined;
29882
29937
  manufacturer_part_number?: string | undefined;
29883
29938
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29884
29939
  display_value?: string | undefined;
29885
- display_name?: string | undefined;
29886
29940
  are_pins_interchangeable?: boolean | undefined;
29887
29941
  internally_connected_source_port_ids?: string[][] | undefined;
29888
29942
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -29912,10 +29966,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29912
29966
  mosfet_mode: "enhancement" | "depletion";
29913
29967
  subcircuit_id?: string | undefined;
29914
29968
  source_group_id?: string | undefined;
29969
+ display_name?: string | undefined;
29915
29970
  manufacturer_part_number?: string | undefined;
29916
29971
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29917
29972
  display_value?: string | undefined;
29918
- display_name?: string | undefined;
29919
29973
  are_pins_interchangeable?: boolean | undefined;
29920
29974
  internally_connected_source_port_ids?: string[][] | undefined;
29921
29975
  }, {
@@ -29927,10 +29981,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29927
29981
  mosfet_mode: "enhancement" | "depletion";
29928
29982
  subcircuit_id?: string | undefined;
29929
29983
  source_group_id?: string | undefined;
29984
+ display_name?: string | undefined;
29930
29985
  manufacturer_part_number?: string | undefined;
29931
29986
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29932
29987
  display_value?: string | undefined;
29933
- display_name?: string | undefined;
29934
29988
  are_pins_interchangeable?: boolean | undefined;
29935
29989
  internally_connected_source_port_ids?: string[][] | undefined;
29936
29990
  }>, z.ZodObject<{
@@ -29954,10 +30008,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29954
30008
  ftype: "simple_op_amp";
29955
30009
  subcircuit_id?: string | undefined;
29956
30010
  source_group_id?: string | undefined;
30011
+ display_name?: string | undefined;
29957
30012
  manufacturer_part_number?: string | undefined;
29958
30013
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29959
30014
  display_value?: string | undefined;
29960
- display_name?: string | undefined;
29961
30015
  are_pins_interchangeable?: boolean | undefined;
29962
30016
  internally_connected_source_port_ids?: string[][] | undefined;
29963
30017
  }, {
@@ -29967,10 +30021,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29967
30021
  ftype: "simple_op_amp";
29968
30022
  subcircuit_id?: string | undefined;
29969
30023
  source_group_id?: string | undefined;
30024
+ display_name?: string | undefined;
29970
30025
  manufacturer_part_number?: string | undefined;
29971
30026
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29972
30027
  display_value?: string | undefined;
29973
- display_name?: string | undefined;
29974
30028
  are_pins_interchangeable?: boolean | undefined;
29975
30029
  internally_connected_source_port_ids?: string[][] | undefined;
29976
30030
  }>, z.ZodObject<{
@@ -29998,10 +30052,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29998
30052
  voltage_rating_volts: number;
29999
30053
  subcircuit_id?: string | undefined;
30000
30054
  source_group_id?: string | undefined;
30055
+ display_name?: string | undefined;
30001
30056
  manufacturer_part_number?: string | undefined;
30002
30057
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30003
30058
  display_value?: string | undefined;
30004
- display_name?: string | undefined;
30005
30059
  are_pins_interchangeable?: boolean | undefined;
30006
30060
  internally_connected_source_port_ids?: string[][] | undefined;
30007
30061
  }, {
@@ -30013,10 +30067,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30013
30067
  voltage_rating_volts: number;
30014
30068
  subcircuit_id?: string | undefined;
30015
30069
  source_group_id?: string | undefined;
30070
+ display_name?: string | undefined;
30016
30071
  manufacturer_part_number?: string | undefined;
30017
30072
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30018
30073
  display_value?: string | undefined;
30019
- display_name?: string | undefined;
30020
30074
  are_pins_interchangeable?: boolean | undefined;
30021
30075
  internally_connected_source_port_ids?: string[][] | undefined;
30022
30076
  }>, z.ZodObject<{
@@ -30040,10 +30094,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30040
30094
  ftype: "simple_voltage_probe";
30041
30095
  subcircuit_id?: string | undefined;
30042
30096
  source_group_id?: string | undefined;
30097
+ display_name?: string | undefined;
30043
30098
  manufacturer_part_number?: string | undefined;
30044
30099
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30045
30100
  display_value?: string | undefined;
30046
- display_name?: string | undefined;
30047
30101
  are_pins_interchangeable?: boolean | undefined;
30048
30102
  internally_connected_source_port_ids?: string[][] | undefined;
30049
30103
  }, {
@@ -30053,10 +30107,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30053
30107
  ftype: "simple_voltage_probe";
30054
30108
  subcircuit_id?: string | undefined;
30055
30109
  source_group_id?: string | undefined;
30110
+ display_name?: string | undefined;
30056
30111
  manufacturer_part_number?: string | undefined;
30057
30112
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30058
30113
  display_value?: string | undefined;
30059
- display_name?: string | undefined;
30060
30114
  are_pins_interchangeable?: boolean | undefined;
30061
30115
  internally_connected_source_port_ids?: string[][] | undefined;
30062
30116
  }>, z.ZodObject<{
@@ -30080,10 +30134,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30080
30134
  ftype: "interconnect";
30081
30135
  subcircuit_id?: string | undefined;
30082
30136
  source_group_id?: string | undefined;
30137
+ display_name?: string | undefined;
30083
30138
  manufacturer_part_number?: string | undefined;
30084
30139
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30085
30140
  display_value?: string | undefined;
30086
- display_name?: string | undefined;
30087
30141
  are_pins_interchangeable?: boolean | undefined;
30088
30142
  internally_connected_source_port_ids?: string[][] | undefined;
30089
30143
  }, {
@@ -30093,10 +30147,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30093
30147
  ftype: "interconnect";
30094
30148
  subcircuit_id?: string | undefined;
30095
30149
  source_group_id?: string | undefined;
30150
+ display_name?: string | undefined;
30096
30151
  manufacturer_part_number?: string | undefined;
30097
30152
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30098
30153
  display_value?: string | undefined;
30099
- display_name?: string | undefined;
30100
30154
  are_pins_interchangeable?: boolean | undefined;
30101
30155
  internally_connected_source_port_ids?: string[][] | undefined;
30102
30156
  }>, z.ZodObject<{
@@ -30142,10 +30196,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30142
30196
  fall_time?: number | undefined;
30143
30197
  pulse_width?: number | undefined;
30144
30198
  period?: number | undefined;
30199
+ display_name?: string | undefined;
30145
30200
  manufacturer_part_number?: string | undefined;
30146
30201
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30147
30202
  display_value?: string | undefined;
30148
- display_name?: string | undefined;
30149
30203
  are_pins_interchangeable?: boolean | undefined;
30150
30204
  internally_connected_source_port_ids?: string[][] | undefined;
30151
30205
  }, {
@@ -30166,10 +30220,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30166
30220
  fall_time?: string | number | undefined;
30167
30221
  pulse_width?: string | number | undefined;
30168
30222
  period?: string | number | undefined;
30223
+ display_name?: string | undefined;
30169
30224
  manufacturer_part_number?: string | undefined;
30170
30225
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30171
30226
  display_value?: string | undefined;
30172
- display_name?: string | undefined;
30173
30227
  are_pins_interchangeable?: boolean | undefined;
30174
30228
  internally_connected_source_port_ids?: string[][] | undefined;
30175
30229
  }>, z.ZodObject<{
@@ -30474,7 +30528,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30474
30528
  * Deprecated: use `AnySourceElement` instead
30475
30529
  */
30476
30530
  type AnySourceComponent = z.infer<typeof any_source_component>;
30477
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
30531
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleAmmeter | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError | SourceComponentMisconfiguredError;
30478
30532
 
30479
30533
  declare const source_port: z.ZodObject<{
30480
30534
  type: z.ZodLiteral<"source_port">;
@@ -34205,10 +34259,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34205
34259
  resistance: number;
34206
34260
  subcircuit_id?: string | undefined;
34207
34261
  source_group_id?: string | undefined;
34262
+ display_name?: string | undefined;
34208
34263
  manufacturer_part_number?: string | undefined;
34209
34264
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34210
34265
  display_value?: string | undefined;
34211
- display_name?: string | undefined;
34212
34266
  are_pins_interchangeable?: boolean | undefined;
34213
34267
  internally_connected_source_port_ids?: string[][] | undefined;
34214
34268
  display_resistance?: string | undefined;
@@ -34220,10 +34274,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34220
34274
  resistance: string | number;
34221
34275
  subcircuit_id?: string | undefined;
34222
34276
  source_group_id?: string | undefined;
34277
+ display_name?: string | undefined;
34223
34278
  manufacturer_part_number?: string | undefined;
34224
34279
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34225
34280
  display_value?: string | undefined;
34226
- display_name?: string | undefined;
34227
34281
  are_pins_interchangeable?: boolean | undefined;
34228
34282
  internally_connected_source_port_ids?: string[][] | undefined;
34229
34283
  display_resistance?: string | undefined;
@@ -34253,10 +34307,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34253
34307
  capacitance: number;
34254
34308
  subcircuit_id?: string | undefined;
34255
34309
  source_group_id?: string | undefined;
34310
+ display_name?: string | undefined;
34256
34311
  manufacturer_part_number?: string | undefined;
34257
34312
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34258
34313
  display_value?: string | undefined;
34259
- display_name?: string | undefined;
34260
34314
  are_pins_interchangeable?: boolean | undefined;
34261
34315
  internally_connected_source_port_ids?: string[][] | undefined;
34262
34316
  max_voltage_rating?: number | undefined;
@@ -34270,10 +34324,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34270
34324
  capacitance: string | number;
34271
34325
  subcircuit_id?: string | undefined;
34272
34326
  source_group_id?: string | undefined;
34327
+ display_name?: string | undefined;
34273
34328
  manufacturer_part_number?: string | undefined;
34274
34329
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34275
34330
  display_value?: string | undefined;
34276
- display_name?: string | undefined;
34277
34331
  are_pins_interchangeable?: boolean | undefined;
34278
34332
  internally_connected_source_port_ids?: string[][] | undefined;
34279
34333
  max_voltage_rating?: string | number | undefined;
@@ -34300,10 +34354,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34300
34354
  ftype: "simple_diode";
34301
34355
  subcircuit_id?: string | undefined;
34302
34356
  source_group_id?: string | undefined;
34357
+ display_name?: string | undefined;
34303
34358
  manufacturer_part_number?: string | undefined;
34304
34359
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34305
34360
  display_value?: string | undefined;
34306
- display_name?: string | undefined;
34307
34361
  are_pins_interchangeable?: boolean | undefined;
34308
34362
  internally_connected_source_port_ids?: string[][] | undefined;
34309
34363
  }, {
@@ -34313,10 +34367,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34313
34367
  ftype: "simple_diode";
34314
34368
  subcircuit_id?: string | undefined;
34315
34369
  source_group_id?: string | undefined;
34370
+ display_name?: string | undefined;
34316
34371
  manufacturer_part_number?: string | undefined;
34317
34372
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34318
34373
  display_value?: string | undefined;
34319
- display_name?: string | undefined;
34320
34374
  are_pins_interchangeable?: boolean | undefined;
34321
34375
  internally_connected_source_port_ids?: string[][] | undefined;
34322
34376
  }>, z.ZodObject<{
@@ -34340,10 +34394,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34340
34394
  ftype: "simple_fiducial";
34341
34395
  subcircuit_id?: string | undefined;
34342
34396
  source_group_id?: string | undefined;
34397
+ display_name?: string | undefined;
34343
34398
  manufacturer_part_number?: string | undefined;
34344
34399
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34345
34400
  display_value?: string | undefined;
34346
- display_name?: string | undefined;
34347
34401
  are_pins_interchangeable?: boolean | undefined;
34348
34402
  internally_connected_source_port_ids?: string[][] | undefined;
34349
34403
  }, {
@@ -34353,10 +34407,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34353
34407
  ftype: "simple_fiducial";
34354
34408
  subcircuit_id?: string | undefined;
34355
34409
  source_group_id?: string | undefined;
34410
+ display_name?: string | undefined;
34356
34411
  manufacturer_part_number?: string | undefined;
34357
34412
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34358
34413
  display_value?: string | undefined;
34359
- display_name?: string | undefined;
34360
34414
  are_pins_interchangeable?: boolean | undefined;
34361
34415
  internally_connected_source_port_ids?: string[][] | undefined;
34362
34416
  }>, z.ZodObject<{
@@ -34383,10 +34437,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34383
34437
  subcircuit_id?: string | undefined;
34384
34438
  color?: string | undefined;
34385
34439
  source_group_id?: string | undefined;
34440
+ display_name?: string | undefined;
34386
34441
  manufacturer_part_number?: string | undefined;
34387
34442
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34388
34443
  display_value?: string | undefined;
34389
- display_name?: string | undefined;
34390
34444
  are_pins_interchangeable?: boolean | undefined;
34391
34445
  internally_connected_source_port_ids?: string[][] | undefined;
34392
34446
  wavelength?: string | undefined;
@@ -34398,10 +34452,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34398
34452
  subcircuit_id?: string | undefined;
34399
34453
  color?: string | undefined;
34400
34454
  source_group_id?: string | undefined;
34455
+ display_name?: string | undefined;
34401
34456
  manufacturer_part_number?: string | undefined;
34402
34457
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34403
34458
  display_value?: string | undefined;
34404
- display_name?: string | undefined;
34405
34459
  are_pins_interchangeable?: boolean | undefined;
34406
34460
  internally_connected_source_port_ids?: string[][] | undefined;
34407
34461
  wavelength?: string | undefined;
@@ -34426,10 +34480,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34426
34480
  ftype: "simple_ground";
34427
34481
  subcircuit_id?: string | undefined;
34428
34482
  source_group_id?: string | undefined;
34483
+ display_name?: string | undefined;
34429
34484
  manufacturer_part_number?: string | undefined;
34430
34485
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34431
34486
  display_value?: string | undefined;
34432
- display_name?: string | undefined;
34433
34487
  are_pins_interchangeable?: boolean | undefined;
34434
34488
  internally_connected_source_port_ids?: string[][] | undefined;
34435
34489
  }, {
@@ -34439,10 +34493,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34439
34493
  ftype: "simple_ground";
34440
34494
  subcircuit_id?: string | undefined;
34441
34495
  source_group_id?: string | undefined;
34496
+ display_name?: string | undefined;
34442
34497
  manufacturer_part_number?: string | undefined;
34443
34498
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34444
34499
  display_value?: string | undefined;
34445
- display_name?: string | undefined;
34446
34500
  are_pins_interchangeable?: boolean | undefined;
34447
34501
  internally_connected_source_port_ids?: string[][] | undefined;
34448
34502
  }>, z.ZodObject<{
@@ -34466,10 +34520,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34466
34520
  ftype: "simple_chip";
34467
34521
  subcircuit_id?: string | undefined;
34468
34522
  source_group_id?: string | undefined;
34523
+ display_name?: string | undefined;
34469
34524
  manufacturer_part_number?: string | undefined;
34470
34525
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34471
34526
  display_value?: string | undefined;
34472
- display_name?: string | undefined;
34473
34527
  are_pins_interchangeable?: boolean | undefined;
34474
34528
  internally_connected_source_port_ids?: string[][] | undefined;
34475
34529
  }, {
@@ -34479,10 +34533,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34479
34533
  ftype: "simple_chip";
34480
34534
  subcircuit_id?: string | undefined;
34481
34535
  source_group_id?: string | undefined;
34536
+ display_name?: string | undefined;
34482
34537
  manufacturer_part_number?: string | undefined;
34483
34538
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34484
34539
  display_value?: string | undefined;
34485
- display_name?: string | undefined;
34486
34540
  are_pins_interchangeable?: boolean | undefined;
34487
34541
  internally_connected_source_port_ids?: string[][] | undefined;
34488
34542
  }>, z.ZodObject<{
@@ -34508,10 +34562,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34508
34562
  ftype: "simple_power_source";
34509
34563
  subcircuit_id?: string | undefined;
34510
34564
  source_group_id?: string | undefined;
34565
+ display_name?: string | undefined;
34511
34566
  manufacturer_part_number?: string | undefined;
34512
34567
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34513
34568
  display_value?: string | undefined;
34514
- display_name?: string | undefined;
34515
34569
  are_pins_interchangeable?: boolean | undefined;
34516
34570
  internally_connected_source_port_ids?: string[][] | undefined;
34517
34571
  }, {
@@ -34522,10 +34576,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34522
34576
  ftype: "simple_power_source";
34523
34577
  subcircuit_id?: string | undefined;
34524
34578
  source_group_id?: string | undefined;
34579
+ display_name?: string | undefined;
34525
34580
  manufacturer_part_number?: string | undefined;
34526
34581
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34527
34582
  display_value?: string | undefined;
34528
- display_name?: string | undefined;
34529
34583
  are_pins_interchangeable?: boolean | undefined;
34530
34584
  internally_connected_source_port_ids?: string[][] | undefined;
34531
34585
  }>, z.ZodObject<{
@@ -34561,10 +34615,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34561
34615
  phase?: number | undefined;
34562
34616
  duty_cycle?: number | undefined;
34563
34617
  peak_to_peak_current?: number | undefined;
34618
+ display_name?: string | undefined;
34564
34619
  manufacturer_part_number?: string | undefined;
34565
34620
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34566
34621
  display_value?: string | undefined;
34567
- display_name?: string | undefined;
34568
34622
  are_pins_interchangeable?: boolean | undefined;
34569
34623
  internally_connected_source_port_ids?: string[][] | undefined;
34570
34624
  }, {
@@ -34580,10 +34634,50 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34580
34634
  phase?: number | undefined;
34581
34635
  duty_cycle?: number | undefined;
34582
34636
  peak_to_peak_current?: string | number | undefined;
34637
+ display_name?: string | undefined;
34638
+ manufacturer_part_number?: string | undefined;
34639
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34640
+ display_value?: string | undefined;
34641
+ are_pins_interchangeable?: boolean | undefined;
34642
+ internally_connected_source_port_ids?: string[][] | undefined;
34643
+ }>, z.ZodObject<{
34644
+ type: z.ZodLiteral<"source_component">;
34645
+ source_component_id: z.ZodString;
34646
+ name: z.ZodString;
34647
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
34648
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
34649
+ display_value: z.ZodOptional<z.ZodString>;
34650
+ display_name: z.ZodOptional<z.ZodString>;
34651
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
34652
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
34653
+ source_group_id: z.ZodOptional<z.ZodString>;
34654
+ subcircuit_id: z.ZodOptional<z.ZodString>;
34655
+ } & {
34656
+ ftype: z.ZodLiteral<"simple_ammeter">;
34657
+ }, "strip", z.ZodTypeAny, {
34658
+ type: "source_component";
34659
+ name: string;
34660
+ source_component_id: string;
34661
+ ftype: "simple_ammeter";
34662
+ subcircuit_id?: string | undefined;
34663
+ source_group_id?: string | undefined;
34664
+ display_name?: string | undefined;
34583
34665
  manufacturer_part_number?: string | undefined;
34584
34666
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34585
34667
  display_value?: string | undefined;
34668
+ are_pins_interchangeable?: boolean | undefined;
34669
+ internally_connected_source_port_ids?: string[][] | undefined;
34670
+ }, {
34671
+ type: "source_component";
34672
+ name: string;
34673
+ source_component_id: string;
34674
+ ftype: "simple_ammeter";
34675
+ subcircuit_id?: string | undefined;
34676
+ source_group_id?: string | undefined;
34586
34677
  display_name?: string | undefined;
34678
+ manufacturer_part_number?: string | undefined;
34679
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34680
+ display_value?: string | undefined;
34587
34681
  are_pins_interchangeable?: boolean | undefined;
34588
34682
  internally_connected_source_port_ids?: string[][] | undefined;
34589
34683
  }>, z.ZodObject<{
@@ -34609,10 +34703,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34609
34703
  capacity: number;
34610
34704
  subcircuit_id?: string | undefined;
34611
34705
  source_group_id?: string | undefined;
34706
+ display_name?: string | undefined;
34612
34707
  manufacturer_part_number?: string | undefined;
34613
34708
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34614
34709
  display_value?: string | undefined;
34615
- display_name?: string | undefined;
34616
34710
  are_pins_interchangeable?: boolean | undefined;
34617
34711
  internally_connected_source_port_ids?: string[][] | undefined;
34618
34712
  }, {
@@ -34623,10 +34717,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34623
34717
  capacity: string | number;
34624
34718
  subcircuit_id?: string | undefined;
34625
34719
  source_group_id?: string | undefined;
34720
+ display_name?: string | undefined;
34626
34721
  manufacturer_part_number?: string | undefined;
34627
34722
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34628
34723
  display_value?: string | undefined;
34629
- display_name?: string | undefined;
34630
34724
  are_pins_interchangeable?: boolean | undefined;
34631
34725
  internally_connected_source_port_ids?: string[][] | undefined;
34632
34726
  }>, z.ZodObject<{
@@ -34654,10 +34748,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34654
34748
  inductance: number;
34655
34749
  subcircuit_id?: string | undefined;
34656
34750
  source_group_id?: string | undefined;
34751
+ display_name?: string | undefined;
34657
34752
  manufacturer_part_number?: string | undefined;
34658
34753
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34659
34754
  display_value?: string | undefined;
34660
- display_name?: string | undefined;
34661
34755
  are_pins_interchangeable?: boolean | undefined;
34662
34756
  internally_connected_source_port_ids?: string[][] | undefined;
34663
34757
  display_inductance?: string | undefined;
@@ -34670,10 +34764,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34670
34764
  inductance: string | number;
34671
34765
  subcircuit_id?: string | undefined;
34672
34766
  source_group_id?: string | undefined;
34767
+ display_name?: string | undefined;
34673
34768
  manufacturer_part_number?: string | undefined;
34674
34769
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34675
34770
  display_value?: string | undefined;
34676
- display_name?: string | undefined;
34677
34771
  are_pins_interchangeable?: boolean | undefined;
34678
34772
  internally_connected_source_port_ids?: string[][] | undefined;
34679
34773
  display_inductance?: string | undefined;
@@ -34699,10 +34793,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34699
34793
  ftype: "simple_push_button";
34700
34794
  subcircuit_id?: string | undefined;
34701
34795
  source_group_id?: string | undefined;
34796
+ display_name?: string | undefined;
34702
34797
  manufacturer_part_number?: string | undefined;
34703
34798
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34704
34799
  display_value?: string | undefined;
34705
- display_name?: string | undefined;
34706
34800
  are_pins_interchangeable?: boolean | undefined;
34707
34801
  internally_connected_source_port_ids?: string[][] | undefined;
34708
34802
  }, {
@@ -34712,10 +34806,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34712
34806
  ftype: "simple_push_button";
34713
34807
  subcircuit_id?: string | undefined;
34714
34808
  source_group_id?: string | undefined;
34809
+ display_name?: string | undefined;
34715
34810
  manufacturer_part_number?: string | undefined;
34716
34811
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34717
34812
  display_value?: string | undefined;
34718
- display_name?: string | undefined;
34719
34813
  are_pins_interchangeable?: boolean | undefined;
34720
34814
  internally_connected_source_port_ids?: string[][] | undefined;
34721
34815
  }>, z.ZodObject<{
@@ -34742,10 +34836,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34742
34836
  max_resistance: number;
34743
34837
  subcircuit_id?: string | undefined;
34744
34838
  source_group_id?: string | undefined;
34839
+ display_name?: string | undefined;
34745
34840
  manufacturer_part_number?: string | undefined;
34746
34841
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34747
34842
  display_value?: string | undefined;
34748
- display_name?: string | undefined;
34749
34843
  are_pins_interchangeable?: boolean | undefined;
34750
34844
  internally_connected_source_port_ids?: string[][] | undefined;
34751
34845
  display_max_resistance?: string | undefined;
@@ -34757,10 +34851,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34757
34851
  max_resistance: string | number;
34758
34852
  subcircuit_id?: string | undefined;
34759
34853
  source_group_id?: string | undefined;
34854
+ display_name?: string | undefined;
34760
34855
  manufacturer_part_number?: string | undefined;
34761
34856
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34762
34857
  display_value?: string | undefined;
34763
- display_name?: string | undefined;
34764
34858
  are_pins_interchangeable?: boolean | undefined;
34765
34859
  internally_connected_source_port_ids?: string[][] | undefined;
34766
34860
  display_max_resistance?: string | undefined;
@@ -34789,10 +34883,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34789
34883
  ftype: "simple_crystal";
34790
34884
  subcircuit_id?: string | undefined;
34791
34885
  source_group_id?: string | undefined;
34886
+ display_name?: string | undefined;
34792
34887
  manufacturer_part_number?: string | undefined;
34793
34888
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34794
34889
  display_value?: string | undefined;
34795
- display_name?: string | undefined;
34796
34890
  are_pins_interchangeable?: boolean | undefined;
34797
34891
  internally_connected_source_port_ids?: string[][] | undefined;
34798
34892
  load_capacitance?: number | undefined;
@@ -34805,10 +34899,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34805
34899
  ftype: "simple_crystal";
34806
34900
  subcircuit_id?: string | undefined;
34807
34901
  source_group_id?: string | undefined;
34902
+ display_name?: string | undefined;
34808
34903
  manufacturer_part_number?: string | undefined;
34809
34904
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34810
34905
  display_value?: string | undefined;
34811
- display_name?: string | undefined;
34812
34906
  are_pins_interchangeable?: boolean | undefined;
34813
34907
  internally_connected_source_port_ids?: string[][] | undefined;
34814
34908
  load_capacitance?: number | undefined;
@@ -34838,10 +34932,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34838
34932
  gender: "male" | "female";
34839
34933
  subcircuit_id?: string | undefined;
34840
34934
  source_group_id?: string | undefined;
34935
+ display_name?: string | undefined;
34841
34936
  manufacturer_part_number?: string | undefined;
34842
34937
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34843
34938
  display_value?: string | undefined;
34844
- display_name?: string | undefined;
34845
34939
  are_pins_interchangeable?: boolean | undefined;
34846
34940
  internally_connected_source_port_ids?: string[][] | undefined;
34847
34941
  }, {
@@ -34852,10 +34946,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34852
34946
  pin_count: number;
34853
34947
  subcircuit_id?: string | undefined;
34854
34948
  source_group_id?: string | undefined;
34949
+ display_name?: string | undefined;
34855
34950
  manufacturer_part_number?: string | undefined;
34856
34951
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34857
34952
  display_value?: string | undefined;
34858
- display_name?: string | undefined;
34859
34953
  are_pins_interchangeable?: boolean | undefined;
34860
34954
  internally_connected_source_port_ids?: string[][] | undefined;
34861
34955
  gender?: "male" | "female" | undefined;
@@ -34881,10 +34975,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34881
34975
  ftype: "simple_connector";
34882
34976
  subcircuit_id?: string | undefined;
34883
34977
  source_group_id?: string | undefined;
34978
+ display_name?: string | undefined;
34884
34979
  manufacturer_part_number?: string | undefined;
34885
34980
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34886
34981
  display_value?: string | undefined;
34887
- display_name?: string | undefined;
34888
34982
  are_pins_interchangeable?: boolean | undefined;
34889
34983
  internally_connected_source_port_ids?: string[][] | undefined;
34890
34984
  standard?: "usb_c" | "m2" | undefined;
@@ -34895,10 +34989,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34895
34989
  ftype: "simple_connector";
34896
34990
  subcircuit_id?: string | undefined;
34897
34991
  source_group_id?: string | undefined;
34992
+ display_name?: string | undefined;
34898
34993
  manufacturer_part_number?: string | undefined;
34899
34994
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34900
34995
  display_value?: string | undefined;
34901
- display_name?: string | undefined;
34902
34996
  are_pins_interchangeable?: boolean | undefined;
34903
34997
  internally_connected_source_port_ids?: string[][] | undefined;
34904
34998
  standard?: "usb_c" | "m2" | undefined;
@@ -34923,10 +35017,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34923
35017
  ftype: "simple_pinout";
34924
35018
  subcircuit_id?: string | undefined;
34925
35019
  source_group_id?: string | undefined;
35020
+ display_name?: string | undefined;
34926
35021
  manufacturer_part_number?: string | undefined;
34927
35022
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34928
35023
  display_value?: string | undefined;
34929
- display_name?: string | undefined;
34930
35024
  are_pins_interchangeable?: boolean | undefined;
34931
35025
  internally_connected_source_port_ids?: string[][] | undefined;
34932
35026
  }, {
@@ -34936,10 +35030,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34936
35030
  ftype: "simple_pinout";
34937
35031
  subcircuit_id?: string | undefined;
34938
35032
  source_group_id?: string | undefined;
35033
+ display_name?: string | undefined;
34939
35034
  manufacturer_part_number?: string | undefined;
34940
35035
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34941
35036
  display_value?: string | undefined;
34942
- display_name?: string | undefined;
34943
35037
  are_pins_interchangeable?: boolean | undefined;
34944
35038
  internally_connected_source_port_ids?: string[][] | undefined;
34945
35039
  }>, z.ZodObject<{
@@ -34968,10 +35062,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34968
35062
  load_capacitance: number;
34969
35063
  subcircuit_id?: string | undefined;
34970
35064
  source_group_id?: string | undefined;
35065
+ display_name?: string | undefined;
34971
35066
  manufacturer_part_number?: string | undefined;
34972
35067
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34973
35068
  display_value?: string | undefined;
34974
- display_name?: string | undefined;
34975
35069
  are_pins_interchangeable?: boolean | undefined;
34976
35070
  internally_connected_source_port_ids?: string[][] | undefined;
34977
35071
  equivalent_series_resistance?: number | undefined;
@@ -34984,10 +35078,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34984
35078
  load_capacitance: string | number;
34985
35079
  subcircuit_id?: string | undefined;
34986
35080
  source_group_id?: string | undefined;
35081
+ display_name?: string | undefined;
34987
35082
  manufacturer_part_number?: string | undefined;
34988
35083
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34989
35084
  display_value?: string | undefined;
34990
- display_name?: string | undefined;
34991
35085
  are_pins_interchangeable?: boolean | undefined;
34992
35086
  internally_connected_source_port_ids?: string[][] | undefined;
34993
35087
  equivalent_series_resistance?: string | number | undefined;
@@ -35012,10 +35106,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35012
35106
  ftype: "simple_switch";
35013
35107
  subcircuit_id?: string | undefined;
35014
35108
  source_group_id?: string | undefined;
35109
+ display_name?: string | undefined;
35015
35110
  manufacturer_part_number?: string | undefined;
35016
35111
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35017
35112
  display_value?: string | undefined;
35018
- display_name?: string | undefined;
35019
35113
  are_pins_interchangeable?: boolean | undefined;
35020
35114
  internally_connected_source_port_ids?: string[][] | undefined;
35021
35115
  }, {
@@ -35025,10 +35119,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35025
35119
  ftype: "simple_switch";
35026
35120
  subcircuit_id?: string | undefined;
35027
35121
  source_group_id?: string | undefined;
35122
+ display_name?: string | undefined;
35028
35123
  manufacturer_part_number?: string | undefined;
35029
35124
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35030
35125
  display_value?: string | undefined;
35031
- display_name?: string | undefined;
35032
35126
  are_pins_interchangeable?: boolean | undefined;
35033
35127
  internally_connected_source_port_ids?: string[][] | undefined;
35034
35128
  }>, z.ZodObject<{
@@ -35054,10 +35148,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35054
35148
  transistor_type: "npn" | "pnp";
35055
35149
  subcircuit_id?: string | undefined;
35056
35150
  source_group_id?: string | undefined;
35151
+ display_name?: string | undefined;
35057
35152
  manufacturer_part_number?: string | undefined;
35058
35153
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35059
35154
  display_value?: string | undefined;
35060
- display_name?: string | undefined;
35061
35155
  are_pins_interchangeable?: boolean | undefined;
35062
35156
  internally_connected_source_port_ids?: string[][] | undefined;
35063
35157
  }, {
@@ -35068,10 +35162,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35068
35162
  transistor_type: "npn" | "pnp";
35069
35163
  subcircuit_id?: string | undefined;
35070
35164
  source_group_id?: string | undefined;
35165
+ display_name?: string | undefined;
35071
35166
  manufacturer_part_number?: string | undefined;
35072
35167
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35073
35168
  display_value?: string | undefined;
35074
- display_name?: string | undefined;
35075
35169
  are_pins_interchangeable?: boolean | undefined;
35076
35170
  internally_connected_source_port_ids?: string[][] | undefined;
35077
35171
  }>, z.ZodObject<{
@@ -35105,10 +35199,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35105
35199
  hole_diameter?: string | number | undefined;
35106
35200
  pad_shape?: "circle" | "rect" | undefined;
35107
35201
  source_group_id?: string | undefined;
35202
+ display_name?: string | undefined;
35108
35203
  manufacturer_part_number?: string | undefined;
35109
35204
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35110
35205
  display_value?: string | undefined;
35111
- display_name?: string | undefined;
35112
35206
  are_pins_interchangeable?: boolean | undefined;
35113
35207
  internally_connected_source_port_ids?: string[][] | undefined;
35114
35208
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -35124,10 +35218,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35124
35218
  hole_diameter?: string | number | undefined;
35125
35219
  pad_shape?: "circle" | "rect" | undefined;
35126
35220
  source_group_id?: string | undefined;
35221
+ display_name?: string | undefined;
35127
35222
  manufacturer_part_number?: string | undefined;
35128
35223
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35129
35224
  display_value?: string | undefined;
35130
- display_name?: string | undefined;
35131
35225
  are_pins_interchangeable?: boolean | undefined;
35132
35226
  internally_connected_source_port_ids?: string[][] | undefined;
35133
35227
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -35157,10 +35251,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35157
35251
  mosfet_mode: "enhancement" | "depletion";
35158
35252
  subcircuit_id?: string | undefined;
35159
35253
  source_group_id?: string | undefined;
35254
+ display_name?: string | undefined;
35160
35255
  manufacturer_part_number?: string | undefined;
35161
35256
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35162
35257
  display_value?: string | undefined;
35163
- display_name?: string | undefined;
35164
35258
  are_pins_interchangeable?: boolean | undefined;
35165
35259
  internally_connected_source_port_ids?: string[][] | undefined;
35166
35260
  }, {
@@ -35172,10 +35266,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35172
35266
  mosfet_mode: "enhancement" | "depletion";
35173
35267
  subcircuit_id?: string | undefined;
35174
35268
  source_group_id?: string | undefined;
35269
+ display_name?: string | undefined;
35175
35270
  manufacturer_part_number?: string | undefined;
35176
35271
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35177
35272
  display_value?: string | undefined;
35178
- display_name?: string | undefined;
35179
35273
  are_pins_interchangeable?: boolean | undefined;
35180
35274
  internally_connected_source_port_ids?: string[][] | undefined;
35181
35275
  }>, z.ZodObject<{
@@ -35199,10 +35293,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35199
35293
  ftype: "simple_op_amp";
35200
35294
  subcircuit_id?: string | undefined;
35201
35295
  source_group_id?: string | undefined;
35296
+ display_name?: string | undefined;
35202
35297
  manufacturer_part_number?: string | undefined;
35203
35298
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35204
35299
  display_value?: string | undefined;
35205
- display_name?: string | undefined;
35206
35300
  are_pins_interchangeable?: boolean | undefined;
35207
35301
  internally_connected_source_port_ids?: string[][] | undefined;
35208
35302
  }, {
@@ -35212,10 +35306,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35212
35306
  ftype: "simple_op_amp";
35213
35307
  subcircuit_id?: string | undefined;
35214
35308
  source_group_id?: string | undefined;
35309
+ display_name?: string | undefined;
35215
35310
  manufacturer_part_number?: string | undefined;
35216
35311
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35217
35312
  display_value?: string | undefined;
35218
- display_name?: string | undefined;
35219
35313
  are_pins_interchangeable?: boolean | undefined;
35220
35314
  internally_connected_source_port_ids?: string[][] | undefined;
35221
35315
  }>, z.ZodObject<{
@@ -35243,10 +35337,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35243
35337
  voltage_rating_volts: number;
35244
35338
  subcircuit_id?: string | undefined;
35245
35339
  source_group_id?: string | undefined;
35340
+ display_name?: string | undefined;
35246
35341
  manufacturer_part_number?: string | undefined;
35247
35342
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35248
35343
  display_value?: string | undefined;
35249
- display_name?: string | undefined;
35250
35344
  are_pins_interchangeable?: boolean | undefined;
35251
35345
  internally_connected_source_port_ids?: string[][] | undefined;
35252
35346
  }, {
@@ -35258,10 +35352,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35258
35352
  voltage_rating_volts: number;
35259
35353
  subcircuit_id?: string | undefined;
35260
35354
  source_group_id?: string | undefined;
35355
+ display_name?: string | undefined;
35261
35356
  manufacturer_part_number?: string | undefined;
35262
35357
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35263
35358
  display_value?: string | undefined;
35264
- display_name?: string | undefined;
35265
35359
  are_pins_interchangeable?: boolean | undefined;
35266
35360
  internally_connected_source_port_ids?: string[][] | undefined;
35267
35361
  }>, z.ZodObject<{
@@ -35285,10 +35379,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35285
35379
  ftype: "simple_voltage_probe";
35286
35380
  subcircuit_id?: string | undefined;
35287
35381
  source_group_id?: string | undefined;
35382
+ display_name?: string | undefined;
35288
35383
  manufacturer_part_number?: string | undefined;
35289
35384
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35290
35385
  display_value?: string | undefined;
35291
- display_name?: string | undefined;
35292
35386
  are_pins_interchangeable?: boolean | undefined;
35293
35387
  internally_connected_source_port_ids?: string[][] | undefined;
35294
35388
  }, {
@@ -35298,10 +35392,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35298
35392
  ftype: "simple_voltage_probe";
35299
35393
  subcircuit_id?: string | undefined;
35300
35394
  source_group_id?: string | undefined;
35395
+ display_name?: string | undefined;
35301
35396
  manufacturer_part_number?: string | undefined;
35302
35397
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35303
35398
  display_value?: string | undefined;
35304
- display_name?: string | undefined;
35305
35399
  are_pins_interchangeable?: boolean | undefined;
35306
35400
  internally_connected_source_port_ids?: string[][] | undefined;
35307
35401
  }>, z.ZodObject<{
@@ -35325,10 +35419,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35325
35419
  ftype: "interconnect";
35326
35420
  subcircuit_id?: string | undefined;
35327
35421
  source_group_id?: string | undefined;
35422
+ display_name?: string | undefined;
35328
35423
  manufacturer_part_number?: string | undefined;
35329
35424
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35330
35425
  display_value?: string | undefined;
35331
- display_name?: string | undefined;
35332
35426
  are_pins_interchangeable?: boolean | undefined;
35333
35427
  internally_connected_source_port_ids?: string[][] | undefined;
35334
35428
  }, {
@@ -35338,10 +35432,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35338
35432
  ftype: "interconnect";
35339
35433
  subcircuit_id?: string | undefined;
35340
35434
  source_group_id?: string | undefined;
35435
+ display_name?: string | undefined;
35341
35436
  manufacturer_part_number?: string | undefined;
35342
35437
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35343
35438
  display_value?: string | undefined;
35344
- display_name?: string | undefined;
35345
35439
  are_pins_interchangeable?: boolean | undefined;
35346
35440
  internally_connected_source_port_ids?: string[][] | undefined;
35347
35441
  }>, z.ZodObject<{
@@ -35387,10 +35481,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35387
35481
  fall_time?: number | undefined;
35388
35482
  pulse_width?: number | undefined;
35389
35483
  period?: number | undefined;
35484
+ display_name?: string | undefined;
35390
35485
  manufacturer_part_number?: string | undefined;
35391
35486
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35392
35487
  display_value?: string | undefined;
35393
- display_name?: string | undefined;
35394
35488
  are_pins_interchangeable?: boolean | undefined;
35395
35489
  internally_connected_source_port_ids?: string[][] | undefined;
35396
35490
  }, {
@@ -35411,10 +35505,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35411
35505
  fall_time?: string | number | undefined;
35412
35506
  pulse_width?: string | number | undefined;
35413
35507
  period?: string | number | undefined;
35508
+ display_name?: string | undefined;
35414
35509
  manufacturer_part_number?: string | undefined;
35415
35510
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35416
35511
  display_value?: string | undefined;
35417
- display_name?: string | undefined;
35418
35512
  are_pins_interchangeable?: boolean | undefined;
35419
35513
  internally_connected_source_port_ids?: string[][] | undefined;
35420
35514
  }>, z.ZodObject<{
@@ -35804,10 +35898,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35804
35898
  ftype: "simple_chip";
35805
35899
  subcircuit_id?: string | undefined;
35806
35900
  source_group_id?: string | undefined;
35901
+ display_name?: string | undefined;
35807
35902
  manufacturer_part_number?: string | undefined;
35808
35903
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35809
35904
  display_value?: string | undefined;
35810
- display_name?: string | undefined;
35811
35905
  are_pins_interchangeable?: boolean | undefined;
35812
35906
  internally_connected_source_port_ids?: string[][] | undefined;
35813
35907
  }, {
@@ -35817,10 +35911,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35817
35911
  ftype: "simple_chip";
35818
35912
  subcircuit_id?: string | undefined;
35819
35913
  source_group_id?: string | undefined;
35914
+ display_name?: string | undefined;
35820
35915
  manufacturer_part_number?: string | undefined;
35821
35916
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35822
35917
  display_value?: string | undefined;
35823
- display_name?: string | undefined;
35824
35918
  are_pins_interchangeable?: boolean | undefined;
35825
35919
  internally_connected_source_port_ids?: string[][] | undefined;
35826
35920
  }>, z.ZodObject<{
@@ -35849,10 +35943,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35849
35943
  capacitance: number;
35850
35944
  subcircuit_id?: string | undefined;
35851
35945
  source_group_id?: string | undefined;
35946
+ display_name?: string | undefined;
35852
35947
  manufacturer_part_number?: string | undefined;
35853
35948
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35854
35949
  display_value?: string | undefined;
35855
- display_name?: string | undefined;
35856
35950
  are_pins_interchangeable?: boolean | undefined;
35857
35951
  internally_connected_source_port_ids?: string[][] | undefined;
35858
35952
  max_voltage_rating?: number | undefined;
@@ -35866,10 +35960,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35866
35960
  capacitance: string | number;
35867
35961
  subcircuit_id?: string | undefined;
35868
35962
  source_group_id?: string | undefined;
35963
+ display_name?: string | undefined;
35869
35964
  manufacturer_part_number?: string | undefined;
35870
35965
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35871
35966
  display_value?: string | undefined;
35872
- display_name?: string | undefined;
35873
35967
  are_pins_interchangeable?: boolean | undefined;
35874
35968
  internally_connected_source_port_ids?: string[][] | undefined;
35875
35969
  max_voltage_rating?: string | number | undefined;
@@ -35896,10 +35990,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35896
35990
  ftype: "simple_diode";
35897
35991
  subcircuit_id?: string | undefined;
35898
35992
  source_group_id?: string | undefined;
35993
+ display_name?: string | undefined;
35899
35994
  manufacturer_part_number?: string | undefined;
35900
35995
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35901
35996
  display_value?: string | undefined;
35902
- display_name?: string | undefined;
35903
35997
  are_pins_interchangeable?: boolean | undefined;
35904
35998
  internally_connected_source_port_ids?: string[][] | undefined;
35905
35999
  }, {
@@ -35909,10 +36003,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35909
36003
  ftype: "simple_diode";
35910
36004
  subcircuit_id?: string | undefined;
35911
36005
  source_group_id?: string | undefined;
36006
+ display_name?: string | undefined;
35912
36007
  manufacturer_part_number?: string | undefined;
35913
36008
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35914
36009
  display_value?: string | undefined;
35915
- display_name?: string | undefined;
35916
36010
  are_pins_interchangeable?: boolean | undefined;
35917
36011
  internally_connected_source_port_ids?: string[][] | undefined;
35918
36012
  }>, z.ZodObject<{
@@ -35939,10 +36033,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35939
36033
  subcircuit_id?: string | undefined;
35940
36034
  color?: string | undefined;
35941
36035
  source_group_id?: string | undefined;
36036
+ display_name?: string | undefined;
35942
36037
  manufacturer_part_number?: string | undefined;
35943
36038
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35944
36039
  display_value?: string | undefined;
35945
- display_name?: string | undefined;
35946
36040
  are_pins_interchangeable?: boolean | undefined;
35947
36041
  internally_connected_source_port_ids?: string[][] | undefined;
35948
36042
  wavelength?: string | undefined;
@@ -35954,10 +36048,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35954
36048
  subcircuit_id?: string | undefined;
35955
36049
  color?: string | undefined;
35956
36050
  source_group_id?: string | undefined;
36051
+ display_name?: string | undefined;
35957
36052
  manufacturer_part_number?: string | undefined;
35958
36053
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35959
36054
  display_value?: string | undefined;
35960
- display_name?: string | undefined;
35961
36055
  are_pins_interchangeable?: boolean | undefined;
35962
36056
  internally_connected_source_port_ids?: string[][] | undefined;
35963
36057
  wavelength?: string | undefined;
@@ -35985,10 +36079,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35985
36079
  resistance: number;
35986
36080
  subcircuit_id?: string | undefined;
35987
36081
  source_group_id?: string | undefined;
36082
+ display_name?: string | undefined;
35988
36083
  manufacturer_part_number?: string | undefined;
35989
36084
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35990
36085
  display_value?: string | undefined;
35991
- display_name?: string | undefined;
35992
36086
  are_pins_interchangeable?: boolean | undefined;
35993
36087
  internally_connected_source_port_ids?: string[][] | undefined;
35994
36088
  display_resistance?: string | undefined;
@@ -36000,10 +36094,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36000
36094
  resistance: string | number;
36001
36095
  subcircuit_id?: string | undefined;
36002
36096
  source_group_id?: string | undefined;
36097
+ display_name?: string | undefined;
36003
36098
  manufacturer_part_number?: string | undefined;
36004
36099
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36005
36100
  display_value?: string | undefined;
36006
- display_name?: string | undefined;
36007
36101
  are_pins_interchangeable?: boolean | undefined;
36008
36102
  internally_connected_source_port_ids?: string[][] | undefined;
36009
36103
  display_resistance?: string | undefined;
@@ -36030,10 +36124,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36030
36124
  ftype: "simple_power_source";
36031
36125
  subcircuit_id?: string | undefined;
36032
36126
  source_group_id?: string | undefined;
36127
+ display_name?: string | undefined;
36033
36128
  manufacturer_part_number?: string | undefined;
36034
36129
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36035
36130
  display_value?: string | undefined;
36036
- display_name?: string | undefined;
36037
36131
  are_pins_interchangeable?: boolean | undefined;
36038
36132
  internally_connected_source_port_ids?: string[][] | undefined;
36039
36133
  }, {
@@ -36044,10 +36138,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36044
36138
  ftype: "simple_power_source";
36045
36139
  subcircuit_id?: string | undefined;
36046
36140
  source_group_id?: string | undefined;
36141
+ display_name?: string | undefined;
36047
36142
  manufacturer_part_number?: string | undefined;
36048
36143
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36049
36144
  display_value?: string | undefined;
36050
- display_name?: string | undefined;
36051
36145
  are_pins_interchangeable?: boolean | undefined;
36052
36146
  internally_connected_source_port_ids?: string[][] | undefined;
36053
36147
  }>, z.ZodObject<{
@@ -36073,10 +36167,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36073
36167
  capacity: number;
36074
36168
  subcircuit_id?: string | undefined;
36075
36169
  source_group_id?: string | undefined;
36170
+ display_name?: string | undefined;
36076
36171
  manufacturer_part_number?: string | undefined;
36077
36172
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36078
36173
  display_value?: string | undefined;
36079
- display_name?: string | undefined;
36080
36174
  are_pins_interchangeable?: boolean | undefined;
36081
36175
  internally_connected_source_port_ids?: string[][] | undefined;
36082
36176
  }, {
@@ -36087,10 +36181,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36087
36181
  capacity: string | number;
36088
36182
  subcircuit_id?: string | undefined;
36089
36183
  source_group_id?: string | undefined;
36184
+ display_name?: string | undefined;
36090
36185
  manufacturer_part_number?: string | undefined;
36091
36186
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36092
36187
  display_value?: string | undefined;
36093
- display_name?: string | undefined;
36094
36188
  are_pins_interchangeable?: boolean | undefined;
36095
36189
  internally_connected_source_port_ids?: string[][] | undefined;
36096
36190
  }>, z.ZodObject<{
@@ -36118,10 +36212,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36118
36212
  inductance: number;
36119
36213
  subcircuit_id?: string | undefined;
36120
36214
  source_group_id?: string | undefined;
36215
+ display_name?: string | undefined;
36121
36216
  manufacturer_part_number?: string | undefined;
36122
36217
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36123
36218
  display_value?: string | undefined;
36124
- display_name?: string | undefined;
36125
36219
  are_pins_interchangeable?: boolean | undefined;
36126
36220
  internally_connected_source_port_ids?: string[][] | undefined;
36127
36221
  display_inductance?: string | undefined;
@@ -36134,10 +36228,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36134
36228
  inductance: string | number;
36135
36229
  subcircuit_id?: string | undefined;
36136
36230
  source_group_id?: string | undefined;
36231
+ display_name?: string | undefined;
36137
36232
  manufacturer_part_number?: string | undefined;
36138
36233
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36139
36234
  display_value?: string | undefined;
36140
- display_name?: string | undefined;
36141
36235
  are_pins_interchangeable?: boolean | undefined;
36142
36236
  internally_connected_source_port_ids?: string[][] | undefined;
36143
36237
  display_inductance?: string | undefined;
@@ -36167,10 +36261,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36167
36261
  gender: "male" | "female";
36168
36262
  subcircuit_id?: string | undefined;
36169
36263
  source_group_id?: string | undefined;
36264
+ display_name?: string | undefined;
36170
36265
  manufacturer_part_number?: string | undefined;
36171
36266
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36172
36267
  display_value?: string | undefined;
36173
- display_name?: string | undefined;
36174
36268
  are_pins_interchangeable?: boolean | undefined;
36175
36269
  internally_connected_source_port_ids?: string[][] | undefined;
36176
36270
  }, {
@@ -36181,10 +36275,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36181
36275
  pin_count: number;
36182
36276
  subcircuit_id?: string | undefined;
36183
36277
  source_group_id?: string | undefined;
36278
+ display_name?: string | undefined;
36184
36279
  manufacturer_part_number?: string | undefined;
36185
36280
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36186
36281
  display_value?: string | undefined;
36187
- display_name?: string | undefined;
36188
36282
  are_pins_interchangeable?: boolean | undefined;
36189
36283
  internally_connected_source_port_ids?: string[][] | undefined;
36190
36284
  gender?: "male" | "female" | undefined;
@@ -36209,10 +36303,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36209
36303
  ftype: "simple_pinout";
36210
36304
  subcircuit_id?: string | undefined;
36211
36305
  source_group_id?: string | undefined;
36306
+ display_name?: string | undefined;
36212
36307
  manufacturer_part_number?: string | undefined;
36213
36308
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36214
36309
  display_value?: string | undefined;
36215
- display_name?: string | undefined;
36216
36310
  are_pins_interchangeable?: boolean | undefined;
36217
36311
  internally_connected_source_port_ids?: string[][] | undefined;
36218
36312
  }, {
@@ -36222,10 +36316,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36222
36316
  ftype: "simple_pinout";
36223
36317
  subcircuit_id?: string | undefined;
36224
36318
  source_group_id?: string | undefined;
36319
+ display_name?: string | undefined;
36225
36320
  manufacturer_part_number?: string | undefined;
36226
36321
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36227
36322
  display_value?: string | undefined;
36228
- display_name?: string | undefined;
36229
36323
  are_pins_interchangeable?: boolean | undefined;
36230
36324
  internally_connected_source_port_ids?: string[][] | undefined;
36231
36325
  }>, z.ZodObject<{
@@ -36254,10 +36348,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36254
36348
  load_capacitance: number;
36255
36349
  subcircuit_id?: string | undefined;
36256
36350
  source_group_id?: string | undefined;
36351
+ display_name?: string | undefined;
36257
36352
  manufacturer_part_number?: string | undefined;
36258
36353
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36259
36354
  display_value?: string | undefined;
36260
- display_name?: string | undefined;
36261
36355
  are_pins_interchangeable?: boolean | undefined;
36262
36356
  internally_connected_source_port_ids?: string[][] | undefined;
36263
36357
  equivalent_series_resistance?: number | undefined;
@@ -36270,10 +36364,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36270
36364
  load_capacitance: string | number;
36271
36365
  subcircuit_id?: string | undefined;
36272
36366
  source_group_id?: string | undefined;
36367
+ display_name?: string | undefined;
36273
36368
  manufacturer_part_number?: string | undefined;
36274
36369
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36275
36370
  display_value?: string | undefined;
36276
- display_name?: string | undefined;
36277
36371
  are_pins_interchangeable?: boolean | undefined;
36278
36372
  internally_connected_source_port_ids?: string[][] | undefined;
36279
36373
  equivalent_series_resistance?: string | number | undefined;
@@ -36298,10 +36392,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36298
36392
  ftype: "simple_switch";
36299
36393
  subcircuit_id?: string | undefined;
36300
36394
  source_group_id?: string | undefined;
36395
+ display_name?: string | undefined;
36301
36396
  manufacturer_part_number?: string | undefined;
36302
36397
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36303
36398
  display_value?: string | undefined;
36304
- display_name?: string | undefined;
36305
36399
  are_pins_interchangeable?: boolean | undefined;
36306
36400
  internally_connected_source_port_ids?: string[][] | undefined;
36307
36401
  }, {
@@ -36311,10 +36405,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36311
36405
  ftype: "simple_switch";
36312
36406
  subcircuit_id?: string | undefined;
36313
36407
  source_group_id?: string | undefined;
36408
+ display_name?: string | undefined;
36314
36409
  manufacturer_part_number?: string | undefined;
36315
36410
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36316
36411
  display_value?: string | undefined;
36317
- display_name?: string | undefined;
36318
36412
  are_pins_interchangeable?: boolean | undefined;
36319
36413
  internally_connected_source_port_ids?: string[][] | undefined;
36320
36414
  }>, z.ZodObject<{
@@ -36340,10 +36434,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36340
36434
  transistor_type: "npn" | "pnp";
36341
36435
  subcircuit_id?: string | undefined;
36342
36436
  source_group_id?: string | undefined;
36437
+ display_name?: string | undefined;
36343
36438
  manufacturer_part_number?: string | undefined;
36344
36439
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36345
36440
  display_value?: string | undefined;
36346
- display_name?: string | undefined;
36347
36441
  are_pins_interchangeable?: boolean | undefined;
36348
36442
  internally_connected_source_port_ids?: string[][] | undefined;
36349
36443
  }, {
@@ -36354,10 +36448,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36354
36448
  transistor_type: "npn" | "pnp";
36355
36449
  subcircuit_id?: string | undefined;
36356
36450
  source_group_id?: string | undefined;
36451
+ display_name?: string | undefined;
36357
36452
  manufacturer_part_number?: string | undefined;
36358
36453
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36359
36454
  display_value?: string | undefined;
36360
- display_name?: string | undefined;
36361
36455
  are_pins_interchangeable?: boolean | undefined;
36362
36456
  internally_connected_source_port_ids?: string[][] | undefined;
36363
36457
  }>, z.ZodObject<{
@@ -36391,10 +36485,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36391
36485
  hole_diameter?: string | number | undefined;
36392
36486
  pad_shape?: "circle" | "rect" | undefined;
36393
36487
  source_group_id?: string | undefined;
36488
+ display_name?: string | undefined;
36394
36489
  manufacturer_part_number?: string | undefined;
36395
36490
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36396
36491
  display_value?: string | undefined;
36397
- display_name?: string | undefined;
36398
36492
  are_pins_interchangeable?: boolean | undefined;
36399
36493
  internally_connected_source_port_ids?: string[][] | undefined;
36400
36494
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -36410,10 +36504,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36410
36504
  hole_diameter?: string | number | undefined;
36411
36505
  pad_shape?: "circle" | "rect" | undefined;
36412
36506
  source_group_id?: string | undefined;
36507
+ display_name?: string | undefined;
36413
36508
  manufacturer_part_number?: string | undefined;
36414
36509
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36415
36510
  display_value?: string | undefined;
36416
- display_name?: string | undefined;
36417
36511
  are_pins_interchangeable?: boolean | undefined;
36418
36512
  internally_connected_source_port_ids?: string[][] | undefined;
36419
36513
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -36443,10 +36537,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36443
36537
  mosfet_mode: "enhancement" | "depletion";
36444
36538
  subcircuit_id?: string | undefined;
36445
36539
  source_group_id?: string | undefined;
36540
+ display_name?: string | undefined;
36446
36541
  manufacturer_part_number?: string | undefined;
36447
36542
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36448
36543
  display_value?: string | undefined;
36449
- display_name?: string | undefined;
36450
36544
  are_pins_interchangeable?: boolean | undefined;
36451
36545
  internally_connected_source_port_ids?: string[][] | undefined;
36452
36546
  }, {
@@ -36458,10 +36552,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36458
36552
  mosfet_mode: "enhancement" | "depletion";
36459
36553
  subcircuit_id?: string | undefined;
36460
36554
  source_group_id?: string | undefined;
36555
+ display_name?: string | undefined;
36461
36556
  manufacturer_part_number?: string | undefined;
36462
36557
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36463
36558
  display_value?: string | undefined;
36464
- display_name?: string | undefined;
36465
36559
  are_pins_interchangeable?: boolean | undefined;
36466
36560
  internally_connected_source_port_ids?: string[][] | undefined;
36467
36561
  }>, z.ZodObject<{
@@ -36485,10 +36579,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36485
36579
  ftype: "simple_op_amp";
36486
36580
  subcircuit_id?: string | undefined;
36487
36581
  source_group_id?: string | undefined;
36582
+ display_name?: string | undefined;
36488
36583
  manufacturer_part_number?: string | undefined;
36489
36584
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36490
36585
  display_value?: string | undefined;
36491
- display_name?: string | undefined;
36492
36586
  are_pins_interchangeable?: boolean | undefined;
36493
36587
  internally_connected_source_port_ids?: string[][] | undefined;
36494
36588
  }, {
@@ -36498,10 +36592,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36498
36592
  ftype: "simple_op_amp";
36499
36593
  subcircuit_id?: string | undefined;
36500
36594
  source_group_id?: string | undefined;
36595
+ display_name?: string | undefined;
36501
36596
  manufacturer_part_number?: string | undefined;
36502
36597
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36503
36598
  display_value?: string | undefined;
36504
- display_name?: string | undefined;
36505
36599
  are_pins_interchangeable?: boolean | undefined;
36506
36600
  internally_connected_source_port_ids?: string[][] | undefined;
36507
36601
  }>, z.ZodObject<{
@@ -36528,10 +36622,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36528
36622
  max_resistance: number;
36529
36623
  subcircuit_id?: string | undefined;
36530
36624
  source_group_id?: string | undefined;
36625
+ display_name?: string | undefined;
36531
36626
  manufacturer_part_number?: string | undefined;
36532
36627
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36533
36628
  display_value?: string | undefined;
36534
- display_name?: string | undefined;
36535
36629
  are_pins_interchangeable?: boolean | undefined;
36536
36630
  internally_connected_source_port_ids?: string[][] | undefined;
36537
36631
  display_max_resistance?: string | undefined;
@@ -36543,10 +36637,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36543
36637
  max_resistance: string | number;
36544
36638
  subcircuit_id?: string | undefined;
36545
36639
  source_group_id?: string | undefined;
36640
+ display_name?: string | undefined;
36546
36641
  manufacturer_part_number?: string | undefined;
36547
36642
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36548
36643
  display_value?: string | undefined;
36549
- display_name?: string | undefined;
36550
36644
  are_pins_interchangeable?: boolean | undefined;
36551
36645
  internally_connected_source_port_ids?: string[][] | undefined;
36552
36646
  display_max_resistance?: string | undefined;
@@ -36571,10 +36665,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36571
36665
  ftype: "simple_push_button";
36572
36666
  subcircuit_id?: string | undefined;
36573
36667
  source_group_id?: string | undefined;
36668
+ display_name?: string | undefined;
36574
36669
  manufacturer_part_number?: string | undefined;
36575
36670
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36576
36671
  display_value?: string | undefined;
36577
- display_name?: string | undefined;
36578
36672
  are_pins_interchangeable?: boolean | undefined;
36579
36673
  internally_connected_source_port_ids?: string[][] | undefined;
36580
36674
  }, {
@@ -36584,10 +36678,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36584
36678
  ftype: "simple_push_button";
36585
36679
  subcircuit_id?: string | undefined;
36586
36680
  source_group_id?: string | undefined;
36681
+ display_name?: string | undefined;
36587
36682
  manufacturer_part_number?: string | undefined;
36588
36683
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36589
36684
  display_value?: string | undefined;
36590
- display_name?: string | undefined;
36591
36685
  are_pins_interchangeable?: boolean | undefined;
36592
36686
  internally_connected_source_port_ids?: string[][] | undefined;
36593
36687
  }>, z.ZodObject<{
@@ -52522,22 +52616,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52522
52616
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
52523
52617
  subcircuit_id: z.ZodOptional<z.ZodString>;
52524
52618
  color: z.ZodOptional<z.ZodString>;
52525
- display_options: z.ZodOptional<z.ZodObject<{
52526
- label: z.ZodOptional<z.ZodString>;
52527
- center: z.ZodOptional<z.ZodNumber>;
52528
- offset_divs: z.ZodOptional<z.ZodNumber>;
52529
- units_per_div: z.ZodOptional<z.ZodNumber>;
52530
- }, "strip", z.ZodTypeAny, {
52531
- center?: number | undefined;
52532
- label?: string | undefined;
52533
- offset_divs?: number | undefined;
52534
- units_per_div?: number | undefined;
52535
- }, {
52536
- center?: number | undefined;
52537
- label?: string | undefined;
52538
- offset_divs?: number | undefined;
52539
- units_per_div?: number | undefined;
52540
- }>>;
52541
52619
  }, "strip", z.ZodTypeAny, {
52542
52620
  type: "simulation_voltage_probe";
52543
52621
  simulation_voltage_probe_id: string;
@@ -52549,12 +52627,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52549
52627
  signal_input_source_net_id?: string | undefined;
52550
52628
  reference_input_source_port_id?: string | undefined;
52551
52629
  reference_input_source_net_id?: string | undefined;
52552
- display_options?: {
52553
- center?: number | undefined;
52554
- label?: string | undefined;
52555
- offset_divs?: number | undefined;
52556
- units_per_div?: number | undefined;
52557
- } | undefined;
52558
52630
  }, {
52559
52631
  type: "simulation_voltage_probe";
52560
52632
  name?: string | undefined;
@@ -52566,12 +52638,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52566
52638
  signal_input_source_net_id?: string | undefined;
52567
52639
  reference_input_source_port_id?: string | undefined;
52568
52640
  reference_input_source_net_id?: string | undefined;
52569
- display_options?: {
52570
- center?: number | undefined;
52571
- label?: string | undefined;
52572
- offset_divs?: number | undefined;
52573
- units_per_div?: number | undefined;
52574
- } | undefined;
52575
52641
  }>, {
52576
52642
  type: "simulation_voltage_probe";
52577
52643
  simulation_voltage_probe_id: string;
@@ -52583,12 +52649,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52583
52649
  signal_input_source_net_id?: string | undefined;
52584
52650
  reference_input_source_port_id?: string | undefined;
52585
52651
  reference_input_source_net_id?: string | undefined;
52586
- display_options?: {
52587
- center?: number | undefined;
52588
- label?: string | undefined;
52589
- offset_divs?: number | undefined;
52590
- units_per_div?: number | undefined;
52591
- } | undefined;
52592
52652
  }, {
52593
52653
  type: "simulation_voltage_probe";
52594
52654
  name?: string | undefined;
@@ -52600,12 +52660,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52600
52660
  signal_input_source_net_id?: string | undefined;
52601
52661
  reference_input_source_port_id?: string | undefined;
52602
52662
  reference_input_source_net_id?: string | undefined;
52603
- display_options?: {
52604
- center?: number | undefined;
52605
- label?: string | undefined;
52606
- offset_divs?: number | undefined;
52607
- units_per_div?: number | undefined;
52608
- } | undefined;
52609
52663
  }>, z.ZodEffects<z.ZodObject<{
52610
52664
  type: z.ZodLiteral<"simulation_current_probe">;
52611
52665
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -52617,22 +52671,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52617
52671
  negative_source_net_id: z.ZodOptional<z.ZodString>;
52618
52672
  subcircuit_id: z.ZodOptional<z.ZodString>;
52619
52673
  color: z.ZodOptional<z.ZodString>;
52620
- display_options: z.ZodOptional<z.ZodObject<{
52621
- label: z.ZodOptional<z.ZodString>;
52622
- center: z.ZodOptional<z.ZodNumber>;
52623
- offset_divs: z.ZodOptional<z.ZodNumber>;
52624
- units_per_div: z.ZodOptional<z.ZodNumber>;
52625
- }, "strip", z.ZodTypeAny, {
52626
- center?: number | undefined;
52627
- label?: string | undefined;
52628
- offset_divs?: number | undefined;
52629
- units_per_div?: number | undefined;
52630
- }, {
52631
- center?: number | undefined;
52632
- label?: string | undefined;
52633
- offset_divs?: number | undefined;
52634
- units_per_div?: number | undefined;
52635
- }>>;
52636
52674
  }, "strip", z.ZodTypeAny, {
52637
52675
  type: "simulation_current_probe";
52638
52676
  simulation_current_probe_id: string;
@@ -52644,12 +52682,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52644
52682
  negative_source_port_id?: string | undefined;
52645
52683
  positive_source_net_id?: string | undefined;
52646
52684
  negative_source_net_id?: string | undefined;
52647
- display_options?: {
52648
- center?: number | undefined;
52649
- label?: string | undefined;
52650
- offset_divs?: number | undefined;
52651
- units_per_div?: number | undefined;
52652
- } | undefined;
52653
52685
  }, {
52654
52686
  type: "simulation_current_probe";
52655
52687
  name?: string | undefined;
@@ -52660,12 +52692,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52660
52692
  negative_source_port_id?: string | undefined;
52661
52693
  positive_source_net_id?: string | undefined;
52662
52694
  negative_source_net_id?: string | undefined;
52663
- display_options?: {
52664
- center?: number | undefined;
52665
- label?: string | undefined;
52666
- offset_divs?: number | undefined;
52667
- units_per_div?: number | undefined;
52668
- } | undefined;
52669
52695
  simulation_current_probe_id?: string | undefined;
52670
52696
  }>, {
52671
52697
  type: "simulation_current_probe";
@@ -52678,12 +52704,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52678
52704
  negative_source_port_id?: string | undefined;
52679
52705
  positive_source_net_id?: string | undefined;
52680
52706
  negative_source_net_id?: string | undefined;
52681
- display_options?: {
52682
- center?: number | undefined;
52683
- label?: string | undefined;
52684
- offset_divs?: number | undefined;
52685
- units_per_div?: number | undefined;
52686
- } | undefined;
52687
52707
  }, {
52688
52708
  type: "simulation_current_probe";
52689
52709
  name?: string | undefined;
@@ -52694,13 +52714,72 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52694
52714
  negative_source_port_id?: string | undefined;
52695
52715
  positive_source_net_id?: string | undefined;
52696
52716
  negative_source_net_id?: string | undefined;
52697
- display_options?: {
52698
- center?: number | undefined;
52699
- label?: string | undefined;
52700
- offset_divs?: number | undefined;
52701
- units_per_div?: number | undefined;
52702
- } | undefined;
52703
52717
  simulation_current_probe_id?: string | undefined;
52718
+ }>, z.ZodEffects<z.ZodObject<{
52719
+ type: z.ZodLiteral<"simulation_oscilloscope_trace">;
52720
+ simulation_oscilloscope_trace_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52721
+ simulation_transient_voltage_graph_id: z.ZodOptional<z.ZodString>;
52722
+ simulation_transient_current_graph_id: z.ZodOptional<z.ZodString>;
52723
+ simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
52724
+ simulation_current_probe_id: z.ZodOptional<z.ZodString>;
52725
+ display_name: z.ZodOptional<z.ZodString>;
52726
+ color: z.ZodOptional<z.ZodString>;
52727
+ display_center_value: z.ZodOptional<z.ZodNumber>;
52728
+ display_center_offset_divs: z.ZodOptional<z.ZodNumber>;
52729
+ volts_per_div: z.ZodOptional<z.ZodNumber>;
52730
+ amps_per_div: z.ZodOptional<z.ZodNumber>;
52731
+ }, "strip", z.ZodTypeAny, {
52732
+ type: "simulation_oscilloscope_trace";
52733
+ simulation_oscilloscope_trace_id: string;
52734
+ color?: string | undefined;
52735
+ simulation_transient_voltage_graph_id?: string | undefined;
52736
+ simulation_transient_current_graph_id?: string | undefined;
52737
+ simulation_voltage_probe_id?: string | undefined;
52738
+ simulation_current_probe_id?: string | undefined;
52739
+ display_name?: string | undefined;
52740
+ display_center_value?: number | undefined;
52741
+ display_center_offset_divs?: number | undefined;
52742
+ volts_per_div?: number | undefined;
52743
+ amps_per_div?: number | undefined;
52744
+ }, {
52745
+ type: "simulation_oscilloscope_trace";
52746
+ color?: string | undefined;
52747
+ simulation_transient_voltage_graph_id?: string | undefined;
52748
+ simulation_transient_current_graph_id?: string | undefined;
52749
+ simulation_voltage_probe_id?: string | undefined;
52750
+ simulation_current_probe_id?: string | undefined;
52751
+ simulation_oscilloscope_trace_id?: string | undefined;
52752
+ display_name?: string | undefined;
52753
+ display_center_value?: number | undefined;
52754
+ display_center_offset_divs?: number | undefined;
52755
+ volts_per_div?: number | undefined;
52756
+ amps_per_div?: number | undefined;
52757
+ }>, {
52758
+ type: "simulation_oscilloscope_trace";
52759
+ simulation_oscilloscope_trace_id: string;
52760
+ color?: string | undefined;
52761
+ simulation_transient_voltage_graph_id?: string | undefined;
52762
+ simulation_transient_current_graph_id?: string | undefined;
52763
+ simulation_voltage_probe_id?: string | undefined;
52764
+ simulation_current_probe_id?: string | undefined;
52765
+ display_name?: string | undefined;
52766
+ display_center_value?: number | undefined;
52767
+ display_center_offset_divs?: number | undefined;
52768
+ volts_per_div?: number | undefined;
52769
+ amps_per_div?: number | undefined;
52770
+ }, {
52771
+ type: "simulation_oscilloscope_trace";
52772
+ color?: string | undefined;
52773
+ simulation_transient_voltage_graph_id?: string | undefined;
52774
+ simulation_transient_current_graph_id?: string | undefined;
52775
+ simulation_voltage_probe_id?: string | undefined;
52776
+ simulation_current_probe_id?: string | undefined;
52777
+ simulation_oscilloscope_trace_id?: string | undefined;
52778
+ display_name?: string | undefined;
52779
+ display_center_value?: number | undefined;
52780
+ display_center_offset_divs?: number | undefined;
52781
+ volts_per_div?: number | undefined;
52782
+ amps_per_div?: number | undefined;
52704
52783
  }>, z.ZodObject<{
52705
52784
  message: z.ZodString;
52706
52785
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -52992,10 +53071,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52992
53071
  resistance: number;
52993
53072
  subcircuit_id?: string | undefined;
52994
53073
  source_group_id?: string | undefined;
53074
+ display_name?: string | undefined;
52995
53075
  manufacturer_part_number?: string | undefined;
52996
53076
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
52997
53077
  display_value?: string | undefined;
52998
- display_name?: string | undefined;
52999
53078
  are_pins_interchangeable?: boolean | undefined;
53000
53079
  internally_connected_source_port_ids?: string[][] | undefined;
53001
53080
  display_resistance?: string | undefined;
@@ -53007,10 +53086,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53007
53086
  resistance: string | number;
53008
53087
  subcircuit_id?: string | undefined;
53009
53088
  source_group_id?: string | undefined;
53089
+ display_name?: string | undefined;
53010
53090
  manufacturer_part_number?: string | undefined;
53011
53091
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53012
53092
  display_value?: string | undefined;
53013
- display_name?: string | undefined;
53014
53093
  are_pins_interchangeable?: boolean | undefined;
53015
53094
  internally_connected_source_port_ids?: string[][] | undefined;
53016
53095
  display_resistance?: string | undefined;
@@ -53040,10 +53119,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53040
53119
  capacitance: number;
53041
53120
  subcircuit_id?: string | undefined;
53042
53121
  source_group_id?: string | undefined;
53122
+ display_name?: string | undefined;
53043
53123
  manufacturer_part_number?: string | undefined;
53044
53124
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53045
53125
  display_value?: string | undefined;
53046
- display_name?: string | undefined;
53047
53126
  are_pins_interchangeable?: boolean | undefined;
53048
53127
  internally_connected_source_port_ids?: string[][] | undefined;
53049
53128
  max_voltage_rating?: number | undefined;
@@ -53057,10 +53136,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53057
53136
  capacitance: string | number;
53058
53137
  subcircuit_id?: string | undefined;
53059
53138
  source_group_id?: string | undefined;
53139
+ display_name?: string | undefined;
53060
53140
  manufacturer_part_number?: string | undefined;
53061
53141
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53062
53142
  display_value?: string | undefined;
53063
- display_name?: string | undefined;
53064
53143
  are_pins_interchangeable?: boolean | undefined;
53065
53144
  internally_connected_source_port_ids?: string[][] | undefined;
53066
53145
  max_voltage_rating?: string | number | undefined;
@@ -53087,10 +53166,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53087
53166
  ftype: "simple_diode";
53088
53167
  subcircuit_id?: string | undefined;
53089
53168
  source_group_id?: string | undefined;
53169
+ display_name?: string | undefined;
53090
53170
  manufacturer_part_number?: string | undefined;
53091
53171
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53092
53172
  display_value?: string | undefined;
53093
- display_name?: string | undefined;
53094
53173
  are_pins_interchangeable?: boolean | undefined;
53095
53174
  internally_connected_source_port_ids?: string[][] | undefined;
53096
53175
  }, {
@@ -53100,10 +53179,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53100
53179
  ftype: "simple_diode";
53101
53180
  subcircuit_id?: string | undefined;
53102
53181
  source_group_id?: string | undefined;
53182
+ display_name?: string | undefined;
53103
53183
  manufacturer_part_number?: string | undefined;
53104
53184
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53105
53185
  display_value?: string | undefined;
53106
- display_name?: string | undefined;
53107
53186
  are_pins_interchangeable?: boolean | undefined;
53108
53187
  internally_connected_source_port_ids?: string[][] | undefined;
53109
53188
  }>, z.ZodObject<{
@@ -53127,10 +53206,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53127
53206
  ftype: "simple_fiducial";
53128
53207
  subcircuit_id?: string | undefined;
53129
53208
  source_group_id?: string | undefined;
53209
+ display_name?: string | undefined;
53130
53210
  manufacturer_part_number?: string | undefined;
53131
53211
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53132
53212
  display_value?: string | undefined;
53133
- display_name?: string | undefined;
53134
53213
  are_pins_interchangeable?: boolean | undefined;
53135
53214
  internally_connected_source_port_ids?: string[][] | undefined;
53136
53215
  }, {
@@ -53140,10 +53219,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53140
53219
  ftype: "simple_fiducial";
53141
53220
  subcircuit_id?: string | undefined;
53142
53221
  source_group_id?: string | undefined;
53222
+ display_name?: string | undefined;
53143
53223
  manufacturer_part_number?: string | undefined;
53144
53224
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53145
53225
  display_value?: string | undefined;
53146
- display_name?: string | undefined;
53147
53226
  are_pins_interchangeable?: boolean | undefined;
53148
53227
  internally_connected_source_port_ids?: string[][] | undefined;
53149
53228
  }>, z.ZodObject<{
@@ -53170,10 +53249,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53170
53249
  subcircuit_id?: string | undefined;
53171
53250
  color?: string | undefined;
53172
53251
  source_group_id?: string | undefined;
53252
+ display_name?: string | undefined;
53173
53253
  manufacturer_part_number?: string | undefined;
53174
53254
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53175
53255
  display_value?: string | undefined;
53176
- display_name?: string | undefined;
53177
53256
  are_pins_interchangeable?: boolean | undefined;
53178
53257
  internally_connected_source_port_ids?: string[][] | undefined;
53179
53258
  wavelength?: string | undefined;
@@ -53185,10 +53264,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53185
53264
  subcircuit_id?: string | undefined;
53186
53265
  color?: string | undefined;
53187
53266
  source_group_id?: string | undefined;
53267
+ display_name?: string | undefined;
53188
53268
  manufacturer_part_number?: string | undefined;
53189
53269
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53190
53270
  display_value?: string | undefined;
53191
- display_name?: string | undefined;
53192
53271
  are_pins_interchangeable?: boolean | undefined;
53193
53272
  internally_connected_source_port_ids?: string[][] | undefined;
53194
53273
  wavelength?: string | undefined;
@@ -53213,10 +53292,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53213
53292
  ftype: "simple_ground";
53214
53293
  subcircuit_id?: string | undefined;
53215
53294
  source_group_id?: string | undefined;
53295
+ display_name?: string | undefined;
53216
53296
  manufacturer_part_number?: string | undefined;
53217
53297
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53218
53298
  display_value?: string | undefined;
53219
- display_name?: string | undefined;
53220
53299
  are_pins_interchangeable?: boolean | undefined;
53221
53300
  internally_connected_source_port_ids?: string[][] | undefined;
53222
53301
  }, {
@@ -53226,10 +53305,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53226
53305
  ftype: "simple_ground";
53227
53306
  subcircuit_id?: string | undefined;
53228
53307
  source_group_id?: string | undefined;
53308
+ display_name?: string | undefined;
53229
53309
  manufacturer_part_number?: string | undefined;
53230
53310
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53231
53311
  display_value?: string | undefined;
53232
- display_name?: string | undefined;
53233
53312
  are_pins_interchangeable?: boolean | undefined;
53234
53313
  internally_connected_source_port_ids?: string[][] | undefined;
53235
53314
  }>, z.ZodObject<{
@@ -53253,10 +53332,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53253
53332
  ftype: "simple_chip";
53254
53333
  subcircuit_id?: string | undefined;
53255
53334
  source_group_id?: string | undefined;
53335
+ display_name?: string | undefined;
53256
53336
  manufacturer_part_number?: string | undefined;
53257
53337
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53258
53338
  display_value?: string | undefined;
53259
- display_name?: string | undefined;
53260
53339
  are_pins_interchangeable?: boolean | undefined;
53261
53340
  internally_connected_source_port_ids?: string[][] | undefined;
53262
53341
  }, {
@@ -53266,10 +53345,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53266
53345
  ftype: "simple_chip";
53267
53346
  subcircuit_id?: string | undefined;
53268
53347
  source_group_id?: string | undefined;
53348
+ display_name?: string | undefined;
53269
53349
  manufacturer_part_number?: string | undefined;
53270
53350
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53271
53351
  display_value?: string | undefined;
53272
- display_name?: string | undefined;
53273
53352
  are_pins_interchangeable?: boolean | undefined;
53274
53353
  internally_connected_source_port_ids?: string[][] | undefined;
53275
53354
  }>, z.ZodObject<{
@@ -53295,10 +53374,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53295
53374
  ftype: "simple_power_source";
53296
53375
  subcircuit_id?: string | undefined;
53297
53376
  source_group_id?: string | undefined;
53377
+ display_name?: string | undefined;
53298
53378
  manufacturer_part_number?: string | undefined;
53299
53379
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53300
53380
  display_value?: string | undefined;
53301
- display_name?: string | undefined;
53302
53381
  are_pins_interchangeable?: boolean | undefined;
53303
53382
  internally_connected_source_port_ids?: string[][] | undefined;
53304
53383
  }, {
@@ -53309,10 +53388,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53309
53388
  ftype: "simple_power_source";
53310
53389
  subcircuit_id?: string | undefined;
53311
53390
  source_group_id?: string | undefined;
53391
+ display_name?: string | undefined;
53312
53392
  manufacturer_part_number?: string | undefined;
53313
53393
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53314
53394
  display_value?: string | undefined;
53315
- display_name?: string | undefined;
53316
53395
  are_pins_interchangeable?: boolean | undefined;
53317
53396
  internally_connected_source_port_ids?: string[][] | undefined;
53318
53397
  }>, z.ZodObject<{
@@ -53348,10 +53427,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53348
53427
  phase?: number | undefined;
53349
53428
  duty_cycle?: number | undefined;
53350
53429
  peak_to_peak_current?: number | undefined;
53430
+ display_name?: string | undefined;
53351
53431
  manufacturer_part_number?: string | undefined;
53352
53432
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53353
53433
  display_value?: string | undefined;
53354
- display_name?: string | undefined;
53355
53434
  are_pins_interchangeable?: boolean | undefined;
53356
53435
  internally_connected_source_port_ids?: string[][] | undefined;
53357
53436
  }, {
@@ -53367,10 +53446,50 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53367
53446
  phase?: number | undefined;
53368
53447
  duty_cycle?: number | undefined;
53369
53448
  peak_to_peak_current?: string | number | undefined;
53449
+ display_name?: string | undefined;
53450
+ manufacturer_part_number?: string | undefined;
53451
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53452
+ display_value?: string | undefined;
53453
+ are_pins_interchangeable?: boolean | undefined;
53454
+ internally_connected_source_port_ids?: string[][] | undefined;
53455
+ }>, z.ZodObject<{
53456
+ type: z.ZodLiteral<"source_component">;
53457
+ source_component_id: z.ZodString;
53458
+ name: z.ZodString;
53459
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
53460
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
53461
+ display_value: z.ZodOptional<z.ZodString>;
53462
+ display_name: z.ZodOptional<z.ZodString>;
53463
+ are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
53464
+ internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
53465
+ source_group_id: z.ZodOptional<z.ZodString>;
53466
+ subcircuit_id: z.ZodOptional<z.ZodString>;
53467
+ } & {
53468
+ ftype: z.ZodLiteral<"simple_ammeter">;
53469
+ }, "strip", z.ZodTypeAny, {
53470
+ type: "source_component";
53471
+ name: string;
53472
+ source_component_id: string;
53473
+ ftype: "simple_ammeter";
53474
+ subcircuit_id?: string | undefined;
53475
+ source_group_id?: string | undefined;
53476
+ display_name?: string | undefined;
53370
53477
  manufacturer_part_number?: string | undefined;
53371
53478
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53372
53479
  display_value?: string | undefined;
53480
+ are_pins_interchangeable?: boolean | undefined;
53481
+ internally_connected_source_port_ids?: string[][] | undefined;
53482
+ }, {
53483
+ type: "source_component";
53484
+ name: string;
53485
+ source_component_id: string;
53486
+ ftype: "simple_ammeter";
53487
+ subcircuit_id?: string | undefined;
53488
+ source_group_id?: string | undefined;
53373
53489
  display_name?: string | undefined;
53490
+ manufacturer_part_number?: string | undefined;
53491
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53492
+ display_value?: string | undefined;
53374
53493
  are_pins_interchangeable?: boolean | undefined;
53375
53494
  internally_connected_source_port_ids?: string[][] | undefined;
53376
53495
  }>, z.ZodObject<{
@@ -53396,10 +53515,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53396
53515
  capacity: number;
53397
53516
  subcircuit_id?: string | undefined;
53398
53517
  source_group_id?: string | undefined;
53518
+ display_name?: string | undefined;
53399
53519
  manufacturer_part_number?: string | undefined;
53400
53520
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53401
53521
  display_value?: string | undefined;
53402
- display_name?: string | undefined;
53403
53522
  are_pins_interchangeable?: boolean | undefined;
53404
53523
  internally_connected_source_port_ids?: string[][] | undefined;
53405
53524
  }, {
@@ -53410,10 +53529,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53410
53529
  capacity: string | number;
53411
53530
  subcircuit_id?: string | undefined;
53412
53531
  source_group_id?: string | undefined;
53532
+ display_name?: string | undefined;
53413
53533
  manufacturer_part_number?: string | undefined;
53414
53534
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53415
53535
  display_value?: string | undefined;
53416
- display_name?: string | undefined;
53417
53536
  are_pins_interchangeable?: boolean | undefined;
53418
53537
  internally_connected_source_port_ids?: string[][] | undefined;
53419
53538
  }>, z.ZodObject<{
@@ -53441,10 +53560,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53441
53560
  inductance: number;
53442
53561
  subcircuit_id?: string | undefined;
53443
53562
  source_group_id?: string | undefined;
53563
+ display_name?: string | undefined;
53444
53564
  manufacturer_part_number?: string | undefined;
53445
53565
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53446
53566
  display_value?: string | undefined;
53447
- display_name?: string | undefined;
53448
53567
  are_pins_interchangeable?: boolean | undefined;
53449
53568
  internally_connected_source_port_ids?: string[][] | undefined;
53450
53569
  display_inductance?: string | undefined;
@@ -53457,10 +53576,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53457
53576
  inductance: string | number;
53458
53577
  subcircuit_id?: string | undefined;
53459
53578
  source_group_id?: string | undefined;
53579
+ display_name?: string | undefined;
53460
53580
  manufacturer_part_number?: string | undefined;
53461
53581
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53462
53582
  display_value?: string | undefined;
53463
- display_name?: string | undefined;
53464
53583
  are_pins_interchangeable?: boolean | undefined;
53465
53584
  internally_connected_source_port_ids?: string[][] | undefined;
53466
53585
  display_inductance?: string | undefined;
@@ -53486,10 +53605,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53486
53605
  ftype: "simple_push_button";
53487
53606
  subcircuit_id?: string | undefined;
53488
53607
  source_group_id?: string | undefined;
53608
+ display_name?: string | undefined;
53489
53609
  manufacturer_part_number?: string | undefined;
53490
53610
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53491
53611
  display_value?: string | undefined;
53492
- display_name?: string | undefined;
53493
53612
  are_pins_interchangeable?: boolean | undefined;
53494
53613
  internally_connected_source_port_ids?: string[][] | undefined;
53495
53614
  }, {
@@ -53499,10 +53618,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53499
53618
  ftype: "simple_push_button";
53500
53619
  subcircuit_id?: string | undefined;
53501
53620
  source_group_id?: string | undefined;
53621
+ display_name?: string | undefined;
53502
53622
  manufacturer_part_number?: string | undefined;
53503
53623
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53504
53624
  display_value?: string | undefined;
53505
- display_name?: string | undefined;
53506
53625
  are_pins_interchangeable?: boolean | undefined;
53507
53626
  internally_connected_source_port_ids?: string[][] | undefined;
53508
53627
  }>, z.ZodObject<{
@@ -53529,10 +53648,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53529
53648
  max_resistance: number;
53530
53649
  subcircuit_id?: string | undefined;
53531
53650
  source_group_id?: string | undefined;
53651
+ display_name?: string | undefined;
53532
53652
  manufacturer_part_number?: string | undefined;
53533
53653
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53534
53654
  display_value?: string | undefined;
53535
- display_name?: string | undefined;
53536
53655
  are_pins_interchangeable?: boolean | undefined;
53537
53656
  internally_connected_source_port_ids?: string[][] | undefined;
53538
53657
  display_max_resistance?: string | undefined;
@@ -53544,10 +53663,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53544
53663
  max_resistance: string | number;
53545
53664
  subcircuit_id?: string | undefined;
53546
53665
  source_group_id?: string | undefined;
53666
+ display_name?: string | undefined;
53547
53667
  manufacturer_part_number?: string | undefined;
53548
53668
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53549
53669
  display_value?: string | undefined;
53550
- display_name?: string | undefined;
53551
53670
  are_pins_interchangeable?: boolean | undefined;
53552
53671
  internally_connected_source_port_ids?: string[][] | undefined;
53553
53672
  display_max_resistance?: string | undefined;
@@ -53576,10 +53695,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53576
53695
  ftype: "simple_crystal";
53577
53696
  subcircuit_id?: string | undefined;
53578
53697
  source_group_id?: string | undefined;
53698
+ display_name?: string | undefined;
53579
53699
  manufacturer_part_number?: string | undefined;
53580
53700
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53581
53701
  display_value?: string | undefined;
53582
- display_name?: string | undefined;
53583
53702
  are_pins_interchangeable?: boolean | undefined;
53584
53703
  internally_connected_source_port_ids?: string[][] | undefined;
53585
53704
  load_capacitance?: number | undefined;
@@ -53592,10 +53711,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53592
53711
  ftype: "simple_crystal";
53593
53712
  subcircuit_id?: string | undefined;
53594
53713
  source_group_id?: string | undefined;
53714
+ display_name?: string | undefined;
53595
53715
  manufacturer_part_number?: string | undefined;
53596
53716
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53597
53717
  display_value?: string | undefined;
53598
- display_name?: string | undefined;
53599
53718
  are_pins_interchangeable?: boolean | undefined;
53600
53719
  internally_connected_source_port_ids?: string[][] | undefined;
53601
53720
  load_capacitance?: number | undefined;
@@ -53625,10 +53744,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53625
53744
  gender: "male" | "female";
53626
53745
  subcircuit_id?: string | undefined;
53627
53746
  source_group_id?: string | undefined;
53747
+ display_name?: string | undefined;
53628
53748
  manufacturer_part_number?: string | undefined;
53629
53749
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53630
53750
  display_value?: string | undefined;
53631
- display_name?: string | undefined;
53632
53751
  are_pins_interchangeable?: boolean | undefined;
53633
53752
  internally_connected_source_port_ids?: string[][] | undefined;
53634
53753
  }, {
@@ -53639,10 +53758,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53639
53758
  pin_count: number;
53640
53759
  subcircuit_id?: string | undefined;
53641
53760
  source_group_id?: string | undefined;
53761
+ display_name?: string | undefined;
53642
53762
  manufacturer_part_number?: string | undefined;
53643
53763
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53644
53764
  display_value?: string | undefined;
53645
- display_name?: string | undefined;
53646
53765
  are_pins_interchangeable?: boolean | undefined;
53647
53766
  internally_connected_source_port_ids?: string[][] | undefined;
53648
53767
  gender?: "male" | "female" | undefined;
@@ -53668,10 +53787,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53668
53787
  ftype: "simple_connector";
53669
53788
  subcircuit_id?: string | undefined;
53670
53789
  source_group_id?: string | undefined;
53790
+ display_name?: string | undefined;
53671
53791
  manufacturer_part_number?: string | undefined;
53672
53792
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53673
53793
  display_value?: string | undefined;
53674
- display_name?: string | undefined;
53675
53794
  are_pins_interchangeable?: boolean | undefined;
53676
53795
  internally_connected_source_port_ids?: string[][] | undefined;
53677
53796
  standard?: "usb_c" | "m2" | undefined;
@@ -53682,10 +53801,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53682
53801
  ftype: "simple_connector";
53683
53802
  subcircuit_id?: string | undefined;
53684
53803
  source_group_id?: string | undefined;
53804
+ display_name?: string | undefined;
53685
53805
  manufacturer_part_number?: string | undefined;
53686
53806
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53687
53807
  display_value?: string | undefined;
53688
- display_name?: string | undefined;
53689
53808
  are_pins_interchangeable?: boolean | undefined;
53690
53809
  internally_connected_source_port_ids?: string[][] | undefined;
53691
53810
  standard?: "usb_c" | "m2" | undefined;
@@ -53710,10 +53829,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53710
53829
  ftype: "simple_pinout";
53711
53830
  subcircuit_id?: string | undefined;
53712
53831
  source_group_id?: string | undefined;
53832
+ display_name?: string | undefined;
53713
53833
  manufacturer_part_number?: string | undefined;
53714
53834
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53715
53835
  display_value?: string | undefined;
53716
- display_name?: string | undefined;
53717
53836
  are_pins_interchangeable?: boolean | undefined;
53718
53837
  internally_connected_source_port_ids?: string[][] | undefined;
53719
53838
  }, {
@@ -53723,10 +53842,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53723
53842
  ftype: "simple_pinout";
53724
53843
  subcircuit_id?: string | undefined;
53725
53844
  source_group_id?: string | undefined;
53845
+ display_name?: string | undefined;
53726
53846
  manufacturer_part_number?: string | undefined;
53727
53847
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53728
53848
  display_value?: string | undefined;
53729
- display_name?: string | undefined;
53730
53849
  are_pins_interchangeable?: boolean | undefined;
53731
53850
  internally_connected_source_port_ids?: string[][] | undefined;
53732
53851
  }>, z.ZodObject<{
@@ -53755,10 +53874,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53755
53874
  load_capacitance: number;
53756
53875
  subcircuit_id?: string | undefined;
53757
53876
  source_group_id?: string | undefined;
53877
+ display_name?: string | undefined;
53758
53878
  manufacturer_part_number?: string | undefined;
53759
53879
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53760
53880
  display_value?: string | undefined;
53761
- display_name?: string | undefined;
53762
53881
  are_pins_interchangeable?: boolean | undefined;
53763
53882
  internally_connected_source_port_ids?: string[][] | undefined;
53764
53883
  equivalent_series_resistance?: number | undefined;
@@ -53771,10 +53890,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53771
53890
  load_capacitance: string | number;
53772
53891
  subcircuit_id?: string | undefined;
53773
53892
  source_group_id?: string | undefined;
53893
+ display_name?: string | undefined;
53774
53894
  manufacturer_part_number?: string | undefined;
53775
53895
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53776
53896
  display_value?: string | undefined;
53777
- display_name?: string | undefined;
53778
53897
  are_pins_interchangeable?: boolean | undefined;
53779
53898
  internally_connected_source_port_ids?: string[][] | undefined;
53780
53899
  equivalent_series_resistance?: string | number | undefined;
@@ -53799,10 +53918,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53799
53918
  ftype: "simple_switch";
53800
53919
  subcircuit_id?: string | undefined;
53801
53920
  source_group_id?: string | undefined;
53921
+ display_name?: string | undefined;
53802
53922
  manufacturer_part_number?: string | undefined;
53803
53923
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53804
53924
  display_value?: string | undefined;
53805
- display_name?: string | undefined;
53806
53925
  are_pins_interchangeable?: boolean | undefined;
53807
53926
  internally_connected_source_port_ids?: string[][] | undefined;
53808
53927
  }, {
@@ -53812,10 +53931,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53812
53931
  ftype: "simple_switch";
53813
53932
  subcircuit_id?: string | undefined;
53814
53933
  source_group_id?: string | undefined;
53934
+ display_name?: string | undefined;
53815
53935
  manufacturer_part_number?: string | undefined;
53816
53936
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53817
53937
  display_value?: string | undefined;
53818
- display_name?: string | undefined;
53819
53938
  are_pins_interchangeable?: boolean | undefined;
53820
53939
  internally_connected_source_port_ids?: string[][] | undefined;
53821
53940
  }>, z.ZodObject<{
@@ -53841,10 +53960,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53841
53960
  transistor_type: "npn" | "pnp";
53842
53961
  subcircuit_id?: string | undefined;
53843
53962
  source_group_id?: string | undefined;
53963
+ display_name?: string | undefined;
53844
53964
  manufacturer_part_number?: string | undefined;
53845
53965
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53846
53966
  display_value?: string | undefined;
53847
- display_name?: string | undefined;
53848
53967
  are_pins_interchangeable?: boolean | undefined;
53849
53968
  internally_connected_source_port_ids?: string[][] | undefined;
53850
53969
  }, {
@@ -53855,10 +53974,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53855
53974
  transistor_type: "npn" | "pnp";
53856
53975
  subcircuit_id?: string | undefined;
53857
53976
  source_group_id?: string | undefined;
53977
+ display_name?: string | undefined;
53858
53978
  manufacturer_part_number?: string | undefined;
53859
53979
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53860
53980
  display_value?: string | undefined;
53861
- display_name?: string | undefined;
53862
53981
  are_pins_interchangeable?: boolean | undefined;
53863
53982
  internally_connected_source_port_ids?: string[][] | undefined;
53864
53983
  }>, z.ZodObject<{
@@ -53892,10 +54011,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53892
54011
  hole_diameter?: string | number | undefined;
53893
54012
  pad_shape?: "circle" | "rect" | undefined;
53894
54013
  source_group_id?: string | undefined;
54014
+ display_name?: string | undefined;
53895
54015
  manufacturer_part_number?: string | undefined;
53896
54016
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53897
54017
  display_value?: string | undefined;
53898
- display_name?: string | undefined;
53899
54018
  are_pins_interchangeable?: boolean | undefined;
53900
54019
  internally_connected_source_port_ids?: string[][] | undefined;
53901
54020
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -53911,10 +54030,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53911
54030
  hole_diameter?: string | number | undefined;
53912
54031
  pad_shape?: "circle" | "rect" | undefined;
53913
54032
  source_group_id?: string | undefined;
54033
+ display_name?: string | undefined;
53914
54034
  manufacturer_part_number?: string | undefined;
53915
54035
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53916
54036
  display_value?: string | undefined;
53917
- display_name?: string | undefined;
53918
54037
  are_pins_interchangeable?: boolean | undefined;
53919
54038
  internally_connected_source_port_ids?: string[][] | undefined;
53920
54039
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -53944,10 +54063,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53944
54063
  mosfet_mode: "enhancement" | "depletion";
53945
54064
  subcircuit_id?: string | undefined;
53946
54065
  source_group_id?: string | undefined;
54066
+ display_name?: string | undefined;
53947
54067
  manufacturer_part_number?: string | undefined;
53948
54068
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53949
54069
  display_value?: string | undefined;
53950
- display_name?: string | undefined;
53951
54070
  are_pins_interchangeable?: boolean | undefined;
53952
54071
  internally_connected_source_port_ids?: string[][] | undefined;
53953
54072
  }, {
@@ -53959,10 +54078,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53959
54078
  mosfet_mode: "enhancement" | "depletion";
53960
54079
  subcircuit_id?: string | undefined;
53961
54080
  source_group_id?: string | undefined;
54081
+ display_name?: string | undefined;
53962
54082
  manufacturer_part_number?: string | undefined;
53963
54083
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53964
54084
  display_value?: string | undefined;
53965
- display_name?: string | undefined;
53966
54085
  are_pins_interchangeable?: boolean | undefined;
53967
54086
  internally_connected_source_port_ids?: string[][] | undefined;
53968
54087
  }>, z.ZodObject<{
@@ -53986,10 +54105,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53986
54105
  ftype: "simple_op_amp";
53987
54106
  subcircuit_id?: string | undefined;
53988
54107
  source_group_id?: string | undefined;
54108
+ display_name?: string | undefined;
53989
54109
  manufacturer_part_number?: string | undefined;
53990
54110
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53991
54111
  display_value?: string | undefined;
53992
- display_name?: string | undefined;
53993
54112
  are_pins_interchangeable?: boolean | undefined;
53994
54113
  internally_connected_source_port_ids?: string[][] | undefined;
53995
54114
  }, {
@@ -53999,10 +54118,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53999
54118
  ftype: "simple_op_amp";
54000
54119
  subcircuit_id?: string | undefined;
54001
54120
  source_group_id?: string | undefined;
54121
+ display_name?: string | undefined;
54002
54122
  manufacturer_part_number?: string | undefined;
54003
54123
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54004
54124
  display_value?: string | undefined;
54005
- display_name?: string | undefined;
54006
54125
  are_pins_interchangeable?: boolean | undefined;
54007
54126
  internally_connected_source_port_ids?: string[][] | undefined;
54008
54127
  }>, z.ZodObject<{
@@ -54030,10 +54149,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54030
54149
  voltage_rating_volts: number;
54031
54150
  subcircuit_id?: string | undefined;
54032
54151
  source_group_id?: string | undefined;
54152
+ display_name?: string | undefined;
54033
54153
  manufacturer_part_number?: string | undefined;
54034
54154
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54035
54155
  display_value?: string | undefined;
54036
- display_name?: string | undefined;
54037
54156
  are_pins_interchangeable?: boolean | undefined;
54038
54157
  internally_connected_source_port_ids?: string[][] | undefined;
54039
54158
  }, {
@@ -54045,10 +54164,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54045
54164
  voltage_rating_volts: number;
54046
54165
  subcircuit_id?: string | undefined;
54047
54166
  source_group_id?: string | undefined;
54167
+ display_name?: string | undefined;
54048
54168
  manufacturer_part_number?: string | undefined;
54049
54169
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54050
54170
  display_value?: string | undefined;
54051
- display_name?: string | undefined;
54052
54171
  are_pins_interchangeable?: boolean | undefined;
54053
54172
  internally_connected_source_port_ids?: string[][] | undefined;
54054
54173
  }>, z.ZodObject<{
@@ -54072,10 +54191,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54072
54191
  ftype: "simple_voltage_probe";
54073
54192
  subcircuit_id?: string | undefined;
54074
54193
  source_group_id?: string | undefined;
54194
+ display_name?: string | undefined;
54075
54195
  manufacturer_part_number?: string | undefined;
54076
54196
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54077
54197
  display_value?: string | undefined;
54078
- display_name?: string | undefined;
54079
54198
  are_pins_interchangeable?: boolean | undefined;
54080
54199
  internally_connected_source_port_ids?: string[][] | undefined;
54081
54200
  }, {
@@ -54085,10 +54204,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54085
54204
  ftype: "simple_voltage_probe";
54086
54205
  subcircuit_id?: string | undefined;
54087
54206
  source_group_id?: string | undefined;
54207
+ display_name?: string | undefined;
54088
54208
  manufacturer_part_number?: string | undefined;
54089
54209
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54090
54210
  display_value?: string | undefined;
54091
- display_name?: string | undefined;
54092
54211
  are_pins_interchangeable?: boolean | undefined;
54093
54212
  internally_connected_source_port_ids?: string[][] | undefined;
54094
54213
  }>, z.ZodObject<{
@@ -54112,10 +54231,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54112
54231
  ftype: "interconnect";
54113
54232
  subcircuit_id?: string | undefined;
54114
54233
  source_group_id?: string | undefined;
54234
+ display_name?: string | undefined;
54115
54235
  manufacturer_part_number?: string | undefined;
54116
54236
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54117
54237
  display_value?: string | undefined;
54118
- display_name?: string | undefined;
54119
54238
  are_pins_interchangeable?: boolean | undefined;
54120
54239
  internally_connected_source_port_ids?: string[][] | undefined;
54121
54240
  }, {
@@ -54125,10 +54244,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54125
54244
  ftype: "interconnect";
54126
54245
  subcircuit_id?: string | undefined;
54127
54246
  source_group_id?: string | undefined;
54247
+ display_name?: string | undefined;
54128
54248
  manufacturer_part_number?: string | undefined;
54129
54249
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54130
54250
  display_value?: string | undefined;
54131
- display_name?: string | undefined;
54132
54251
  are_pins_interchangeable?: boolean | undefined;
54133
54252
  internally_connected_source_port_ids?: string[][] | undefined;
54134
54253
  }>, z.ZodObject<{
@@ -54174,10 +54293,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54174
54293
  fall_time?: number | undefined;
54175
54294
  pulse_width?: number | undefined;
54176
54295
  period?: number | undefined;
54296
+ display_name?: string | undefined;
54177
54297
  manufacturer_part_number?: string | undefined;
54178
54298
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54179
54299
  display_value?: string | undefined;
54180
- display_name?: string | undefined;
54181
54300
  are_pins_interchangeable?: boolean | undefined;
54182
54301
  internally_connected_source_port_ids?: string[][] | undefined;
54183
54302
  }, {
@@ -54198,10 +54317,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54198
54317
  fall_time?: string | number | undefined;
54199
54318
  pulse_width?: string | number | undefined;
54200
54319
  period?: string | number | undefined;
54320
+ display_name?: string | undefined;
54201
54321
  manufacturer_part_number?: string | undefined;
54202
54322
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54203
54323
  display_value?: string | undefined;
54204
- display_name?: string | undefined;
54205
54324
  are_pins_interchangeable?: boolean | undefined;
54206
54325
  internally_connected_source_port_ids?: string[][] | undefined;
54207
54326
  }>, z.ZodObject<{
@@ -54591,10 +54710,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54591
54710
  ftype: "simple_chip";
54592
54711
  subcircuit_id?: string | undefined;
54593
54712
  source_group_id?: string | undefined;
54713
+ display_name?: string | undefined;
54594
54714
  manufacturer_part_number?: string | undefined;
54595
54715
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54596
54716
  display_value?: string | undefined;
54597
- display_name?: string | undefined;
54598
54717
  are_pins_interchangeable?: boolean | undefined;
54599
54718
  internally_connected_source_port_ids?: string[][] | undefined;
54600
54719
  }, {
@@ -54604,10 +54723,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54604
54723
  ftype: "simple_chip";
54605
54724
  subcircuit_id?: string | undefined;
54606
54725
  source_group_id?: string | undefined;
54726
+ display_name?: string | undefined;
54607
54727
  manufacturer_part_number?: string | undefined;
54608
54728
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54609
54729
  display_value?: string | undefined;
54610
- display_name?: string | undefined;
54611
54730
  are_pins_interchangeable?: boolean | undefined;
54612
54731
  internally_connected_source_port_ids?: string[][] | undefined;
54613
54732
  }>, z.ZodObject<{
@@ -54636,10 +54755,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54636
54755
  capacitance: number;
54637
54756
  subcircuit_id?: string | undefined;
54638
54757
  source_group_id?: string | undefined;
54758
+ display_name?: string | undefined;
54639
54759
  manufacturer_part_number?: string | undefined;
54640
54760
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54641
54761
  display_value?: string | undefined;
54642
- display_name?: string | undefined;
54643
54762
  are_pins_interchangeable?: boolean | undefined;
54644
54763
  internally_connected_source_port_ids?: string[][] | undefined;
54645
54764
  max_voltage_rating?: number | undefined;
@@ -54653,10 +54772,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54653
54772
  capacitance: string | number;
54654
54773
  subcircuit_id?: string | undefined;
54655
54774
  source_group_id?: string | undefined;
54775
+ display_name?: string | undefined;
54656
54776
  manufacturer_part_number?: string | undefined;
54657
54777
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54658
54778
  display_value?: string | undefined;
54659
- display_name?: string | undefined;
54660
54779
  are_pins_interchangeable?: boolean | undefined;
54661
54780
  internally_connected_source_port_ids?: string[][] | undefined;
54662
54781
  max_voltage_rating?: string | number | undefined;
@@ -54683,10 +54802,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54683
54802
  ftype: "simple_diode";
54684
54803
  subcircuit_id?: string | undefined;
54685
54804
  source_group_id?: string | undefined;
54805
+ display_name?: string | undefined;
54686
54806
  manufacturer_part_number?: string | undefined;
54687
54807
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54688
54808
  display_value?: string | undefined;
54689
- display_name?: string | undefined;
54690
54809
  are_pins_interchangeable?: boolean | undefined;
54691
54810
  internally_connected_source_port_ids?: string[][] | undefined;
54692
54811
  }, {
@@ -54696,10 +54815,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54696
54815
  ftype: "simple_diode";
54697
54816
  subcircuit_id?: string | undefined;
54698
54817
  source_group_id?: string | undefined;
54818
+ display_name?: string | undefined;
54699
54819
  manufacturer_part_number?: string | undefined;
54700
54820
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54701
54821
  display_value?: string | undefined;
54702
- display_name?: string | undefined;
54703
54822
  are_pins_interchangeable?: boolean | undefined;
54704
54823
  internally_connected_source_port_ids?: string[][] | undefined;
54705
54824
  }>, z.ZodObject<{
@@ -54726,10 +54845,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54726
54845
  subcircuit_id?: string | undefined;
54727
54846
  color?: string | undefined;
54728
54847
  source_group_id?: string | undefined;
54848
+ display_name?: string | undefined;
54729
54849
  manufacturer_part_number?: string | undefined;
54730
54850
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54731
54851
  display_value?: string | undefined;
54732
- display_name?: string | undefined;
54733
54852
  are_pins_interchangeable?: boolean | undefined;
54734
54853
  internally_connected_source_port_ids?: string[][] | undefined;
54735
54854
  wavelength?: string | undefined;
@@ -54741,10 +54860,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54741
54860
  subcircuit_id?: string | undefined;
54742
54861
  color?: string | undefined;
54743
54862
  source_group_id?: string | undefined;
54863
+ display_name?: string | undefined;
54744
54864
  manufacturer_part_number?: string | undefined;
54745
54865
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54746
54866
  display_value?: string | undefined;
54747
- display_name?: string | undefined;
54748
54867
  are_pins_interchangeable?: boolean | undefined;
54749
54868
  internally_connected_source_port_ids?: string[][] | undefined;
54750
54869
  wavelength?: string | undefined;
@@ -54772,10 +54891,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54772
54891
  resistance: number;
54773
54892
  subcircuit_id?: string | undefined;
54774
54893
  source_group_id?: string | undefined;
54894
+ display_name?: string | undefined;
54775
54895
  manufacturer_part_number?: string | undefined;
54776
54896
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54777
54897
  display_value?: string | undefined;
54778
- display_name?: string | undefined;
54779
54898
  are_pins_interchangeable?: boolean | undefined;
54780
54899
  internally_connected_source_port_ids?: string[][] | undefined;
54781
54900
  display_resistance?: string | undefined;
@@ -54787,10 +54906,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54787
54906
  resistance: string | number;
54788
54907
  subcircuit_id?: string | undefined;
54789
54908
  source_group_id?: string | undefined;
54909
+ display_name?: string | undefined;
54790
54910
  manufacturer_part_number?: string | undefined;
54791
54911
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54792
54912
  display_value?: string | undefined;
54793
- display_name?: string | undefined;
54794
54913
  are_pins_interchangeable?: boolean | undefined;
54795
54914
  internally_connected_source_port_ids?: string[][] | undefined;
54796
54915
  display_resistance?: string | undefined;
@@ -54817,10 +54936,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54817
54936
  ftype: "simple_power_source";
54818
54937
  subcircuit_id?: string | undefined;
54819
54938
  source_group_id?: string | undefined;
54939
+ display_name?: string | undefined;
54820
54940
  manufacturer_part_number?: string | undefined;
54821
54941
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54822
54942
  display_value?: string | undefined;
54823
- display_name?: string | undefined;
54824
54943
  are_pins_interchangeable?: boolean | undefined;
54825
54944
  internally_connected_source_port_ids?: string[][] | undefined;
54826
54945
  }, {
@@ -54831,10 +54950,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54831
54950
  ftype: "simple_power_source";
54832
54951
  subcircuit_id?: string | undefined;
54833
54952
  source_group_id?: string | undefined;
54953
+ display_name?: string | undefined;
54834
54954
  manufacturer_part_number?: string | undefined;
54835
54955
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54836
54956
  display_value?: string | undefined;
54837
- display_name?: string | undefined;
54838
54957
  are_pins_interchangeable?: boolean | undefined;
54839
54958
  internally_connected_source_port_ids?: string[][] | undefined;
54840
54959
  }>, z.ZodObject<{
@@ -54860,10 +54979,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54860
54979
  capacity: number;
54861
54980
  subcircuit_id?: string | undefined;
54862
54981
  source_group_id?: string | undefined;
54982
+ display_name?: string | undefined;
54863
54983
  manufacturer_part_number?: string | undefined;
54864
54984
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54865
54985
  display_value?: string | undefined;
54866
- display_name?: string | undefined;
54867
54986
  are_pins_interchangeable?: boolean | undefined;
54868
54987
  internally_connected_source_port_ids?: string[][] | undefined;
54869
54988
  }, {
@@ -54874,10 +54993,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54874
54993
  capacity: string | number;
54875
54994
  subcircuit_id?: string | undefined;
54876
54995
  source_group_id?: string | undefined;
54996
+ display_name?: string | undefined;
54877
54997
  manufacturer_part_number?: string | undefined;
54878
54998
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54879
54999
  display_value?: string | undefined;
54880
- display_name?: string | undefined;
54881
55000
  are_pins_interchangeable?: boolean | undefined;
54882
55001
  internally_connected_source_port_ids?: string[][] | undefined;
54883
55002
  }>, z.ZodObject<{
@@ -54905,10 +55024,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54905
55024
  inductance: number;
54906
55025
  subcircuit_id?: string | undefined;
54907
55026
  source_group_id?: string | undefined;
55027
+ display_name?: string | undefined;
54908
55028
  manufacturer_part_number?: string | undefined;
54909
55029
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54910
55030
  display_value?: string | undefined;
54911
- display_name?: string | undefined;
54912
55031
  are_pins_interchangeable?: boolean | undefined;
54913
55032
  internally_connected_source_port_ids?: string[][] | undefined;
54914
55033
  display_inductance?: string | undefined;
@@ -54921,10 +55040,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54921
55040
  inductance: string | number;
54922
55041
  subcircuit_id?: string | undefined;
54923
55042
  source_group_id?: string | undefined;
55043
+ display_name?: string | undefined;
54924
55044
  manufacturer_part_number?: string | undefined;
54925
55045
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54926
55046
  display_value?: string | undefined;
54927
- display_name?: string | undefined;
54928
55047
  are_pins_interchangeable?: boolean | undefined;
54929
55048
  internally_connected_source_port_ids?: string[][] | undefined;
54930
55049
  display_inductance?: string | undefined;
@@ -54954,10 +55073,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54954
55073
  gender: "male" | "female";
54955
55074
  subcircuit_id?: string | undefined;
54956
55075
  source_group_id?: string | undefined;
55076
+ display_name?: string | undefined;
54957
55077
  manufacturer_part_number?: string | undefined;
54958
55078
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54959
55079
  display_value?: string | undefined;
54960
- display_name?: string | undefined;
54961
55080
  are_pins_interchangeable?: boolean | undefined;
54962
55081
  internally_connected_source_port_ids?: string[][] | undefined;
54963
55082
  }, {
@@ -54968,10 +55087,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54968
55087
  pin_count: number;
54969
55088
  subcircuit_id?: string | undefined;
54970
55089
  source_group_id?: string | undefined;
55090
+ display_name?: string | undefined;
54971
55091
  manufacturer_part_number?: string | undefined;
54972
55092
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54973
55093
  display_value?: string | undefined;
54974
- display_name?: string | undefined;
54975
55094
  are_pins_interchangeable?: boolean | undefined;
54976
55095
  internally_connected_source_port_ids?: string[][] | undefined;
54977
55096
  gender?: "male" | "female" | undefined;
@@ -54996,10 +55115,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54996
55115
  ftype: "simple_pinout";
54997
55116
  subcircuit_id?: string | undefined;
54998
55117
  source_group_id?: string | undefined;
55118
+ display_name?: string | undefined;
54999
55119
  manufacturer_part_number?: string | undefined;
55000
55120
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55001
55121
  display_value?: string | undefined;
55002
- display_name?: string | undefined;
55003
55122
  are_pins_interchangeable?: boolean | undefined;
55004
55123
  internally_connected_source_port_ids?: string[][] | undefined;
55005
55124
  }, {
@@ -55009,10 +55128,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55009
55128
  ftype: "simple_pinout";
55010
55129
  subcircuit_id?: string | undefined;
55011
55130
  source_group_id?: string | undefined;
55131
+ display_name?: string | undefined;
55012
55132
  manufacturer_part_number?: string | undefined;
55013
55133
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55014
55134
  display_value?: string | undefined;
55015
- display_name?: string | undefined;
55016
55135
  are_pins_interchangeable?: boolean | undefined;
55017
55136
  internally_connected_source_port_ids?: string[][] | undefined;
55018
55137
  }>, z.ZodObject<{
@@ -55041,10 +55160,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55041
55160
  load_capacitance: number;
55042
55161
  subcircuit_id?: string | undefined;
55043
55162
  source_group_id?: string | undefined;
55163
+ display_name?: string | undefined;
55044
55164
  manufacturer_part_number?: string | undefined;
55045
55165
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55046
55166
  display_value?: string | undefined;
55047
- display_name?: string | undefined;
55048
55167
  are_pins_interchangeable?: boolean | undefined;
55049
55168
  internally_connected_source_port_ids?: string[][] | undefined;
55050
55169
  equivalent_series_resistance?: number | undefined;
@@ -55057,10 +55176,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55057
55176
  load_capacitance: string | number;
55058
55177
  subcircuit_id?: string | undefined;
55059
55178
  source_group_id?: string | undefined;
55179
+ display_name?: string | undefined;
55060
55180
  manufacturer_part_number?: string | undefined;
55061
55181
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55062
55182
  display_value?: string | undefined;
55063
- display_name?: string | undefined;
55064
55183
  are_pins_interchangeable?: boolean | undefined;
55065
55184
  internally_connected_source_port_ids?: string[][] | undefined;
55066
55185
  equivalent_series_resistance?: string | number | undefined;
@@ -55085,10 +55204,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55085
55204
  ftype: "simple_switch";
55086
55205
  subcircuit_id?: string | undefined;
55087
55206
  source_group_id?: string | undefined;
55207
+ display_name?: string | undefined;
55088
55208
  manufacturer_part_number?: string | undefined;
55089
55209
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55090
55210
  display_value?: string | undefined;
55091
- display_name?: string | undefined;
55092
55211
  are_pins_interchangeable?: boolean | undefined;
55093
55212
  internally_connected_source_port_ids?: string[][] | undefined;
55094
55213
  }, {
@@ -55098,10 +55217,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55098
55217
  ftype: "simple_switch";
55099
55218
  subcircuit_id?: string | undefined;
55100
55219
  source_group_id?: string | undefined;
55220
+ display_name?: string | undefined;
55101
55221
  manufacturer_part_number?: string | undefined;
55102
55222
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55103
55223
  display_value?: string | undefined;
55104
- display_name?: string | undefined;
55105
55224
  are_pins_interchangeable?: boolean | undefined;
55106
55225
  internally_connected_source_port_ids?: string[][] | undefined;
55107
55226
  }>, z.ZodObject<{
@@ -55127,10 +55246,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55127
55246
  transistor_type: "npn" | "pnp";
55128
55247
  subcircuit_id?: string | undefined;
55129
55248
  source_group_id?: string | undefined;
55249
+ display_name?: string | undefined;
55130
55250
  manufacturer_part_number?: string | undefined;
55131
55251
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55132
55252
  display_value?: string | undefined;
55133
- display_name?: string | undefined;
55134
55253
  are_pins_interchangeable?: boolean | undefined;
55135
55254
  internally_connected_source_port_ids?: string[][] | undefined;
55136
55255
  }, {
@@ -55141,10 +55260,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55141
55260
  transistor_type: "npn" | "pnp";
55142
55261
  subcircuit_id?: string | undefined;
55143
55262
  source_group_id?: string | undefined;
55263
+ display_name?: string | undefined;
55144
55264
  manufacturer_part_number?: string | undefined;
55145
55265
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55146
55266
  display_value?: string | undefined;
55147
- display_name?: string | undefined;
55148
55267
  are_pins_interchangeable?: boolean | undefined;
55149
55268
  internally_connected_source_port_ids?: string[][] | undefined;
55150
55269
  }>, z.ZodObject<{
@@ -55178,10 +55297,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55178
55297
  hole_diameter?: string | number | undefined;
55179
55298
  pad_shape?: "circle" | "rect" | undefined;
55180
55299
  source_group_id?: string | undefined;
55300
+ display_name?: string | undefined;
55181
55301
  manufacturer_part_number?: string | undefined;
55182
55302
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55183
55303
  display_value?: string | undefined;
55184
- display_name?: string | undefined;
55185
55304
  are_pins_interchangeable?: boolean | undefined;
55186
55305
  internally_connected_source_port_ids?: string[][] | undefined;
55187
55306
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -55197,10 +55316,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55197
55316
  hole_diameter?: string | number | undefined;
55198
55317
  pad_shape?: "circle" | "rect" | undefined;
55199
55318
  source_group_id?: string | undefined;
55319
+ display_name?: string | undefined;
55200
55320
  manufacturer_part_number?: string | undefined;
55201
55321
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55202
55322
  display_value?: string | undefined;
55203
- display_name?: string | undefined;
55204
55323
  are_pins_interchangeable?: boolean | undefined;
55205
55324
  internally_connected_source_port_ids?: string[][] | undefined;
55206
55325
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -55230,10 +55349,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55230
55349
  mosfet_mode: "enhancement" | "depletion";
55231
55350
  subcircuit_id?: string | undefined;
55232
55351
  source_group_id?: string | undefined;
55352
+ display_name?: string | undefined;
55233
55353
  manufacturer_part_number?: string | undefined;
55234
55354
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55235
55355
  display_value?: string | undefined;
55236
- display_name?: string | undefined;
55237
55356
  are_pins_interchangeable?: boolean | undefined;
55238
55357
  internally_connected_source_port_ids?: string[][] | undefined;
55239
55358
  }, {
@@ -55245,10 +55364,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55245
55364
  mosfet_mode: "enhancement" | "depletion";
55246
55365
  subcircuit_id?: string | undefined;
55247
55366
  source_group_id?: string | undefined;
55367
+ display_name?: string | undefined;
55248
55368
  manufacturer_part_number?: string | undefined;
55249
55369
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55250
55370
  display_value?: string | undefined;
55251
- display_name?: string | undefined;
55252
55371
  are_pins_interchangeable?: boolean | undefined;
55253
55372
  internally_connected_source_port_ids?: string[][] | undefined;
55254
55373
  }>, z.ZodObject<{
@@ -55272,10 +55391,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55272
55391
  ftype: "simple_op_amp";
55273
55392
  subcircuit_id?: string | undefined;
55274
55393
  source_group_id?: string | undefined;
55394
+ display_name?: string | undefined;
55275
55395
  manufacturer_part_number?: string | undefined;
55276
55396
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55277
55397
  display_value?: string | undefined;
55278
- display_name?: string | undefined;
55279
55398
  are_pins_interchangeable?: boolean | undefined;
55280
55399
  internally_connected_source_port_ids?: string[][] | undefined;
55281
55400
  }, {
@@ -55285,10 +55404,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55285
55404
  ftype: "simple_op_amp";
55286
55405
  subcircuit_id?: string | undefined;
55287
55406
  source_group_id?: string | undefined;
55407
+ display_name?: string | undefined;
55288
55408
  manufacturer_part_number?: string | undefined;
55289
55409
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55290
55410
  display_value?: string | undefined;
55291
- display_name?: string | undefined;
55292
55411
  are_pins_interchangeable?: boolean | undefined;
55293
55412
  internally_connected_source_port_ids?: string[][] | undefined;
55294
55413
  }>, z.ZodObject<{
@@ -55315,10 +55434,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55315
55434
  max_resistance: number;
55316
55435
  subcircuit_id?: string | undefined;
55317
55436
  source_group_id?: string | undefined;
55437
+ display_name?: string | undefined;
55318
55438
  manufacturer_part_number?: string | undefined;
55319
55439
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55320
55440
  display_value?: string | undefined;
55321
- display_name?: string | undefined;
55322
55441
  are_pins_interchangeable?: boolean | undefined;
55323
55442
  internally_connected_source_port_ids?: string[][] | undefined;
55324
55443
  display_max_resistance?: string | undefined;
@@ -55330,10 +55449,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55330
55449
  max_resistance: string | number;
55331
55450
  subcircuit_id?: string | undefined;
55332
55451
  source_group_id?: string | undefined;
55452
+ display_name?: string | undefined;
55333
55453
  manufacturer_part_number?: string | undefined;
55334
55454
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55335
55455
  display_value?: string | undefined;
55336
- display_name?: string | undefined;
55337
55456
  are_pins_interchangeable?: boolean | undefined;
55338
55457
  internally_connected_source_port_ids?: string[][] | undefined;
55339
55458
  display_max_resistance?: string | undefined;
@@ -55358,10 +55477,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55358
55477
  ftype: "simple_push_button";
55359
55478
  subcircuit_id?: string | undefined;
55360
55479
  source_group_id?: string | undefined;
55480
+ display_name?: string | undefined;
55361
55481
  manufacturer_part_number?: string | undefined;
55362
55482
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55363
55483
  display_value?: string | undefined;
55364
- display_name?: string | undefined;
55365
55484
  are_pins_interchangeable?: boolean | undefined;
55366
55485
  internally_connected_source_port_ids?: string[][] | undefined;
55367
55486
  }, {
@@ -55371,10 +55490,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55371
55490
  ftype: "simple_push_button";
55372
55491
  subcircuit_id?: string | undefined;
55373
55492
  source_group_id?: string | undefined;
55493
+ display_name?: string | undefined;
55374
55494
  manufacturer_part_number?: string | undefined;
55375
55495
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55376
55496
  display_value?: string | undefined;
55377
- display_name?: string | undefined;
55378
55497
  are_pins_interchangeable?: boolean | undefined;
55379
55498
  internally_connected_source_port_ids?: string[][] | undefined;
55380
55499
  }>, z.ZodObject<{
@@ -71309,22 +71428,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71309
71428
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
71310
71429
  subcircuit_id: z.ZodOptional<z.ZodString>;
71311
71430
  color: z.ZodOptional<z.ZodString>;
71312
- display_options: z.ZodOptional<z.ZodObject<{
71313
- label: z.ZodOptional<z.ZodString>;
71314
- center: z.ZodOptional<z.ZodNumber>;
71315
- offset_divs: z.ZodOptional<z.ZodNumber>;
71316
- units_per_div: z.ZodOptional<z.ZodNumber>;
71317
- }, "strip", z.ZodTypeAny, {
71318
- center?: number | undefined;
71319
- label?: string | undefined;
71320
- offset_divs?: number | undefined;
71321
- units_per_div?: number | undefined;
71322
- }, {
71323
- center?: number | undefined;
71324
- label?: string | undefined;
71325
- offset_divs?: number | undefined;
71326
- units_per_div?: number | undefined;
71327
- }>>;
71328
71431
  }, "strip", z.ZodTypeAny, {
71329
71432
  type: "simulation_voltage_probe";
71330
71433
  simulation_voltage_probe_id: string;
@@ -71336,12 +71439,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71336
71439
  signal_input_source_net_id?: string | undefined;
71337
71440
  reference_input_source_port_id?: string | undefined;
71338
71441
  reference_input_source_net_id?: string | undefined;
71339
- display_options?: {
71340
- center?: number | undefined;
71341
- label?: string | undefined;
71342
- offset_divs?: number | undefined;
71343
- units_per_div?: number | undefined;
71344
- } | undefined;
71345
71442
  }, {
71346
71443
  type: "simulation_voltage_probe";
71347
71444
  name?: string | undefined;
@@ -71353,12 +71450,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71353
71450
  signal_input_source_net_id?: string | undefined;
71354
71451
  reference_input_source_port_id?: string | undefined;
71355
71452
  reference_input_source_net_id?: string | undefined;
71356
- display_options?: {
71357
- center?: number | undefined;
71358
- label?: string | undefined;
71359
- offset_divs?: number | undefined;
71360
- units_per_div?: number | undefined;
71361
- } | undefined;
71362
71453
  }>, {
71363
71454
  type: "simulation_voltage_probe";
71364
71455
  simulation_voltage_probe_id: string;
@@ -71370,12 +71461,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71370
71461
  signal_input_source_net_id?: string | undefined;
71371
71462
  reference_input_source_port_id?: string | undefined;
71372
71463
  reference_input_source_net_id?: string | undefined;
71373
- display_options?: {
71374
- center?: number | undefined;
71375
- label?: string | undefined;
71376
- offset_divs?: number | undefined;
71377
- units_per_div?: number | undefined;
71378
- } | undefined;
71379
71464
  }, {
71380
71465
  type: "simulation_voltage_probe";
71381
71466
  name?: string | undefined;
@@ -71387,12 +71472,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71387
71472
  signal_input_source_net_id?: string | undefined;
71388
71473
  reference_input_source_port_id?: string | undefined;
71389
71474
  reference_input_source_net_id?: string | undefined;
71390
- display_options?: {
71391
- center?: number | undefined;
71392
- label?: string | undefined;
71393
- offset_divs?: number | undefined;
71394
- units_per_div?: number | undefined;
71395
- } | undefined;
71396
71475
  }>, z.ZodEffects<z.ZodObject<{
71397
71476
  type: z.ZodLiteral<"simulation_current_probe">;
71398
71477
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -71404,22 +71483,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71404
71483
  negative_source_net_id: z.ZodOptional<z.ZodString>;
71405
71484
  subcircuit_id: z.ZodOptional<z.ZodString>;
71406
71485
  color: z.ZodOptional<z.ZodString>;
71407
- display_options: z.ZodOptional<z.ZodObject<{
71408
- label: z.ZodOptional<z.ZodString>;
71409
- center: z.ZodOptional<z.ZodNumber>;
71410
- offset_divs: z.ZodOptional<z.ZodNumber>;
71411
- units_per_div: z.ZodOptional<z.ZodNumber>;
71412
- }, "strip", z.ZodTypeAny, {
71413
- center?: number | undefined;
71414
- label?: string | undefined;
71415
- offset_divs?: number | undefined;
71416
- units_per_div?: number | undefined;
71417
- }, {
71418
- center?: number | undefined;
71419
- label?: string | undefined;
71420
- offset_divs?: number | undefined;
71421
- units_per_div?: number | undefined;
71422
- }>>;
71423
71486
  }, "strip", z.ZodTypeAny, {
71424
71487
  type: "simulation_current_probe";
71425
71488
  simulation_current_probe_id: string;
@@ -71431,12 +71494,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71431
71494
  negative_source_port_id?: string | undefined;
71432
71495
  positive_source_net_id?: string | undefined;
71433
71496
  negative_source_net_id?: string | undefined;
71434
- display_options?: {
71435
- center?: number | undefined;
71436
- label?: string | undefined;
71437
- offset_divs?: number | undefined;
71438
- units_per_div?: number | undefined;
71439
- } | undefined;
71440
71497
  }, {
71441
71498
  type: "simulation_current_probe";
71442
71499
  name?: string | undefined;
@@ -71447,12 +71504,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71447
71504
  negative_source_port_id?: string | undefined;
71448
71505
  positive_source_net_id?: string | undefined;
71449
71506
  negative_source_net_id?: string | undefined;
71450
- display_options?: {
71451
- center?: number | undefined;
71452
- label?: string | undefined;
71453
- offset_divs?: number | undefined;
71454
- units_per_div?: number | undefined;
71455
- } | undefined;
71456
71507
  simulation_current_probe_id?: string | undefined;
71457
71508
  }>, {
71458
71509
  type: "simulation_current_probe";
@@ -71465,12 +71516,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71465
71516
  negative_source_port_id?: string | undefined;
71466
71517
  positive_source_net_id?: string | undefined;
71467
71518
  negative_source_net_id?: string | undefined;
71468
- display_options?: {
71469
- center?: number | undefined;
71470
- label?: string | undefined;
71471
- offset_divs?: number | undefined;
71472
- units_per_div?: number | undefined;
71473
- } | undefined;
71474
71519
  }, {
71475
71520
  type: "simulation_current_probe";
71476
71521
  name?: string | undefined;
@@ -71481,13 +71526,72 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71481
71526
  negative_source_port_id?: string | undefined;
71482
71527
  positive_source_net_id?: string | undefined;
71483
71528
  negative_source_net_id?: string | undefined;
71484
- display_options?: {
71485
- center?: number | undefined;
71486
- label?: string | undefined;
71487
- offset_divs?: number | undefined;
71488
- units_per_div?: number | undefined;
71489
- } | undefined;
71490
71529
  simulation_current_probe_id?: string | undefined;
71530
+ }>, z.ZodEffects<z.ZodObject<{
71531
+ type: z.ZodLiteral<"simulation_oscilloscope_trace">;
71532
+ simulation_oscilloscope_trace_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
71533
+ simulation_transient_voltage_graph_id: z.ZodOptional<z.ZodString>;
71534
+ simulation_transient_current_graph_id: z.ZodOptional<z.ZodString>;
71535
+ simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
71536
+ simulation_current_probe_id: z.ZodOptional<z.ZodString>;
71537
+ display_name: z.ZodOptional<z.ZodString>;
71538
+ color: z.ZodOptional<z.ZodString>;
71539
+ display_center_value: z.ZodOptional<z.ZodNumber>;
71540
+ display_center_offset_divs: z.ZodOptional<z.ZodNumber>;
71541
+ volts_per_div: z.ZodOptional<z.ZodNumber>;
71542
+ amps_per_div: z.ZodOptional<z.ZodNumber>;
71543
+ }, "strip", z.ZodTypeAny, {
71544
+ type: "simulation_oscilloscope_trace";
71545
+ simulation_oscilloscope_trace_id: string;
71546
+ color?: string | undefined;
71547
+ simulation_transient_voltage_graph_id?: string | undefined;
71548
+ simulation_transient_current_graph_id?: string | undefined;
71549
+ simulation_voltage_probe_id?: string | undefined;
71550
+ simulation_current_probe_id?: string | undefined;
71551
+ display_name?: string | undefined;
71552
+ display_center_value?: number | undefined;
71553
+ display_center_offset_divs?: number | undefined;
71554
+ volts_per_div?: number | undefined;
71555
+ amps_per_div?: number | undefined;
71556
+ }, {
71557
+ type: "simulation_oscilloscope_trace";
71558
+ color?: string | undefined;
71559
+ simulation_transient_voltage_graph_id?: string | undefined;
71560
+ simulation_transient_current_graph_id?: string | undefined;
71561
+ simulation_voltage_probe_id?: string | undefined;
71562
+ simulation_current_probe_id?: string | undefined;
71563
+ simulation_oscilloscope_trace_id?: string | undefined;
71564
+ display_name?: string | undefined;
71565
+ display_center_value?: number | undefined;
71566
+ display_center_offset_divs?: number | undefined;
71567
+ volts_per_div?: number | undefined;
71568
+ amps_per_div?: number | undefined;
71569
+ }>, {
71570
+ type: "simulation_oscilloscope_trace";
71571
+ simulation_oscilloscope_trace_id: string;
71572
+ color?: string | undefined;
71573
+ simulation_transient_voltage_graph_id?: string | undefined;
71574
+ simulation_transient_current_graph_id?: string | undefined;
71575
+ simulation_voltage_probe_id?: string | undefined;
71576
+ simulation_current_probe_id?: string | undefined;
71577
+ display_name?: string | undefined;
71578
+ display_center_value?: number | undefined;
71579
+ display_center_offset_divs?: number | undefined;
71580
+ volts_per_div?: number | undefined;
71581
+ amps_per_div?: number | undefined;
71582
+ }, {
71583
+ type: "simulation_oscilloscope_trace";
71584
+ color?: string | undefined;
71585
+ simulation_transient_voltage_graph_id?: string | undefined;
71586
+ simulation_transient_current_graph_id?: string | undefined;
71587
+ simulation_voltage_probe_id?: string | undefined;
71588
+ simulation_current_probe_id?: string | undefined;
71589
+ simulation_oscilloscope_trace_id?: string | undefined;
71590
+ display_name?: string | undefined;
71591
+ display_center_value?: number | undefined;
71592
+ display_center_offset_divs?: number | undefined;
71593
+ volts_per_div?: number | undefined;
71594
+ amps_per_div?: number | undefined;
71491
71595
  }>, z.ZodObject<{
71492
71596
  message: z.ZodString;
71493
71597
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -71575,4 +71679,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
71575
71679
  */
71576
71680
  type CircuitJson = AnyCircuitElement[];
71577
71681
 
71578
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, 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 PCBPanelizationPlacementError, 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 PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, 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 SimulationCurrentProbe, type SimulationCurrentProbeDisplayOptions, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeDisplayOptions, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, 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 SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, 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 SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, 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_graphic, pcb_silkscreen_graphic_brep, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_probe, simulation_current_probe_display_options, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_probe_display_options, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, 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_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
71682
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, 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 KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type ManufacturingDrcProperties, 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 PCBPanelizationPlacementError, 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 PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type PcbCourtyardPill, type PcbCourtyardPillInput, 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 PcbPadPadClearanceError, type PcbPadPadClearanceErrorInput, type PcbPadTraceClearanceError, type PcbPadTraceClearanceErrorInput, type PcbPanel, type PcbPanelInput, type PcbPanelizationPlacementError, type PcbPanelizationPlacementErrorInput, 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 PcbRenderLayer, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenGraphic, type PcbSilkscreenGraphicBRep, type PcbSilkscreenGraphicBRepInput, type PcbSilkscreenGraphicInput, 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 PcbTraceRoutePointThroughPad, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbTraceWarning, type PcbTraceWarningInput, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type PcbViaTraceClearanceError, type PcbViaTraceClearanceErrorInput, 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 SchematicSymbol, type SchematicSymbolInput, type SchematicSymbolMetadata, 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 SimulationCurrentProbe, type SimulationCurrentProbeInput, type SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationOscilloscopeTrace, type SimulationOscilloscopeTraceInput, type SimulationSpiceSubcircuit, type SimulationSpiceSubcircuitInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientCurrentGraph, type SimulationTransientCurrentGraphInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceComponentMisconfiguredError, type SourceComponentMisconfiguredErrorInput, type SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleAmmeter, type SourceSimpleAmmeterInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, 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 SourceSimpleOpAmp, type SourceSimpleOpAmpInput, 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 SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SpiceSimulationOptions, type SupplierFootprintMismatchWarning, type SupplierFootprintMismatchWarningInput, type SupplierName, type UnknownErrorFindingPart, type UnknownErrorFindingPartInput, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, asset, base_circuit_json_error, battery_capacity, brep_shape, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, manufacturing_drc_properties, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_pill, 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_pad_pad_clearance_error, pcb_pad_trace_clearance_error, pcb_panel, pcb_panelization_placement_error, 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_graphic, pcb_silkscreen_graphic_brep, 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_through_pad, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_trace_warning, pcb_via, pcb_via_clearance_error, pcb_via_trace_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_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_probe, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_oscilloscope_trace, simulation_spice_subcircuit, simulation_switch, simulation_transient_current_graph, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_ambiguous_port_reference, source_board, source_component_base, source_component_internal_connection, source_component_misconfigured_error, source_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_ammeter, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, 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_simple_voltage_source, source_trace, source_trace_not_connected_error, spice_simulation_options, supplier_footprint_mismatch_warning, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };