circuit-json 0.0.437 → 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
  }>;
@@ -27377,10 +27342,10 @@ declare const source_simple_ammeter: z.ZodObject<{
27377
27342
  ftype: "simple_ammeter";
27378
27343
  subcircuit_id?: string | undefined;
27379
27344
  source_group_id?: string | undefined;
27345
+ display_name?: string | undefined;
27380
27346
  manufacturer_part_number?: string | undefined;
27381
27347
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27382
27348
  display_value?: string | undefined;
27383
- display_name?: string | undefined;
27384
27349
  are_pins_interchangeable?: boolean | undefined;
27385
27350
  internally_connected_source_port_ids?: string[][] | undefined;
27386
27351
  }, {
@@ -27390,10 +27355,10 @@ declare const source_simple_ammeter: z.ZodObject<{
27390
27355
  ftype: "simple_ammeter";
27391
27356
  subcircuit_id?: string | undefined;
27392
27357
  source_group_id?: string | undefined;
27358
+ display_name?: string | undefined;
27393
27359
  manufacturer_part_number?: string | undefined;
27394
27360
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27395
27361
  display_value?: string | undefined;
27396
- display_name?: string | undefined;
27397
27362
  are_pins_interchangeable?: boolean | undefined;
27398
27363
  internally_connected_source_port_ids?: string[][] | undefined;
27399
27364
  }>;
@@ -27589,10 +27554,10 @@ declare const source_simple_battery: z.ZodObject<{
27589
27554
  capacity: number;
27590
27555
  subcircuit_id?: string | undefined;
27591
27556
  source_group_id?: string | undefined;
27557
+ display_name?: string | undefined;
27592
27558
  manufacturer_part_number?: string | undefined;
27593
27559
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27594
27560
  display_value?: string | undefined;
27595
- display_name?: string | undefined;
27596
27561
  are_pins_interchangeable?: boolean | undefined;
27597
27562
  internally_connected_source_port_ids?: string[][] | undefined;
27598
27563
  }, {
@@ -27603,10 +27568,10 @@ declare const source_simple_battery: z.ZodObject<{
27603
27568
  capacity: string | number;
27604
27569
  subcircuit_id?: string | undefined;
27605
27570
  source_group_id?: string | undefined;
27571
+ display_name?: string | undefined;
27606
27572
  manufacturer_part_number?: string | undefined;
27607
27573
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27608
27574
  display_value?: string | undefined;
27609
- display_name?: string | undefined;
27610
27575
  are_pins_interchangeable?: boolean | undefined;
27611
27576
  internally_connected_source_port_ids?: string[][] | undefined;
27612
27577
  }>;
@@ -27644,10 +27609,10 @@ declare const source_simple_inductor: z.ZodObject<{
27644
27609
  inductance: number;
27645
27610
  subcircuit_id?: string | undefined;
27646
27611
  source_group_id?: string | undefined;
27612
+ display_name?: string | undefined;
27647
27613
  manufacturer_part_number?: string | undefined;
27648
27614
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27649
27615
  display_value?: string | undefined;
27650
- display_name?: string | undefined;
27651
27616
  are_pins_interchangeable?: boolean | undefined;
27652
27617
  internally_connected_source_port_ids?: string[][] | undefined;
27653
27618
  display_inductance?: string | undefined;
@@ -27660,10 +27625,10 @@ declare const source_simple_inductor: z.ZodObject<{
27660
27625
  inductance: string | number;
27661
27626
  subcircuit_id?: string | undefined;
27662
27627
  source_group_id?: string | undefined;
27628
+ display_name?: string | undefined;
27663
27629
  manufacturer_part_number?: string | undefined;
27664
27630
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27665
27631
  display_value?: string | undefined;
27666
- display_name?: string | undefined;
27667
27632
  are_pins_interchangeable?: boolean | undefined;
27668
27633
  internally_connected_source_port_ids?: string[][] | undefined;
27669
27634
  display_inductance?: string | undefined;
@@ -27701,10 +27666,10 @@ declare const source_simple_push_button: z.ZodObject<{
27701
27666
  ftype: "simple_push_button";
27702
27667
  subcircuit_id?: string | undefined;
27703
27668
  source_group_id?: string | undefined;
27669
+ display_name?: string | undefined;
27704
27670
  manufacturer_part_number?: string | undefined;
27705
27671
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27706
27672
  display_value?: string | undefined;
27707
- display_name?: string | undefined;
27708
27673
  are_pins_interchangeable?: boolean | undefined;
27709
27674
  internally_connected_source_port_ids?: string[][] | undefined;
27710
27675
  }, {
@@ -27714,10 +27679,10 @@ declare const source_simple_push_button: z.ZodObject<{
27714
27679
  ftype: "simple_push_button";
27715
27680
  subcircuit_id?: string | undefined;
27716
27681
  source_group_id?: string | undefined;
27682
+ display_name?: string | undefined;
27717
27683
  manufacturer_part_number?: string | undefined;
27718
27684
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27719
27685
  display_value?: string | undefined;
27720
- display_name?: string | undefined;
27721
27686
  are_pins_interchangeable?: boolean | undefined;
27722
27687
  internally_connected_source_port_ids?: string[][] | undefined;
27723
27688
  }>;
@@ -27753,10 +27718,10 @@ declare const source_simple_potentiometer: z.ZodObject<{
27753
27718
  max_resistance: number;
27754
27719
  subcircuit_id?: string | undefined;
27755
27720
  source_group_id?: string | undefined;
27721
+ display_name?: string | undefined;
27756
27722
  manufacturer_part_number?: string | undefined;
27757
27723
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27758
27724
  display_value?: string | undefined;
27759
- display_name?: string | undefined;
27760
27725
  are_pins_interchangeable?: boolean | undefined;
27761
27726
  internally_connected_source_port_ids?: string[][] | undefined;
27762
27727
  display_max_resistance?: string | undefined;
@@ -27768,10 +27733,10 @@ declare const source_simple_potentiometer: z.ZodObject<{
27768
27733
  max_resistance: string | number;
27769
27734
  subcircuit_id?: string | undefined;
27770
27735
  source_group_id?: string | undefined;
27736
+ display_name?: string | undefined;
27771
27737
  manufacturer_part_number?: string | undefined;
27772
27738
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27773
27739
  display_value?: string | undefined;
27774
- display_name?: string | undefined;
27775
27740
  are_pins_interchangeable?: boolean | undefined;
27776
27741
  internally_connected_source_port_ids?: string[][] | undefined;
27777
27742
  display_max_resistance?: string | undefined;
@@ -27808,10 +27773,10 @@ declare const source_simple_crystal: z.ZodObject<{
27808
27773
  ftype: "simple_crystal";
27809
27774
  subcircuit_id?: string | undefined;
27810
27775
  source_group_id?: string | undefined;
27776
+ display_name?: string | undefined;
27811
27777
  manufacturer_part_number?: string | undefined;
27812
27778
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27813
27779
  display_value?: string | undefined;
27814
- display_name?: string | undefined;
27815
27780
  are_pins_interchangeable?: boolean | undefined;
27816
27781
  internally_connected_source_port_ids?: string[][] | undefined;
27817
27782
  load_capacitance?: number | undefined;
@@ -27824,10 +27789,10 @@ declare const source_simple_crystal: z.ZodObject<{
27824
27789
  ftype: "simple_crystal";
27825
27790
  subcircuit_id?: string | undefined;
27826
27791
  source_group_id?: string | undefined;
27792
+ display_name?: string | undefined;
27827
27793
  manufacturer_part_number?: string | undefined;
27828
27794
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27829
27795
  display_value?: string | undefined;
27830
- display_name?: string | undefined;
27831
27796
  are_pins_interchangeable?: boolean | undefined;
27832
27797
  internally_connected_source_port_ids?: string[][] | undefined;
27833
27798
  load_capacitance?: number | undefined;
@@ -27869,10 +27834,10 @@ declare const source_simple_pin_header: z.ZodObject<{
27869
27834
  gender: "male" | "female";
27870
27835
  subcircuit_id?: string | undefined;
27871
27836
  source_group_id?: string | undefined;
27837
+ display_name?: string | undefined;
27872
27838
  manufacturer_part_number?: string | undefined;
27873
27839
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27874
27840
  display_value?: string | undefined;
27875
- display_name?: string | undefined;
27876
27841
  are_pins_interchangeable?: boolean | undefined;
27877
27842
  internally_connected_source_port_ids?: string[][] | undefined;
27878
27843
  }, {
@@ -27883,10 +27848,10 @@ declare const source_simple_pin_header: z.ZodObject<{
27883
27848
  pin_count: number;
27884
27849
  subcircuit_id?: string | undefined;
27885
27850
  source_group_id?: string | undefined;
27851
+ display_name?: string | undefined;
27886
27852
  manufacturer_part_number?: string | undefined;
27887
27853
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27888
27854
  display_value?: string | undefined;
27889
- display_name?: string | undefined;
27890
27855
  are_pins_interchangeable?: boolean | undefined;
27891
27856
  internally_connected_source_port_ids?: string[][] | undefined;
27892
27857
  gender?: "male" | "female" | undefined;
@@ -27920,10 +27885,10 @@ declare const source_simple_connector: z.ZodObject<{
27920
27885
  ftype: "simple_connector";
27921
27886
  subcircuit_id?: string | undefined;
27922
27887
  source_group_id?: string | undefined;
27888
+ display_name?: string | undefined;
27923
27889
  manufacturer_part_number?: string | undefined;
27924
27890
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27925
27891
  display_value?: string | undefined;
27926
- display_name?: string | undefined;
27927
27892
  are_pins_interchangeable?: boolean | undefined;
27928
27893
  internally_connected_source_port_ids?: string[][] | undefined;
27929
27894
  standard?: "usb_c" | "m2" | undefined;
@@ -27934,10 +27899,10 @@ declare const source_simple_connector: z.ZodObject<{
27934
27899
  ftype: "simple_connector";
27935
27900
  subcircuit_id?: string | undefined;
27936
27901
  source_group_id?: string | undefined;
27902
+ display_name?: string | undefined;
27937
27903
  manufacturer_part_number?: string | undefined;
27938
27904
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27939
27905
  display_value?: string | undefined;
27940
- display_name?: string | undefined;
27941
27906
  are_pins_interchangeable?: boolean | undefined;
27942
27907
  internally_connected_source_port_ids?: string[][] | undefined;
27943
27908
  standard?: "usb_c" | "m2" | undefined;
@@ -27972,10 +27937,10 @@ declare const source_simple_pinout: z.ZodObject<{
27972
27937
  ftype: "simple_pinout";
27973
27938
  subcircuit_id?: string | undefined;
27974
27939
  source_group_id?: string | undefined;
27940
+ display_name?: string | undefined;
27975
27941
  manufacturer_part_number?: string | undefined;
27976
27942
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27977
27943
  display_value?: string | undefined;
27978
- display_name?: string | undefined;
27979
27944
  are_pins_interchangeable?: boolean | undefined;
27980
27945
  internally_connected_source_port_ids?: string[][] | undefined;
27981
27946
  }, {
@@ -27985,10 +27950,10 @@ declare const source_simple_pinout: z.ZodObject<{
27985
27950
  ftype: "simple_pinout";
27986
27951
  subcircuit_id?: string | undefined;
27987
27952
  source_group_id?: string | undefined;
27953
+ display_name?: string | undefined;
27988
27954
  manufacturer_part_number?: string | undefined;
27989
27955
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
27990
27956
  display_value?: string | undefined;
27991
- display_name?: string | undefined;
27992
27957
  are_pins_interchangeable?: boolean | undefined;
27993
27958
  internally_connected_source_port_ids?: string[][] | undefined;
27994
27959
  }>;
@@ -28026,10 +27991,10 @@ declare const source_simple_resonator: z.ZodObject<{
28026
27991
  load_capacitance: number;
28027
27992
  subcircuit_id?: string | undefined;
28028
27993
  source_group_id?: string | undefined;
27994
+ display_name?: string | undefined;
28029
27995
  manufacturer_part_number?: string | undefined;
28030
27996
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28031
27997
  display_value?: string | undefined;
28032
- display_name?: string | undefined;
28033
27998
  are_pins_interchangeable?: boolean | undefined;
28034
27999
  internally_connected_source_port_ids?: string[][] | undefined;
28035
28000
  equivalent_series_resistance?: number | undefined;
@@ -28042,10 +28007,10 @@ declare const source_simple_resonator: z.ZodObject<{
28042
28007
  load_capacitance: string | number;
28043
28008
  subcircuit_id?: string | undefined;
28044
28009
  source_group_id?: string | undefined;
28010
+ display_name?: string | undefined;
28045
28011
  manufacturer_part_number?: string | undefined;
28046
28012
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28047
28013
  display_value?: string | undefined;
28048
- display_name?: string | undefined;
28049
28014
  are_pins_interchangeable?: boolean | undefined;
28050
28015
  internally_connected_source_port_ids?: string[][] | undefined;
28051
28016
  equivalent_series_resistance?: string | number | undefined;
@@ -28084,10 +28049,10 @@ declare const source_simple_transistor: z.ZodObject<{
28084
28049
  transistor_type: "npn" | "pnp";
28085
28050
  subcircuit_id?: string | undefined;
28086
28051
  source_group_id?: string | undefined;
28052
+ display_name?: string | undefined;
28087
28053
  manufacturer_part_number?: string | undefined;
28088
28054
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28089
28055
  display_value?: string | undefined;
28090
- display_name?: string | undefined;
28091
28056
  are_pins_interchangeable?: boolean | undefined;
28092
28057
  internally_connected_source_port_ids?: string[][] | undefined;
28093
28058
  }, {
@@ -28098,10 +28063,10 @@ declare const source_simple_transistor: z.ZodObject<{
28098
28063
  transistor_type: "npn" | "pnp";
28099
28064
  subcircuit_id?: string | undefined;
28100
28065
  source_group_id?: string | undefined;
28066
+ display_name?: string | undefined;
28101
28067
  manufacturer_part_number?: string | undefined;
28102
28068
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28103
28069
  display_value?: string | undefined;
28104
- display_name?: string | undefined;
28105
28070
  are_pins_interchangeable?: boolean | undefined;
28106
28071
  internally_connected_source_port_ids?: string[][] | undefined;
28107
28072
  }>;
@@ -28147,10 +28112,10 @@ declare const source_simple_test_point: z.ZodObject<{
28147
28112
  hole_diameter?: string | number | undefined;
28148
28113
  pad_shape?: "circle" | "rect" | undefined;
28149
28114
  source_group_id?: string | undefined;
28115
+ display_name?: string | undefined;
28150
28116
  manufacturer_part_number?: string | undefined;
28151
28117
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28152
28118
  display_value?: string | undefined;
28153
- display_name?: string | undefined;
28154
28119
  are_pins_interchangeable?: boolean | undefined;
28155
28120
  internally_connected_source_port_ids?: string[][] | undefined;
28156
28121
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -28166,10 +28131,10 @@ declare const source_simple_test_point: z.ZodObject<{
28166
28131
  hole_diameter?: string | number | undefined;
28167
28132
  pad_shape?: "circle" | "rect" | undefined;
28168
28133
  source_group_id?: string | undefined;
28134
+ display_name?: string | undefined;
28169
28135
  manufacturer_part_number?: string | undefined;
28170
28136
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28171
28137
  display_value?: string | undefined;
28172
- display_name?: string | undefined;
28173
28138
  are_pins_interchangeable?: boolean | undefined;
28174
28139
  internally_connected_source_port_ids?: string[][] | undefined;
28175
28140
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -28216,10 +28181,10 @@ declare const source_simple_mosfet: z.ZodObject<{
28216
28181
  mosfet_mode: "enhancement" | "depletion";
28217
28182
  subcircuit_id?: string | undefined;
28218
28183
  source_group_id?: string | undefined;
28184
+ display_name?: string | undefined;
28219
28185
  manufacturer_part_number?: string | undefined;
28220
28186
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28221
28187
  display_value?: string | undefined;
28222
- display_name?: string | undefined;
28223
28188
  are_pins_interchangeable?: boolean | undefined;
28224
28189
  internally_connected_source_port_ids?: string[][] | undefined;
28225
28190
  }, {
@@ -28231,10 +28196,10 @@ declare const source_simple_mosfet: z.ZodObject<{
28231
28196
  mosfet_mode: "enhancement" | "depletion";
28232
28197
  subcircuit_id?: string | undefined;
28233
28198
  source_group_id?: string | undefined;
28199
+ display_name?: string | undefined;
28234
28200
  manufacturer_part_number?: string | undefined;
28235
28201
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28236
28202
  display_value?: string | undefined;
28237
- display_name?: string | undefined;
28238
28203
  are_pins_interchangeable?: boolean | undefined;
28239
28204
  internally_connected_source_port_ids?: string[][] | undefined;
28240
28205
  }>;
@@ -28271,10 +28236,10 @@ declare const source_simple_op_amp: z.ZodObject<{
28271
28236
  ftype: "simple_op_amp";
28272
28237
  subcircuit_id?: string | undefined;
28273
28238
  source_group_id?: string | undefined;
28239
+ display_name?: string | undefined;
28274
28240
  manufacturer_part_number?: string | undefined;
28275
28241
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28276
28242
  display_value?: string | undefined;
28277
- display_name?: string | undefined;
28278
28243
  are_pins_interchangeable?: boolean | undefined;
28279
28244
  internally_connected_source_port_ids?: string[][] | undefined;
28280
28245
  }, {
@@ -28284,10 +28249,10 @@ declare const source_simple_op_amp: z.ZodObject<{
28284
28249
  ftype: "simple_op_amp";
28285
28250
  subcircuit_id?: string | undefined;
28286
28251
  source_group_id?: string | undefined;
28252
+ display_name?: string | undefined;
28287
28253
  manufacturer_part_number?: string | undefined;
28288
28254
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28289
28255
  display_value?: string | undefined;
28290
- display_name?: string | undefined;
28291
28256
  are_pins_interchangeable?: boolean | undefined;
28292
28257
  internally_connected_source_port_ids?: string[][] | undefined;
28293
28258
  }>;
@@ -28320,10 +28285,10 @@ declare const source_simple_switch: z.ZodObject<{
28320
28285
  ftype: "simple_switch";
28321
28286
  subcircuit_id?: string | undefined;
28322
28287
  source_group_id?: string | undefined;
28288
+ display_name?: string | undefined;
28323
28289
  manufacturer_part_number?: string | undefined;
28324
28290
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28325
28291
  display_value?: string | undefined;
28326
- display_name?: string | undefined;
28327
28292
  are_pins_interchangeable?: boolean | undefined;
28328
28293
  internally_connected_source_port_ids?: string[][] | undefined;
28329
28294
  }, {
@@ -28333,10 +28298,10 @@ declare const source_simple_switch: z.ZodObject<{
28333
28298
  ftype: "simple_switch";
28334
28299
  subcircuit_id?: string | undefined;
28335
28300
  source_group_id?: string | undefined;
28301
+ display_name?: string | undefined;
28336
28302
  manufacturer_part_number?: string | undefined;
28337
28303
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28338
28304
  display_value?: string | undefined;
28339
- display_name?: string | undefined;
28340
28305
  are_pins_interchangeable?: boolean | undefined;
28341
28306
  internally_connected_source_port_ids?: string[][] | undefined;
28342
28307
  }>;
@@ -28743,10 +28708,10 @@ declare const source_simple_voltage_probe: z.ZodObject<{
28743
28708
  ftype: "simple_voltage_probe";
28744
28709
  subcircuit_id?: string | undefined;
28745
28710
  source_group_id?: string | undefined;
28711
+ display_name?: string | undefined;
28746
28712
  manufacturer_part_number?: string | undefined;
28747
28713
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28748
28714
  display_value?: string | undefined;
28749
- display_name?: string | undefined;
28750
28715
  are_pins_interchangeable?: boolean | undefined;
28751
28716
  internally_connected_source_port_ids?: string[][] | undefined;
28752
28717
  }, {
@@ -28756,10 +28721,10 @@ declare const source_simple_voltage_probe: z.ZodObject<{
28756
28721
  ftype: "simple_voltage_probe";
28757
28722
  subcircuit_id?: string | undefined;
28758
28723
  source_group_id?: string | undefined;
28724
+ display_name?: string | undefined;
28759
28725
  manufacturer_part_number?: string | undefined;
28760
28726
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28761
28727
  display_value?: string | undefined;
28762
- display_name?: string | undefined;
28763
28728
  are_pins_interchangeable?: boolean | undefined;
28764
28729
  internally_connected_source_port_ids?: string[][] | undefined;
28765
28730
  }>;
@@ -28792,10 +28757,10 @@ declare const source_interconnect: z.ZodObject<{
28792
28757
  ftype: "interconnect";
28793
28758
  subcircuit_id?: string | undefined;
28794
28759
  source_group_id?: string | undefined;
28760
+ display_name?: string | undefined;
28795
28761
  manufacturer_part_number?: string | undefined;
28796
28762
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28797
28763
  display_value?: string | undefined;
28798
- display_name?: string | undefined;
28799
28764
  are_pins_interchangeable?: boolean | undefined;
28800
28765
  internally_connected_source_port_ids?: string[][] | undefined;
28801
28766
  }, {
@@ -28805,10 +28770,10 @@ declare const source_interconnect: z.ZodObject<{
28805
28770
  ftype: "interconnect";
28806
28771
  subcircuit_id?: string | undefined;
28807
28772
  source_group_id?: string | undefined;
28773
+ display_name?: string | undefined;
28808
28774
  manufacturer_part_number?: string | undefined;
28809
28775
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28810
28776
  display_value?: string | undefined;
28811
- display_name?: string | undefined;
28812
28777
  are_pins_interchangeable?: boolean | undefined;
28813
28778
  internally_connected_source_port_ids?: string[][] | undefined;
28814
28779
  }>;
@@ -28935,10 +28900,10 @@ declare const source_simple_voltage_source: z.ZodObject<{
28935
28900
  fall_time?: number | undefined;
28936
28901
  pulse_width?: number | undefined;
28937
28902
  period?: number | undefined;
28903
+ display_name?: string | undefined;
28938
28904
  manufacturer_part_number?: string | undefined;
28939
28905
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28940
28906
  display_value?: string | undefined;
28941
- display_name?: string | undefined;
28942
28907
  are_pins_interchangeable?: boolean | undefined;
28943
28908
  internally_connected_source_port_ids?: string[][] | undefined;
28944
28909
  }, {
@@ -28959,10 +28924,10 @@ declare const source_simple_voltage_source: z.ZodObject<{
28959
28924
  fall_time?: string | number | undefined;
28960
28925
  pulse_width?: string | number | undefined;
28961
28926
  period?: string | number | undefined;
28927
+ display_name?: string | undefined;
28962
28928
  manufacturer_part_number?: string | undefined;
28963
28929
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
28964
28930
  display_value?: string | undefined;
28965
- display_name?: string | undefined;
28966
28931
  are_pins_interchangeable?: boolean | undefined;
28967
28932
  internally_connected_source_port_ids?: string[][] | undefined;
28968
28933
  }>;
@@ -29009,10 +28974,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29009
28974
  resistance: number;
29010
28975
  subcircuit_id?: string | undefined;
29011
28976
  source_group_id?: string | undefined;
28977
+ display_name?: string | undefined;
29012
28978
  manufacturer_part_number?: string | undefined;
29013
28979
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29014
28980
  display_value?: string | undefined;
29015
- display_name?: string | undefined;
29016
28981
  are_pins_interchangeable?: boolean | undefined;
29017
28982
  internally_connected_source_port_ids?: string[][] | undefined;
29018
28983
  display_resistance?: string | undefined;
@@ -29024,10 +28989,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29024
28989
  resistance: string | number;
29025
28990
  subcircuit_id?: string | undefined;
29026
28991
  source_group_id?: string | undefined;
28992
+ display_name?: string | undefined;
29027
28993
  manufacturer_part_number?: string | undefined;
29028
28994
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29029
28995
  display_value?: string | undefined;
29030
- display_name?: string | undefined;
29031
28996
  are_pins_interchangeable?: boolean | undefined;
29032
28997
  internally_connected_source_port_ids?: string[][] | undefined;
29033
28998
  display_resistance?: string | undefined;
@@ -29057,10 +29022,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29057
29022
  capacitance: number;
29058
29023
  subcircuit_id?: string | undefined;
29059
29024
  source_group_id?: string | undefined;
29025
+ display_name?: string | undefined;
29060
29026
  manufacturer_part_number?: string | undefined;
29061
29027
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29062
29028
  display_value?: string | undefined;
29063
- display_name?: string | undefined;
29064
29029
  are_pins_interchangeable?: boolean | undefined;
29065
29030
  internally_connected_source_port_ids?: string[][] | undefined;
29066
29031
  max_voltage_rating?: number | undefined;
@@ -29074,10 +29039,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29074
29039
  capacitance: string | number;
29075
29040
  subcircuit_id?: string | undefined;
29076
29041
  source_group_id?: string | undefined;
29042
+ display_name?: string | undefined;
29077
29043
  manufacturer_part_number?: string | undefined;
29078
29044
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29079
29045
  display_value?: string | undefined;
29080
- display_name?: string | undefined;
29081
29046
  are_pins_interchangeable?: boolean | undefined;
29082
29047
  internally_connected_source_port_ids?: string[][] | undefined;
29083
29048
  max_voltage_rating?: string | number | undefined;
@@ -29104,10 +29069,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29104
29069
  ftype: "simple_diode";
29105
29070
  subcircuit_id?: string | undefined;
29106
29071
  source_group_id?: string | undefined;
29072
+ display_name?: string | undefined;
29107
29073
  manufacturer_part_number?: string | undefined;
29108
29074
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29109
29075
  display_value?: string | undefined;
29110
- display_name?: string | undefined;
29111
29076
  are_pins_interchangeable?: boolean | undefined;
29112
29077
  internally_connected_source_port_ids?: string[][] | undefined;
29113
29078
  }, {
@@ -29117,10 +29082,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29117
29082
  ftype: "simple_diode";
29118
29083
  subcircuit_id?: string | undefined;
29119
29084
  source_group_id?: string | undefined;
29085
+ display_name?: string | undefined;
29120
29086
  manufacturer_part_number?: string | undefined;
29121
29087
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29122
29088
  display_value?: string | undefined;
29123
- display_name?: string | undefined;
29124
29089
  are_pins_interchangeable?: boolean | undefined;
29125
29090
  internally_connected_source_port_ids?: string[][] | undefined;
29126
29091
  }>, z.ZodObject<{
@@ -29144,10 +29109,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29144
29109
  ftype: "simple_fiducial";
29145
29110
  subcircuit_id?: string | undefined;
29146
29111
  source_group_id?: string | undefined;
29112
+ display_name?: string | undefined;
29147
29113
  manufacturer_part_number?: string | undefined;
29148
29114
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29149
29115
  display_value?: string | undefined;
29150
- display_name?: string | undefined;
29151
29116
  are_pins_interchangeable?: boolean | undefined;
29152
29117
  internally_connected_source_port_ids?: string[][] | undefined;
29153
29118
  }, {
@@ -29157,10 +29122,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29157
29122
  ftype: "simple_fiducial";
29158
29123
  subcircuit_id?: string | undefined;
29159
29124
  source_group_id?: string | undefined;
29125
+ display_name?: string | undefined;
29160
29126
  manufacturer_part_number?: string | undefined;
29161
29127
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29162
29128
  display_value?: string | undefined;
29163
- display_name?: string | undefined;
29164
29129
  are_pins_interchangeable?: boolean | undefined;
29165
29130
  internally_connected_source_port_ids?: string[][] | undefined;
29166
29131
  }>, z.ZodObject<{
@@ -29187,10 +29152,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29187
29152
  subcircuit_id?: string | undefined;
29188
29153
  color?: string | undefined;
29189
29154
  source_group_id?: string | undefined;
29155
+ display_name?: string | undefined;
29190
29156
  manufacturer_part_number?: string | undefined;
29191
29157
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29192
29158
  display_value?: string | undefined;
29193
- display_name?: string | undefined;
29194
29159
  are_pins_interchangeable?: boolean | undefined;
29195
29160
  internally_connected_source_port_ids?: string[][] | undefined;
29196
29161
  wavelength?: string | undefined;
@@ -29202,10 +29167,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29202
29167
  subcircuit_id?: string | undefined;
29203
29168
  color?: string | undefined;
29204
29169
  source_group_id?: string | undefined;
29170
+ display_name?: string | undefined;
29205
29171
  manufacturer_part_number?: string | undefined;
29206
29172
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29207
29173
  display_value?: string | undefined;
29208
- display_name?: string | undefined;
29209
29174
  are_pins_interchangeable?: boolean | undefined;
29210
29175
  internally_connected_source_port_ids?: string[][] | undefined;
29211
29176
  wavelength?: string | undefined;
@@ -29230,10 +29195,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29230
29195
  ftype: "simple_ground";
29231
29196
  subcircuit_id?: string | undefined;
29232
29197
  source_group_id?: string | undefined;
29198
+ display_name?: string | undefined;
29233
29199
  manufacturer_part_number?: string | undefined;
29234
29200
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29235
29201
  display_value?: string | undefined;
29236
- display_name?: string | undefined;
29237
29202
  are_pins_interchangeable?: boolean | undefined;
29238
29203
  internally_connected_source_port_ids?: string[][] | undefined;
29239
29204
  }, {
@@ -29243,10 +29208,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29243
29208
  ftype: "simple_ground";
29244
29209
  subcircuit_id?: string | undefined;
29245
29210
  source_group_id?: string | undefined;
29211
+ display_name?: string | undefined;
29246
29212
  manufacturer_part_number?: string | undefined;
29247
29213
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29248
29214
  display_value?: string | undefined;
29249
- display_name?: string | undefined;
29250
29215
  are_pins_interchangeable?: boolean | undefined;
29251
29216
  internally_connected_source_port_ids?: string[][] | undefined;
29252
29217
  }>, z.ZodObject<{
@@ -29270,10 +29235,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29270
29235
  ftype: "simple_chip";
29271
29236
  subcircuit_id?: string | undefined;
29272
29237
  source_group_id?: string | undefined;
29238
+ display_name?: string | undefined;
29273
29239
  manufacturer_part_number?: string | undefined;
29274
29240
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29275
29241
  display_value?: string | undefined;
29276
- display_name?: string | undefined;
29277
29242
  are_pins_interchangeable?: boolean | undefined;
29278
29243
  internally_connected_source_port_ids?: string[][] | undefined;
29279
29244
  }, {
@@ -29283,10 +29248,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29283
29248
  ftype: "simple_chip";
29284
29249
  subcircuit_id?: string | undefined;
29285
29250
  source_group_id?: string | undefined;
29251
+ display_name?: string | undefined;
29286
29252
  manufacturer_part_number?: string | undefined;
29287
29253
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29288
29254
  display_value?: string | undefined;
29289
- display_name?: string | undefined;
29290
29255
  are_pins_interchangeable?: boolean | undefined;
29291
29256
  internally_connected_source_port_ids?: string[][] | undefined;
29292
29257
  }>, z.ZodObject<{
@@ -29312,10 +29277,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29312
29277
  ftype: "simple_power_source";
29313
29278
  subcircuit_id?: string | undefined;
29314
29279
  source_group_id?: string | undefined;
29280
+ display_name?: string | undefined;
29315
29281
  manufacturer_part_number?: string | undefined;
29316
29282
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29317
29283
  display_value?: string | undefined;
29318
- display_name?: string | undefined;
29319
29284
  are_pins_interchangeable?: boolean | undefined;
29320
29285
  internally_connected_source_port_ids?: string[][] | undefined;
29321
29286
  }, {
@@ -29326,10 +29291,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29326
29291
  ftype: "simple_power_source";
29327
29292
  subcircuit_id?: string | undefined;
29328
29293
  source_group_id?: string | undefined;
29294
+ display_name?: string | undefined;
29329
29295
  manufacturer_part_number?: string | undefined;
29330
29296
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29331
29297
  display_value?: string | undefined;
29332
- display_name?: string | undefined;
29333
29298
  are_pins_interchangeable?: boolean | undefined;
29334
29299
  internally_connected_source_port_ids?: string[][] | undefined;
29335
29300
  }>, z.ZodObject<{
@@ -29365,10 +29330,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29365
29330
  phase?: number | undefined;
29366
29331
  duty_cycle?: number | undefined;
29367
29332
  peak_to_peak_current?: number | undefined;
29333
+ display_name?: string | undefined;
29368
29334
  manufacturer_part_number?: string | undefined;
29369
29335
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29370
29336
  display_value?: string | undefined;
29371
- display_name?: string | undefined;
29372
29337
  are_pins_interchangeable?: boolean | undefined;
29373
29338
  internally_connected_source_port_ids?: string[][] | undefined;
29374
29339
  }, {
@@ -29384,10 +29349,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29384
29349
  phase?: number | undefined;
29385
29350
  duty_cycle?: number | undefined;
29386
29351
  peak_to_peak_current?: string | number | undefined;
29352
+ display_name?: string | undefined;
29387
29353
  manufacturer_part_number?: string | undefined;
29388
29354
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29389
29355
  display_value?: string | undefined;
29390
- display_name?: string | undefined;
29391
29356
  are_pins_interchangeable?: boolean | undefined;
29392
29357
  internally_connected_source_port_ids?: string[][] | undefined;
29393
29358
  }>, z.ZodObject<{
@@ -29411,10 +29376,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29411
29376
  ftype: "simple_ammeter";
29412
29377
  subcircuit_id?: string | undefined;
29413
29378
  source_group_id?: string | undefined;
29379
+ display_name?: string | undefined;
29414
29380
  manufacturer_part_number?: string | undefined;
29415
29381
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29416
29382
  display_value?: string | undefined;
29417
- display_name?: string | undefined;
29418
29383
  are_pins_interchangeable?: boolean | undefined;
29419
29384
  internally_connected_source_port_ids?: string[][] | undefined;
29420
29385
  }, {
@@ -29424,10 +29389,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29424
29389
  ftype: "simple_ammeter";
29425
29390
  subcircuit_id?: string | undefined;
29426
29391
  source_group_id?: string | undefined;
29392
+ display_name?: string | undefined;
29427
29393
  manufacturer_part_number?: string | undefined;
29428
29394
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29429
29395
  display_value?: string | undefined;
29430
- display_name?: string | undefined;
29431
29396
  are_pins_interchangeable?: boolean | undefined;
29432
29397
  internally_connected_source_port_ids?: string[][] | undefined;
29433
29398
  }>, z.ZodObject<{
@@ -29453,10 +29418,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29453
29418
  capacity: number;
29454
29419
  subcircuit_id?: string | undefined;
29455
29420
  source_group_id?: string | undefined;
29421
+ display_name?: string | undefined;
29456
29422
  manufacturer_part_number?: string | undefined;
29457
29423
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29458
29424
  display_value?: string | undefined;
29459
- display_name?: string | undefined;
29460
29425
  are_pins_interchangeable?: boolean | undefined;
29461
29426
  internally_connected_source_port_ids?: string[][] | undefined;
29462
29427
  }, {
@@ -29467,10 +29432,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29467
29432
  capacity: string | number;
29468
29433
  subcircuit_id?: string | undefined;
29469
29434
  source_group_id?: string | undefined;
29435
+ display_name?: string | undefined;
29470
29436
  manufacturer_part_number?: string | undefined;
29471
29437
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29472
29438
  display_value?: string | undefined;
29473
- display_name?: string | undefined;
29474
29439
  are_pins_interchangeable?: boolean | undefined;
29475
29440
  internally_connected_source_port_ids?: string[][] | undefined;
29476
29441
  }>, z.ZodObject<{
@@ -29498,10 +29463,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29498
29463
  inductance: number;
29499
29464
  subcircuit_id?: string | undefined;
29500
29465
  source_group_id?: string | undefined;
29466
+ display_name?: string | undefined;
29501
29467
  manufacturer_part_number?: string | undefined;
29502
29468
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29503
29469
  display_value?: string | undefined;
29504
- display_name?: string | undefined;
29505
29470
  are_pins_interchangeable?: boolean | undefined;
29506
29471
  internally_connected_source_port_ids?: string[][] | undefined;
29507
29472
  display_inductance?: string | undefined;
@@ -29514,10 +29479,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29514
29479
  inductance: string | number;
29515
29480
  subcircuit_id?: string | undefined;
29516
29481
  source_group_id?: string | undefined;
29482
+ display_name?: string | undefined;
29517
29483
  manufacturer_part_number?: string | undefined;
29518
29484
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29519
29485
  display_value?: string | undefined;
29520
- display_name?: string | undefined;
29521
29486
  are_pins_interchangeable?: boolean | undefined;
29522
29487
  internally_connected_source_port_ids?: string[][] | undefined;
29523
29488
  display_inductance?: string | undefined;
@@ -29543,10 +29508,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29543
29508
  ftype: "simple_push_button";
29544
29509
  subcircuit_id?: string | undefined;
29545
29510
  source_group_id?: string | undefined;
29511
+ display_name?: string | undefined;
29546
29512
  manufacturer_part_number?: string | undefined;
29547
29513
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29548
29514
  display_value?: string | undefined;
29549
- display_name?: string | undefined;
29550
29515
  are_pins_interchangeable?: boolean | undefined;
29551
29516
  internally_connected_source_port_ids?: string[][] | undefined;
29552
29517
  }, {
@@ -29556,10 +29521,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29556
29521
  ftype: "simple_push_button";
29557
29522
  subcircuit_id?: string | undefined;
29558
29523
  source_group_id?: string | undefined;
29524
+ display_name?: string | undefined;
29559
29525
  manufacturer_part_number?: string | undefined;
29560
29526
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29561
29527
  display_value?: string | undefined;
29562
- display_name?: string | undefined;
29563
29528
  are_pins_interchangeable?: boolean | undefined;
29564
29529
  internally_connected_source_port_ids?: string[][] | undefined;
29565
29530
  }>, z.ZodObject<{
@@ -29586,10 +29551,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29586
29551
  max_resistance: number;
29587
29552
  subcircuit_id?: string | undefined;
29588
29553
  source_group_id?: string | undefined;
29554
+ display_name?: string | undefined;
29589
29555
  manufacturer_part_number?: string | undefined;
29590
29556
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29591
29557
  display_value?: string | undefined;
29592
- display_name?: string | undefined;
29593
29558
  are_pins_interchangeable?: boolean | undefined;
29594
29559
  internally_connected_source_port_ids?: string[][] | undefined;
29595
29560
  display_max_resistance?: string | undefined;
@@ -29601,10 +29566,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29601
29566
  max_resistance: string | number;
29602
29567
  subcircuit_id?: string | undefined;
29603
29568
  source_group_id?: string | undefined;
29569
+ display_name?: string | undefined;
29604
29570
  manufacturer_part_number?: string | undefined;
29605
29571
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29606
29572
  display_value?: string | undefined;
29607
- display_name?: string | undefined;
29608
29573
  are_pins_interchangeable?: boolean | undefined;
29609
29574
  internally_connected_source_port_ids?: string[][] | undefined;
29610
29575
  display_max_resistance?: string | undefined;
@@ -29633,10 +29598,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29633
29598
  ftype: "simple_crystal";
29634
29599
  subcircuit_id?: string | undefined;
29635
29600
  source_group_id?: string | undefined;
29601
+ display_name?: string | undefined;
29636
29602
  manufacturer_part_number?: string | undefined;
29637
29603
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29638
29604
  display_value?: string | undefined;
29639
- display_name?: string | undefined;
29640
29605
  are_pins_interchangeable?: boolean | undefined;
29641
29606
  internally_connected_source_port_ids?: string[][] | undefined;
29642
29607
  load_capacitance?: number | undefined;
@@ -29649,10 +29614,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29649
29614
  ftype: "simple_crystal";
29650
29615
  subcircuit_id?: string | undefined;
29651
29616
  source_group_id?: string | undefined;
29617
+ display_name?: string | undefined;
29652
29618
  manufacturer_part_number?: string | undefined;
29653
29619
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29654
29620
  display_value?: string | undefined;
29655
- display_name?: string | undefined;
29656
29621
  are_pins_interchangeable?: boolean | undefined;
29657
29622
  internally_connected_source_port_ids?: string[][] | undefined;
29658
29623
  load_capacitance?: number | undefined;
@@ -29682,10 +29647,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29682
29647
  gender: "male" | "female";
29683
29648
  subcircuit_id?: string | undefined;
29684
29649
  source_group_id?: string | undefined;
29650
+ display_name?: string | undefined;
29685
29651
  manufacturer_part_number?: string | undefined;
29686
29652
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29687
29653
  display_value?: string | undefined;
29688
- display_name?: string | undefined;
29689
29654
  are_pins_interchangeable?: boolean | undefined;
29690
29655
  internally_connected_source_port_ids?: string[][] | undefined;
29691
29656
  }, {
@@ -29696,10 +29661,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29696
29661
  pin_count: number;
29697
29662
  subcircuit_id?: string | undefined;
29698
29663
  source_group_id?: string | undefined;
29664
+ display_name?: string | undefined;
29699
29665
  manufacturer_part_number?: string | undefined;
29700
29666
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29701
29667
  display_value?: string | undefined;
29702
- display_name?: string | undefined;
29703
29668
  are_pins_interchangeable?: boolean | undefined;
29704
29669
  internally_connected_source_port_ids?: string[][] | undefined;
29705
29670
  gender?: "male" | "female" | undefined;
@@ -29725,10 +29690,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29725
29690
  ftype: "simple_connector";
29726
29691
  subcircuit_id?: string | undefined;
29727
29692
  source_group_id?: string | undefined;
29693
+ display_name?: string | undefined;
29728
29694
  manufacturer_part_number?: string | undefined;
29729
29695
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29730
29696
  display_value?: string | undefined;
29731
- display_name?: string | undefined;
29732
29697
  are_pins_interchangeable?: boolean | undefined;
29733
29698
  internally_connected_source_port_ids?: string[][] | undefined;
29734
29699
  standard?: "usb_c" | "m2" | undefined;
@@ -29739,10 +29704,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29739
29704
  ftype: "simple_connector";
29740
29705
  subcircuit_id?: string | undefined;
29741
29706
  source_group_id?: string | undefined;
29707
+ display_name?: string | undefined;
29742
29708
  manufacturer_part_number?: string | undefined;
29743
29709
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29744
29710
  display_value?: string | undefined;
29745
- display_name?: string | undefined;
29746
29711
  are_pins_interchangeable?: boolean | undefined;
29747
29712
  internally_connected_source_port_ids?: string[][] | undefined;
29748
29713
  standard?: "usb_c" | "m2" | undefined;
@@ -29767,10 +29732,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29767
29732
  ftype: "simple_pinout";
29768
29733
  subcircuit_id?: string | undefined;
29769
29734
  source_group_id?: string | undefined;
29735
+ display_name?: string | undefined;
29770
29736
  manufacturer_part_number?: string | undefined;
29771
29737
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29772
29738
  display_value?: string | undefined;
29773
- display_name?: string | undefined;
29774
29739
  are_pins_interchangeable?: boolean | undefined;
29775
29740
  internally_connected_source_port_ids?: string[][] | undefined;
29776
29741
  }, {
@@ -29780,10 +29745,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29780
29745
  ftype: "simple_pinout";
29781
29746
  subcircuit_id?: string | undefined;
29782
29747
  source_group_id?: string | undefined;
29748
+ display_name?: string | undefined;
29783
29749
  manufacturer_part_number?: string | undefined;
29784
29750
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29785
29751
  display_value?: string | undefined;
29786
- display_name?: string | undefined;
29787
29752
  are_pins_interchangeable?: boolean | undefined;
29788
29753
  internally_connected_source_port_ids?: string[][] | undefined;
29789
29754
  }>, z.ZodObject<{
@@ -29812,10 +29777,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29812
29777
  load_capacitance: number;
29813
29778
  subcircuit_id?: string | undefined;
29814
29779
  source_group_id?: string | undefined;
29780
+ display_name?: string | undefined;
29815
29781
  manufacturer_part_number?: string | undefined;
29816
29782
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29817
29783
  display_value?: string | undefined;
29818
- display_name?: string | undefined;
29819
29784
  are_pins_interchangeable?: boolean | undefined;
29820
29785
  internally_connected_source_port_ids?: string[][] | undefined;
29821
29786
  equivalent_series_resistance?: number | undefined;
@@ -29828,10 +29793,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29828
29793
  load_capacitance: string | number;
29829
29794
  subcircuit_id?: string | undefined;
29830
29795
  source_group_id?: string | undefined;
29796
+ display_name?: string | undefined;
29831
29797
  manufacturer_part_number?: string | undefined;
29832
29798
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29833
29799
  display_value?: string | undefined;
29834
- display_name?: string | undefined;
29835
29800
  are_pins_interchangeable?: boolean | undefined;
29836
29801
  internally_connected_source_port_ids?: string[][] | undefined;
29837
29802
  equivalent_series_resistance?: string | number | undefined;
@@ -29856,10 +29821,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29856
29821
  ftype: "simple_switch";
29857
29822
  subcircuit_id?: string | undefined;
29858
29823
  source_group_id?: string | undefined;
29824
+ display_name?: string | undefined;
29859
29825
  manufacturer_part_number?: string | undefined;
29860
29826
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29861
29827
  display_value?: string | undefined;
29862
- display_name?: string | undefined;
29863
29828
  are_pins_interchangeable?: boolean | undefined;
29864
29829
  internally_connected_source_port_ids?: string[][] | undefined;
29865
29830
  }, {
@@ -29869,10 +29834,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29869
29834
  ftype: "simple_switch";
29870
29835
  subcircuit_id?: string | undefined;
29871
29836
  source_group_id?: string | undefined;
29837
+ display_name?: string | undefined;
29872
29838
  manufacturer_part_number?: string | undefined;
29873
29839
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29874
29840
  display_value?: string | undefined;
29875
- display_name?: string | undefined;
29876
29841
  are_pins_interchangeable?: boolean | undefined;
29877
29842
  internally_connected_source_port_ids?: string[][] | undefined;
29878
29843
  }>, z.ZodObject<{
@@ -29898,10 +29863,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29898
29863
  transistor_type: "npn" | "pnp";
29899
29864
  subcircuit_id?: string | undefined;
29900
29865
  source_group_id?: string | undefined;
29866
+ display_name?: string | undefined;
29901
29867
  manufacturer_part_number?: string | undefined;
29902
29868
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29903
29869
  display_value?: string | undefined;
29904
- display_name?: string | undefined;
29905
29870
  are_pins_interchangeable?: boolean | undefined;
29906
29871
  internally_connected_source_port_ids?: string[][] | undefined;
29907
29872
  }, {
@@ -29912,10 +29877,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29912
29877
  transistor_type: "npn" | "pnp";
29913
29878
  subcircuit_id?: string | undefined;
29914
29879
  source_group_id?: string | undefined;
29880
+ display_name?: string | undefined;
29915
29881
  manufacturer_part_number?: string | undefined;
29916
29882
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29917
29883
  display_value?: string | undefined;
29918
- display_name?: string | undefined;
29919
29884
  are_pins_interchangeable?: boolean | undefined;
29920
29885
  internally_connected_source_port_ids?: string[][] | undefined;
29921
29886
  }>, z.ZodObject<{
@@ -29949,10 +29914,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29949
29914
  hole_diameter?: string | number | undefined;
29950
29915
  pad_shape?: "circle" | "rect" | undefined;
29951
29916
  source_group_id?: string | undefined;
29917
+ display_name?: string | undefined;
29952
29918
  manufacturer_part_number?: string | undefined;
29953
29919
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29954
29920
  display_value?: string | undefined;
29955
- display_name?: string | undefined;
29956
29921
  are_pins_interchangeable?: boolean | undefined;
29957
29922
  internally_connected_source_port_ids?: string[][] | undefined;
29958
29923
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -29968,10 +29933,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
29968
29933
  hole_diameter?: string | number | undefined;
29969
29934
  pad_shape?: "circle" | "rect" | undefined;
29970
29935
  source_group_id?: string | undefined;
29936
+ display_name?: string | undefined;
29971
29937
  manufacturer_part_number?: string | undefined;
29972
29938
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
29973
29939
  display_value?: string | undefined;
29974
- display_name?: string | undefined;
29975
29940
  are_pins_interchangeable?: boolean | undefined;
29976
29941
  internally_connected_source_port_ids?: string[][] | undefined;
29977
29942
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -30001,10 +29966,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30001
29966
  mosfet_mode: "enhancement" | "depletion";
30002
29967
  subcircuit_id?: string | undefined;
30003
29968
  source_group_id?: string | undefined;
29969
+ display_name?: string | undefined;
30004
29970
  manufacturer_part_number?: string | undefined;
30005
29971
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30006
29972
  display_value?: string | undefined;
30007
- display_name?: string | undefined;
30008
29973
  are_pins_interchangeable?: boolean | undefined;
30009
29974
  internally_connected_source_port_ids?: string[][] | undefined;
30010
29975
  }, {
@@ -30016,10 +29981,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30016
29981
  mosfet_mode: "enhancement" | "depletion";
30017
29982
  subcircuit_id?: string | undefined;
30018
29983
  source_group_id?: string | undefined;
29984
+ display_name?: string | undefined;
30019
29985
  manufacturer_part_number?: string | undefined;
30020
29986
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30021
29987
  display_value?: string | undefined;
30022
- display_name?: string | undefined;
30023
29988
  are_pins_interchangeable?: boolean | undefined;
30024
29989
  internally_connected_source_port_ids?: string[][] | undefined;
30025
29990
  }>, z.ZodObject<{
@@ -30043,10 +30008,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30043
30008
  ftype: "simple_op_amp";
30044
30009
  subcircuit_id?: string | undefined;
30045
30010
  source_group_id?: string | undefined;
30011
+ display_name?: string | undefined;
30046
30012
  manufacturer_part_number?: string | undefined;
30047
30013
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30048
30014
  display_value?: string | undefined;
30049
- display_name?: string | undefined;
30050
30015
  are_pins_interchangeable?: boolean | undefined;
30051
30016
  internally_connected_source_port_ids?: string[][] | undefined;
30052
30017
  }, {
@@ -30056,10 +30021,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30056
30021
  ftype: "simple_op_amp";
30057
30022
  subcircuit_id?: string | undefined;
30058
30023
  source_group_id?: string | undefined;
30024
+ display_name?: string | undefined;
30059
30025
  manufacturer_part_number?: string | undefined;
30060
30026
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30061
30027
  display_value?: string | undefined;
30062
- display_name?: string | undefined;
30063
30028
  are_pins_interchangeable?: boolean | undefined;
30064
30029
  internally_connected_source_port_ids?: string[][] | undefined;
30065
30030
  }>, z.ZodObject<{
@@ -30087,10 +30052,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30087
30052
  voltage_rating_volts: number;
30088
30053
  subcircuit_id?: string | undefined;
30089
30054
  source_group_id?: string | undefined;
30055
+ display_name?: string | undefined;
30090
30056
  manufacturer_part_number?: string | undefined;
30091
30057
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30092
30058
  display_value?: string | undefined;
30093
- display_name?: string | undefined;
30094
30059
  are_pins_interchangeable?: boolean | undefined;
30095
30060
  internally_connected_source_port_ids?: string[][] | undefined;
30096
30061
  }, {
@@ -30102,10 +30067,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30102
30067
  voltage_rating_volts: number;
30103
30068
  subcircuit_id?: string | undefined;
30104
30069
  source_group_id?: string | undefined;
30070
+ display_name?: string | undefined;
30105
30071
  manufacturer_part_number?: string | undefined;
30106
30072
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30107
30073
  display_value?: string | undefined;
30108
- display_name?: string | undefined;
30109
30074
  are_pins_interchangeable?: boolean | undefined;
30110
30075
  internally_connected_source_port_ids?: string[][] | undefined;
30111
30076
  }>, z.ZodObject<{
@@ -30129,10 +30094,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30129
30094
  ftype: "simple_voltage_probe";
30130
30095
  subcircuit_id?: string | undefined;
30131
30096
  source_group_id?: string | undefined;
30097
+ display_name?: string | undefined;
30132
30098
  manufacturer_part_number?: string | undefined;
30133
30099
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30134
30100
  display_value?: string | undefined;
30135
- display_name?: string | undefined;
30136
30101
  are_pins_interchangeable?: boolean | undefined;
30137
30102
  internally_connected_source_port_ids?: string[][] | undefined;
30138
30103
  }, {
@@ -30142,10 +30107,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30142
30107
  ftype: "simple_voltage_probe";
30143
30108
  subcircuit_id?: string | undefined;
30144
30109
  source_group_id?: string | undefined;
30110
+ display_name?: string | undefined;
30145
30111
  manufacturer_part_number?: string | undefined;
30146
30112
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30147
30113
  display_value?: string | undefined;
30148
- display_name?: string | undefined;
30149
30114
  are_pins_interchangeable?: boolean | undefined;
30150
30115
  internally_connected_source_port_ids?: string[][] | undefined;
30151
30116
  }>, z.ZodObject<{
@@ -30169,10 +30134,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30169
30134
  ftype: "interconnect";
30170
30135
  subcircuit_id?: string | undefined;
30171
30136
  source_group_id?: string | undefined;
30137
+ display_name?: string | undefined;
30172
30138
  manufacturer_part_number?: string | undefined;
30173
30139
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30174
30140
  display_value?: string | undefined;
30175
- display_name?: string | undefined;
30176
30141
  are_pins_interchangeable?: boolean | undefined;
30177
30142
  internally_connected_source_port_ids?: string[][] | undefined;
30178
30143
  }, {
@@ -30182,10 +30147,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30182
30147
  ftype: "interconnect";
30183
30148
  subcircuit_id?: string | undefined;
30184
30149
  source_group_id?: string | undefined;
30150
+ display_name?: string | undefined;
30185
30151
  manufacturer_part_number?: string | undefined;
30186
30152
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30187
30153
  display_value?: string | undefined;
30188
- display_name?: string | undefined;
30189
30154
  are_pins_interchangeable?: boolean | undefined;
30190
30155
  internally_connected_source_port_ids?: string[][] | undefined;
30191
30156
  }>, z.ZodObject<{
@@ -30231,10 +30196,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30231
30196
  fall_time?: number | undefined;
30232
30197
  pulse_width?: number | undefined;
30233
30198
  period?: number | undefined;
30199
+ display_name?: string | undefined;
30234
30200
  manufacturer_part_number?: string | undefined;
30235
30201
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30236
30202
  display_value?: string | undefined;
30237
- display_name?: string | undefined;
30238
30203
  are_pins_interchangeable?: boolean | undefined;
30239
30204
  internally_connected_source_port_ids?: string[][] | undefined;
30240
30205
  }, {
@@ -30255,10 +30220,10 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
30255
30220
  fall_time?: string | number | undefined;
30256
30221
  pulse_width?: string | number | undefined;
30257
30222
  period?: string | number | undefined;
30223
+ display_name?: string | undefined;
30258
30224
  manufacturer_part_number?: string | undefined;
30259
30225
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
30260
30226
  display_value?: string | undefined;
30261
- display_name?: string | undefined;
30262
30227
  are_pins_interchangeable?: boolean | undefined;
30263
30228
  internally_connected_source_port_ids?: string[][] | undefined;
30264
30229
  }>, z.ZodObject<{
@@ -34294,10 +34259,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34294
34259
  resistance: number;
34295
34260
  subcircuit_id?: string | undefined;
34296
34261
  source_group_id?: string | undefined;
34262
+ display_name?: string | undefined;
34297
34263
  manufacturer_part_number?: string | undefined;
34298
34264
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34299
34265
  display_value?: string | undefined;
34300
- display_name?: string | undefined;
34301
34266
  are_pins_interchangeable?: boolean | undefined;
34302
34267
  internally_connected_source_port_ids?: string[][] | undefined;
34303
34268
  display_resistance?: string | undefined;
@@ -34309,10 +34274,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34309
34274
  resistance: string | number;
34310
34275
  subcircuit_id?: string | undefined;
34311
34276
  source_group_id?: string | undefined;
34277
+ display_name?: string | undefined;
34312
34278
  manufacturer_part_number?: string | undefined;
34313
34279
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34314
34280
  display_value?: string | undefined;
34315
- display_name?: string | undefined;
34316
34281
  are_pins_interchangeable?: boolean | undefined;
34317
34282
  internally_connected_source_port_ids?: string[][] | undefined;
34318
34283
  display_resistance?: string | undefined;
@@ -34342,10 +34307,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34342
34307
  capacitance: number;
34343
34308
  subcircuit_id?: string | undefined;
34344
34309
  source_group_id?: string | undefined;
34310
+ display_name?: string | undefined;
34345
34311
  manufacturer_part_number?: string | undefined;
34346
34312
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34347
34313
  display_value?: string | undefined;
34348
- display_name?: string | undefined;
34349
34314
  are_pins_interchangeable?: boolean | undefined;
34350
34315
  internally_connected_source_port_ids?: string[][] | undefined;
34351
34316
  max_voltage_rating?: number | undefined;
@@ -34359,10 +34324,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34359
34324
  capacitance: string | number;
34360
34325
  subcircuit_id?: string | undefined;
34361
34326
  source_group_id?: string | undefined;
34327
+ display_name?: string | undefined;
34362
34328
  manufacturer_part_number?: string | undefined;
34363
34329
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34364
34330
  display_value?: string | undefined;
34365
- display_name?: string | undefined;
34366
34331
  are_pins_interchangeable?: boolean | undefined;
34367
34332
  internally_connected_source_port_ids?: string[][] | undefined;
34368
34333
  max_voltage_rating?: string | number | undefined;
@@ -34389,10 +34354,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34389
34354
  ftype: "simple_diode";
34390
34355
  subcircuit_id?: string | undefined;
34391
34356
  source_group_id?: string | undefined;
34357
+ display_name?: string | undefined;
34392
34358
  manufacturer_part_number?: string | undefined;
34393
34359
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34394
34360
  display_value?: string | undefined;
34395
- display_name?: string | undefined;
34396
34361
  are_pins_interchangeable?: boolean | undefined;
34397
34362
  internally_connected_source_port_ids?: string[][] | undefined;
34398
34363
  }, {
@@ -34402,10 +34367,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34402
34367
  ftype: "simple_diode";
34403
34368
  subcircuit_id?: string | undefined;
34404
34369
  source_group_id?: string | undefined;
34370
+ display_name?: string | undefined;
34405
34371
  manufacturer_part_number?: string | undefined;
34406
34372
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34407
34373
  display_value?: string | undefined;
34408
- display_name?: string | undefined;
34409
34374
  are_pins_interchangeable?: boolean | undefined;
34410
34375
  internally_connected_source_port_ids?: string[][] | undefined;
34411
34376
  }>, z.ZodObject<{
@@ -34429,10 +34394,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34429
34394
  ftype: "simple_fiducial";
34430
34395
  subcircuit_id?: string | undefined;
34431
34396
  source_group_id?: string | undefined;
34397
+ display_name?: string | undefined;
34432
34398
  manufacturer_part_number?: string | undefined;
34433
34399
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34434
34400
  display_value?: string | undefined;
34435
- display_name?: string | undefined;
34436
34401
  are_pins_interchangeable?: boolean | undefined;
34437
34402
  internally_connected_source_port_ids?: string[][] | undefined;
34438
34403
  }, {
@@ -34442,10 +34407,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34442
34407
  ftype: "simple_fiducial";
34443
34408
  subcircuit_id?: string | undefined;
34444
34409
  source_group_id?: string | undefined;
34410
+ display_name?: string | undefined;
34445
34411
  manufacturer_part_number?: string | undefined;
34446
34412
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34447
34413
  display_value?: string | undefined;
34448
- display_name?: string | undefined;
34449
34414
  are_pins_interchangeable?: boolean | undefined;
34450
34415
  internally_connected_source_port_ids?: string[][] | undefined;
34451
34416
  }>, z.ZodObject<{
@@ -34472,10 +34437,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34472
34437
  subcircuit_id?: string | undefined;
34473
34438
  color?: string | undefined;
34474
34439
  source_group_id?: string | undefined;
34440
+ display_name?: string | undefined;
34475
34441
  manufacturer_part_number?: string | undefined;
34476
34442
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34477
34443
  display_value?: string | undefined;
34478
- display_name?: string | undefined;
34479
34444
  are_pins_interchangeable?: boolean | undefined;
34480
34445
  internally_connected_source_port_ids?: string[][] | undefined;
34481
34446
  wavelength?: string | undefined;
@@ -34487,10 +34452,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34487
34452
  subcircuit_id?: string | undefined;
34488
34453
  color?: string | undefined;
34489
34454
  source_group_id?: string | undefined;
34455
+ display_name?: string | undefined;
34490
34456
  manufacturer_part_number?: string | undefined;
34491
34457
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34492
34458
  display_value?: string | undefined;
34493
- display_name?: string | undefined;
34494
34459
  are_pins_interchangeable?: boolean | undefined;
34495
34460
  internally_connected_source_port_ids?: string[][] | undefined;
34496
34461
  wavelength?: string | undefined;
@@ -34515,10 +34480,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34515
34480
  ftype: "simple_ground";
34516
34481
  subcircuit_id?: string | undefined;
34517
34482
  source_group_id?: string | undefined;
34483
+ display_name?: string | undefined;
34518
34484
  manufacturer_part_number?: string | undefined;
34519
34485
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34520
34486
  display_value?: string | undefined;
34521
- display_name?: string | undefined;
34522
34487
  are_pins_interchangeable?: boolean | undefined;
34523
34488
  internally_connected_source_port_ids?: string[][] | undefined;
34524
34489
  }, {
@@ -34528,10 +34493,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34528
34493
  ftype: "simple_ground";
34529
34494
  subcircuit_id?: string | undefined;
34530
34495
  source_group_id?: string | undefined;
34496
+ display_name?: string | undefined;
34531
34497
  manufacturer_part_number?: string | undefined;
34532
34498
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34533
34499
  display_value?: string | undefined;
34534
- display_name?: string | undefined;
34535
34500
  are_pins_interchangeable?: boolean | undefined;
34536
34501
  internally_connected_source_port_ids?: string[][] | undefined;
34537
34502
  }>, z.ZodObject<{
@@ -34555,10 +34520,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34555
34520
  ftype: "simple_chip";
34556
34521
  subcircuit_id?: string | undefined;
34557
34522
  source_group_id?: string | undefined;
34523
+ display_name?: string | undefined;
34558
34524
  manufacturer_part_number?: string | undefined;
34559
34525
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34560
34526
  display_value?: string | undefined;
34561
- display_name?: string | undefined;
34562
34527
  are_pins_interchangeable?: boolean | undefined;
34563
34528
  internally_connected_source_port_ids?: string[][] | undefined;
34564
34529
  }, {
@@ -34568,10 +34533,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34568
34533
  ftype: "simple_chip";
34569
34534
  subcircuit_id?: string | undefined;
34570
34535
  source_group_id?: string | undefined;
34536
+ display_name?: string | undefined;
34571
34537
  manufacturer_part_number?: string | undefined;
34572
34538
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34573
34539
  display_value?: string | undefined;
34574
- display_name?: string | undefined;
34575
34540
  are_pins_interchangeable?: boolean | undefined;
34576
34541
  internally_connected_source_port_ids?: string[][] | undefined;
34577
34542
  }>, z.ZodObject<{
@@ -34597,10 +34562,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34597
34562
  ftype: "simple_power_source";
34598
34563
  subcircuit_id?: string | undefined;
34599
34564
  source_group_id?: string | undefined;
34565
+ display_name?: string | undefined;
34600
34566
  manufacturer_part_number?: string | undefined;
34601
34567
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34602
34568
  display_value?: string | undefined;
34603
- display_name?: string | undefined;
34604
34569
  are_pins_interchangeable?: boolean | undefined;
34605
34570
  internally_connected_source_port_ids?: string[][] | undefined;
34606
34571
  }, {
@@ -34611,10 +34576,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34611
34576
  ftype: "simple_power_source";
34612
34577
  subcircuit_id?: string | undefined;
34613
34578
  source_group_id?: string | undefined;
34579
+ display_name?: string | undefined;
34614
34580
  manufacturer_part_number?: string | undefined;
34615
34581
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34616
34582
  display_value?: string | undefined;
34617
- display_name?: string | undefined;
34618
34583
  are_pins_interchangeable?: boolean | undefined;
34619
34584
  internally_connected_source_port_ids?: string[][] | undefined;
34620
34585
  }>, z.ZodObject<{
@@ -34650,10 +34615,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34650
34615
  phase?: number | undefined;
34651
34616
  duty_cycle?: number | undefined;
34652
34617
  peak_to_peak_current?: number | undefined;
34618
+ display_name?: string | undefined;
34653
34619
  manufacturer_part_number?: string | undefined;
34654
34620
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34655
34621
  display_value?: string | undefined;
34656
- display_name?: string | undefined;
34657
34622
  are_pins_interchangeable?: boolean | undefined;
34658
34623
  internally_connected_source_port_ids?: string[][] | undefined;
34659
34624
  }, {
@@ -34669,10 +34634,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34669
34634
  phase?: number | undefined;
34670
34635
  duty_cycle?: number | undefined;
34671
34636
  peak_to_peak_current?: string | number | undefined;
34637
+ display_name?: string | undefined;
34672
34638
  manufacturer_part_number?: string | undefined;
34673
34639
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34674
34640
  display_value?: string | undefined;
34675
- display_name?: string | undefined;
34676
34641
  are_pins_interchangeable?: boolean | undefined;
34677
34642
  internally_connected_source_port_ids?: string[][] | undefined;
34678
34643
  }>, z.ZodObject<{
@@ -34696,10 +34661,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34696
34661
  ftype: "simple_ammeter";
34697
34662
  subcircuit_id?: string | undefined;
34698
34663
  source_group_id?: string | undefined;
34664
+ display_name?: string | undefined;
34699
34665
  manufacturer_part_number?: string | undefined;
34700
34666
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34701
34667
  display_value?: string | undefined;
34702
- display_name?: string | undefined;
34703
34668
  are_pins_interchangeable?: boolean | undefined;
34704
34669
  internally_connected_source_port_ids?: string[][] | undefined;
34705
34670
  }, {
@@ -34709,10 +34674,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34709
34674
  ftype: "simple_ammeter";
34710
34675
  subcircuit_id?: string | undefined;
34711
34676
  source_group_id?: string | undefined;
34677
+ display_name?: string | undefined;
34712
34678
  manufacturer_part_number?: string | undefined;
34713
34679
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34714
34680
  display_value?: string | undefined;
34715
- display_name?: string | undefined;
34716
34681
  are_pins_interchangeable?: boolean | undefined;
34717
34682
  internally_connected_source_port_ids?: string[][] | undefined;
34718
34683
  }>, z.ZodObject<{
@@ -34738,10 +34703,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34738
34703
  capacity: number;
34739
34704
  subcircuit_id?: string | undefined;
34740
34705
  source_group_id?: string | undefined;
34706
+ display_name?: string | undefined;
34741
34707
  manufacturer_part_number?: string | undefined;
34742
34708
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34743
34709
  display_value?: string | undefined;
34744
- display_name?: string | undefined;
34745
34710
  are_pins_interchangeable?: boolean | undefined;
34746
34711
  internally_connected_source_port_ids?: string[][] | undefined;
34747
34712
  }, {
@@ -34752,10 +34717,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34752
34717
  capacity: string | number;
34753
34718
  subcircuit_id?: string | undefined;
34754
34719
  source_group_id?: string | undefined;
34720
+ display_name?: string | undefined;
34755
34721
  manufacturer_part_number?: string | undefined;
34756
34722
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34757
34723
  display_value?: string | undefined;
34758
- display_name?: string | undefined;
34759
34724
  are_pins_interchangeable?: boolean | undefined;
34760
34725
  internally_connected_source_port_ids?: string[][] | undefined;
34761
34726
  }>, z.ZodObject<{
@@ -34783,10 +34748,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34783
34748
  inductance: number;
34784
34749
  subcircuit_id?: string | undefined;
34785
34750
  source_group_id?: string | undefined;
34751
+ display_name?: string | undefined;
34786
34752
  manufacturer_part_number?: string | undefined;
34787
34753
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34788
34754
  display_value?: string | undefined;
34789
- display_name?: string | undefined;
34790
34755
  are_pins_interchangeable?: boolean | undefined;
34791
34756
  internally_connected_source_port_ids?: string[][] | undefined;
34792
34757
  display_inductance?: string | undefined;
@@ -34799,10 +34764,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34799
34764
  inductance: string | number;
34800
34765
  subcircuit_id?: string | undefined;
34801
34766
  source_group_id?: string | undefined;
34767
+ display_name?: string | undefined;
34802
34768
  manufacturer_part_number?: string | undefined;
34803
34769
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34804
34770
  display_value?: string | undefined;
34805
- display_name?: string | undefined;
34806
34771
  are_pins_interchangeable?: boolean | undefined;
34807
34772
  internally_connected_source_port_ids?: string[][] | undefined;
34808
34773
  display_inductance?: string | undefined;
@@ -34828,10 +34793,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34828
34793
  ftype: "simple_push_button";
34829
34794
  subcircuit_id?: string | undefined;
34830
34795
  source_group_id?: string | undefined;
34796
+ display_name?: string | undefined;
34831
34797
  manufacturer_part_number?: string | undefined;
34832
34798
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34833
34799
  display_value?: string | undefined;
34834
- display_name?: string | undefined;
34835
34800
  are_pins_interchangeable?: boolean | undefined;
34836
34801
  internally_connected_source_port_ids?: string[][] | undefined;
34837
34802
  }, {
@@ -34841,10 +34806,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34841
34806
  ftype: "simple_push_button";
34842
34807
  subcircuit_id?: string | undefined;
34843
34808
  source_group_id?: string | undefined;
34809
+ display_name?: string | undefined;
34844
34810
  manufacturer_part_number?: string | undefined;
34845
34811
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34846
34812
  display_value?: string | undefined;
34847
- display_name?: string | undefined;
34848
34813
  are_pins_interchangeable?: boolean | undefined;
34849
34814
  internally_connected_source_port_ids?: string[][] | undefined;
34850
34815
  }>, z.ZodObject<{
@@ -34871,10 +34836,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34871
34836
  max_resistance: number;
34872
34837
  subcircuit_id?: string | undefined;
34873
34838
  source_group_id?: string | undefined;
34839
+ display_name?: string | undefined;
34874
34840
  manufacturer_part_number?: string | undefined;
34875
34841
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34876
34842
  display_value?: string | undefined;
34877
- display_name?: string | undefined;
34878
34843
  are_pins_interchangeable?: boolean | undefined;
34879
34844
  internally_connected_source_port_ids?: string[][] | undefined;
34880
34845
  display_max_resistance?: string | undefined;
@@ -34886,10 +34851,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34886
34851
  max_resistance: string | number;
34887
34852
  subcircuit_id?: string | undefined;
34888
34853
  source_group_id?: string | undefined;
34854
+ display_name?: string | undefined;
34889
34855
  manufacturer_part_number?: string | undefined;
34890
34856
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34891
34857
  display_value?: string | undefined;
34892
- display_name?: string | undefined;
34893
34858
  are_pins_interchangeable?: boolean | undefined;
34894
34859
  internally_connected_source_port_ids?: string[][] | undefined;
34895
34860
  display_max_resistance?: string | undefined;
@@ -34918,10 +34883,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34918
34883
  ftype: "simple_crystal";
34919
34884
  subcircuit_id?: string | undefined;
34920
34885
  source_group_id?: string | undefined;
34886
+ display_name?: string | undefined;
34921
34887
  manufacturer_part_number?: string | undefined;
34922
34888
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34923
34889
  display_value?: string | undefined;
34924
- display_name?: string | undefined;
34925
34890
  are_pins_interchangeable?: boolean | undefined;
34926
34891
  internally_connected_source_port_ids?: string[][] | undefined;
34927
34892
  load_capacitance?: number | undefined;
@@ -34934,10 +34899,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34934
34899
  ftype: "simple_crystal";
34935
34900
  subcircuit_id?: string | undefined;
34936
34901
  source_group_id?: string | undefined;
34902
+ display_name?: string | undefined;
34937
34903
  manufacturer_part_number?: string | undefined;
34938
34904
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34939
34905
  display_value?: string | undefined;
34940
- display_name?: string | undefined;
34941
34906
  are_pins_interchangeable?: boolean | undefined;
34942
34907
  internally_connected_source_port_ids?: string[][] | undefined;
34943
34908
  load_capacitance?: number | undefined;
@@ -34967,10 +34932,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34967
34932
  gender: "male" | "female";
34968
34933
  subcircuit_id?: string | undefined;
34969
34934
  source_group_id?: string | undefined;
34935
+ display_name?: string | undefined;
34970
34936
  manufacturer_part_number?: string | undefined;
34971
34937
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34972
34938
  display_value?: string | undefined;
34973
- display_name?: string | undefined;
34974
34939
  are_pins_interchangeable?: boolean | undefined;
34975
34940
  internally_connected_source_port_ids?: string[][] | undefined;
34976
34941
  }, {
@@ -34981,10 +34946,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34981
34946
  pin_count: number;
34982
34947
  subcircuit_id?: string | undefined;
34983
34948
  source_group_id?: string | undefined;
34949
+ display_name?: string | undefined;
34984
34950
  manufacturer_part_number?: string | undefined;
34985
34951
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34986
34952
  display_value?: string | undefined;
34987
- display_name?: string | undefined;
34988
34953
  are_pins_interchangeable?: boolean | undefined;
34989
34954
  internally_connected_source_port_ids?: string[][] | undefined;
34990
34955
  gender?: "male" | "female" | undefined;
@@ -35010,10 +34975,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35010
34975
  ftype: "simple_connector";
35011
34976
  subcircuit_id?: string | undefined;
35012
34977
  source_group_id?: string | undefined;
34978
+ display_name?: string | undefined;
35013
34979
  manufacturer_part_number?: string | undefined;
35014
34980
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35015
34981
  display_value?: string | undefined;
35016
- display_name?: string | undefined;
35017
34982
  are_pins_interchangeable?: boolean | undefined;
35018
34983
  internally_connected_source_port_ids?: string[][] | undefined;
35019
34984
  standard?: "usb_c" | "m2" | undefined;
@@ -35024,10 +34989,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35024
34989
  ftype: "simple_connector";
35025
34990
  subcircuit_id?: string | undefined;
35026
34991
  source_group_id?: string | undefined;
34992
+ display_name?: string | undefined;
35027
34993
  manufacturer_part_number?: string | undefined;
35028
34994
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35029
34995
  display_value?: string | undefined;
35030
- display_name?: string | undefined;
35031
34996
  are_pins_interchangeable?: boolean | undefined;
35032
34997
  internally_connected_source_port_ids?: string[][] | undefined;
35033
34998
  standard?: "usb_c" | "m2" | undefined;
@@ -35052,10 +35017,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35052
35017
  ftype: "simple_pinout";
35053
35018
  subcircuit_id?: string | undefined;
35054
35019
  source_group_id?: string | undefined;
35020
+ display_name?: string | undefined;
35055
35021
  manufacturer_part_number?: string | undefined;
35056
35022
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35057
35023
  display_value?: string | undefined;
35058
- display_name?: string | undefined;
35059
35024
  are_pins_interchangeable?: boolean | undefined;
35060
35025
  internally_connected_source_port_ids?: string[][] | undefined;
35061
35026
  }, {
@@ -35065,10 +35030,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35065
35030
  ftype: "simple_pinout";
35066
35031
  subcircuit_id?: string | undefined;
35067
35032
  source_group_id?: string | undefined;
35033
+ display_name?: string | undefined;
35068
35034
  manufacturer_part_number?: string | undefined;
35069
35035
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35070
35036
  display_value?: string | undefined;
35071
- display_name?: string | undefined;
35072
35037
  are_pins_interchangeable?: boolean | undefined;
35073
35038
  internally_connected_source_port_ids?: string[][] | undefined;
35074
35039
  }>, z.ZodObject<{
@@ -35097,10 +35062,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35097
35062
  load_capacitance: number;
35098
35063
  subcircuit_id?: string | undefined;
35099
35064
  source_group_id?: string | undefined;
35065
+ display_name?: string | undefined;
35100
35066
  manufacturer_part_number?: string | undefined;
35101
35067
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35102
35068
  display_value?: string | undefined;
35103
- display_name?: string | undefined;
35104
35069
  are_pins_interchangeable?: boolean | undefined;
35105
35070
  internally_connected_source_port_ids?: string[][] | undefined;
35106
35071
  equivalent_series_resistance?: number | undefined;
@@ -35113,10 +35078,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35113
35078
  load_capacitance: string | number;
35114
35079
  subcircuit_id?: string | undefined;
35115
35080
  source_group_id?: string | undefined;
35081
+ display_name?: string | undefined;
35116
35082
  manufacturer_part_number?: string | undefined;
35117
35083
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35118
35084
  display_value?: string | undefined;
35119
- display_name?: string | undefined;
35120
35085
  are_pins_interchangeable?: boolean | undefined;
35121
35086
  internally_connected_source_port_ids?: string[][] | undefined;
35122
35087
  equivalent_series_resistance?: string | number | undefined;
@@ -35141,10 +35106,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35141
35106
  ftype: "simple_switch";
35142
35107
  subcircuit_id?: string | undefined;
35143
35108
  source_group_id?: string | undefined;
35109
+ display_name?: string | undefined;
35144
35110
  manufacturer_part_number?: string | undefined;
35145
35111
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35146
35112
  display_value?: string | undefined;
35147
- display_name?: string | undefined;
35148
35113
  are_pins_interchangeable?: boolean | undefined;
35149
35114
  internally_connected_source_port_ids?: string[][] | undefined;
35150
35115
  }, {
@@ -35154,10 +35119,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35154
35119
  ftype: "simple_switch";
35155
35120
  subcircuit_id?: string | undefined;
35156
35121
  source_group_id?: string | undefined;
35122
+ display_name?: string | undefined;
35157
35123
  manufacturer_part_number?: string | undefined;
35158
35124
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35159
35125
  display_value?: string | undefined;
35160
- display_name?: string | undefined;
35161
35126
  are_pins_interchangeable?: boolean | undefined;
35162
35127
  internally_connected_source_port_ids?: string[][] | undefined;
35163
35128
  }>, z.ZodObject<{
@@ -35183,10 +35148,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35183
35148
  transistor_type: "npn" | "pnp";
35184
35149
  subcircuit_id?: string | undefined;
35185
35150
  source_group_id?: string | undefined;
35151
+ display_name?: string | undefined;
35186
35152
  manufacturer_part_number?: string | undefined;
35187
35153
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35188
35154
  display_value?: string | undefined;
35189
- display_name?: string | undefined;
35190
35155
  are_pins_interchangeable?: boolean | undefined;
35191
35156
  internally_connected_source_port_ids?: string[][] | undefined;
35192
35157
  }, {
@@ -35197,10 +35162,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35197
35162
  transistor_type: "npn" | "pnp";
35198
35163
  subcircuit_id?: string | undefined;
35199
35164
  source_group_id?: string | undefined;
35165
+ display_name?: string | undefined;
35200
35166
  manufacturer_part_number?: string | undefined;
35201
35167
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35202
35168
  display_value?: string | undefined;
35203
- display_name?: string | undefined;
35204
35169
  are_pins_interchangeable?: boolean | undefined;
35205
35170
  internally_connected_source_port_ids?: string[][] | undefined;
35206
35171
  }>, z.ZodObject<{
@@ -35234,10 +35199,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35234
35199
  hole_diameter?: string | number | undefined;
35235
35200
  pad_shape?: "circle" | "rect" | undefined;
35236
35201
  source_group_id?: string | undefined;
35202
+ display_name?: string | undefined;
35237
35203
  manufacturer_part_number?: string | undefined;
35238
35204
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35239
35205
  display_value?: string | undefined;
35240
- display_name?: string | undefined;
35241
35206
  are_pins_interchangeable?: boolean | undefined;
35242
35207
  internally_connected_source_port_ids?: string[][] | undefined;
35243
35208
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -35253,10 +35218,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35253
35218
  hole_diameter?: string | number | undefined;
35254
35219
  pad_shape?: "circle" | "rect" | undefined;
35255
35220
  source_group_id?: string | undefined;
35221
+ display_name?: string | undefined;
35256
35222
  manufacturer_part_number?: string | undefined;
35257
35223
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35258
35224
  display_value?: string | undefined;
35259
- display_name?: string | undefined;
35260
35225
  are_pins_interchangeable?: boolean | undefined;
35261
35226
  internally_connected_source_port_ids?: string[][] | undefined;
35262
35227
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -35286,10 +35251,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35286
35251
  mosfet_mode: "enhancement" | "depletion";
35287
35252
  subcircuit_id?: string | undefined;
35288
35253
  source_group_id?: string | undefined;
35254
+ display_name?: string | undefined;
35289
35255
  manufacturer_part_number?: string | undefined;
35290
35256
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35291
35257
  display_value?: string | undefined;
35292
- display_name?: string | undefined;
35293
35258
  are_pins_interchangeable?: boolean | undefined;
35294
35259
  internally_connected_source_port_ids?: string[][] | undefined;
35295
35260
  }, {
@@ -35301,10 +35266,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35301
35266
  mosfet_mode: "enhancement" | "depletion";
35302
35267
  subcircuit_id?: string | undefined;
35303
35268
  source_group_id?: string | undefined;
35269
+ display_name?: string | undefined;
35304
35270
  manufacturer_part_number?: string | undefined;
35305
35271
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35306
35272
  display_value?: string | undefined;
35307
- display_name?: string | undefined;
35308
35273
  are_pins_interchangeable?: boolean | undefined;
35309
35274
  internally_connected_source_port_ids?: string[][] | undefined;
35310
35275
  }>, z.ZodObject<{
@@ -35328,10 +35293,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35328
35293
  ftype: "simple_op_amp";
35329
35294
  subcircuit_id?: string | undefined;
35330
35295
  source_group_id?: string | undefined;
35296
+ display_name?: string | undefined;
35331
35297
  manufacturer_part_number?: string | undefined;
35332
35298
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35333
35299
  display_value?: string | undefined;
35334
- display_name?: string | undefined;
35335
35300
  are_pins_interchangeable?: boolean | undefined;
35336
35301
  internally_connected_source_port_ids?: string[][] | undefined;
35337
35302
  }, {
@@ -35341,10 +35306,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35341
35306
  ftype: "simple_op_amp";
35342
35307
  subcircuit_id?: string | undefined;
35343
35308
  source_group_id?: string | undefined;
35309
+ display_name?: string | undefined;
35344
35310
  manufacturer_part_number?: string | undefined;
35345
35311
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35346
35312
  display_value?: string | undefined;
35347
- display_name?: string | undefined;
35348
35313
  are_pins_interchangeable?: boolean | undefined;
35349
35314
  internally_connected_source_port_ids?: string[][] | undefined;
35350
35315
  }>, z.ZodObject<{
@@ -35372,10 +35337,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35372
35337
  voltage_rating_volts: number;
35373
35338
  subcircuit_id?: string | undefined;
35374
35339
  source_group_id?: string | undefined;
35340
+ display_name?: string | undefined;
35375
35341
  manufacturer_part_number?: string | undefined;
35376
35342
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35377
35343
  display_value?: string | undefined;
35378
- display_name?: string | undefined;
35379
35344
  are_pins_interchangeable?: boolean | undefined;
35380
35345
  internally_connected_source_port_ids?: string[][] | undefined;
35381
35346
  }, {
@@ -35387,10 +35352,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35387
35352
  voltage_rating_volts: number;
35388
35353
  subcircuit_id?: string | undefined;
35389
35354
  source_group_id?: string | undefined;
35355
+ display_name?: string | undefined;
35390
35356
  manufacturer_part_number?: string | undefined;
35391
35357
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35392
35358
  display_value?: string | undefined;
35393
- display_name?: string | undefined;
35394
35359
  are_pins_interchangeable?: boolean | undefined;
35395
35360
  internally_connected_source_port_ids?: string[][] | undefined;
35396
35361
  }>, z.ZodObject<{
@@ -35414,10 +35379,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35414
35379
  ftype: "simple_voltage_probe";
35415
35380
  subcircuit_id?: string | undefined;
35416
35381
  source_group_id?: string | undefined;
35382
+ display_name?: string | undefined;
35417
35383
  manufacturer_part_number?: string | undefined;
35418
35384
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35419
35385
  display_value?: string | undefined;
35420
- display_name?: string | undefined;
35421
35386
  are_pins_interchangeable?: boolean | undefined;
35422
35387
  internally_connected_source_port_ids?: string[][] | undefined;
35423
35388
  }, {
@@ -35427,10 +35392,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35427
35392
  ftype: "simple_voltage_probe";
35428
35393
  subcircuit_id?: string | undefined;
35429
35394
  source_group_id?: string | undefined;
35395
+ display_name?: string | undefined;
35430
35396
  manufacturer_part_number?: string | undefined;
35431
35397
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35432
35398
  display_value?: string | undefined;
35433
- display_name?: string | undefined;
35434
35399
  are_pins_interchangeable?: boolean | undefined;
35435
35400
  internally_connected_source_port_ids?: string[][] | undefined;
35436
35401
  }>, z.ZodObject<{
@@ -35454,10 +35419,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35454
35419
  ftype: "interconnect";
35455
35420
  subcircuit_id?: string | undefined;
35456
35421
  source_group_id?: string | undefined;
35422
+ display_name?: string | undefined;
35457
35423
  manufacturer_part_number?: string | undefined;
35458
35424
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35459
35425
  display_value?: string | undefined;
35460
- display_name?: string | undefined;
35461
35426
  are_pins_interchangeable?: boolean | undefined;
35462
35427
  internally_connected_source_port_ids?: string[][] | undefined;
35463
35428
  }, {
@@ -35467,10 +35432,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35467
35432
  ftype: "interconnect";
35468
35433
  subcircuit_id?: string | undefined;
35469
35434
  source_group_id?: string | undefined;
35435
+ display_name?: string | undefined;
35470
35436
  manufacturer_part_number?: string | undefined;
35471
35437
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35472
35438
  display_value?: string | undefined;
35473
- display_name?: string | undefined;
35474
35439
  are_pins_interchangeable?: boolean | undefined;
35475
35440
  internally_connected_source_port_ids?: string[][] | undefined;
35476
35441
  }>, z.ZodObject<{
@@ -35516,10 +35481,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35516
35481
  fall_time?: number | undefined;
35517
35482
  pulse_width?: number | undefined;
35518
35483
  period?: number | undefined;
35484
+ display_name?: string | undefined;
35519
35485
  manufacturer_part_number?: string | undefined;
35520
35486
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35521
35487
  display_value?: string | undefined;
35522
- display_name?: string | undefined;
35523
35488
  are_pins_interchangeable?: boolean | undefined;
35524
35489
  internally_connected_source_port_ids?: string[][] | undefined;
35525
35490
  }, {
@@ -35540,10 +35505,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35540
35505
  fall_time?: string | number | undefined;
35541
35506
  pulse_width?: string | number | undefined;
35542
35507
  period?: string | number | undefined;
35508
+ display_name?: string | undefined;
35543
35509
  manufacturer_part_number?: string | undefined;
35544
35510
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35545
35511
  display_value?: string | undefined;
35546
- display_name?: string | undefined;
35547
35512
  are_pins_interchangeable?: boolean | undefined;
35548
35513
  internally_connected_source_port_ids?: string[][] | undefined;
35549
35514
  }>, z.ZodObject<{
@@ -35933,10 +35898,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35933
35898
  ftype: "simple_chip";
35934
35899
  subcircuit_id?: string | undefined;
35935
35900
  source_group_id?: string | undefined;
35901
+ display_name?: string | undefined;
35936
35902
  manufacturer_part_number?: string | undefined;
35937
35903
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35938
35904
  display_value?: string | undefined;
35939
- display_name?: string | undefined;
35940
35905
  are_pins_interchangeable?: boolean | undefined;
35941
35906
  internally_connected_source_port_ids?: string[][] | undefined;
35942
35907
  }, {
@@ -35946,10 +35911,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35946
35911
  ftype: "simple_chip";
35947
35912
  subcircuit_id?: string | undefined;
35948
35913
  source_group_id?: string | undefined;
35914
+ display_name?: string | undefined;
35949
35915
  manufacturer_part_number?: string | undefined;
35950
35916
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35951
35917
  display_value?: string | undefined;
35952
- display_name?: string | undefined;
35953
35918
  are_pins_interchangeable?: boolean | undefined;
35954
35919
  internally_connected_source_port_ids?: string[][] | undefined;
35955
35920
  }>, z.ZodObject<{
@@ -35978,10 +35943,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35978
35943
  capacitance: number;
35979
35944
  subcircuit_id?: string | undefined;
35980
35945
  source_group_id?: string | undefined;
35946
+ display_name?: string | undefined;
35981
35947
  manufacturer_part_number?: string | undefined;
35982
35948
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35983
35949
  display_value?: string | undefined;
35984
- display_name?: string | undefined;
35985
35950
  are_pins_interchangeable?: boolean | undefined;
35986
35951
  internally_connected_source_port_ids?: string[][] | undefined;
35987
35952
  max_voltage_rating?: number | undefined;
@@ -35995,10 +35960,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35995
35960
  capacitance: string | number;
35996
35961
  subcircuit_id?: string | undefined;
35997
35962
  source_group_id?: string | undefined;
35963
+ display_name?: string | undefined;
35998
35964
  manufacturer_part_number?: string | undefined;
35999
35965
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36000
35966
  display_value?: string | undefined;
36001
- display_name?: string | undefined;
36002
35967
  are_pins_interchangeable?: boolean | undefined;
36003
35968
  internally_connected_source_port_ids?: string[][] | undefined;
36004
35969
  max_voltage_rating?: string | number | undefined;
@@ -36025,10 +35990,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36025
35990
  ftype: "simple_diode";
36026
35991
  subcircuit_id?: string | undefined;
36027
35992
  source_group_id?: string | undefined;
35993
+ display_name?: string | undefined;
36028
35994
  manufacturer_part_number?: string | undefined;
36029
35995
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36030
35996
  display_value?: string | undefined;
36031
- display_name?: string | undefined;
36032
35997
  are_pins_interchangeable?: boolean | undefined;
36033
35998
  internally_connected_source_port_ids?: string[][] | undefined;
36034
35999
  }, {
@@ -36038,10 +36003,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36038
36003
  ftype: "simple_diode";
36039
36004
  subcircuit_id?: string | undefined;
36040
36005
  source_group_id?: string | undefined;
36006
+ display_name?: string | undefined;
36041
36007
  manufacturer_part_number?: string | undefined;
36042
36008
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36043
36009
  display_value?: string | undefined;
36044
- display_name?: string | undefined;
36045
36010
  are_pins_interchangeable?: boolean | undefined;
36046
36011
  internally_connected_source_port_ids?: string[][] | undefined;
36047
36012
  }>, z.ZodObject<{
@@ -36068,10 +36033,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36068
36033
  subcircuit_id?: string | undefined;
36069
36034
  color?: string | undefined;
36070
36035
  source_group_id?: string | undefined;
36036
+ display_name?: string | undefined;
36071
36037
  manufacturer_part_number?: string | undefined;
36072
36038
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36073
36039
  display_value?: string | undefined;
36074
- display_name?: string | undefined;
36075
36040
  are_pins_interchangeable?: boolean | undefined;
36076
36041
  internally_connected_source_port_ids?: string[][] | undefined;
36077
36042
  wavelength?: string | undefined;
@@ -36083,10 +36048,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36083
36048
  subcircuit_id?: string | undefined;
36084
36049
  color?: string | undefined;
36085
36050
  source_group_id?: string | undefined;
36051
+ display_name?: string | undefined;
36086
36052
  manufacturer_part_number?: string | undefined;
36087
36053
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36088
36054
  display_value?: string | undefined;
36089
- display_name?: string | undefined;
36090
36055
  are_pins_interchangeable?: boolean | undefined;
36091
36056
  internally_connected_source_port_ids?: string[][] | undefined;
36092
36057
  wavelength?: string | undefined;
@@ -36114,10 +36079,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36114
36079
  resistance: number;
36115
36080
  subcircuit_id?: string | undefined;
36116
36081
  source_group_id?: string | undefined;
36082
+ display_name?: string | undefined;
36117
36083
  manufacturer_part_number?: string | undefined;
36118
36084
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36119
36085
  display_value?: string | undefined;
36120
- display_name?: string | undefined;
36121
36086
  are_pins_interchangeable?: boolean | undefined;
36122
36087
  internally_connected_source_port_ids?: string[][] | undefined;
36123
36088
  display_resistance?: string | undefined;
@@ -36129,10 +36094,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36129
36094
  resistance: string | number;
36130
36095
  subcircuit_id?: string | undefined;
36131
36096
  source_group_id?: string | undefined;
36097
+ display_name?: string | undefined;
36132
36098
  manufacturer_part_number?: string | undefined;
36133
36099
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36134
36100
  display_value?: string | undefined;
36135
- display_name?: string | undefined;
36136
36101
  are_pins_interchangeable?: boolean | undefined;
36137
36102
  internally_connected_source_port_ids?: string[][] | undefined;
36138
36103
  display_resistance?: string | undefined;
@@ -36159,10 +36124,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36159
36124
  ftype: "simple_power_source";
36160
36125
  subcircuit_id?: string | undefined;
36161
36126
  source_group_id?: string | undefined;
36127
+ display_name?: string | undefined;
36162
36128
  manufacturer_part_number?: string | undefined;
36163
36129
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36164
36130
  display_value?: string | undefined;
36165
- display_name?: string | undefined;
36166
36131
  are_pins_interchangeable?: boolean | undefined;
36167
36132
  internally_connected_source_port_ids?: string[][] | undefined;
36168
36133
  }, {
@@ -36173,10 +36138,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36173
36138
  ftype: "simple_power_source";
36174
36139
  subcircuit_id?: string | undefined;
36175
36140
  source_group_id?: string | undefined;
36141
+ display_name?: string | undefined;
36176
36142
  manufacturer_part_number?: string | undefined;
36177
36143
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36178
36144
  display_value?: string | undefined;
36179
- display_name?: string | undefined;
36180
36145
  are_pins_interchangeable?: boolean | undefined;
36181
36146
  internally_connected_source_port_ids?: string[][] | undefined;
36182
36147
  }>, z.ZodObject<{
@@ -36202,10 +36167,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36202
36167
  capacity: number;
36203
36168
  subcircuit_id?: string | undefined;
36204
36169
  source_group_id?: string | undefined;
36170
+ display_name?: string | undefined;
36205
36171
  manufacturer_part_number?: string | undefined;
36206
36172
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36207
36173
  display_value?: string | undefined;
36208
- display_name?: string | undefined;
36209
36174
  are_pins_interchangeable?: boolean | undefined;
36210
36175
  internally_connected_source_port_ids?: string[][] | undefined;
36211
36176
  }, {
@@ -36216,10 +36181,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36216
36181
  capacity: string | number;
36217
36182
  subcircuit_id?: string | undefined;
36218
36183
  source_group_id?: string | undefined;
36184
+ display_name?: string | undefined;
36219
36185
  manufacturer_part_number?: string | undefined;
36220
36186
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36221
36187
  display_value?: string | undefined;
36222
- display_name?: string | undefined;
36223
36188
  are_pins_interchangeable?: boolean | undefined;
36224
36189
  internally_connected_source_port_ids?: string[][] | undefined;
36225
36190
  }>, z.ZodObject<{
@@ -36247,10 +36212,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36247
36212
  inductance: number;
36248
36213
  subcircuit_id?: string | undefined;
36249
36214
  source_group_id?: string | undefined;
36215
+ display_name?: string | undefined;
36250
36216
  manufacturer_part_number?: string | undefined;
36251
36217
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36252
36218
  display_value?: string | undefined;
36253
- display_name?: string | undefined;
36254
36219
  are_pins_interchangeable?: boolean | undefined;
36255
36220
  internally_connected_source_port_ids?: string[][] | undefined;
36256
36221
  display_inductance?: string | undefined;
@@ -36263,10 +36228,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36263
36228
  inductance: string | number;
36264
36229
  subcircuit_id?: string | undefined;
36265
36230
  source_group_id?: string | undefined;
36231
+ display_name?: string | undefined;
36266
36232
  manufacturer_part_number?: string | undefined;
36267
36233
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36268
36234
  display_value?: string | undefined;
36269
- display_name?: string | undefined;
36270
36235
  are_pins_interchangeable?: boolean | undefined;
36271
36236
  internally_connected_source_port_ids?: string[][] | undefined;
36272
36237
  display_inductance?: string | undefined;
@@ -36296,10 +36261,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36296
36261
  gender: "male" | "female";
36297
36262
  subcircuit_id?: string | undefined;
36298
36263
  source_group_id?: string | undefined;
36264
+ display_name?: string | undefined;
36299
36265
  manufacturer_part_number?: string | undefined;
36300
36266
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36301
36267
  display_value?: string | undefined;
36302
- display_name?: string | undefined;
36303
36268
  are_pins_interchangeable?: boolean | undefined;
36304
36269
  internally_connected_source_port_ids?: string[][] | undefined;
36305
36270
  }, {
@@ -36310,10 +36275,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36310
36275
  pin_count: number;
36311
36276
  subcircuit_id?: string | undefined;
36312
36277
  source_group_id?: string | undefined;
36278
+ display_name?: string | undefined;
36313
36279
  manufacturer_part_number?: string | undefined;
36314
36280
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36315
36281
  display_value?: string | undefined;
36316
- display_name?: string | undefined;
36317
36282
  are_pins_interchangeable?: boolean | undefined;
36318
36283
  internally_connected_source_port_ids?: string[][] | undefined;
36319
36284
  gender?: "male" | "female" | undefined;
@@ -36338,10 +36303,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36338
36303
  ftype: "simple_pinout";
36339
36304
  subcircuit_id?: string | undefined;
36340
36305
  source_group_id?: string | undefined;
36306
+ display_name?: string | undefined;
36341
36307
  manufacturer_part_number?: string | undefined;
36342
36308
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36343
36309
  display_value?: string | undefined;
36344
- display_name?: string | undefined;
36345
36310
  are_pins_interchangeable?: boolean | undefined;
36346
36311
  internally_connected_source_port_ids?: string[][] | undefined;
36347
36312
  }, {
@@ -36351,10 +36316,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36351
36316
  ftype: "simple_pinout";
36352
36317
  subcircuit_id?: string | undefined;
36353
36318
  source_group_id?: string | undefined;
36319
+ display_name?: string | undefined;
36354
36320
  manufacturer_part_number?: string | undefined;
36355
36321
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36356
36322
  display_value?: string | undefined;
36357
- display_name?: string | undefined;
36358
36323
  are_pins_interchangeable?: boolean | undefined;
36359
36324
  internally_connected_source_port_ids?: string[][] | undefined;
36360
36325
  }>, z.ZodObject<{
@@ -36383,10 +36348,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36383
36348
  load_capacitance: number;
36384
36349
  subcircuit_id?: string | undefined;
36385
36350
  source_group_id?: string | undefined;
36351
+ display_name?: string | undefined;
36386
36352
  manufacturer_part_number?: string | undefined;
36387
36353
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36388
36354
  display_value?: string | undefined;
36389
- display_name?: string | undefined;
36390
36355
  are_pins_interchangeable?: boolean | undefined;
36391
36356
  internally_connected_source_port_ids?: string[][] | undefined;
36392
36357
  equivalent_series_resistance?: number | undefined;
@@ -36399,10 +36364,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36399
36364
  load_capacitance: string | number;
36400
36365
  subcircuit_id?: string | undefined;
36401
36366
  source_group_id?: string | undefined;
36367
+ display_name?: string | undefined;
36402
36368
  manufacturer_part_number?: string | undefined;
36403
36369
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36404
36370
  display_value?: string | undefined;
36405
- display_name?: string | undefined;
36406
36371
  are_pins_interchangeable?: boolean | undefined;
36407
36372
  internally_connected_source_port_ids?: string[][] | undefined;
36408
36373
  equivalent_series_resistance?: string | number | undefined;
@@ -36427,10 +36392,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36427
36392
  ftype: "simple_switch";
36428
36393
  subcircuit_id?: string | undefined;
36429
36394
  source_group_id?: string | undefined;
36395
+ display_name?: string | undefined;
36430
36396
  manufacturer_part_number?: string | undefined;
36431
36397
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36432
36398
  display_value?: string | undefined;
36433
- display_name?: string | undefined;
36434
36399
  are_pins_interchangeable?: boolean | undefined;
36435
36400
  internally_connected_source_port_ids?: string[][] | undefined;
36436
36401
  }, {
@@ -36440,10 +36405,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36440
36405
  ftype: "simple_switch";
36441
36406
  subcircuit_id?: string | undefined;
36442
36407
  source_group_id?: string | undefined;
36408
+ display_name?: string | undefined;
36443
36409
  manufacturer_part_number?: string | undefined;
36444
36410
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36445
36411
  display_value?: string | undefined;
36446
- display_name?: string | undefined;
36447
36412
  are_pins_interchangeable?: boolean | undefined;
36448
36413
  internally_connected_source_port_ids?: string[][] | undefined;
36449
36414
  }>, z.ZodObject<{
@@ -36469,10 +36434,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36469
36434
  transistor_type: "npn" | "pnp";
36470
36435
  subcircuit_id?: string | undefined;
36471
36436
  source_group_id?: string | undefined;
36437
+ display_name?: string | undefined;
36472
36438
  manufacturer_part_number?: string | undefined;
36473
36439
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36474
36440
  display_value?: string | undefined;
36475
- display_name?: string | undefined;
36476
36441
  are_pins_interchangeable?: boolean | undefined;
36477
36442
  internally_connected_source_port_ids?: string[][] | undefined;
36478
36443
  }, {
@@ -36483,10 +36448,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36483
36448
  transistor_type: "npn" | "pnp";
36484
36449
  subcircuit_id?: string | undefined;
36485
36450
  source_group_id?: string | undefined;
36451
+ display_name?: string | undefined;
36486
36452
  manufacturer_part_number?: string | undefined;
36487
36453
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36488
36454
  display_value?: string | undefined;
36489
- display_name?: string | undefined;
36490
36455
  are_pins_interchangeable?: boolean | undefined;
36491
36456
  internally_connected_source_port_ids?: string[][] | undefined;
36492
36457
  }>, z.ZodObject<{
@@ -36520,10 +36485,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36520
36485
  hole_diameter?: string | number | undefined;
36521
36486
  pad_shape?: "circle" | "rect" | undefined;
36522
36487
  source_group_id?: string | undefined;
36488
+ display_name?: string | undefined;
36523
36489
  manufacturer_part_number?: string | undefined;
36524
36490
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36525
36491
  display_value?: string | undefined;
36526
- display_name?: string | undefined;
36527
36492
  are_pins_interchangeable?: boolean | undefined;
36528
36493
  internally_connected_source_port_ids?: string[][] | undefined;
36529
36494
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -36539,10 +36504,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36539
36504
  hole_diameter?: string | number | undefined;
36540
36505
  pad_shape?: "circle" | "rect" | undefined;
36541
36506
  source_group_id?: string | undefined;
36507
+ display_name?: string | undefined;
36542
36508
  manufacturer_part_number?: string | undefined;
36543
36509
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36544
36510
  display_value?: string | undefined;
36545
- display_name?: string | undefined;
36546
36511
  are_pins_interchangeable?: boolean | undefined;
36547
36512
  internally_connected_source_port_ids?: string[][] | undefined;
36548
36513
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -36572,10 +36537,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36572
36537
  mosfet_mode: "enhancement" | "depletion";
36573
36538
  subcircuit_id?: string | undefined;
36574
36539
  source_group_id?: string | undefined;
36540
+ display_name?: string | undefined;
36575
36541
  manufacturer_part_number?: string | undefined;
36576
36542
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36577
36543
  display_value?: string | undefined;
36578
- display_name?: string | undefined;
36579
36544
  are_pins_interchangeable?: boolean | undefined;
36580
36545
  internally_connected_source_port_ids?: string[][] | undefined;
36581
36546
  }, {
@@ -36587,10 +36552,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36587
36552
  mosfet_mode: "enhancement" | "depletion";
36588
36553
  subcircuit_id?: string | undefined;
36589
36554
  source_group_id?: string | undefined;
36555
+ display_name?: string | undefined;
36590
36556
  manufacturer_part_number?: string | undefined;
36591
36557
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36592
36558
  display_value?: string | undefined;
36593
- display_name?: string | undefined;
36594
36559
  are_pins_interchangeable?: boolean | undefined;
36595
36560
  internally_connected_source_port_ids?: string[][] | undefined;
36596
36561
  }>, z.ZodObject<{
@@ -36614,10 +36579,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36614
36579
  ftype: "simple_op_amp";
36615
36580
  subcircuit_id?: string | undefined;
36616
36581
  source_group_id?: string | undefined;
36582
+ display_name?: string | undefined;
36617
36583
  manufacturer_part_number?: string | undefined;
36618
36584
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36619
36585
  display_value?: string | undefined;
36620
- display_name?: string | undefined;
36621
36586
  are_pins_interchangeable?: boolean | undefined;
36622
36587
  internally_connected_source_port_ids?: string[][] | undefined;
36623
36588
  }, {
@@ -36627,10 +36592,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36627
36592
  ftype: "simple_op_amp";
36628
36593
  subcircuit_id?: string | undefined;
36629
36594
  source_group_id?: string | undefined;
36595
+ display_name?: string | undefined;
36630
36596
  manufacturer_part_number?: string | undefined;
36631
36597
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36632
36598
  display_value?: string | undefined;
36633
- display_name?: string | undefined;
36634
36599
  are_pins_interchangeable?: boolean | undefined;
36635
36600
  internally_connected_source_port_ids?: string[][] | undefined;
36636
36601
  }>, z.ZodObject<{
@@ -36657,10 +36622,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36657
36622
  max_resistance: number;
36658
36623
  subcircuit_id?: string | undefined;
36659
36624
  source_group_id?: string | undefined;
36625
+ display_name?: string | undefined;
36660
36626
  manufacturer_part_number?: string | undefined;
36661
36627
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36662
36628
  display_value?: string | undefined;
36663
- display_name?: string | undefined;
36664
36629
  are_pins_interchangeable?: boolean | undefined;
36665
36630
  internally_connected_source_port_ids?: string[][] | undefined;
36666
36631
  display_max_resistance?: string | undefined;
@@ -36672,10 +36637,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36672
36637
  max_resistance: string | number;
36673
36638
  subcircuit_id?: string | undefined;
36674
36639
  source_group_id?: string | undefined;
36640
+ display_name?: string | undefined;
36675
36641
  manufacturer_part_number?: string | undefined;
36676
36642
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36677
36643
  display_value?: string | undefined;
36678
- display_name?: string | undefined;
36679
36644
  are_pins_interchangeable?: boolean | undefined;
36680
36645
  internally_connected_source_port_ids?: string[][] | undefined;
36681
36646
  display_max_resistance?: string | undefined;
@@ -36700,10 +36665,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36700
36665
  ftype: "simple_push_button";
36701
36666
  subcircuit_id?: string | undefined;
36702
36667
  source_group_id?: string | undefined;
36668
+ display_name?: string | undefined;
36703
36669
  manufacturer_part_number?: string | undefined;
36704
36670
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36705
36671
  display_value?: string | undefined;
36706
- display_name?: string | undefined;
36707
36672
  are_pins_interchangeable?: boolean | undefined;
36708
36673
  internally_connected_source_port_ids?: string[][] | undefined;
36709
36674
  }, {
@@ -36713,10 +36678,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36713
36678
  ftype: "simple_push_button";
36714
36679
  subcircuit_id?: string | undefined;
36715
36680
  source_group_id?: string | undefined;
36681
+ display_name?: string | undefined;
36716
36682
  manufacturer_part_number?: string | undefined;
36717
36683
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36718
36684
  display_value?: string | undefined;
36719
- display_name?: string | undefined;
36720
36685
  are_pins_interchangeable?: boolean | undefined;
36721
36686
  internally_connected_source_port_ids?: string[][] | undefined;
36722
36687
  }>, z.ZodObject<{
@@ -52651,22 +52616,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52651
52616
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
52652
52617
  subcircuit_id: z.ZodOptional<z.ZodString>;
52653
52618
  color: z.ZodOptional<z.ZodString>;
52654
- display_options: z.ZodOptional<z.ZodObject<{
52655
- label: z.ZodOptional<z.ZodString>;
52656
- center: z.ZodOptional<z.ZodNumber>;
52657
- offset_divs: z.ZodOptional<z.ZodNumber>;
52658
- units_per_div: z.ZodOptional<z.ZodNumber>;
52659
- }, "strip", z.ZodTypeAny, {
52660
- center?: number | undefined;
52661
- label?: string | undefined;
52662
- offset_divs?: number | undefined;
52663
- units_per_div?: number | undefined;
52664
- }, {
52665
- center?: number | undefined;
52666
- label?: string | undefined;
52667
- offset_divs?: number | undefined;
52668
- units_per_div?: number | undefined;
52669
- }>>;
52670
52619
  }, "strip", z.ZodTypeAny, {
52671
52620
  type: "simulation_voltage_probe";
52672
52621
  simulation_voltage_probe_id: string;
@@ -52678,12 +52627,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52678
52627
  signal_input_source_net_id?: string | undefined;
52679
52628
  reference_input_source_port_id?: string | undefined;
52680
52629
  reference_input_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
52630
  }, {
52688
52631
  type: "simulation_voltage_probe";
52689
52632
  name?: string | undefined;
@@ -52695,12 +52638,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52695
52638
  signal_input_source_net_id?: string | undefined;
52696
52639
  reference_input_source_port_id?: string | undefined;
52697
52640
  reference_input_source_net_id?: string | undefined;
52698
- display_options?: {
52699
- center?: number | undefined;
52700
- label?: string | undefined;
52701
- offset_divs?: number | undefined;
52702
- units_per_div?: number | undefined;
52703
- } | undefined;
52704
52641
  }>, {
52705
52642
  type: "simulation_voltage_probe";
52706
52643
  simulation_voltage_probe_id: string;
@@ -52712,12 +52649,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52712
52649
  signal_input_source_net_id?: string | undefined;
52713
52650
  reference_input_source_port_id?: string | undefined;
52714
52651
  reference_input_source_net_id?: string | undefined;
52715
- display_options?: {
52716
- center?: number | undefined;
52717
- label?: string | undefined;
52718
- offset_divs?: number | undefined;
52719
- units_per_div?: number | undefined;
52720
- } | undefined;
52721
52652
  }, {
52722
52653
  type: "simulation_voltage_probe";
52723
52654
  name?: string | undefined;
@@ -52729,12 +52660,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52729
52660
  signal_input_source_net_id?: string | undefined;
52730
52661
  reference_input_source_port_id?: string | undefined;
52731
52662
  reference_input_source_net_id?: string | undefined;
52732
- display_options?: {
52733
- center?: number | undefined;
52734
- label?: string | undefined;
52735
- offset_divs?: number | undefined;
52736
- units_per_div?: number | undefined;
52737
- } | undefined;
52738
52663
  }>, z.ZodEffects<z.ZodObject<{
52739
52664
  type: z.ZodLiteral<"simulation_current_probe">;
52740
52665
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -52746,22 +52671,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52746
52671
  negative_source_net_id: z.ZodOptional<z.ZodString>;
52747
52672
  subcircuit_id: z.ZodOptional<z.ZodString>;
52748
52673
  color: z.ZodOptional<z.ZodString>;
52749
- display_options: z.ZodOptional<z.ZodObject<{
52750
- label: z.ZodOptional<z.ZodString>;
52751
- center: z.ZodOptional<z.ZodNumber>;
52752
- offset_divs: z.ZodOptional<z.ZodNumber>;
52753
- units_per_div: z.ZodOptional<z.ZodNumber>;
52754
- }, "strip", z.ZodTypeAny, {
52755
- center?: number | undefined;
52756
- label?: string | undefined;
52757
- offset_divs?: number | undefined;
52758
- units_per_div?: number | undefined;
52759
- }, {
52760
- center?: number | undefined;
52761
- label?: string | undefined;
52762
- offset_divs?: number | undefined;
52763
- units_per_div?: number | undefined;
52764
- }>>;
52765
52674
  }, "strip", z.ZodTypeAny, {
52766
52675
  type: "simulation_current_probe";
52767
52676
  simulation_current_probe_id: string;
@@ -52773,12 +52682,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52773
52682
  negative_source_port_id?: string | undefined;
52774
52683
  positive_source_net_id?: string | undefined;
52775
52684
  negative_source_net_id?: string | undefined;
52776
- display_options?: {
52777
- center?: number | undefined;
52778
- label?: string | undefined;
52779
- offset_divs?: number | undefined;
52780
- units_per_div?: number | undefined;
52781
- } | undefined;
52782
52685
  }, {
52783
52686
  type: "simulation_current_probe";
52784
52687
  name?: string | undefined;
@@ -52789,12 +52692,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52789
52692
  negative_source_port_id?: string | undefined;
52790
52693
  positive_source_net_id?: string | undefined;
52791
52694
  negative_source_net_id?: string | undefined;
52792
- display_options?: {
52793
- center?: number | undefined;
52794
- label?: string | undefined;
52795
- offset_divs?: number | undefined;
52796
- units_per_div?: number | undefined;
52797
- } | undefined;
52798
52695
  simulation_current_probe_id?: string | undefined;
52799
52696
  }>, {
52800
52697
  type: "simulation_current_probe";
@@ -52807,12 +52704,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52807
52704
  negative_source_port_id?: string | undefined;
52808
52705
  positive_source_net_id?: string | undefined;
52809
52706
  negative_source_net_id?: string | undefined;
52810
- display_options?: {
52811
- center?: number | undefined;
52812
- label?: string | undefined;
52813
- offset_divs?: number | undefined;
52814
- units_per_div?: number | undefined;
52815
- } | undefined;
52816
52707
  }, {
52817
52708
  type: "simulation_current_probe";
52818
52709
  name?: string | undefined;
@@ -52823,13 +52714,72 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52823
52714
  negative_source_port_id?: string | undefined;
52824
52715
  positive_source_net_id?: string | undefined;
52825
52716
  negative_source_net_id?: string | undefined;
52826
- display_options?: {
52827
- center?: number | undefined;
52828
- label?: string | undefined;
52829
- offset_divs?: number | undefined;
52830
- units_per_div?: number | undefined;
52831
- } | undefined;
52832
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;
52833
52783
  }>, z.ZodObject<{
52834
52784
  message: z.ZodString;
52835
52785
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -53121,10 +53071,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53121
53071
  resistance: number;
53122
53072
  subcircuit_id?: string | undefined;
53123
53073
  source_group_id?: string | undefined;
53074
+ display_name?: string | undefined;
53124
53075
  manufacturer_part_number?: string | undefined;
53125
53076
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53126
53077
  display_value?: string | undefined;
53127
- display_name?: string | undefined;
53128
53078
  are_pins_interchangeable?: boolean | undefined;
53129
53079
  internally_connected_source_port_ids?: string[][] | undefined;
53130
53080
  display_resistance?: string | undefined;
@@ -53136,10 +53086,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53136
53086
  resistance: string | number;
53137
53087
  subcircuit_id?: string | undefined;
53138
53088
  source_group_id?: string | undefined;
53089
+ display_name?: string | undefined;
53139
53090
  manufacturer_part_number?: string | undefined;
53140
53091
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53141
53092
  display_value?: string | undefined;
53142
- display_name?: string | undefined;
53143
53093
  are_pins_interchangeable?: boolean | undefined;
53144
53094
  internally_connected_source_port_ids?: string[][] | undefined;
53145
53095
  display_resistance?: string | undefined;
@@ -53169,10 +53119,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53169
53119
  capacitance: number;
53170
53120
  subcircuit_id?: string | undefined;
53171
53121
  source_group_id?: string | undefined;
53122
+ display_name?: string | undefined;
53172
53123
  manufacturer_part_number?: string | undefined;
53173
53124
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53174
53125
  display_value?: string | undefined;
53175
- display_name?: string | undefined;
53176
53126
  are_pins_interchangeable?: boolean | undefined;
53177
53127
  internally_connected_source_port_ids?: string[][] | undefined;
53178
53128
  max_voltage_rating?: number | undefined;
@@ -53186,10 +53136,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53186
53136
  capacitance: string | number;
53187
53137
  subcircuit_id?: string | undefined;
53188
53138
  source_group_id?: string | undefined;
53139
+ display_name?: string | undefined;
53189
53140
  manufacturer_part_number?: string | undefined;
53190
53141
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53191
53142
  display_value?: string | undefined;
53192
- display_name?: string | undefined;
53193
53143
  are_pins_interchangeable?: boolean | undefined;
53194
53144
  internally_connected_source_port_ids?: string[][] | undefined;
53195
53145
  max_voltage_rating?: string | number | undefined;
@@ -53216,10 +53166,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53216
53166
  ftype: "simple_diode";
53217
53167
  subcircuit_id?: string | undefined;
53218
53168
  source_group_id?: string | undefined;
53169
+ display_name?: string | undefined;
53219
53170
  manufacturer_part_number?: string | undefined;
53220
53171
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53221
53172
  display_value?: string | undefined;
53222
- display_name?: string | undefined;
53223
53173
  are_pins_interchangeable?: boolean | undefined;
53224
53174
  internally_connected_source_port_ids?: string[][] | undefined;
53225
53175
  }, {
@@ -53229,10 +53179,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53229
53179
  ftype: "simple_diode";
53230
53180
  subcircuit_id?: string | undefined;
53231
53181
  source_group_id?: string | undefined;
53182
+ display_name?: string | undefined;
53232
53183
  manufacturer_part_number?: string | undefined;
53233
53184
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53234
53185
  display_value?: string | undefined;
53235
- display_name?: string | undefined;
53236
53186
  are_pins_interchangeable?: boolean | undefined;
53237
53187
  internally_connected_source_port_ids?: string[][] | undefined;
53238
53188
  }>, z.ZodObject<{
@@ -53256,10 +53206,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53256
53206
  ftype: "simple_fiducial";
53257
53207
  subcircuit_id?: string | undefined;
53258
53208
  source_group_id?: string | undefined;
53209
+ display_name?: string | undefined;
53259
53210
  manufacturer_part_number?: string | undefined;
53260
53211
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53261
53212
  display_value?: string | undefined;
53262
- display_name?: string | undefined;
53263
53213
  are_pins_interchangeable?: boolean | undefined;
53264
53214
  internally_connected_source_port_ids?: string[][] | undefined;
53265
53215
  }, {
@@ -53269,10 +53219,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53269
53219
  ftype: "simple_fiducial";
53270
53220
  subcircuit_id?: string | undefined;
53271
53221
  source_group_id?: string | undefined;
53222
+ display_name?: string | undefined;
53272
53223
  manufacturer_part_number?: string | undefined;
53273
53224
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53274
53225
  display_value?: string | undefined;
53275
- display_name?: string | undefined;
53276
53226
  are_pins_interchangeable?: boolean | undefined;
53277
53227
  internally_connected_source_port_ids?: string[][] | undefined;
53278
53228
  }>, z.ZodObject<{
@@ -53299,10 +53249,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53299
53249
  subcircuit_id?: string | undefined;
53300
53250
  color?: string | undefined;
53301
53251
  source_group_id?: string | undefined;
53252
+ display_name?: string | undefined;
53302
53253
  manufacturer_part_number?: string | undefined;
53303
53254
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53304
53255
  display_value?: string | undefined;
53305
- display_name?: string | undefined;
53306
53256
  are_pins_interchangeable?: boolean | undefined;
53307
53257
  internally_connected_source_port_ids?: string[][] | undefined;
53308
53258
  wavelength?: string | undefined;
@@ -53314,10 +53264,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53314
53264
  subcircuit_id?: string | undefined;
53315
53265
  color?: string | undefined;
53316
53266
  source_group_id?: string | undefined;
53267
+ display_name?: string | undefined;
53317
53268
  manufacturer_part_number?: string | undefined;
53318
53269
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53319
53270
  display_value?: string | undefined;
53320
- display_name?: string | undefined;
53321
53271
  are_pins_interchangeable?: boolean | undefined;
53322
53272
  internally_connected_source_port_ids?: string[][] | undefined;
53323
53273
  wavelength?: string | undefined;
@@ -53342,10 +53292,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53342
53292
  ftype: "simple_ground";
53343
53293
  subcircuit_id?: string | undefined;
53344
53294
  source_group_id?: string | undefined;
53295
+ display_name?: string | undefined;
53345
53296
  manufacturer_part_number?: string | undefined;
53346
53297
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53347
53298
  display_value?: string | undefined;
53348
- display_name?: string | undefined;
53349
53299
  are_pins_interchangeable?: boolean | undefined;
53350
53300
  internally_connected_source_port_ids?: string[][] | undefined;
53351
53301
  }, {
@@ -53355,10 +53305,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53355
53305
  ftype: "simple_ground";
53356
53306
  subcircuit_id?: string | undefined;
53357
53307
  source_group_id?: string | undefined;
53308
+ display_name?: string | undefined;
53358
53309
  manufacturer_part_number?: string | undefined;
53359
53310
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53360
53311
  display_value?: string | undefined;
53361
- display_name?: string | undefined;
53362
53312
  are_pins_interchangeable?: boolean | undefined;
53363
53313
  internally_connected_source_port_ids?: string[][] | undefined;
53364
53314
  }>, z.ZodObject<{
@@ -53382,10 +53332,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53382
53332
  ftype: "simple_chip";
53383
53333
  subcircuit_id?: string | undefined;
53384
53334
  source_group_id?: string | undefined;
53335
+ display_name?: string | undefined;
53385
53336
  manufacturer_part_number?: string | undefined;
53386
53337
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53387
53338
  display_value?: string | undefined;
53388
- display_name?: string | undefined;
53389
53339
  are_pins_interchangeable?: boolean | undefined;
53390
53340
  internally_connected_source_port_ids?: string[][] | undefined;
53391
53341
  }, {
@@ -53395,10 +53345,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53395
53345
  ftype: "simple_chip";
53396
53346
  subcircuit_id?: string | undefined;
53397
53347
  source_group_id?: string | undefined;
53348
+ display_name?: string | undefined;
53398
53349
  manufacturer_part_number?: string | undefined;
53399
53350
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53400
53351
  display_value?: string | undefined;
53401
- display_name?: string | undefined;
53402
53352
  are_pins_interchangeable?: boolean | undefined;
53403
53353
  internally_connected_source_port_ids?: string[][] | undefined;
53404
53354
  }>, z.ZodObject<{
@@ -53424,10 +53374,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53424
53374
  ftype: "simple_power_source";
53425
53375
  subcircuit_id?: string | undefined;
53426
53376
  source_group_id?: string | undefined;
53377
+ display_name?: string | undefined;
53427
53378
  manufacturer_part_number?: string | undefined;
53428
53379
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53429
53380
  display_value?: string | undefined;
53430
- display_name?: string | undefined;
53431
53381
  are_pins_interchangeable?: boolean | undefined;
53432
53382
  internally_connected_source_port_ids?: string[][] | undefined;
53433
53383
  }, {
@@ -53438,10 +53388,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53438
53388
  ftype: "simple_power_source";
53439
53389
  subcircuit_id?: string | undefined;
53440
53390
  source_group_id?: string | undefined;
53391
+ display_name?: string | undefined;
53441
53392
  manufacturer_part_number?: string | undefined;
53442
53393
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53443
53394
  display_value?: string | undefined;
53444
- display_name?: string | undefined;
53445
53395
  are_pins_interchangeable?: boolean | undefined;
53446
53396
  internally_connected_source_port_ids?: string[][] | undefined;
53447
53397
  }>, z.ZodObject<{
@@ -53477,10 +53427,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53477
53427
  phase?: number | undefined;
53478
53428
  duty_cycle?: number | undefined;
53479
53429
  peak_to_peak_current?: number | undefined;
53430
+ display_name?: string | undefined;
53480
53431
  manufacturer_part_number?: string | undefined;
53481
53432
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53482
53433
  display_value?: string | undefined;
53483
- display_name?: string | undefined;
53484
53434
  are_pins_interchangeable?: boolean | undefined;
53485
53435
  internally_connected_source_port_ids?: string[][] | undefined;
53486
53436
  }, {
@@ -53496,10 +53446,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53496
53446
  phase?: number | undefined;
53497
53447
  duty_cycle?: number | undefined;
53498
53448
  peak_to_peak_current?: string | number | undefined;
53449
+ display_name?: string | undefined;
53499
53450
  manufacturer_part_number?: string | undefined;
53500
53451
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53501
53452
  display_value?: string | undefined;
53502
- display_name?: string | undefined;
53503
53453
  are_pins_interchangeable?: boolean | undefined;
53504
53454
  internally_connected_source_port_ids?: string[][] | undefined;
53505
53455
  }>, z.ZodObject<{
@@ -53523,10 +53473,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53523
53473
  ftype: "simple_ammeter";
53524
53474
  subcircuit_id?: string | undefined;
53525
53475
  source_group_id?: string | undefined;
53476
+ display_name?: string | undefined;
53526
53477
  manufacturer_part_number?: string | undefined;
53527
53478
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53528
53479
  display_value?: string | undefined;
53529
- display_name?: string | undefined;
53530
53480
  are_pins_interchangeable?: boolean | undefined;
53531
53481
  internally_connected_source_port_ids?: string[][] | undefined;
53532
53482
  }, {
@@ -53536,10 +53486,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53536
53486
  ftype: "simple_ammeter";
53537
53487
  subcircuit_id?: string | undefined;
53538
53488
  source_group_id?: string | undefined;
53489
+ display_name?: string | undefined;
53539
53490
  manufacturer_part_number?: string | undefined;
53540
53491
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53541
53492
  display_value?: string | undefined;
53542
- display_name?: string | undefined;
53543
53493
  are_pins_interchangeable?: boolean | undefined;
53544
53494
  internally_connected_source_port_ids?: string[][] | undefined;
53545
53495
  }>, z.ZodObject<{
@@ -53565,10 +53515,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53565
53515
  capacity: number;
53566
53516
  subcircuit_id?: string | undefined;
53567
53517
  source_group_id?: string | undefined;
53518
+ display_name?: string | undefined;
53568
53519
  manufacturer_part_number?: string | undefined;
53569
53520
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53570
53521
  display_value?: string | undefined;
53571
- display_name?: string | undefined;
53572
53522
  are_pins_interchangeable?: boolean | undefined;
53573
53523
  internally_connected_source_port_ids?: string[][] | undefined;
53574
53524
  }, {
@@ -53579,10 +53529,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53579
53529
  capacity: string | number;
53580
53530
  subcircuit_id?: string | undefined;
53581
53531
  source_group_id?: string | undefined;
53532
+ display_name?: string | undefined;
53582
53533
  manufacturer_part_number?: string | undefined;
53583
53534
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53584
53535
  display_value?: string | undefined;
53585
- display_name?: string | undefined;
53586
53536
  are_pins_interchangeable?: boolean | undefined;
53587
53537
  internally_connected_source_port_ids?: string[][] | undefined;
53588
53538
  }>, z.ZodObject<{
@@ -53610,10 +53560,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53610
53560
  inductance: number;
53611
53561
  subcircuit_id?: string | undefined;
53612
53562
  source_group_id?: string | undefined;
53563
+ display_name?: string | undefined;
53613
53564
  manufacturer_part_number?: string | undefined;
53614
53565
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53615
53566
  display_value?: string | undefined;
53616
- display_name?: string | undefined;
53617
53567
  are_pins_interchangeable?: boolean | undefined;
53618
53568
  internally_connected_source_port_ids?: string[][] | undefined;
53619
53569
  display_inductance?: string | undefined;
@@ -53626,10 +53576,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53626
53576
  inductance: string | number;
53627
53577
  subcircuit_id?: string | undefined;
53628
53578
  source_group_id?: string | undefined;
53579
+ display_name?: string | undefined;
53629
53580
  manufacturer_part_number?: string | undefined;
53630
53581
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53631
53582
  display_value?: string | undefined;
53632
- display_name?: string | undefined;
53633
53583
  are_pins_interchangeable?: boolean | undefined;
53634
53584
  internally_connected_source_port_ids?: string[][] | undefined;
53635
53585
  display_inductance?: string | undefined;
@@ -53655,10 +53605,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53655
53605
  ftype: "simple_push_button";
53656
53606
  subcircuit_id?: string | undefined;
53657
53607
  source_group_id?: string | undefined;
53608
+ display_name?: string | undefined;
53658
53609
  manufacturer_part_number?: string | undefined;
53659
53610
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53660
53611
  display_value?: string | undefined;
53661
- display_name?: string | undefined;
53662
53612
  are_pins_interchangeable?: boolean | undefined;
53663
53613
  internally_connected_source_port_ids?: string[][] | undefined;
53664
53614
  }, {
@@ -53668,10 +53618,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53668
53618
  ftype: "simple_push_button";
53669
53619
  subcircuit_id?: string | undefined;
53670
53620
  source_group_id?: string | undefined;
53621
+ display_name?: string | undefined;
53671
53622
  manufacturer_part_number?: string | undefined;
53672
53623
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53673
53624
  display_value?: string | undefined;
53674
- display_name?: string | undefined;
53675
53625
  are_pins_interchangeable?: boolean | undefined;
53676
53626
  internally_connected_source_port_ids?: string[][] | undefined;
53677
53627
  }>, z.ZodObject<{
@@ -53698,10 +53648,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53698
53648
  max_resistance: number;
53699
53649
  subcircuit_id?: string | undefined;
53700
53650
  source_group_id?: string | undefined;
53651
+ display_name?: string | undefined;
53701
53652
  manufacturer_part_number?: string | undefined;
53702
53653
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53703
53654
  display_value?: string | undefined;
53704
- display_name?: string | undefined;
53705
53655
  are_pins_interchangeable?: boolean | undefined;
53706
53656
  internally_connected_source_port_ids?: string[][] | undefined;
53707
53657
  display_max_resistance?: string | undefined;
@@ -53713,10 +53663,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53713
53663
  max_resistance: string | number;
53714
53664
  subcircuit_id?: string | undefined;
53715
53665
  source_group_id?: string | undefined;
53666
+ display_name?: string | undefined;
53716
53667
  manufacturer_part_number?: string | undefined;
53717
53668
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53718
53669
  display_value?: string | undefined;
53719
- display_name?: string | undefined;
53720
53670
  are_pins_interchangeable?: boolean | undefined;
53721
53671
  internally_connected_source_port_ids?: string[][] | undefined;
53722
53672
  display_max_resistance?: string | undefined;
@@ -53745,10 +53695,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53745
53695
  ftype: "simple_crystal";
53746
53696
  subcircuit_id?: string | undefined;
53747
53697
  source_group_id?: string | undefined;
53698
+ display_name?: string | undefined;
53748
53699
  manufacturer_part_number?: string | undefined;
53749
53700
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53750
53701
  display_value?: string | undefined;
53751
- display_name?: string | undefined;
53752
53702
  are_pins_interchangeable?: boolean | undefined;
53753
53703
  internally_connected_source_port_ids?: string[][] | undefined;
53754
53704
  load_capacitance?: number | undefined;
@@ -53761,10 +53711,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53761
53711
  ftype: "simple_crystal";
53762
53712
  subcircuit_id?: string | undefined;
53763
53713
  source_group_id?: string | undefined;
53714
+ display_name?: string | undefined;
53764
53715
  manufacturer_part_number?: string | undefined;
53765
53716
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53766
53717
  display_value?: string | undefined;
53767
- display_name?: string | undefined;
53768
53718
  are_pins_interchangeable?: boolean | undefined;
53769
53719
  internally_connected_source_port_ids?: string[][] | undefined;
53770
53720
  load_capacitance?: number | undefined;
@@ -53794,10 +53744,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53794
53744
  gender: "male" | "female";
53795
53745
  subcircuit_id?: string | undefined;
53796
53746
  source_group_id?: string | undefined;
53747
+ display_name?: string | undefined;
53797
53748
  manufacturer_part_number?: string | undefined;
53798
53749
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53799
53750
  display_value?: string | undefined;
53800
- display_name?: string | undefined;
53801
53751
  are_pins_interchangeable?: boolean | undefined;
53802
53752
  internally_connected_source_port_ids?: string[][] | undefined;
53803
53753
  }, {
@@ -53808,10 +53758,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53808
53758
  pin_count: number;
53809
53759
  subcircuit_id?: string | undefined;
53810
53760
  source_group_id?: string | undefined;
53761
+ display_name?: string | undefined;
53811
53762
  manufacturer_part_number?: string | undefined;
53812
53763
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53813
53764
  display_value?: string | undefined;
53814
- display_name?: string | undefined;
53815
53765
  are_pins_interchangeable?: boolean | undefined;
53816
53766
  internally_connected_source_port_ids?: string[][] | undefined;
53817
53767
  gender?: "male" | "female" | undefined;
@@ -53837,10 +53787,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53837
53787
  ftype: "simple_connector";
53838
53788
  subcircuit_id?: string | undefined;
53839
53789
  source_group_id?: string | undefined;
53790
+ display_name?: string | undefined;
53840
53791
  manufacturer_part_number?: string | undefined;
53841
53792
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53842
53793
  display_value?: string | undefined;
53843
- display_name?: string | undefined;
53844
53794
  are_pins_interchangeable?: boolean | undefined;
53845
53795
  internally_connected_source_port_ids?: string[][] | undefined;
53846
53796
  standard?: "usb_c" | "m2" | undefined;
@@ -53851,10 +53801,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53851
53801
  ftype: "simple_connector";
53852
53802
  subcircuit_id?: string | undefined;
53853
53803
  source_group_id?: string | undefined;
53804
+ display_name?: string | undefined;
53854
53805
  manufacturer_part_number?: string | undefined;
53855
53806
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53856
53807
  display_value?: string | undefined;
53857
- display_name?: string | undefined;
53858
53808
  are_pins_interchangeable?: boolean | undefined;
53859
53809
  internally_connected_source_port_ids?: string[][] | undefined;
53860
53810
  standard?: "usb_c" | "m2" | undefined;
@@ -53879,10 +53829,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53879
53829
  ftype: "simple_pinout";
53880
53830
  subcircuit_id?: string | undefined;
53881
53831
  source_group_id?: string | undefined;
53832
+ display_name?: string | undefined;
53882
53833
  manufacturer_part_number?: string | undefined;
53883
53834
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53884
53835
  display_value?: string | undefined;
53885
- display_name?: string | undefined;
53886
53836
  are_pins_interchangeable?: boolean | undefined;
53887
53837
  internally_connected_source_port_ids?: string[][] | undefined;
53888
53838
  }, {
@@ -53892,10 +53842,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53892
53842
  ftype: "simple_pinout";
53893
53843
  subcircuit_id?: string | undefined;
53894
53844
  source_group_id?: string | undefined;
53845
+ display_name?: string | undefined;
53895
53846
  manufacturer_part_number?: string | undefined;
53896
53847
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53897
53848
  display_value?: string | undefined;
53898
- display_name?: string | undefined;
53899
53849
  are_pins_interchangeable?: boolean | undefined;
53900
53850
  internally_connected_source_port_ids?: string[][] | undefined;
53901
53851
  }>, z.ZodObject<{
@@ -53924,10 +53874,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53924
53874
  load_capacitance: number;
53925
53875
  subcircuit_id?: string | undefined;
53926
53876
  source_group_id?: string | undefined;
53877
+ display_name?: string | undefined;
53927
53878
  manufacturer_part_number?: string | undefined;
53928
53879
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53929
53880
  display_value?: string | undefined;
53930
- display_name?: string | undefined;
53931
53881
  are_pins_interchangeable?: boolean | undefined;
53932
53882
  internally_connected_source_port_ids?: string[][] | undefined;
53933
53883
  equivalent_series_resistance?: number | undefined;
@@ -53940,10 +53890,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53940
53890
  load_capacitance: string | number;
53941
53891
  subcircuit_id?: string | undefined;
53942
53892
  source_group_id?: string | undefined;
53893
+ display_name?: string | undefined;
53943
53894
  manufacturer_part_number?: string | undefined;
53944
53895
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53945
53896
  display_value?: string | undefined;
53946
- display_name?: string | undefined;
53947
53897
  are_pins_interchangeable?: boolean | undefined;
53948
53898
  internally_connected_source_port_ids?: string[][] | undefined;
53949
53899
  equivalent_series_resistance?: string | number | undefined;
@@ -53968,10 +53918,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53968
53918
  ftype: "simple_switch";
53969
53919
  subcircuit_id?: string | undefined;
53970
53920
  source_group_id?: string | undefined;
53921
+ display_name?: string | undefined;
53971
53922
  manufacturer_part_number?: string | undefined;
53972
53923
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53973
53924
  display_value?: string | undefined;
53974
- display_name?: string | undefined;
53975
53925
  are_pins_interchangeable?: boolean | undefined;
53976
53926
  internally_connected_source_port_ids?: string[][] | undefined;
53977
53927
  }, {
@@ -53981,10 +53931,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53981
53931
  ftype: "simple_switch";
53982
53932
  subcircuit_id?: string | undefined;
53983
53933
  source_group_id?: string | undefined;
53934
+ display_name?: string | undefined;
53984
53935
  manufacturer_part_number?: string | undefined;
53985
53936
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53986
53937
  display_value?: string | undefined;
53987
- display_name?: string | undefined;
53988
53938
  are_pins_interchangeable?: boolean | undefined;
53989
53939
  internally_connected_source_port_ids?: string[][] | undefined;
53990
53940
  }>, z.ZodObject<{
@@ -54010,10 +53960,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54010
53960
  transistor_type: "npn" | "pnp";
54011
53961
  subcircuit_id?: string | undefined;
54012
53962
  source_group_id?: string | undefined;
53963
+ display_name?: string | undefined;
54013
53964
  manufacturer_part_number?: string | undefined;
54014
53965
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54015
53966
  display_value?: string | undefined;
54016
- display_name?: string | undefined;
54017
53967
  are_pins_interchangeable?: boolean | undefined;
54018
53968
  internally_connected_source_port_ids?: string[][] | undefined;
54019
53969
  }, {
@@ -54024,10 +53974,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54024
53974
  transistor_type: "npn" | "pnp";
54025
53975
  subcircuit_id?: string | undefined;
54026
53976
  source_group_id?: string | undefined;
53977
+ display_name?: string | undefined;
54027
53978
  manufacturer_part_number?: string | undefined;
54028
53979
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54029
53980
  display_value?: string | undefined;
54030
- display_name?: string | undefined;
54031
53981
  are_pins_interchangeable?: boolean | undefined;
54032
53982
  internally_connected_source_port_ids?: string[][] | undefined;
54033
53983
  }>, z.ZodObject<{
@@ -54061,10 +54011,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54061
54011
  hole_diameter?: string | number | undefined;
54062
54012
  pad_shape?: "circle" | "rect" | undefined;
54063
54013
  source_group_id?: string | undefined;
54014
+ display_name?: string | undefined;
54064
54015
  manufacturer_part_number?: string | undefined;
54065
54016
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54066
54017
  display_value?: string | undefined;
54067
- display_name?: string | undefined;
54068
54018
  are_pins_interchangeable?: boolean | undefined;
54069
54019
  internally_connected_source_port_ids?: string[][] | undefined;
54070
54020
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -54080,10 +54030,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54080
54030
  hole_diameter?: string | number | undefined;
54081
54031
  pad_shape?: "circle" | "rect" | undefined;
54082
54032
  source_group_id?: string | undefined;
54033
+ display_name?: string | undefined;
54083
54034
  manufacturer_part_number?: string | undefined;
54084
54035
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54085
54036
  display_value?: string | undefined;
54086
- display_name?: string | undefined;
54087
54037
  are_pins_interchangeable?: boolean | undefined;
54088
54038
  internally_connected_source_port_ids?: string[][] | undefined;
54089
54039
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -54113,10 +54063,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54113
54063
  mosfet_mode: "enhancement" | "depletion";
54114
54064
  subcircuit_id?: string | undefined;
54115
54065
  source_group_id?: string | undefined;
54066
+ display_name?: string | undefined;
54116
54067
  manufacturer_part_number?: string | undefined;
54117
54068
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54118
54069
  display_value?: string | undefined;
54119
- display_name?: string | undefined;
54120
54070
  are_pins_interchangeable?: boolean | undefined;
54121
54071
  internally_connected_source_port_ids?: string[][] | undefined;
54122
54072
  }, {
@@ -54128,10 +54078,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54128
54078
  mosfet_mode: "enhancement" | "depletion";
54129
54079
  subcircuit_id?: string | undefined;
54130
54080
  source_group_id?: string | undefined;
54081
+ display_name?: string | undefined;
54131
54082
  manufacturer_part_number?: string | undefined;
54132
54083
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54133
54084
  display_value?: string | undefined;
54134
- display_name?: string | undefined;
54135
54085
  are_pins_interchangeable?: boolean | undefined;
54136
54086
  internally_connected_source_port_ids?: string[][] | undefined;
54137
54087
  }>, z.ZodObject<{
@@ -54155,10 +54105,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54155
54105
  ftype: "simple_op_amp";
54156
54106
  subcircuit_id?: string | undefined;
54157
54107
  source_group_id?: string | undefined;
54108
+ display_name?: string | undefined;
54158
54109
  manufacturer_part_number?: string | undefined;
54159
54110
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54160
54111
  display_value?: string | undefined;
54161
- display_name?: string | undefined;
54162
54112
  are_pins_interchangeable?: boolean | undefined;
54163
54113
  internally_connected_source_port_ids?: string[][] | undefined;
54164
54114
  }, {
@@ -54168,10 +54118,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54168
54118
  ftype: "simple_op_amp";
54169
54119
  subcircuit_id?: string | undefined;
54170
54120
  source_group_id?: string | undefined;
54121
+ display_name?: string | undefined;
54171
54122
  manufacturer_part_number?: string | undefined;
54172
54123
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54173
54124
  display_value?: string | undefined;
54174
- display_name?: string | undefined;
54175
54125
  are_pins_interchangeable?: boolean | undefined;
54176
54126
  internally_connected_source_port_ids?: string[][] | undefined;
54177
54127
  }>, z.ZodObject<{
@@ -54199,10 +54149,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54199
54149
  voltage_rating_volts: number;
54200
54150
  subcircuit_id?: string | undefined;
54201
54151
  source_group_id?: string | undefined;
54152
+ display_name?: string | undefined;
54202
54153
  manufacturer_part_number?: string | undefined;
54203
54154
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54204
54155
  display_value?: string | undefined;
54205
- display_name?: string | undefined;
54206
54156
  are_pins_interchangeable?: boolean | undefined;
54207
54157
  internally_connected_source_port_ids?: string[][] | undefined;
54208
54158
  }, {
@@ -54214,10 +54164,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54214
54164
  voltage_rating_volts: number;
54215
54165
  subcircuit_id?: string | undefined;
54216
54166
  source_group_id?: string | undefined;
54167
+ display_name?: string | undefined;
54217
54168
  manufacturer_part_number?: string | undefined;
54218
54169
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54219
54170
  display_value?: string | undefined;
54220
- display_name?: string | undefined;
54221
54171
  are_pins_interchangeable?: boolean | undefined;
54222
54172
  internally_connected_source_port_ids?: string[][] | undefined;
54223
54173
  }>, z.ZodObject<{
@@ -54241,10 +54191,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54241
54191
  ftype: "simple_voltage_probe";
54242
54192
  subcircuit_id?: string | undefined;
54243
54193
  source_group_id?: string | undefined;
54194
+ display_name?: string | undefined;
54244
54195
  manufacturer_part_number?: string | undefined;
54245
54196
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54246
54197
  display_value?: string | undefined;
54247
- display_name?: string | undefined;
54248
54198
  are_pins_interchangeable?: boolean | undefined;
54249
54199
  internally_connected_source_port_ids?: string[][] | undefined;
54250
54200
  }, {
@@ -54254,10 +54204,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54254
54204
  ftype: "simple_voltage_probe";
54255
54205
  subcircuit_id?: string | undefined;
54256
54206
  source_group_id?: string | undefined;
54207
+ display_name?: string | undefined;
54257
54208
  manufacturer_part_number?: string | undefined;
54258
54209
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54259
54210
  display_value?: string | undefined;
54260
- display_name?: string | undefined;
54261
54211
  are_pins_interchangeable?: boolean | undefined;
54262
54212
  internally_connected_source_port_ids?: string[][] | undefined;
54263
54213
  }>, z.ZodObject<{
@@ -54281,10 +54231,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54281
54231
  ftype: "interconnect";
54282
54232
  subcircuit_id?: string | undefined;
54283
54233
  source_group_id?: string | undefined;
54234
+ display_name?: string | undefined;
54284
54235
  manufacturer_part_number?: string | undefined;
54285
54236
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54286
54237
  display_value?: string | undefined;
54287
- display_name?: string | undefined;
54288
54238
  are_pins_interchangeable?: boolean | undefined;
54289
54239
  internally_connected_source_port_ids?: string[][] | undefined;
54290
54240
  }, {
@@ -54294,10 +54244,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54294
54244
  ftype: "interconnect";
54295
54245
  subcircuit_id?: string | undefined;
54296
54246
  source_group_id?: string | undefined;
54247
+ display_name?: string | undefined;
54297
54248
  manufacturer_part_number?: string | undefined;
54298
54249
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54299
54250
  display_value?: string | undefined;
54300
- display_name?: string | undefined;
54301
54251
  are_pins_interchangeable?: boolean | undefined;
54302
54252
  internally_connected_source_port_ids?: string[][] | undefined;
54303
54253
  }>, z.ZodObject<{
@@ -54343,10 +54293,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54343
54293
  fall_time?: number | undefined;
54344
54294
  pulse_width?: number | undefined;
54345
54295
  period?: number | undefined;
54296
+ display_name?: string | undefined;
54346
54297
  manufacturer_part_number?: string | undefined;
54347
54298
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54348
54299
  display_value?: string | undefined;
54349
- display_name?: string | undefined;
54350
54300
  are_pins_interchangeable?: boolean | undefined;
54351
54301
  internally_connected_source_port_ids?: string[][] | undefined;
54352
54302
  }, {
@@ -54367,10 +54317,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54367
54317
  fall_time?: string | number | undefined;
54368
54318
  pulse_width?: string | number | undefined;
54369
54319
  period?: string | number | undefined;
54320
+ display_name?: string | undefined;
54370
54321
  manufacturer_part_number?: string | undefined;
54371
54322
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54372
54323
  display_value?: string | undefined;
54373
- display_name?: string | undefined;
54374
54324
  are_pins_interchangeable?: boolean | undefined;
54375
54325
  internally_connected_source_port_ids?: string[][] | undefined;
54376
54326
  }>, z.ZodObject<{
@@ -54760,10 +54710,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54760
54710
  ftype: "simple_chip";
54761
54711
  subcircuit_id?: string | undefined;
54762
54712
  source_group_id?: string | undefined;
54713
+ display_name?: string | undefined;
54763
54714
  manufacturer_part_number?: string | undefined;
54764
54715
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54765
54716
  display_value?: string | undefined;
54766
- display_name?: string | undefined;
54767
54717
  are_pins_interchangeable?: boolean | undefined;
54768
54718
  internally_connected_source_port_ids?: string[][] | undefined;
54769
54719
  }, {
@@ -54773,10 +54723,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54773
54723
  ftype: "simple_chip";
54774
54724
  subcircuit_id?: string | undefined;
54775
54725
  source_group_id?: string | undefined;
54726
+ display_name?: string | undefined;
54776
54727
  manufacturer_part_number?: string | undefined;
54777
54728
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54778
54729
  display_value?: string | undefined;
54779
- display_name?: string | undefined;
54780
54730
  are_pins_interchangeable?: boolean | undefined;
54781
54731
  internally_connected_source_port_ids?: string[][] | undefined;
54782
54732
  }>, z.ZodObject<{
@@ -54805,10 +54755,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54805
54755
  capacitance: number;
54806
54756
  subcircuit_id?: string | undefined;
54807
54757
  source_group_id?: string | undefined;
54758
+ display_name?: string | undefined;
54808
54759
  manufacturer_part_number?: string | undefined;
54809
54760
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54810
54761
  display_value?: string | undefined;
54811
- display_name?: string | undefined;
54812
54762
  are_pins_interchangeable?: boolean | undefined;
54813
54763
  internally_connected_source_port_ids?: string[][] | undefined;
54814
54764
  max_voltage_rating?: number | undefined;
@@ -54822,10 +54772,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54822
54772
  capacitance: string | number;
54823
54773
  subcircuit_id?: string | undefined;
54824
54774
  source_group_id?: string | undefined;
54775
+ display_name?: string | undefined;
54825
54776
  manufacturer_part_number?: string | undefined;
54826
54777
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54827
54778
  display_value?: string | undefined;
54828
- display_name?: string | undefined;
54829
54779
  are_pins_interchangeable?: boolean | undefined;
54830
54780
  internally_connected_source_port_ids?: string[][] | undefined;
54831
54781
  max_voltage_rating?: string | number | undefined;
@@ -54852,10 +54802,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54852
54802
  ftype: "simple_diode";
54853
54803
  subcircuit_id?: string | undefined;
54854
54804
  source_group_id?: string | undefined;
54805
+ display_name?: string | undefined;
54855
54806
  manufacturer_part_number?: string | undefined;
54856
54807
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54857
54808
  display_value?: string | undefined;
54858
- display_name?: string | undefined;
54859
54809
  are_pins_interchangeable?: boolean | undefined;
54860
54810
  internally_connected_source_port_ids?: string[][] | undefined;
54861
54811
  }, {
@@ -54865,10 +54815,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54865
54815
  ftype: "simple_diode";
54866
54816
  subcircuit_id?: string | undefined;
54867
54817
  source_group_id?: string | undefined;
54818
+ display_name?: string | undefined;
54868
54819
  manufacturer_part_number?: string | undefined;
54869
54820
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54870
54821
  display_value?: string | undefined;
54871
- display_name?: string | undefined;
54872
54822
  are_pins_interchangeable?: boolean | undefined;
54873
54823
  internally_connected_source_port_ids?: string[][] | undefined;
54874
54824
  }>, z.ZodObject<{
@@ -54895,10 +54845,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54895
54845
  subcircuit_id?: string | undefined;
54896
54846
  color?: string | undefined;
54897
54847
  source_group_id?: string | undefined;
54848
+ display_name?: string | undefined;
54898
54849
  manufacturer_part_number?: string | undefined;
54899
54850
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54900
54851
  display_value?: string | undefined;
54901
- display_name?: string | undefined;
54902
54852
  are_pins_interchangeable?: boolean | undefined;
54903
54853
  internally_connected_source_port_ids?: string[][] | undefined;
54904
54854
  wavelength?: string | undefined;
@@ -54910,10 +54860,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54910
54860
  subcircuit_id?: string | undefined;
54911
54861
  color?: string | undefined;
54912
54862
  source_group_id?: string | undefined;
54863
+ display_name?: string | undefined;
54913
54864
  manufacturer_part_number?: string | undefined;
54914
54865
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54915
54866
  display_value?: string | undefined;
54916
- display_name?: string | undefined;
54917
54867
  are_pins_interchangeable?: boolean | undefined;
54918
54868
  internally_connected_source_port_ids?: string[][] | undefined;
54919
54869
  wavelength?: string | undefined;
@@ -54941,10 +54891,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54941
54891
  resistance: number;
54942
54892
  subcircuit_id?: string | undefined;
54943
54893
  source_group_id?: string | undefined;
54894
+ display_name?: string | undefined;
54944
54895
  manufacturer_part_number?: string | undefined;
54945
54896
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54946
54897
  display_value?: string | undefined;
54947
- display_name?: string | undefined;
54948
54898
  are_pins_interchangeable?: boolean | undefined;
54949
54899
  internally_connected_source_port_ids?: string[][] | undefined;
54950
54900
  display_resistance?: string | undefined;
@@ -54956,10 +54906,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54956
54906
  resistance: string | number;
54957
54907
  subcircuit_id?: string | undefined;
54958
54908
  source_group_id?: string | undefined;
54909
+ display_name?: string | undefined;
54959
54910
  manufacturer_part_number?: string | undefined;
54960
54911
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54961
54912
  display_value?: string | undefined;
54962
- display_name?: string | undefined;
54963
54913
  are_pins_interchangeable?: boolean | undefined;
54964
54914
  internally_connected_source_port_ids?: string[][] | undefined;
54965
54915
  display_resistance?: string | undefined;
@@ -54986,10 +54936,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54986
54936
  ftype: "simple_power_source";
54987
54937
  subcircuit_id?: string | undefined;
54988
54938
  source_group_id?: string | undefined;
54939
+ display_name?: string | undefined;
54989
54940
  manufacturer_part_number?: string | undefined;
54990
54941
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54991
54942
  display_value?: string | undefined;
54992
- display_name?: string | undefined;
54993
54943
  are_pins_interchangeable?: boolean | undefined;
54994
54944
  internally_connected_source_port_ids?: string[][] | undefined;
54995
54945
  }, {
@@ -55000,10 +54950,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55000
54950
  ftype: "simple_power_source";
55001
54951
  subcircuit_id?: string | undefined;
55002
54952
  source_group_id?: string | undefined;
54953
+ display_name?: string | undefined;
55003
54954
  manufacturer_part_number?: string | undefined;
55004
54955
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55005
54956
  display_value?: string | undefined;
55006
- display_name?: string | undefined;
55007
54957
  are_pins_interchangeable?: boolean | undefined;
55008
54958
  internally_connected_source_port_ids?: string[][] | undefined;
55009
54959
  }>, z.ZodObject<{
@@ -55029,10 +54979,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55029
54979
  capacity: number;
55030
54980
  subcircuit_id?: string | undefined;
55031
54981
  source_group_id?: string | undefined;
54982
+ display_name?: string | undefined;
55032
54983
  manufacturer_part_number?: string | undefined;
55033
54984
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55034
54985
  display_value?: string | undefined;
55035
- display_name?: string | undefined;
55036
54986
  are_pins_interchangeable?: boolean | undefined;
55037
54987
  internally_connected_source_port_ids?: string[][] | undefined;
55038
54988
  }, {
@@ -55043,10 +54993,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55043
54993
  capacity: string | number;
55044
54994
  subcircuit_id?: string | undefined;
55045
54995
  source_group_id?: string | undefined;
54996
+ display_name?: string | undefined;
55046
54997
  manufacturer_part_number?: string | undefined;
55047
54998
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55048
54999
  display_value?: string | undefined;
55049
- display_name?: string | undefined;
55050
55000
  are_pins_interchangeable?: boolean | undefined;
55051
55001
  internally_connected_source_port_ids?: string[][] | undefined;
55052
55002
  }>, z.ZodObject<{
@@ -55074,10 +55024,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55074
55024
  inductance: number;
55075
55025
  subcircuit_id?: string | undefined;
55076
55026
  source_group_id?: string | undefined;
55027
+ display_name?: string | undefined;
55077
55028
  manufacturer_part_number?: string | undefined;
55078
55029
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55079
55030
  display_value?: string | undefined;
55080
- display_name?: string | undefined;
55081
55031
  are_pins_interchangeable?: boolean | undefined;
55082
55032
  internally_connected_source_port_ids?: string[][] | undefined;
55083
55033
  display_inductance?: string | undefined;
@@ -55090,10 +55040,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55090
55040
  inductance: string | number;
55091
55041
  subcircuit_id?: string | undefined;
55092
55042
  source_group_id?: string | undefined;
55043
+ display_name?: string | undefined;
55093
55044
  manufacturer_part_number?: string | undefined;
55094
55045
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55095
55046
  display_value?: string | undefined;
55096
- display_name?: string | undefined;
55097
55047
  are_pins_interchangeable?: boolean | undefined;
55098
55048
  internally_connected_source_port_ids?: string[][] | undefined;
55099
55049
  display_inductance?: string | undefined;
@@ -55123,10 +55073,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55123
55073
  gender: "male" | "female";
55124
55074
  subcircuit_id?: string | undefined;
55125
55075
  source_group_id?: string | undefined;
55076
+ display_name?: string | undefined;
55126
55077
  manufacturer_part_number?: string | undefined;
55127
55078
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55128
55079
  display_value?: string | undefined;
55129
- display_name?: string | undefined;
55130
55080
  are_pins_interchangeable?: boolean | undefined;
55131
55081
  internally_connected_source_port_ids?: string[][] | undefined;
55132
55082
  }, {
@@ -55137,10 +55087,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55137
55087
  pin_count: number;
55138
55088
  subcircuit_id?: string | undefined;
55139
55089
  source_group_id?: string | undefined;
55090
+ display_name?: string | undefined;
55140
55091
  manufacturer_part_number?: string | undefined;
55141
55092
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55142
55093
  display_value?: string | undefined;
55143
- display_name?: string | undefined;
55144
55094
  are_pins_interchangeable?: boolean | undefined;
55145
55095
  internally_connected_source_port_ids?: string[][] | undefined;
55146
55096
  gender?: "male" | "female" | undefined;
@@ -55165,10 +55115,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55165
55115
  ftype: "simple_pinout";
55166
55116
  subcircuit_id?: string | undefined;
55167
55117
  source_group_id?: string | undefined;
55118
+ display_name?: string | undefined;
55168
55119
  manufacturer_part_number?: string | undefined;
55169
55120
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55170
55121
  display_value?: string | undefined;
55171
- display_name?: string | undefined;
55172
55122
  are_pins_interchangeable?: boolean | undefined;
55173
55123
  internally_connected_source_port_ids?: string[][] | undefined;
55174
55124
  }, {
@@ -55178,10 +55128,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55178
55128
  ftype: "simple_pinout";
55179
55129
  subcircuit_id?: string | undefined;
55180
55130
  source_group_id?: string | undefined;
55131
+ display_name?: string | undefined;
55181
55132
  manufacturer_part_number?: string | undefined;
55182
55133
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55183
55134
  display_value?: string | undefined;
55184
- display_name?: string | undefined;
55185
55135
  are_pins_interchangeable?: boolean | undefined;
55186
55136
  internally_connected_source_port_ids?: string[][] | undefined;
55187
55137
  }>, z.ZodObject<{
@@ -55210,10 +55160,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55210
55160
  load_capacitance: number;
55211
55161
  subcircuit_id?: string | undefined;
55212
55162
  source_group_id?: string | undefined;
55163
+ display_name?: string | undefined;
55213
55164
  manufacturer_part_number?: string | undefined;
55214
55165
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55215
55166
  display_value?: string | undefined;
55216
- display_name?: string | undefined;
55217
55167
  are_pins_interchangeable?: boolean | undefined;
55218
55168
  internally_connected_source_port_ids?: string[][] | undefined;
55219
55169
  equivalent_series_resistance?: number | undefined;
@@ -55226,10 +55176,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55226
55176
  load_capacitance: string | number;
55227
55177
  subcircuit_id?: string | undefined;
55228
55178
  source_group_id?: string | undefined;
55179
+ display_name?: string | undefined;
55229
55180
  manufacturer_part_number?: string | undefined;
55230
55181
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55231
55182
  display_value?: string | undefined;
55232
- display_name?: string | undefined;
55233
55183
  are_pins_interchangeable?: boolean | undefined;
55234
55184
  internally_connected_source_port_ids?: string[][] | undefined;
55235
55185
  equivalent_series_resistance?: string | number | undefined;
@@ -55254,10 +55204,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55254
55204
  ftype: "simple_switch";
55255
55205
  subcircuit_id?: string | undefined;
55256
55206
  source_group_id?: string | undefined;
55207
+ display_name?: string | undefined;
55257
55208
  manufacturer_part_number?: string | undefined;
55258
55209
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55259
55210
  display_value?: string | undefined;
55260
- display_name?: string | undefined;
55261
55211
  are_pins_interchangeable?: boolean | undefined;
55262
55212
  internally_connected_source_port_ids?: string[][] | undefined;
55263
55213
  }, {
@@ -55267,10 +55217,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55267
55217
  ftype: "simple_switch";
55268
55218
  subcircuit_id?: string | undefined;
55269
55219
  source_group_id?: string | undefined;
55220
+ display_name?: string | undefined;
55270
55221
  manufacturer_part_number?: string | undefined;
55271
55222
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55272
55223
  display_value?: string | undefined;
55273
- display_name?: string | undefined;
55274
55224
  are_pins_interchangeable?: boolean | undefined;
55275
55225
  internally_connected_source_port_ids?: string[][] | undefined;
55276
55226
  }>, z.ZodObject<{
@@ -55296,10 +55246,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55296
55246
  transistor_type: "npn" | "pnp";
55297
55247
  subcircuit_id?: string | undefined;
55298
55248
  source_group_id?: string | undefined;
55249
+ display_name?: string | undefined;
55299
55250
  manufacturer_part_number?: string | undefined;
55300
55251
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55301
55252
  display_value?: string | undefined;
55302
- display_name?: string | undefined;
55303
55253
  are_pins_interchangeable?: boolean | undefined;
55304
55254
  internally_connected_source_port_ids?: string[][] | undefined;
55305
55255
  }, {
@@ -55310,10 +55260,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55310
55260
  transistor_type: "npn" | "pnp";
55311
55261
  subcircuit_id?: string | undefined;
55312
55262
  source_group_id?: string | undefined;
55263
+ display_name?: string | undefined;
55313
55264
  manufacturer_part_number?: string | undefined;
55314
55265
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55315
55266
  display_value?: string | undefined;
55316
- display_name?: string | undefined;
55317
55267
  are_pins_interchangeable?: boolean | undefined;
55318
55268
  internally_connected_source_port_ids?: string[][] | undefined;
55319
55269
  }>, z.ZodObject<{
@@ -55347,10 +55297,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55347
55297
  hole_diameter?: string | number | undefined;
55348
55298
  pad_shape?: "circle" | "rect" | undefined;
55349
55299
  source_group_id?: string | undefined;
55300
+ display_name?: string | undefined;
55350
55301
  manufacturer_part_number?: string | undefined;
55351
55302
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55352
55303
  display_value?: string | undefined;
55353
- display_name?: string | undefined;
55354
55304
  are_pins_interchangeable?: boolean | undefined;
55355
55305
  internally_connected_source_port_ids?: string[][] | undefined;
55356
55306
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -55366,10 +55316,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55366
55316
  hole_diameter?: string | number | undefined;
55367
55317
  pad_shape?: "circle" | "rect" | undefined;
55368
55318
  source_group_id?: string | undefined;
55319
+ display_name?: string | undefined;
55369
55320
  manufacturer_part_number?: string | undefined;
55370
55321
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55371
55322
  display_value?: string | undefined;
55372
- display_name?: string | undefined;
55373
55323
  are_pins_interchangeable?: boolean | undefined;
55374
55324
  internally_connected_source_port_ids?: string[][] | undefined;
55375
55325
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -55399,10 +55349,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55399
55349
  mosfet_mode: "enhancement" | "depletion";
55400
55350
  subcircuit_id?: string | undefined;
55401
55351
  source_group_id?: string | undefined;
55352
+ display_name?: string | undefined;
55402
55353
  manufacturer_part_number?: string | undefined;
55403
55354
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55404
55355
  display_value?: string | undefined;
55405
- display_name?: string | undefined;
55406
55356
  are_pins_interchangeable?: boolean | undefined;
55407
55357
  internally_connected_source_port_ids?: string[][] | undefined;
55408
55358
  }, {
@@ -55414,10 +55364,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55414
55364
  mosfet_mode: "enhancement" | "depletion";
55415
55365
  subcircuit_id?: string | undefined;
55416
55366
  source_group_id?: string | undefined;
55367
+ display_name?: string | undefined;
55417
55368
  manufacturer_part_number?: string | undefined;
55418
55369
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55419
55370
  display_value?: string | undefined;
55420
- display_name?: string | undefined;
55421
55371
  are_pins_interchangeable?: boolean | undefined;
55422
55372
  internally_connected_source_port_ids?: string[][] | undefined;
55423
55373
  }>, z.ZodObject<{
@@ -55441,10 +55391,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55441
55391
  ftype: "simple_op_amp";
55442
55392
  subcircuit_id?: string | undefined;
55443
55393
  source_group_id?: string | undefined;
55394
+ display_name?: string | undefined;
55444
55395
  manufacturer_part_number?: string | undefined;
55445
55396
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55446
55397
  display_value?: string | undefined;
55447
- display_name?: string | undefined;
55448
55398
  are_pins_interchangeable?: boolean | undefined;
55449
55399
  internally_connected_source_port_ids?: string[][] | undefined;
55450
55400
  }, {
@@ -55454,10 +55404,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55454
55404
  ftype: "simple_op_amp";
55455
55405
  subcircuit_id?: string | undefined;
55456
55406
  source_group_id?: string | undefined;
55407
+ display_name?: string | undefined;
55457
55408
  manufacturer_part_number?: string | undefined;
55458
55409
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55459
55410
  display_value?: string | undefined;
55460
- display_name?: string | undefined;
55461
55411
  are_pins_interchangeable?: boolean | undefined;
55462
55412
  internally_connected_source_port_ids?: string[][] | undefined;
55463
55413
  }>, z.ZodObject<{
@@ -55484,10 +55434,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55484
55434
  max_resistance: number;
55485
55435
  subcircuit_id?: string | undefined;
55486
55436
  source_group_id?: string | undefined;
55437
+ display_name?: string | undefined;
55487
55438
  manufacturer_part_number?: string | undefined;
55488
55439
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55489
55440
  display_value?: string | undefined;
55490
- display_name?: string | undefined;
55491
55441
  are_pins_interchangeable?: boolean | undefined;
55492
55442
  internally_connected_source_port_ids?: string[][] | undefined;
55493
55443
  display_max_resistance?: string | undefined;
@@ -55499,10 +55449,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55499
55449
  max_resistance: string | number;
55500
55450
  subcircuit_id?: string | undefined;
55501
55451
  source_group_id?: string | undefined;
55452
+ display_name?: string | undefined;
55502
55453
  manufacturer_part_number?: string | undefined;
55503
55454
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55504
55455
  display_value?: string | undefined;
55505
- display_name?: string | undefined;
55506
55456
  are_pins_interchangeable?: boolean | undefined;
55507
55457
  internally_connected_source_port_ids?: string[][] | undefined;
55508
55458
  display_max_resistance?: string | undefined;
@@ -55527,10 +55477,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55527
55477
  ftype: "simple_push_button";
55528
55478
  subcircuit_id?: string | undefined;
55529
55479
  source_group_id?: string | undefined;
55480
+ display_name?: string | undefined;
55530
55481
  manufacturer_part_number?: string | undefined;
55531
55482
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55532
55483
  display_value?: string | undefined;
55533
- display_name?: string | undefined;
55534
55484
  are_pins_interchangeable?: boolean | undefined;
55535
55485
  internally_connected_source_port_ids?: string[][] | undefined;
55536
55486
  }, {
@@ -55540,10 +55490,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55540
55490
  ftype: "simple_push_button";
55541
55491
  subcircuit_id?: string | undefined;
55542
55492
  source_group_id?: string | undefined;
55493
+ display_name?: string | undefined;
55543
55494
  manufacturer_part_number?: string | undefined;
55544
55495
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55545
55496
  display_value?: string | undefined;
55546
- display_name?: string | undefined;
55547
55497
  are_pins_interchangeable?: boolean | undefined;
55548
55498
  internally_connected_source_port_ids?: string[][] | undefined;
55549
55499
  }>, z.ZodObject<{
@@ -71478,22 +71428,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71478
71428
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
71479
71429
  subcircuit_id: z.ZodOptional<z.ZodString>;
71480
71430
  color: z.ZodOptional<z.ZodString>;
71481
- display_options: z.ZodOptional<z.ZodObject<{
71482
- label: z.ZodOptional<z.ZodString>;
71483
- center: z.ZodOptional<z.ZodNumber>;
71484
- offset_divs: z.ZodOptional<z.ZodNumber>;
71485
- units_per_div: z.ZodOptional<z.ZodNumber>;
71486
- }, "strip", z.ZodTypeAny, {
71487
- center?: number | undefined;
71488
- label?: string | undefined;
71489
- offset_divs?: number | undefined;
71490
- units_per_div?: number | undefined;
71491
- }, {
71492
- center?: number | undefined;
71493
- label?: string | undefined;
71494
- offset_divs?: number | undefined;
71495
- units_per_div?: number | undefined;
71496
- }>>;
71497
71431
  }, "strip", z.ZodTypeAny, {
71498
71432
  type: "simulation_voltage_probe";
71499
71433
  simulation_voltage_probe_id: string;
@@ -71505,12 +71439,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71505
71439
  signal_input_source_net_id?: string | undefined;
71506
71440
  reference_input_source_port_id?: string | undefined;
71507
71441
  reference_input_source_net_id?: string | undefined;
71508
- display_options?: {
71509
- center?: number | undefined;
71510
- label?: string | undefined;
71511
- offset_divs?: number | undefined;
71512
- units_per_div?: number | undefined;
71513
- } | undefined;
71514
71442
  }, {
71515
71443
  type: "simulation_voltage_probe";
71516
71444
  name?: string | undefined;
@@ -71522,12 +71450,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71522
71450
  signal_input_source_net_id?: string | undefined;
71523
71451
  reference_input_source_port_id?: string | undefined;
71524
71452
  reference_input_source_net_id?: string | undefined;
71525
- display_options?: {
71526
- center?: number | undefined;
71527
- label?: string | undefined;
71528
- offset_divs?: number | undefined;
71529
- units_per_div?: number | undefined;
71530
- } | undefined;
71531
71453
  }>, {
71532
71454
  type: "simulation_voltage_probe";
71533
71455
  simulation_voltage_probe_id: string;
@@ -71539,12 +71461,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71539
71461
  signal_input_source_net_id?: string | undefined;
71540
71462
  reference_input_source_port_id?: string | undefined;
71541
71463
  reference_input_source_net_id?: string | undefined;
71542
- display_options?: {
71543
- center?: number | undefined;
71544
- label?: string | undefined;
71545
- offset_divs?: number | undefined;
71546
- units_per_div?: number | undefined;
71547
- } | undefined;
71548
71464
  }, {
71549
71465
  type: "simulation_voltage_probe";
71550
71466
  name?: string | undefined;
@@ -71556,12 +71472,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71556
71472
  signal_input_source_net_id?: string | undefined;
71557
71473
  reference_input_source_port_id?: string | undefined;
71558
71474
  reference_input_source_net_id?: string | undefined;
71559
- display_options?: {
71560
- center?: number | undefined;
71561
- label?: string | undefined;
71562
- offset_divs?: number | undefined;
71563
- units_per_div?: number | undefined;
71564
- } | undefined;
71565
71475
  }>, z.ZodEffects<z.ZodObject<{
71566
71476
  type: z.ZodLiteral<"simulation_current_probe">;
71567
71477
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -71573,22 +71483,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71573
71483
  negative_source_net_id: z.ZodOptional<z.ZodString>;
71574
71484
  subcircuit_id: z.ZodOptional<z.ZodString>;
71575
71485
  color: z.ZodOptional<z.ZodString>;
71576
- display_options: z.ZodOptional<z.ZodObject<{
71577
- label: z.ZodOptional<z.ZodString>;
71578
- center: z.ZodOptional<z.ZodNumber>;
71579
- offset_divs: z.ZodOptional<z.ZodNumber>;
71580
- units_per_div: z.ZodOptional<z.ZodNumber>;
71581
- }, "strip", z.ZodTypeAny, {
71582
- center?: number | undefined;
71583
- label?: string | undefined;
71584
- offset_divs?: number | undefined;
71585
- units_per_div?: number | undefined;
71586
- }, {
71587
- center?: number | undefined;
71588
- label?: string | undefined;
71589
- offset_divs?: number | undefined;
71590
- units_per_div?: number | undefined;
71591
- }>>;
71592
71486
  }, "strip", z.ZodTypeAny, {
71593
71487
  type: "simulation_current_probe";
71594
71488
  simulation_current_probe_id: string;
@@ -71600,12 +71494,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71600
71494
  negative_source_port_id?: string | undefined;
71601
71495
  positive_source_net_id?: string | undefined;
71602
71496
  negative_source_net_id?: string | undefined;
71603
- display_options?: {
71604
- center?: number | undefined;
71605
- label?: string | undefined;
71606
- offset_divs?: number | undefined;
71607
- units_per_div?: number | undefined;
71608
- } | undefined;
71609
71497
  }, {
71610
71498
  type: "simulation_current_probe";
71611
71499
  name?: string | undefined;
@@ -71616,12 +71504,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71616
71504
  negative_source_port_id?: string | undefined;
71617
71505
  positive_source_net_id?: string | undefined;
71618
71506
  negative_source_net_id?: string | undefined;
71619
- display_options?: {
71620
- center?: number | undefined;
71621
- label?: string | undefined;
71622
- offset_divs?: number | undefined;
71623
- units_per_div?: number | undefined;
71624
- } | undefined;
71625
71507
  simulation_current_probe_id?: string | undefined;
71626
71508
  }>, {
71627
71509
  type: "simulation_current_probe";
@@ -71634,12 +71516,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71634
71516
  negative_source_port_id?: string | undefined;
71635
71517
  positive_source_net_id?: string | undefined;
71636
71518
  negative_source_net_id?: string | undefined;
71637
- display_options?: {
71638
- center?: number | undefined;
71639
- label?: string | undefined;
71640
- offset_divs?: number | undefined;
71641
- units_per_div?: number | undefined;
71642
- } | undefined;
71643
71519
  }, {
71644
71520
  type: "simulation_current_probe";
71645
71521
  name?: string | undefined;
@@ -71650,13 +71526,72 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71650
71526
  negative_source_port_id?: string | undefined;
71651
71527
  positive_source_net_id?: string | undefined;
71652
71528
  negative_source_net_id?: string | undefined;
71653
- display_options?: {
71654
- center?: number | undefined;
71655
- label?: string | undefined;
71656
- offset_divs?: number | undefined;
71657
- units_per_div?: number | undefined;
71658
- } | undefined;
71659
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;
71660
71595
  }>, z.ZodObject<{
71661
71596
  message: z.ZodString;
71662
71597
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -71744,4 +71679,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
71744
71679
  */
71745
71680
  type CircuitJson = AnyCircuitElement[];
71746
71681
 
71747
- 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 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_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_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 };
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 };