circuit-json 0.0.437 → 0.0.439

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<{
@@ -30763,6 +30728,7 @@ interface SourceTrace {
30763
30728
  subcircuit_id?: string;
30764
30729
  subcircuit_connectivity_map_key?: string;
30765
30730
  max_length?: number;
30731
+ name?: string;
30766
30732
  display_name?: string;
30767
30733
  min_trace_thickness?: number;
30768
30734
  }
@@ -30774,6 +30740,7 @@ declare const source_trace: z.ZodObject<{
30774
30740
  subcircuit_id: z.ZodOptional<z.ZodString>;
30775
30741
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
30776
30742
  max_length: z.ZodOptional<z.ZodNumber>;
30743
+ name: z.ZodOptional<z.ZodString>;
30777
30744
  min_trace_thickness: z.ZodOptional<z.ZodNumber>;
30778
30745
  display_name: z.ZodOptional<z.ZodString>;
30779
30746
  }, "strip", z.ZodTypeAny, {
@@ -30781,6 +30748,7 @@ declare const source_trace: z.ZodObject<{
30781
30748
  source_trace_id: string;
30782
30749
  connected_source_port_ids: string[];
30783
30750
  connected_source_net_ids: string[];
30751
+ name?: string | undefined;
30784
30752
  subcircuit_id?: string | undefined;
30785
30753
  subcircuit_connectivity_map_key?: string | undefined;
30786
30754
  display_name?: string | undefined;
@@ -30791,6 +30759,7 @@ declare const source_trace: z.ZodObject<{
30791
30759
  source_trace_id: string;
30792
30760
  connected_source_port_ids: string[];
30793
30761
  connected_source_net_ids: string[];
30762
+ name?: string | undefined;
30794
30763
  subcircuit_id?: string | undefined;
30795
30764
  subcircuit_connectivity_map_key?: string | undefined;
30796
30765
  display_name?: string | undefined;
@@ -34085,6 +34054,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34085
34054
  subcircuit_id: z.ZodOptional<z.ZodString>;
34086
34055
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
34087
34056
  max_length: z.ZodOptional<z.ZodNumber>;
34057
+ name: z.ZodOptional<z.ZodString>;
34088
34058
  min_trace_thickness: z.ZodOptional<z.ZodNumber>;
34089
34059
  display_name: z.ZodOptional<z.ZodString>;
34090
34060
  }, "strip", z.ZodTypeAny, {
@@ -34092,6 +34062,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34092
34062
  source_trace_id: string;
34093
34063
  connected_source_port_ids: string[];
34094
34064
  connected_source_net_ids: string[];
34065
+ name?: string | undefined;
34095
34066
  subcircuit_id?: string | undefined;
34096
34067
  subcircuit_connectivity_map_key?: string | undefined;
34097
34068
  display_name?: string | undefined;
@@ -34102,6 +34073,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34102
34073
  source_trace_id: string;
34103
34074
  connected_source_port_ids: string[];
34104
34075
  connected_source_net_ids: string[];
34076
+ name?: string | undefined;
34105
34077
  subcircuit_id?: string | undefined;
34106
34078
  subcircuit_connectivity_map_key?: string | undefined;
34107
34079
  display_name?: string | undefined;
@@ -34294,10 +34266,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34294
34266
  resistance: number;
34295
34267
  subcircuit_id?: string | undefined;
34296
34268
  source_group_id?: string | undefined;
34269
+ display_name?: string | undefined;
34297
34270
  manufacturer_part_number?: string | undefined;
34298
34271
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34299
34272
  display_value?: string | undefined;
34300
- display_name?: string | undefined;
34301
34273
  are_pins_interchangeable?: boolean | undefined;
34302
34274
  internally_connected_source_port_ids?: string[][] | undefined;
34303
34275
  display_resistance?: string | undefined;
@@ -34309,10 +34281,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34309
34281
  resistance: string | number;
34310
34282
  subcircuit_id?: string | undefined;
34311
34283
  source_group_id?: string | undefined;
34284
+ display_name?: string | undefined;
34312
34285
  manufacturer_part_number?: string | undefined;
34313
34286
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34314
34287
  display_value?: string | undefined;
34315
- display_name?: string | undefined;
34316
34288
  are_pins_interchangeable?: boolean | undefined;
34317
34289
  internally_connected_source_port_ids?: string[][] | undefined;
34318
34290
  display_resistance?: string | undefined;
@@ -34342,10 +34314,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34342
34314
  capacitance: number;
34343
34315
  subcircuit_id?: string | undefined;
34344
34316
  source_group_id?: string | undefined;
34317
+ display_name?: string | undefined;
34345
34318
  manufacturer_part_number?: string | undefined;
34346
34319
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34347
34320
  display_value?: string | undefined;
34348
- display_name?: string | undefined;
34349
34321
  are_pins_interchangeable?: boolean | undefined;
34350
34322
  internally_connected_source_port_ids?: string[][] | undefined;
34351
34323
  max_voltage_rating?: number | undefined;
@@ -34359,10 +34331,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34359
34331
  capacitance: string | number;
34360
34332
  subcircuit_id?: string | undefined;
34361
34333
  source_group_id?: string | undefined;
34334
+ display_name?: string | undefined;
34362
34335
  manufacturer_part_number?: string | undefined;
34363
34336
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34364
34337
  display_value?: string | undefined;
34365
- display_name?: string | undefined;
34366
34338
  are_pins_interchangeable?: boolean | undefined;
34367
34339
  internally_connected_source_port_ids?: string[][] | undefined;
34368
34340
  max_voltage_rating?: string | number | undefined;
@@ -34389,10 +34361,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34389
34361
  ftype: "simple_diode";
34390
34362
  subcircuit_id?: string | undefined;
34391
34363
  source_group_id?: string | undefined;
34364
+ display_name?: string | undefined;
34392
34365
  manufacturer_part_number?: string | undefined;
34393
34366
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34394
34367
  display_value?: string | undefined;
34395
- display_name?: string | undefined;
34396
34368
  are_pins_interchangeable?: boolean | undefined;
34397
34369
  internally_connected_source_port_ids?: string[][] | undefined;
34398
34370
  }, {
@@ -34402,10 +34374,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34402
34374
  ftype: "simple_diode";
34403
34375
  subcircuit_id?: string | undefined;
34404
34376
  source_group_id?: string | undefined;
34377
+ display_name?: string | undefined;
34405
34378
  manufacturer_part_number?: string | undefined;
34406
34379
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34407
34380
  display_value?: string | undefined;
34408
- display_name?: string | undefined;
34409
34381
  are_pins_interchangeable?: boolean | undefined;
34410
34382
  internally_connected_source_port_ids?: string[][] | undefined;
34411
34383
  }>, z.ZodObject<{
@@ -34429,10 +34401,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34429
34401
  ftype: "simple_fiducial";
34430
34402
  subcircuit_id?: string | undefined;
34431
34403
  source_group_id?: string | undefined;
34404
+ display_name?: string | undefined;
34432
34405
  manufacturer_part_number?: string | undefined;
34433
34406
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34434
34407
  display_value?: string | undefined;
34435
- display_name?: string | undefined;
34436
34408
  are_pins_interchangeable?: boolean | undefined;
34437
34409
  internally_connected_source_port_ids?: string[][] | undefined;
34438
34410
  }, {
@@ -34442,10 +34414,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34442
34414
  ftype: "simple_fiducial";
34443
34415
  subcircuit_id?: string | undefined;
34444
34416
  source_group_id?: string | undefined;
34417
+ display_name?: string | undefined;
34445
34418
  manufacturer_part_number?: string | undefined;
34446
34419
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34447
34420
  display_value?: string | undefined;
34448
- display_name?: string | undefined;
34449
34421
  are_pins_interchangeable?: boolean | undefined;
34450
34422
  internally_connected_source_port_ids?: string[][] | undefined;
34451
34423
  }>, z.ZodObject<{
@@ -34472,10 +34444,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34472
34444
  subcircuit_id?: string | undefined;
34473
34445
  color?: string | undefined;
34474
34446
  source_group_id?: string | undefined;
34447
+ display_name?: string | undefined;
34475
34448
  manufacturer_part_number?: string | undefined;
34476
34449
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34477
34450
  display_value?: string | undefined;
34478
- display_name?: string | undefined;
34479
34451
  are_pins_interchangeable?: boolean | undefined;
34480
34452
  internally_connected_source_port_ids?: string[][] | undefined;
34481
34453
  wavelength?: string | undefined;
@@ -34487,10 +34459,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34487
34459
  subcircuit_id?: string | undefined;
34488
34460
  color?: string | undefined;
34489
34461
  source_group_id?: string | undefined;
34462
+ display_name?: string | undefined;
34490
34463
  manufacturer_part_number?: string | undefined;
34491
34464
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34492
34465
  display_value?: string | undefined;
34493
- display_name?: string | undefined;
34494
34466
  are_pins_interchangeable?: boolean | undefined;
34495
34467
  internally_connected_source_port_ids?: string[][] | undefined;
34496
34468
  wavelength?: string | undefined;
@@ -34515,10 +34487,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34515
34487
  ftype: "simple_ground";
34516
34488
  subcircuit_id?: string | undefined;
34517
34489
  source_group_id?: string | undefined;
34490
+ display_name?: string | undefined;
34518
34491
  manufacturer_part_number?: string | undefined;
34519
34492
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34520
34493
  display_value?: string | undefined;
34521
- display_name?: string | undefined;
34522
34494
  are_pins_interchangeable?: boolean | undefined;
34523
34495
  internally_connected_source_port_ids?: string[][] | undefined;
34524
34496
  }, {
@@ -34528,10 +34500,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34528
34500
  ftype: "simple_ground";
34529
34501
  subcircuit_id?: string | undefined;
34530
34502
  source_group_id?: string | undefined;
34503
+ display_name?: string | undefined;
34531
34504
  manufacturer_part_number?: string | undefined;
34532
34505
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34533
34506
  display_value?: string | undefined;
34534
- display_name?: string | undefined;
34535
34507
  are_pins_interchangeable?: boolean | undefined;
34536
34508
  internally_connected_source_port_ids?: string[][] | undefined;
34537
34509
  }>, z.ZodObject<{
@@ -34555,10 +34527,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34555
34527
  ftype: "simple_chip";
34556
34528
  subcircuit_id?: string | undefined;
34557
34529
  source_group_id?: string | undefined;
34530
+ display_name?: string | undefined;
34558
34531
  manufacturer_part_number?: string | undefined;
34559
34532
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34560
34533
  display_value?: string | undefined;
34561
- display_name?: string | undefined;
34562
34534
  are_pins_interchangeable?: boolean | undefined;
34563
34535
  internally_connected_source_port_ids?: string[][] | undefined;
34564
34536
  }, {
@@ -34568,10 +34540,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34568
34540
  ftype: "simple_chip";
34569
34541
  subcircuit_id?: string | undefined;
34570
34542
  source_group_id?: string | undefined;
34543
+ display_name?: string | undefined;
34571
34544
  manufacturer_part_number?: string | undefined;
34572
34545
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34573
34546
  display_value?: string | undefined;
34574
- display_name?: string | undefined;
34575
34547
  are_pins_interchangeable?: boolean | undefined;
34576
34548
  internally_connected_source_port_ids?: string[][] | undefined;
34577
34549
  }>, z.ZodObject<{
@@ -34597,10 +34569,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34597
34569
  ftype: "simple_power_source";
34598
34570
  subcircuit_id?: string | undefined;
34599
34571
  source_group_id?: string | undefined;
34572
+ display_name?: string | undefined;
34600
34573
  manufacturer_part_number?: string | undefined;
34601
34574
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34602
34575
  display_value?: string | undefined;
34603
- display_name?: string | undefined;
34604
34576
  are_pins_interchangeable?: boolean | undefined;
34605
34577
  internally_connected_source_port_ids?: string[][] | undefined;
34606
34578
  }, {
@@ -34611,10 +34583,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34611
34583
  ftype: "simple_power_source";
34612
34584
  subcircuit_id?: string | undefined;
34613
34585
  source_group_id?: string | undefined;
34586
+ display_name?: string | undefined;
34614
34587
  manufacturer_part_number?: string | undefined;
34615
34588
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34616
34589
  display_value?: string | undefined;
34617
- display_name?: string | undefined;
34618
34590
  are_pins_interchangeable?: boolean | undefined;
34619
34591
  internally_connected_source_port_ids?: string[][] | undefined;
34620
34592
  }>, z.ZodObject<{
@@ -34650,10 +34622,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34650
34622
  phase?: number | undefined;
34651
34623
  duty_cycle?: number | undefined;
34652
34624
  peak_to_peak_current?: number | undefined;
34625
+ display_name?: string | undefined;
34653
34626
  manufacturer_part_number?: string | undefined;
34654
34627
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34655
34628
  display_value?: string | undefined;
34656
- display_name?: string | undefined;
34657
34629
  are_pins_interchangeable?: boolean | undefined;
34658
34630
  internally_connected_source_port_ids?: string[][] | undefined;
34659
34631
  }, {
@@ -34669,10 +34641,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34669
34641
  phase?: number | undefined;
34670
34642
  duty_cycle?: number | undefined;
34671
34643
  peak_to_peak_current?: string | number | undefined;
34644
+ display_name?: string | undefined;
34672
34645
  manufacturer_part_number?: string | undefined;
34673
34646
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34674
34647
  display_value?: string | undefined;
34675
- display_name?: string | undefined;
34676
34648
  are_pins_interchangeable?: boolean | undefined;
34677
34649
  internally_connected_source_port_ids?: string[][] | undefined;
34678
34650
  }>, z.ZodObject<{
@@ -34696,10 +34668,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34696
34668
  ftype: "simple_ammeter";
34697
34669
  subcircuit_id?: string | undefined;
34698
34670
  source_group_id?: string | undefined;
34671
+ display_name?: string | undefined;
34699
34672
  manufacturer_part_number?: string | undefined;
34700
34673
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34701
34674
  display_value?: string | undefined;
34702
- display_name?: string | undefined;
34703
34675
  are_pins_interchangeable?: boolean | undefined;
34704
34676
  internally_connected_source_port_ids?: string[][] | undefined;
34705
34677
  }, {
@@ -34709,10 +34681,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34709
34681
  ftype: "simple_ammeter";
34710
34682
  subcircuit_id?: string | undefined;
34711
34683
  source_group_id?: string | undefined;
34684
+ display_name?: string | undefined;
34712
34685
  manufacturer_part_number?: string | undefined;
34713
34686
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34714
34687
  display_value?: string | undefined;
34715
- display_name?: string | undefined;
34716
34688
  are_pins_interchangeable?: boolean | undefined;
34717
34689
  internally_connected_source_port_ids?: string[][] | undefined;
34718
34690
  }>, z.ZodObject<{
@@ -34738,10 +34710,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34738
34710
  capacity: number;
34739
34711
  subcircuit_id?: string | undefined;
34740
34712
  source_group_id?: string | undefined;
34713
+ display_name?: string | undefined;
34741
34714
  manufacturer_part_number?: string | undefined;
34742
34715
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34743
34716
  display_value?: string | undefined;
34744
- display_name?: string | undefined;
34745
34717
  are_pins_interchangeable?: boolean | undefined;
34746
34718
  internally_connected_source_port_ids?: string[][] | undefined;
34747
34719
  }, {
@@ -34752,10 +34724,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34752
34724
  capacity: string | number;
34753
34725
  subcircuit_id?: string | undefined;
34754
34726
  source_group_id?: string | undefined;
34727
+ display_name?: string | undefined;
34755
34728
  manufacturer_part_number?: string | undefined;
34756
34729
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34757
34730
  display_value?: string | undefined;
34758
- display_name?: string | undefined;
34759
34731
  are_pins_interchangeable?: boolean | undefined;
34760
34732
  internally_connected_source_port_ids?: string[][] | undefined;
34761
34733
  }>, z.ZodObject<{
@@ -34783,10 +34755,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34783
34755
  inductance: number;
34784
34756
  subcircuit_id?: string | undefined;
34785
34757
  source_group_id?: string | undefined;
34758
+ display_name?: string | undefined;
34786
34759
  manufacturer_part_number?: string | undefined;
34787
34760
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34788
34761
  display_value?: string | undefined;
34789
- display_name?: string | undefined;
34790
34762
  are_pins_interchangeable?: boolean | undefined;
34791
34763
  internally_connected_source_port_ids?: string[][] | undefined;
34792
34764
  display_inductance?: string | undefined;
@@ -34799,10 +34771,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34799
34771
  inductance: string | number;
34800
34772
  subcircuit_id?: string | undefined;
34801
34773
  source_group_id?: string | undefined;
34774
+ display_name?: string | undefined;
34802
34775
  manufacturer_part_number?: string | undefined;
34803
34776
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34804
34777
  display_value?: string | undefined;
34805
- display_name?: string | undefined;
34806
34778
  are_pins_interchangeable?: boolean | undefined;
34807
34779
  internally_connected_source_port_ids?: string[][] | undefined;
34808
34780
  display_inductance?: string | undefined;
@@ -34828,10 +34800,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34828
34800
  ftype: "simple_push_button";
34829
34801
  subcircuit_id?: string | undefined;
34830
34802
  source_group_id?: string | undefined;
34803
+ display_name?: string | undefined;
34831
34804
  manufacturer_part_number?: string | undefined;
34832
34805
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34833
34806
  display_value?: string | undefined;
34834
- display_name?: string | undefined;
34835
34807
  are_pins_interchangeable?: boolean | undefined;
34836
34808
  internally_connected_source_port_ids?: string[][] | undefined;
34837
34809
  }, {
@@ -34841,10 +34813,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34841
34813
  ftype: "simple_push_button";
34842
34814
  subcircuit_id?: string | undefined;
34843
34815
  source_group_id?: string | undefined;
34816
+ display_name?: string | undefined;
34844
34817
  manufacturer_part_number?: string | undefined;
34845
34818
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34846
34819
  display_value?: string | undefined;
34847
- display_name?: string | undefined;
34848
34820
  are_pins_interchangeable?: boolean | undefined;
34849
34821
  internally_connected_source_port_ids?: string[][] | undefined;
34850
34822
  }>, z.ZodObject<{
@@ -34871,10 +34843,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34871
34843
  max_resistance: number;
34872
34844
  subcircuit_id?: string | undefined;
34873
34845
  source_group_id?: string | undefined;
34846
+ display_name?: string | undefined;
34874
34847
  manufacturer_part_number?: string | undefined;
34875
34848
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34876
34849
  display_value?: string | undefined;
34877
- display_name?: string | undefined;
34878
34850
  are_pins_interchangeable?: boolean | undefined;
34879
34851
  internally_connected_source_port_ids?: string[][] | undefined;
34880
34852
  display_max_resistance?: string | undefined;
@@ -34886,10 +34858,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34886
34858
  max_resistance: string | number;
34887
34859
  subcircuit_id?: string | undefined;
34888
34860
  source_group_id?: string | undefined;
34861
+ display_name?: string | undefined;
34889
34862
  manufacturer_part_number?: string | undefined;
34890
34863
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34891
34864
  display_value?: string | undefined;
34892
- display_name?: string | undefined;
34893
34865
  are_pins_interchangeable?: boolean | undefined;
34894
34866
  internally_connected_source_port_ids?: string[][] | undefined;
34895
34867
  display_max_resistance?: string | undefined;
@@ -34918,10 +34890,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34918
34890
  ftype: "simple_crystal";
34919
34891
  subcircuit_id?: string | undefined;
34920
34892
  source_group_id?: string | undefined;
34893
+ display_name?: string | undefined;
34921
34894
  manufacturer_part_number?: string | undefined;
34922
34895
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34923
34896
  display_value?: string | undefined;
34924
- display_name?: string | undefined;
34925
34897
  are_pins_interchangeable?: boolean | undefined;
34926
34898
  internally_connected_source_port_ids?: string[][] | undefined;
34927
34899
  load_capacitance?: number | undefined;
@@ -34934,10 +34906,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34934
34906
  ftype: "simple_crystal";
34935
34907
  subcircuit_id?: string | undefined;
34936
34908
  source_group_id?: string | undefined;
34909
+ display_name?: string | undefined;
34937
34910
  manufacturer_part_number?: string | undefined;
34938
34911
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34939
34912
  display_value?: string | undefined;
34940
- display_name?: string | undefined;
34941
34913
  are_pins_interchangeable?: boolean | undefined;
34942
34914
  internally_connected_source_port_ids?: string[][] | undefined;
34943
34915
  load_capacitance?: number | undefined;
@@ -34967,10 +34939,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34967
34939
  gender: "male" | "female";
34968
34940
  subcircuit_id?: string | undefined;
34969
34941
  source_group_id?: string | undefined;
34942
+ display_name?: string | undefined;
34970
34943
  manufacturer_part_number?: string | undefined;
34971
34944
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34972
34945
  display_value?: string | undefined;
34973
- display_name?: string | undefined;
34974
34946
  are_pins_interchangeable?: boolean | undefined;
34975
34947
  internally_connected_source_port_ids?: string[][] | undefined;
34976
34948
  }, {
@@ -34981,10 +34953,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34981
34953
  pin_count: number;
34982
34954
  subcircuit_id?: string | undefined;
34983
34955
  source_group_id?: string | undefined;
34956
+ display_name?: string | undefined;
34984
34957
  manufacturer_part_number?: string | undefined;
34985
34958
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
34986
34959
  display_value?: string | undefined;
34987
- display_name?: string | undefined;
34988
34960
  are_pins_interchangeable?: boolean | undefined;
34989
34961
  internally_connected_source_port_ids?: string[][] | undefined;
34990
34962
  gender?: "male" | "female" | undefined;
@@ -35010,10 +34982,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35010
34982
  ftype: "simple_connector";
35011
34983
  subcircuit_id?: string | undefined;
35012
34984
  source_group_id?: string | undefined;
34985
+ display_name?: string | undefined;
35013
34986
  manufacturer_part_number?: string | undefined;
35014
34987
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35015
34988
  display_value?: string | undefined;
35016
- display_name?: string | undefined;
35017
34989
  are_pins_interchangeable?: boolean | undefined;
35018
34990
  internally_connected_source_port_ids?: string[][] | undefined;
35019
34991
  standard?: "usb_c" | "m2" | undefined;
@@ -35024,10 +34996,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35024
34996
  ftype: "simple_connector";
35025
34997
  subcircuit_id?: string | undefined;
35026
34998
  source_group_id?: string | undefined;
34999
+ display_name?: string | undefined;
35027
35000
  manufacturer_part_number?: string | undefined;
35028
35001
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35029
35002
  display_value?: string | undefined;
35030
- display_name?: string | undefined;
35031
35003
  are_pins_interchangeable?: boolean | undefined;
35032
35004
  internally_connected_source_port_ids?: string[][] | undefined;
35033
35005
  standard?: "usb_c" | "m2" | undefined;
@@ -35052,10 +35024,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35052
35024
  ftype: "simple_pinout";
35053
35025
  subcircuit_id?: string | undefined;
35054
35026
  source_group_id?: string | undefined;
35027
+ display_name?: string | undefined;
35055
35028
  manufacturer_part_number?: string | undefined;
35056
35029
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35057
35030
  display_value?: string | undefined;
35058
- display_name?: string | undefined;
35059
35031
  are_pins_interchangeable?: boolean | undefined;
35060
35032
  internally_connected_source_port_ids?: string[][] | undefined;
35061
35033
  }, {
@@ -35065,10 +35037,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35065
35037
  ftype: "simple_pinout";
35066
35038
  subcircuit_id?: string | undefined;
35067
35039
  source_group_id?: string | undefined;
35040
+ display_name?: string | undefined;
35068
35041
  manufacturer_part_number?: string | undefined;
35069
35042
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35070
35043
  display_value?: string | undefined;
35071
- display_name?: string | undefined;
35072
35044
  are_pins_interchangeable?: boolean | undefined;
35073
35045
  internally_connected_source_port_ids?: string[][] | undefined;
35074
35046
  }>, z.ZodObject<{
@@ -35097,10 +35069,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35097
35069
  load_capacitance: number;
35098
35070
  subcircuit_id?: string | undefined;
35099
35071
  source_group_id?: string | undefined;
35072
+ display_name?: string | undefined;
35100
35073
  manufacturer_part_number?: string | undefined;
35101
35074
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35102
35075
  display_value?: string | undefined;
35103
- display_name?: string | undefined;
35104
35076
  are_pins_interchangeable?: boolean | undefined;
35105
35077
  internally_connected_source_port_ids?: string[][] | undefined;
35106
35078
  equivalent_series_resistance?: number | undefined;
@@ -35113,10 +35085,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35113
35085
  load_capacitance: string | number;
35114
35086
  subcircuit_id?: string | undefined;
35115
35087
  source_group_id?: string | undefined;
35088
+ display_name?: string | undefined;
35116
35089
  manufacturer_part_number?: string | undefined;
35117
35090
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35118
35091
  display_value?: string | undefined;
35119
- display_name?: string | undefined;
35120
35092
  are_pins_interchangeable?: boolean | undefined;
35121
35093
  internally_connected_source_port_ids?: string[][] | undefined;
35122
35094
  equivalent_series_resistance?: string | number | undefined;
@@ -35141,10 +35113,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35141
35113
  ftype: "simple_switch";
35142
35114
  subcircuit_id?: string | undefined;
35143
35115
  source_group_id?: string | undefined;
35116
+ display_name?: string | undefined;
35144
35117
  manufacturer_part_number?: string | undefined;
35145
35118
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35146
35119
  display_value?: string | undefined;
35147
- display_name?: string | undefined;
35148
35120
  are_pins_interchangeable?: boolean | undefined;
35149
35121
  internally_connected_source_port_ids?: string[][] | undefined;
35150
35122
  }, {
@@ -35154,10 +35126,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35154
35126
  ftype: "simple_switch";
35155
35127
  subcircuit_id?: string | undefined;
35156
35128
  source_group_id?: string | undefined;
35129
+ display_name?: string | undefined;
35157
35130
  manufacturer_part_number?: string | undefined;
35158
35131
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35159
35132
  display_value?: string | undefined;
35160
- display_name?: string | undefined;
35161
35133
  are_pins_interchangeable?: boolean | undefined;
35162
35134
  internally_connected_source_port_ids?: string[][] | undefined;
35163
35135
  }>, z.ZodObject<{
@@ -35183,10 +35155,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35183
35155
  transistor_type: "npn" | "pnp";
35184
35156
  subcircuit_id?: string | undefined;
35185
35157
  source_group_id?: string | undefined;
35158
+ display_name?: string | undefined;
35186
35159
  manufacturer_part_number?: string | undefined;
35187
35160
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35188
35161
  display_value?: string | undefined;
35189
- display_name?: string | undefined;
35190
35162
  are_pins_interchangeable?: boolean | undefined;
35191
35163
  internally_connected_source_port_ids?: string[][] | undefined;
35192
35164
  }, {
@@ -35197,10 +35169,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35197
35169
  transistor_type: "npn" | "pnp";
35198
35170
  subcircuit_id?: string | undefined;
35199
35171
  source_group_id?: string | undefined;
35172
+ display_name?: string | undefined;
35200
35173
  manufacturer_part_number?: string | undefined;
35201
35174
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35202
35175
  display_value?: string | undefined;
35203
- display_name?: string | undefined;
35204
35176
  are_pins_interchangeable?: boolean | undefined;
35205
35177
  internally_connected_source_port_ids?: string[][] | undefined;
35206
35178
  }>, z.ZodObject<{
@@ -35234,10 +35206,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35234
35206
  hole_diameter?: string | number | undefined;
35235
35207
  pad_shape?: "circle" | "rect" | undefined;
35236
35208
  source_group_id?: string | undefined;
35209
+ display_name?: string | undefined;
35237
35210
  manufacturer_part_number?: string | undefined;
35238
35211
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35239
35212
  display_value?: string | undefined;
35240
- display_name?: string | undefined;
35241
35213
  are_pins_interchangeable?: boolean | undefined;
35242
35214
  internally_connected_source_port_ids?: string[][] | undefined;
35243
35215
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -35253,10 +35225,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35253
35225
  hole_diameter?: string | number | undefined;
35254
35226
  pad_shape?: "circle" | "rect" | undefined;
35255
35227
  source_group_id?: string | undefined;
35228
+ display_name?: string | undefined;
35256
35229
  manufacturer_part_number?: string | undefined;
35257
35230
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35258
35231
  display_value?: string | undefined;
35259
- display_name?: string | undefined;
35260
35232
  are_pins_interchangeable?: boolean | undefined;
35261
35233
  internally_connected_source_port_ids?: string[][] | undefined;
35262
35234
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -35286,10 +35258,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35286
35258
  mosfet_mode: "enhancement" | "depletion";
35287
35259
  subcircuit_id?: string | undefined;
35288
35260
  source_group_id?: string | undefined;
35261
+ display_name?: string | undefined;
35289
35262
  manufacturer_part_number?: string | undefined;
35290
35263
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35291
35264
  display_value?: string | undefined;
35292
- display_name?: string | undefined;
35293
35265
  are_pins_interchangeable?: boolean | undefined;
35294
35266
  internally_connected_source_port_ids?: string[][] | undefined;
35295
35267
  }, {
@@ -35301,10 +35273,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35301
35273
  mosfet_mode: "enhancement" | "depletion";
35302
35274
  subcircuit_id?: string | undefined;
35303
35275
  source_group_id?: string | undefined;
35276
+ display_name?: string | undefined;
35304
35277
  manufacturer_part_number?: string | undefined;
35305
35278
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35306
35279
  display_value?: string | undefined;
35307
- display_name?: string | undefined;
35308
35280
  are_pins_interchangeable?: boolean | undefined;
35309
35281
  internally_connected_source_port_ids?: string[][] | undefined;
35310
35282
  }>, z.ZodObject<{
@@ -35328,10 +35300,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35328
35300
  ftype: "simple_op_amp";
35329
35301
  subcircuit_id?: string | undefined;
35330
35302
  source_group_id?: string | undefined;
35303
+ display_name?: string | undefined;
35331
35304
  manufacturer_part_number?: string | undefined;
35332
35305
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35333
35306
  display_value?: string | undefined;
35334
- display_name?: string | undefined;
35335
35307
  are_pins_interchangeable?: boolean | undefined;
35336
35308
  internally_connected_source_port_ids?: string[][] | undefined;
35337
35309
  }, {
@@ -35341,10 +35313,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35341
35313
  ftype: "simple_op_amp";
35342
35314
  subcircuit_id?: string | undefined;
35343
35315
  source_group_id?: string | undefined;
35316
+ display_name?: string | undefined;
35344
35317
  manufacturer_part_number?: string | undefined;
35345
35318
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35346
35319
  display_value?: string | undefined;
35347
- display_name?: string | undefined;
35348
35320
  are_pins_interchangeable?: boolean | undefined;
35349
35321
  internally_connected_source_port_ids?: string[][] | undefined;
35350
35322
  }>, z.ZodObject<{
@@ -35372,10 +35344,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35372
35344
  voltage_rating_volts: number;
35373
35345
  subcircuit_id?: string | undefined;
35374
35346
  source_group_id?: string | undefined;
35347
+ display_name?: string | undefined;
35375
35348
  manufacturer_part_number?: string | undefined;
35376
35349
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35377
35350
  display_value?: string | undefined;
35378
- display_name?: string | undefined;
35379
35351
  are_pins_interchangeable?: boolean | undefined;
35380
35352
  internally_connected_source_port_ids?: string[][] | undefined;
35381
35353
  }, {
@@ -35387,10 +35359,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35387
35359
  voltage_rating_volts: number;
35388
35360
  subcircuit_id?: string | undefined;
35389
35361
  source_group_id?: string | undefined;
35362
+ display_name?: string | undefined;
35390
35363
  manufacturer_part_number?: string | undefined;
35391
35364
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35392
35365
  display_value?: string | undefined;
35393
- display_name?: string | undefined;
35394
35366
  are_pins_interchangeable?: boolean | undefined;
35395
35367
  internally_connected_source_port_ids?: string[][] | undefined;
35396
35368
  }>, z.ZodObject<{
@@ -35414,10 +35386,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35414
35386
  ftype: "simple_voltage_probe";
35415
35387
  subcircuit_id?: string | undefined;
35416
35388
  source_group_id?: string | undefined;
35389
+ display_name?: string | undefined;
35417
35390
  manufacturer_part_number?: string | undefined;
35418
35391
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35419
35392
  display_value?: string | undefined;
35420
- display_name?: string | undefined;
35421
35393
  are_pins_interchangeable?: boolean | undefined;
35422
35394
  internally_connected_source_port_ids?: string[][] | undefined;
35423
35395
  }, {
@@ -35427,10 +35399,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35427
35399
  ftype: "simple_voltage_probe";
35428
35400
  subcircuit_id?: string | undefined;
35429
35401
  source_group_id?: string | undefined;
35402
+ display_name?: string | undefined;
35430
35403
  manufacturer_part_number?: string | undefined;
35431
35404
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35432
35405
  display_value?: string | undefined;
35433
- display_name?: string | undefined;
35434
35406
  are_pins_interchangeable?: boolean | undefined;
35435
35407
  internally_connected_source_port_ids?: string[][] | undefined;
35436
35408
  }>, z.ZodObject<{
@@ -35454,10 +35426,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35454
35426
  ftype: "interconnect";
35455
35427
  subcircuit_id?: string | undefined;
35456
35428
  source_group_id?: string | undefined;
35429
+ display_name?: string | undefined;
35457
35430
  manufacturer_part_number?: string | undefined;
35458
35431
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35459
35432
  display_value?: string | undefined;
35460
- display_name?: string | undefined;
35461
35433
  are_pins_interchangeable?: boolean | undefined;
35462
35434
  internally_connected_source_port_ids?: string[][] | undefined;
35463
35435
  }, {
@@ -35467,10 +35439,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35467
35439
  ftype: "interconnect";
35468
35440
  subcircuit_id?: string | undefined;
35469
35441
  source_group_id?: string | undefined;
35442
+ display_name?: string | undefined;
35470
35443
  manufacturer_part_number?: string | undefined;
35471
35444
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35472
35445
  display_value?: string | undefined;
35473
- display_name?: string | undefined;
35474
35446
  are_pins_interchangeable?: boolean | undefined;
35475
35447
  internally_connected_source_port_ids?: string[][] | undefined;
35476
35448
  }>, z.ZodObject<{
@@ -35516,10 +35488,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35516
35488
  fall_time?: number | undefined;
35517
35489
  pulse_width?: number | undefined;
35518
35490
  period?: number | undefined;
35491
+ display_name?: string | undefined;
35519
35492
  manufacturer_part_number?: string | undefined;
35520
35493
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35521
35494
  display_value?: string | undefined;
35522
- display_name?: string | undefined;
35523
35495
  are_pins_interchangeable?: boolean | undefined;
35524
35496
  internally_connected_source_port_ids?: string[][] | undefined;
35525
35497
  }, {
@@ -35540,10 +35512,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35540
35512
  fall_time?: string | number | undefined;
35541
35513
  pulse_width?: string | number | undefined;
35542
35514
  period?: string | number | undefined;
35515
+ display_name?: string | undefined;
35543
35516
  manufacturer_part_number?: string | undefined;
35544
35517
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35545
35518
  display_value?: string | undefined;
35546
- display_name?: string | undefined;
35547
35519
  are_pins_interchangeable?: boolean | undefined;
35548
35520
  internally_connected_source_port_ids?: string[][] | undefined;
35549
35521
  }>, z.ZodObject<{
@@ -35933,10 +35905,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35933
35905
  ftype: "simple_chip";
35934
35906
  subcircuit_id?: string | undefined;
35935
35907
  source_group_id?: string | undefined;
35908
+ display_name?: string | undefined;
35936
35909
  manufacturer_part_number?: string | undefined;
35937
35910
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35938
35911
  display_value?: string | undefined;
35939
- display_name?: string | undefined;
35940
35912
  are_pins_interchangeable?: boolean | undefined;
35941
35913
  internally_connected_source_port_ids?: string[][] | undefined;
35942
35914
  }, {
@@ -35946,10 +35918,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35946
35918
  ftype: "simple_chip";
35947
35919
  subcircuit_id?: string | undefined;
35948
35920
  source_group_id?: string | undefined;
35921
+ display_name?: string | undefined;
35949
35922
  manufacturer_part_number?: string | undefined;
35950
35923
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35951
35924
  display_value?: string | undefined;
35952
- display_name?: string | undefined;
35953
35925
  are_pins_interchangeable?: boolean | undefined;
35954
35926
  internally_connected_source_port_ids?: string[][] | undefined;
35955
35927
  }>, z.ZodObject<{
@@ -35978,10 +35950,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35978
35950
  capacitance: number;
35979
35951
  subcircuit_id?: string | undefined;
35980
35952
  source_group_id?: string | undefined;
35953
+ display_name?: string | undefined;
35981
35954
  manufacturer_part_number?: string | undefined;
35982
35955
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
35983
35956
  display_value?: string | undefined;
35984
- display_name?: string | undefined;
35985
35957
  are_pins_interchangeable?: boolean | undefined;
35986
35958
  internally_connected_source_port_ids?: string[][] | undefined;
35987
35959
  max_voltage_rating?: number | undefined;
@@ -35995,10 +35967,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
35995
35967
  capacitance: string | number;
35996
35968
  subcircuit_id?: string | undefined;
35997
35969
  source_group_id?: string | undefined;
35970
+ display_name?: string | undefined;
35998
35971
  manufacturer_part_number?: string | undefined;
35999
35972
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36000
35973
  display_value?: string | undefined;
36001
- display_name?: string | undefined;
36002
35974
  are_pins_interchangeable?: boolean | undefined;
36003
35975
  internally_connected_source_port_ids?: string[][] | undefined;
36004
35976
  max_voltage_rating?: string | number | undefined;
@@ -36025,10 +35997,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36025
35997
  ftype: "simple_diode";
36026
35998
  subcircuit_id?: string | undefined;
36027
35999
  source_group_id?: string | undefined;
36000
+ display_name?: string | undefined;
36028
36001
  manufacturer_part_number?: string | undefined;
36029
36002
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36030
36003
  display_value?: string | undefined;
36031
- display_name?: string | undefined;
36032
36004
  are_pins_interchangeable?: boolean | undefined;
36033
36005
  internally_connected_source_port_ids?: string[][] | undefined;
36034
36006
  }, {
@@ -36038,10 +36010,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36038
36010
  ftype: "simple_diode";
36039
36011
  subcircuit_id?: string | undefined;
36040
36012
  source_group_id?: string | undefined;
36013
+ display_name?: string | undefined;
36041
36014
  manufacturer_part_number?: string | undefined;
36042
36015
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36043
36016
  display_value?: string | undefined;
36044
- display_name?: string | undefined;
36045
36017
  are_pins_interchangeable?: boolean | undefined;
36046
36018
  internally_connected_source_port_ids?: string[][] | undefined;
36047
36019
  }>, z.ZodObject<{
@@ -36068,10 +36040,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36068
36040
  subcircuit_id?: string | undefined;
36069
36041
  color?: string | undefined;
36070
36042
  source_group_id?: string | undefined;
36043
+ display_name?: string | undefined;
36071
36044
  manufacturer_part_number?: string | undefined;
36072
36045
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36073
36046
  display_value?: string | undefined;
36074
- display_name?: string | undefined;
36075
36047
  are_pins_interchangeable?: boolean | undefined;
36076
36048
  internally_connected_source_port_ids?: string[][] | undefined;
36077
36049
  wavelength?: string | undefined;
@@ -36083,10 +36055,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36083
36055
  subcircuit_id?: string | undefined;
36084
36056
  color?: string | undefined;
36085
36057
  source_group_id?: string | undefined;
36058
+ display_name?: string | undefined;
36086
36059
  manufacturer_part_number?: string | undefined;
36087
36060
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36088
36061
  display_value?: string | undefined;
36089
- display_name?: string | undefined;
36090
36062
  are_pins_interchangeable?: boolean | undefined;
36091
36063
  internally_connected_source_port_ids?: string[][] | undefined;
36092
36064
  wavelength?: string | undefined;
@@ -36114,10 +36086,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36114
36086
  resistance: number;
36115
36087
  subcircuit_id?: string | undefined;
36116
36088
  source_group_id?: string | undefined;
36089
+ display_name?: string | undefined;
36117
36090
  manufacturer_part_number?: string | undefined;
36118
36091
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36119
36092
  display_value?: string | undefined;
36120
- display_name?: string | undefined;
36121
36093
  are_pins_interchangeable?: boolean | undefined;
36122
36094
  internally_connected_source_port_ids?: string[][] | undefined;
36123
36095
  display_resistance?: string | undefined;
@@ -36129,10 +36101,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36129
36101
  resistance: string | number;
36130
36102
  subcircuit_id?: string | undefined;
36131
36103
  source_group_id?: string | undefined;
36104
+ display_name?: string | undefined;
36132
36105
  manufacturer_part_number?: string | undefined;
36133
36106
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36134
36107
  display_value?: string | undefined;
36135
- display_name?: string | undefined;
36136
36108
  are_pins_interchangeable?: boolean | undefined;
36137
36109
  internally_connected_source_port_ids?: string[][] | undefined;
36138
36110
  display_resistance?: string | undefined;
@@ -36159,10 +36131,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36159
36131
  ftype: "simple_power_source";
36160
36132
  subcircuit_id?: string | undefined;
36161
36133
  source_group_id?: string | undefined;
36134
+ display_name?: string | undefined;
36162
36135
  manufacturer_part_number?: string | undefined;
36163
36136
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36164
36137
  display_value?: string | undefined;
36165
- display_name?: string | undefined;
36166
36138
  are_pins_interchangeable?: boolean | undefined;
36167
36139
  internally_connected_source_port_ids?: string[][] | undefined;
36168
36140
  }, {
@@ -36173,10 +36145,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36173
36145
  ftype: "simple_power_source";
36174
36146
  subcircuit_id?: string | undefined;
36175
36147
  source_group_id?: string | undefined;
36148
+ display_name?: string | undefined;
36176
36149
  manufacturer_part_number?: string | undefined;
36177
36150
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36178
36151
  display_value?: string | undefined;
36179
- display_name?: string | undefined;
36180
36152
  are_pins_interchangeable?: boolean | undefined;
36181
36153
  internally_connected_source_port_ids?: string[][] | undefined;
36182
36154
  }>, z.ZodObject<{
@@ -36202,10 +36174,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36202
36174
  capacity: number;
36203
36175
  subcircuit_id?: string | undefined;
36204
36176
  source_group_id?: string | undefined;
36177
+ display_name?: string | undefined;
36205
36178
  manufacturer_part_number?: string | undefined;
36206
36179
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36207
36180
  display_value?: string | undefined;
36208
- display_name?: string | undefined;
36209
36181
  are_pins_interchangeable?: boolean | undefined;
36210
36182
  internally_connected_source_port_ids?: string[][] | undefined;
36211
36183
  }, {
@@ -36216,10 +36188,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36216
36188
  capacity: string | number;
36217
36189
  subcircuit_id?: string | undefined;
36218
36190
  source_group_id?: string | undefined;
36191
+ display_name?: string | undefined;
36219
36192
  manufacturer_part_number?: string | undefined;
36220
36193
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36221
36194
  display_value?: string | undefined;
36222
- display_name?: string | undefined;
36223
36195
  are_pins_interchangeable?: boolean | undefined;
36224
36196
  internally_connected_source_port_ids?: string[][] | undefined;
36225
36197
  }>, z.ZodObject<{
@@ -36247,10 +36219,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36247
36219
  inductance: number;
36248
36220
  subcircuit_id?: string | undefined;
36249
36221
  source_group_id?: string | undefined;
36222
+ display_name?: string | undefined;
36250
36223
  manufacturer_part_number?: string | undefined;
36251
36224
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36252
36225
  display_value?: string | undefined;
36253
- display_name?: string | undefined;
36254
36226
  are_pins_interchangeable?: boolean | undefined;
36255
36227
  internally_connected_source_port_ids?: string[][] | undefined;
36256
36228
  display_inductance?: string | undefined;
@@ -36263,10 +36235,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36263
36235
  inductance: string | number;
36264
36236
  subcircuit_id?: string | undefined;
36265
36237
  source_group_id?: string | undefined;
36238
+ display_name?: string | undefined;
36266
36239
  manufacturer_part_number?: string | undefined;
36267
36240
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36268
36241
  display_value?: string | undefined;
36269
- display_name?: string | undefined;
36270
36242
  are_pins_interchangeable?: boolean | undefined;
36271
36243
  internally_connected_source_port_ids?: string[][] | undefined;
36272
36244
  display_inductance?: string | undefined;
@@ -36296,10 +36268,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36296
36268
  gender: "male" | "female";
36297
36269
  subcircuit_id?: string | undefined;
36298
36270
  source_group_id?: string | undefined;
36271
+ display_name?: string | undefined;
36299
36272
  manufacturer_part_number?: string | undefined;
36300
36273
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36301
36274
  display_value?: string | undefined;
36302
- display_name?: string | undefined;
36303
36275
  are_pins_interchangeable?: boolean | undefined;
36304
36276
  internally_connected_source_port_ids?: string[][] | undefined;
36305
36277
  }, {
@@ -36310,10 +36282,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36310
36282
  pin_count: number;
36311
36283
  subcircuit_id?: string | undefined;
36312
36284
  source_group_id?: string | undefined;
36285
+ display_name?: string | undefined;
36313
36286
  manufacturer_part_number?: string | undefined;
36314
36287
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36315
36288
  display_value?: string | undefined;
36316
- display_name?: string | undefined;
36317
36289
  are_pins_interchangeable?: boolean | undefined;
36318
36290
  internally_connected_source_port_ids?: string[][] | undefined;
36319
36291
  gender?: "male" | "female" | undefined;
@@ -36338,10 +36310,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36338
36310
  ftype: "simple_pinout";
36339
36311
  subcircuit_id?: string | undefined;
36340
36312
  source_group_id?: string | undefined;
36313
+ display_name?: string | undefined;
36341
36314
  manufacturer_part_number?: string | undefined;
36342
36315
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36343
36316
  display_value?: string | undefined;
36344
- display_name?: string | undefined;
36345
36317
  are_pins_interchangeable?: boolean | undefined;
36346
36318
  internally_connected_source_port_ids?: string[][] | undefined;
36347
36319
  }, {
@@ -36351,10 +36323,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36351
36323
  ftype: "simple_pinout";
36352
36324
  subcircuit_id?: string | undefined;
36353
36325
  source_group_id?: string | undefined;
36326
+ display_name?: string | undefined;
36354
36327
  manufacturer_part_number?: string | undefined;
36355
36328
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36356
36329
  display_value?: string | undefined;
36357
- display_name?: string | undefined;
36358
36330
  are_pins_interchangeable?: boolean | undefined;
36359
36331
  internally_connected_source_port_ids?: string[][] | undefined;
36360
36332
  }>, z.ZodObject<{
@@ -36383,10 +36355,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36383
36355
  load_capacitance: number;
36384
36356
  subcircuit_id?: string | undefined;
36385
36357
  source_group_id?: string | undefined;
36358
+ display_name?: string | undefined;
36386
36359
  manufacturer_part_number?: string | undefined;
36387
36360
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36388
36361
  display_value?: string | undefined;
36389
- display_name?: string | undefined;
36390
36362
  are_pins_interchangeable?: boolean | undefined;
36391
36363
  internally_connected_source_port_ids?: string[][] | undefined;
36392
36364
  equivalent_series_resistance?: number | undefined;
@@ -36399,10 +36371,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36399
36371
  load_capacitance: string | number;
36400
36372
  subcircuit_id?: string | undefined;
36401
36373
  source_group_id?: string | undefined;
36374
+ display_name?: string | undefined;
36402
36375
  manufacturer_part_number?: string | undefined;
36403
36376
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36404
36377
  display_value?: string | undefined;
36405
- display_name?: string | undefined;
36406
36378
  are_pins_interchangeable?: boolean | undefined;
36407
36379
  internally_connected_source_port_ids?: string[][] | undefined;
36408
36380
  equivalent_series_resistance?: string | number | undefined;
@@ -36427,10 +36399,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36427
36399
  ftype: "simple_switch";
36428
36400
  subcircuit_id?: string | undefined;
36429
36401
  source_group_id?: string | undefined;
36402
+ display_name?: string | undefined;
36430
36403
  manufacturer_part_number?: string | undefined;
36431
36404
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36432
36405
  display_value?: string | undefined;
36433
- display_name?: string | undefined;
36434
36406
  are_pins_interchangeable?: boolean | undefined;
36435
36407
  internally_connected_source_port_ids?: string[][] | undefined;
36436
36408
  }, {
@@ -36440,10 +36412,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36440
36412
  ftype: "simple_switch";
36441
36413
  subcircuit_id?: string | undefined;
36442
36414
  source_group_id?: string | undefined;
36415
+ display_name?: string | undefined;
36443
36416
  manufacturer_part_number?: string | undefined;
36444
36417
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36445
36418
  display_value?: string | undefined;
36446
- display_name?: string | undefined;
36447
36419
  are_pins_interchangeable?: boolean | undefined;
36448
36420
  internally_connected_source_port_ids?: string[][] | undefined;
36449
36421
  }>, z.ZodObject<{
@@ -36469,10 +36441,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36469
36441
  transistor_type: "npn" | "pnp";
36470
36442
  subcircuit_id?: string | undefined;
36471
36443
  source_group_id?: string | undefined;
36444
+ display_name?: string | undefined;
36472
36445
  manufacturer_part_number?: string | undefined;
36473
36446
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36474
36447
  display_value?: string | undefined;
36475
- display_name?: string | undefined;
36476
36448
  are_pins_interchangeable?: boolean | undefined;
36477
36449
  internally_connected_source_port_ids?: string[][] | undefined;
36478
36450
  }, {
@@ -36483,10 +36455,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36483
36455
  transistor_type: "npn" | "pnp";
36484
36456
  subcircuit_id?: string | undefined;
36485
36457
  source_group_id?: string | undefined;
36458
+ display_name?: string | undefined;
36486
36459
  manufacturer_part_number?: string | undefined;
36487
36460
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36488
36461
  display_value?: string | undefined;
36489
- display_name?: string | undefined;
36490
36462
  are_pins_interchangeable?: boolean | undefined;
36491
36463
  internally_connected_source_port_ids?: string[][] | undefined;
36492
36464
  }>, z.ZodObject<{
@@ -36520,10 +36492,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36520
36492
  hole_diameter?: string | number | undefined;
36521
36493
  pad_shape?: "circle" | "rect" | undefined;
36522
36494
  source_group_id?: string | undefined;
36495
+ display_name?: string | undefined;
36523
36496
  manufacturer_part_number?: string | undefined;
36524
36497
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36525
36498
  display_value?: string | undefined;
36526
- display_name?: string | undefined;
36527
36499
  are_pins_interchangeable?: boolean | undefined;
36528
36500
  internally_connected_source_port_ids?: string[][] | undefined;
36529
36501
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -36539,10 +36511,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36539
36511
  hole_diameter?: string | number | undefined;
36540
36512
  pad_shape?: "circle" | "rect" | undefined;
36541
36513
  source_group_id?: string | undefined;
36514
+ display_name?: string | undefined;
36542
36515
  manufacturer_part_number?: string | undefined;
36543
36516
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36544
36517
  display_value?: string | undefined;
36545
- display_name?: string | undefined;
36546
36518
  are_pins_interchangeable?: boolean | undefined;
36547
36519
  internally_connected_source_port_ids?: string[][] | undefined;
36548
36520
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -36572,10 +36544,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36572
36544
  mosfet_mode: "enhancement" | "depletion";
36573
36545
  subcircuit_id?: string | undefined;
36574
36546
  source_group_id?: string | undefined;
36547
+ display_name?: string | undefined;
36575
36548
  manufacturer_part_number?: string | undefined;
36576
36549
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36577
36550
  display_value?: string | undefined;
36578
- display_name?: string | undefined;
36579
36551
  are_pins_interchangeable?: boolean | undefined;
36580
36552
  internally_connected_source_port_ids?: string[][] | undefined;
36581
36553
  }, {
@@ -36587,10 +36559,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36587
36559
  mosfet_mode: "enhancement" | "depletion";
36588
36560
  subcircuit_id?: string | undefined;
36589
36561
  source_group_id?: string | undefined;
36562
+ display_name?: string | undefined;
36590
36563
  manufacturer_part_number?: string | undefined;
36591
36564
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36592
36565
  display_value?: string | undefined;
36593
- display_name?: string | undefined;
36594
36566
  are_pins_interchangeable?: boolean | undefined;
36595
36567
  internally_connected_source_port_ids?: string[][] | undefined;
36596
36568
  }>, z.ZodObject<{
@@ -36614,10 +36586,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36614
36586
  ftype: "simple_op_amp";
36615
36587
  subcircuit_id?: string | undefined;
36616
36588
  source_group_id?: string | undefined;
36589
+ display_name?: string | undefined;
36617
36590
  manufacturer_part_number?: string | undefined;
36618
36591
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36619
36592
  display_value?: string | undefined;
36620
- display_name?: string | undefined;
36621
36593
  are_pins_interchangeable?: boolean | undefined;
36622
36594
  internally_connected_source_port_ids?: string[][] | undefined;
36623
36595
  }, {
@@ -36627,10 +36599,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36627
36599
  ftype: "simple_op_amp";
36628
36600
  subcircuit_id?: string | undefined;
36629
36601
  source_group_id?: string | undefined;
36602
+ display_name?: string | undefined;
36630
36603
  manufacturer_part_number?: string | undefined;
36631
36604
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36632
36605
  display_value?: string | undefined;
36633
- display_name?: string | undefined;
36634
36606
  are_pins_interchangeable?: boolean | undefined;
36635
36607
  internally_connected_source_port_ids?: string[][] | undefined;
36636
36608
  }>, z.ZodObject<{
@@ -36657,10 +36629,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36657
36629
  max_resistance: number;
36658
36630
  subcircuit_id?: string | undefined;
36659
36631
  source_group_id?: string | undefined;
36632
+ display_name?: string | undefined;
36660
36633
  manufacturer_part_number?: string | undefined;
36661
36634
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36662
36635
  display_value?: string | undefined;
36663
- display_name?: string | undefined;
36664
36636
  are_pins_interchangeable?: boolean | undefined;
36665
36637
  internally_connected_source_port_ids?: string[][] | undefined;
36666
36638
  display_max_resistance?: string | undefined;
@@ -36672,10 +36644,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36672
36644
  max_resistance: string | number;
36673
36645
  subcircuit_id?: string | undefined;
36674
36646
  source_group_id?: string | undefined;
36647
+ display_name?: string | undefined;
36675
36648
  manufacturer_part_number?: string | undefined;
36676
36649
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36677
36650
  display_value?: string | undefined;
36678
- display_name?: string | undefined;
36679
36651
  are_pins_interchangeable?: boolean | undefined;
36680
36652
  internally_connected_source_port_ids?: string[][] | undefined;
36681
36653
  display_max_resistance?: string | undefined;
@@ -36700,10 +36672,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36700
36672
  ftype: "simple_push_button";
36701
36673
  subcircuit_id?: string | undefined;
36702
36674
  source_group_id?: string | undefined;
36675
+ display_name?: string | undefined;
36703
36676
  manufacturer_part_number?: string | undefined;
36704
36677
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36705
36678
  display_value?: string | undefined;
36706
- display_name?: string | undefined;
36707
36679
  are_pins_interchangeable?: boolean | undefined;
36708
36680
  internally_connected_source_port_ids?: string[][] | undefined;
36709
36681
  }, {
@@ -36713,10 +36685,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
36713
36685
  ftype: "simple_push_button";
36714
36686
  subcircuit_id?: string | undefined;
36715
36687
  source_group_id?: string | undefined;
36688
+ display_name?: string | undefined;
36716
36689
  manufacturer_part_number?: string | undefined;
36717
36690
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
36718
36691
  display_value?: string | undefined;
36719
- display_name?: string | undefined;
36720
36692
  are_pins_interchangeable?: boolean | undefined;
36721
36693
  internally_connected_source_port_ids?: string[][] | undefined;
36722
36694
  }>, z.ZodObject<{
@@ -52651,22 +52623,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52651
52623
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
52652
52624
  subcircuit_id: z.ZodOptional<z.ZodString>;
52653
52625
  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
52626
  }, "strip", z.ZodTypeAny, {
52671
52627
  type: "simulation_voltage_probe";
52672
52628
  simulation_voltage_probe_id: string;
@@ -52678,12 +52634,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52678
52634
  signal_input_source_net_id?: string | undefined;
52679
52635
  reference_input_source_port_id?: string | undefined;
52680
52636
  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
52637
  }, {
52688
52638
  type: "simulation_voltage_probe";
52689
52639
  name?: string | undefined;
@@ -52695,12 +52645,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52695
52645
  signal_input_source_net_id?: string | undefined;
52696
52646
  reference_input_source_port_id?: string | undefined;
52697
52647
  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
52648
  }>, {
52705
52649
  type: "simulation_voltage_probe";
52706
52650
  simulation_voltage_probe_id: string;
@@ -52712,12 +52656,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52712
52656
  signal_input_source_net_id?: string | undefined;
52713
52657
  reference_input_source_port_id?: string | undefined;
52714
52658
  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
52659
  }, {
52722
52660
  type: "simulation_voltage_probe";
52723
52661
  name?: string | undefined;
@@ -52729,12 +52667,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52729
52667
  signal_input_source_net_id?: string | undefined;
52730
52668
  reference_input_source_port_id?: string | undefined;
52731
52669
  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
52670
  }>, z.ZodEffects<z.ZodObject<{
52739
52671
  type: z.ZodLiteral<"simulation_current_probe">;
52740
52672
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -52746,22 +52678,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52746
52678
  negative_source_net_id: z.ZodOptional<z.ZodString>;
52747
52679
  subcircuit_id: z.ZodOptional<z.ZodString>;
52748
52680
  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
52681
  }, "strip", z.ZodTypeAny, {
52766
52682
  type: "simulation_current_probe";
52767
52683
  simulation_current_probe_id: string;
@@ -52773,12 +52689,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52773
52689
  negative_source_port_id?: string | undefined;
52774
52690
  positive_source_net_id?: string | undefined;
52775
52691
  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
52692
  }, {
52783
52693
  type: "simulation_current_probe";
52784
52694
  name?: string | undefined;
@@ -52789,12 +52699,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52789
52699
  negative_source_port_id?: string | undefined;
52790
52700
  positive_source_net_id?: string | undefined;
52791
52701
  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
52702
  simulation_current_probe_id?: string | undefined;
52799
52703
  }>, {
52800
52704
  type: "simulation_current_probe";
@@ -52807,12 +52711,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52807
52711
  negative_source_port_id?: string | undefined;
52808
52712
  positive_source_net_id?: string | undefined;
52809
52713
  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
52714
  }, {
52817
52715
  type: "simulation_current_probe";
52818
52716
  name?: string | undefined;
@@ -52823,13 +52721,72 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
52823
52721
  negative_source_port_id?: string | undefined;
52824
52722
  positive_source_net_id?: string | undefined;
52825
52723
  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
52724
  simulation_current_probe_id?: string | undefined;
52725
+ }>, z.ZodEffects<z.ZodObject<{
52726
+ type: z.ZodLiteral<"simulation_oscilloscope_trace">;
52727
+ simulation_oscilloscope_trace_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52728
+ simulation_transient_voltage_graph_id: z.ZodOptional<z.ZodString>;
52729
+ simulation_transient_current_graph_id: z.ZodOptional<z.ZodString>;
52730
+ simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
52731
+ simulation_current_probe_id: z.ZodOptional<z.ZodString>;
52732
+ display_name: z.ZodOptional<z.ZodString>;
52733
+ color: z.ZodOptional<z.ZodString>;
52734
+ display_center_value: z.ZodOptional<z.ZodNumber>;
52735
+ display_center_offset_divs: z.ZodOptional<z.ZodNumber>;
52736
+ volts_per_div: z.ZodOptional<z.ZodNumber>;
52737
+ amps_per_div: z.ZodOptional<z.ZodNumber>;
52738
+ }, "strip", z.ZodTypeAny, {
52739
+ type: "simulation_oscilloscope_trace";
52740
+ simulation_oscilloscope_trace_id: string;
52741
+ color?: string | undefined;
52742
+ simulation_transient_voltage_graph_id?: string | undefined;
52743
+ simulation_transient_current_graph_id?: string | undefined;
52744
+ simulation_voltage_probe_id?: string | undefined;
52745
+ simulation_current_probe_id?: string | undefined;
52746
+ display_name?: string | undefined;
52747
+ display_center_value?: number | undefined;
52748
+ display_center_offset_divs?: number | undefined;
52749
+ volts_per_div?: number | undefined;
52750
+ amps_per_div?: number | undefined;
52751
+ }, {
52752
+ type: "simulation_oscilloscope_trace";
52753
+ color?: string | undefined;
52754
+ simulation_transient_voltage_graph_id?: string | undefined;
52755
+ simulation_transient_current_graph_id?: string | undefined;
52756
+ simulation_voltage_probe_id?: string | undefined;
52757
+ simulation_current_probe_id?: string | undefined;
52758
+ simulation_oscilloscope_trace_id?: string | undefined;
52759
+ display_name?: string | undefined;
52760
+ display_center_value?: number | undefined;
52761
+ display_center_offset_divs?: number | undefined;
52762
+ volts_per_div?: number | undefined;
52763
+ amps_per_div?: number | undefined;
52764
+ }>, {
52765
+ type: "simulation_oscilloscope_trace";
52766
+ simulation_oscilloscope_trace_id: string;
52767
+ color?: string | undefined;
52768
+ simulation_transient_voltage_graph_id?: string | undefined;
52769
+ simulation_transient_current_graph_id?: string | undefined;
52770
+ simulation_voltage_probe_id?: string | undefined;
52771
+ simulation_current_probe_id?: string | undefined;
52772
+ display_name?: string | undefined;
52773
+ display_center_value?: number | undefined;
52774
+ display_center_offset_divs?: number | undefined;
52775
+ volts_per_div?: number | undefined;
52776
+ amps_per_div?: number | undefined;
52777
+ }, {
52778
+ type: "simulation_oscilloscope_trace";
52779
+ color?: string | undefined;
52780
+ simulation_transient_voltage_graph_id?: string | undefined;
52781
+ simulation_transient_current_graph_id?: string | undefined;
52782
+ simulation_voltage_probe_id?: string | undefined;
52783
+ simulation_current_probe_id?: string | undefined;
52784
+ simulation_oscilloscope_trace_id?: string | undefined;
52785
+ display_name?: string | undefined;
52786
+ display_center_value?: number | undefined;
52787
+ display_center_offset_divs?: number | undefined;
52788
+ volts_per_div?: number | undefined;
52789
+ amps_per_div?: number | undefined;
52833
52790
  }>, z.ZodObject<{
52834
52791
  message: z.ZodString;
52835
52792
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -52912,6 +52869,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52912
52869
  subcircuit_id: z.ZodOptional<z.ZodString>;
52913
52870
  subcircuit_connectivity_map_key: z.ZodOptional<z.ZodString>;
52914
52871
  max_length: z.ZodOptional<z.ZodNumber>;
52872
+ name: z.ZodOptional<z.ZodString>;
52915
52873
  min_trace_thickness: z.ZodOptional<z.ZodNumber>;
52916
52874
  display_name: z.ZodOptional<z.ZodString>;
52917
52875
  }, "strip", z.ZodTypeAny, {
@@ -52919,6 +52877,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52919
52877
  source_trace_id: string;
52920
52878
  connected_source_port_ids: string[];
52921
52879
  connected_source_net_ids: string[];
52880
+ name?: string | undefined;
52922
52881
  subcircuit_id?: string | undefined;
52923
52882
  subcircuit_connectivity_map_key?: string | undefined;
52924
52883
  display_name?: string | undefined;
@@ -52929,6 +52888,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52929
52888
  source_trace_id: string;
52930
52889
  connected_source_port_ids: string[];
52931
52890
  connected_source_net_ids: string[];
52891
+ name?: string | undefined;
52932
52892
  subcircuit_id?: string | undefined;
52933
52893
  subcircuit_connectivity_map_key?: string | undefined;
52934
52894
  display_name?: string | undefined;
@@ -53121,10 +53081,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53121
53081
  resistance: number;
53122
53082
  subcircuit_id?: string | undefined;
53123
53083
  source_group_id?: string | undefined;
53084
+ display_name?: string | undefined;
53124
53085
  manufacturer_part_number?: string | undefined;
53125
53086
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53126
53087
  display_value?: string | undefined;
53127
- display_name?: string | undefined;
53128
53088
  are_pins_interchangeable?: boolean | undefined;
53129
53089
  internally_connected_source_port_ids?: string[][] | undefined;
53130
53090
  display_resistance?: string | undefined;
@@ -53136,10 +53096,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53136
53096
  resistance: string | number;
53137
53097
  subcircuit_id?: string | undefined;
53138
53098
  source_group_id?: string | undefined;
53099
+ display_name?: string | undefined;
53139
53100
  manufacturer_part_number?: string | undefined;
53140
53101
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53141
53102
  display_value?: string | undefined;
53142
- display_name?: string | undefined;
53143
53103
  are_pins_interchangeable?: boolean | undefined;
53144
53104
  internally_connected_source_port_ids?: string[][] | undefined;
53145
53105
  display_resistance?: string | undefined;
@@ -53169,10 +53129,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53169
53129
  capacitance: number;
53170
53130
  subcircuit_id?: string | undefined;
53171
53131
  source_group_id?: string | undefined;
53132
+ display_name?: string | undefined;
53172
53133
  manufacturer_part_number?: string | undefined;
53173
53134
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53174
53135
  display_value?: string | undefined;
53175
- display_name?: string | undefined;
53176
53136
  are_pins_interchangeable?: boolean | undefined;
53177
53137
  internally_connected_source_port_ids?: string[][] | undefined;
53178
53138
  max_voltage_rating?: number | undefined;
@@ -53186,10 +53146,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53186
53146
  capacitance: string | number;
53187
53147
  subcircuit_id?: string | undefined;
53188
53148
  source_group_id?: string | undefined;
53149
+ display_name?: string | undefined;
53189
53150
  manufacturer_part_number?: string | undefined;
53190
53151
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53191
53152
  display_value?: string | undefined;
53192
- display_name?: string | undefined;
53193
53153
  are_pins_interchangeable?: boolean | undefined;
53194
53154
  internally_connected_source_port_ids?: string[][] | undefined;
53195
53155
  max_voltage_rating?: string | number | undefined;
@@ -53216,10 +53176,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53216
53176
  ftype: "simple_diode";
53217
53177
  subcircuit_id?: string | undefined;
53218
53178
  source_group_id?: string | undefined;
53179
+ display_name?: string | undefined;
53219
53180
  manufacturer_part_number?: string | undefined;
53220
53181
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53221
53182
  display_value?: string | undefined;
53222
- display_name?: string | undefined;
53223
53183
  are_pins_interchangeable?: boolean | undefined;
53224
53184
  internally_connected_source_port_ids?: string[][] | undefined;
53225
53185
  }, {
@@ -53229,10 +53189,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53229
53189
  ftype: "simple_diode";
53230
53190
  subcircuit_id?: string | undefined;
53231
53191
  source_group_id?: string | undefined;
53192
+ display_name?: string | undefined;
53232
53193
  manufacturer_part_number?: string | undefined;
53233
53194
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53234
53195
  display_value?: string | undefined;
53235
- display_name?: string | undefined;
53236
53196
  are_pins_interchangeable?: boolean | undefined;
53237
53197
  internally_connected_source_port_ids?: string[][] | undefined;
53238
53198
  }>, z.ZodObject<{
@@ -53256,10 +53216,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53256
53216
  ftype: "simple_fiducial";
53257
53217
  subcircuit_id?: string | undefined;
53258
53218
  source_group_id?: string | undefined;
53219
+ display_name?: string | undefined;
53259
53220
  manufacturer_part_number?: string | undefined;
53260
53221
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53261
53222
  display_value?: string | undefined;
53262
- display_name?: string | undefined;
53263
53223
  are_pins_interchangeable?: boolean | undefined;
53264
53224
  internally_connected_source_port_ids?: string[][] | undefined;
53265
53225
  }, {
@@ -53269,10 +53229,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53269
53229
  ftype: "simple_fiducial";
53270
53230
  subcircuit_id?: string | undefined;
53271
53231
  source_group_id?: string | undefined;
53232
+ display_name?: string | undefined;
53272
53233
  manufacturer_part_number?: string | undefined;
53273
53234
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53274
53235
  display_value?: string | undefined;
53275
- display_name?: string | undefined;
53276
53236
  are_pins_interchangeable?: boolean | undefined;
53277
53237
  internally_connected_source_port_ids?: string[][] | undefined;
53278
53238
  }>, z.ZodObject<{
@@ -53299,10 +53259,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53299
53259
  subcircuit_id?: string | undefined;
53300
53260
  color?: string | undefined;
53301
53261
  source_group_id?: string | undefined;
53262
+ display_name?: string | undefined;
53302
53263
  manufacturer_part_number?: string | undefined;
53303
53264
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53304
53265
  display_value?: string | undefined;
53305
- display_name?: string | undefined;
53306
53266
  are_pins_interchangeable?: boolean | undefined;
53307
53267
  internally_connected_source_port_ids?: string[][] | undefined;
53308
53268
  wavelength?: string | undefined;
@@ -53314,10 +53274,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53314
53274
  subcircuit_id?: string | undefined;
53315
53275
  color?: string | undefined;
53316
53276
  source_group_id?: string | undefined;
53277
+ display_name?: string | undefined;
53317
53278
  manufacturer_part_number?: string | undefined;
53318
53279
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53319
53280
  display_value?: string | undefined;
53320
- display_name?: string | undefined;
53321
53281
  are_pins_interchangeable?: boolean | undefined;
53322
53282
  internally_connected_source_port_ids?: string[][] | undefined;
53323
53283
  wavelength?: string | undefined;
@@ -53342,10 +53302,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53342
53302
  ftype: "simple_ground";
53343
53303
  subcircuit_id?: string | undefined;
53344
53304
  source_group_id?: string | undefined;
53305
+ display_name?: string | undefined;
53345
53306
  manufacturer_part_number?: string | undefined;
53346
53307
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53347
53308
  display_value?: string | undefined;
53348
- display_name?: string | undefined;
53349
53309
  are_pins_interchangeable?: boolean | undefined;
53350
53310
  internally_connected_source_port_ids?: string[][] | undefined;
53351
53311
  }, {
@@ -53355,10 +53315,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53355
53315
  ftype: "simple_ground";
53356
53316
  subcircuit_id?: string | undefined;
53357
53317
  source_group_id?: string | undefined;
53318
+ display_name?: string | undefined;
53358
53319
  manufacturer_part_number?: string | undefined;
53359
53320
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53360
53321
  display_value?: string | undefined;
53361
- display_name?: string | undefined;
53362
53322
  are_pins_interchangeable?: boolean | undefined;
53363
53323
  internally_connected_source_port_ids?: string[][] | undefined;
53364
53324
  }>, z.ZodObject<{
@@ -53382,10 +53342,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53382
53342
  ftype: "simple_chip";
53383
53343
  subcircuit_id?: string | undefined;
53384
53344
  source_group_id?: string | undefined;
53345
+ display_name?: string | undefined;
53385
53346
  manufacturer_part_number?: string | undefined;
53386
53347
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53387
53348
  display_value?: string | undefined;
53388
- display_name?: string | undefined;
53389
53349
  are_pins_interchangeable?: boolean | undefined;
53390
53350
  internally_connected_source_port_ids?: string[][] | undefined;
53391
53351
  }, {
@@ -53395,10 +53355,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53395
53355
  ftype: "simple_chip";
53396
53356
  subcircuit_id?: string | undefined;
53397
53357
  source_group_id?: string | undefined;
53358
+ display_name?: string | undefined;
53398
53359
  manufacturer_part_number?: string | undefined;
53399
53360
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53400
53361
  display_value?: string | undefined;
53401
- display_name?: string | undefined;
53402
53362
  are_pins_interchangeable?: boolean | undefined;
53403
53363
  internally_connected_source_port_ids?: string[][] | undefined;
53404
53364
  }>, z.ZodObject<{
@@ -53424,10 +53384,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53424
53384
  ftype: "simple_power_source";
53425
53385
  subcircuit_id?: string | undefined;
53426
53386
  source_group_id?: string | undefined;
53387
+ display_name?: string | undefined;
53427
53388
  manufacturer_part_number?: string | undefined;
53428
53389
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53429
53390
  display_value?: string | undefined;
53430
- display_name?: string | undefined;
53431
53391
  are_pins_interchangeable?: boolean | undefined;
53432
53392
  internally_connected_source_port_ids?: string[][] | undefined;
53433
53393
  }, {
@@ -53438,10 +53398,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53438
53398
  ftype: "simple_power_source";
53439
53399
  subcircuit_id?: string | undefined;
53440
53400
  source_group_id?: string | undefined;
53401
+ display_name?: string | undefined;
53441
53402
  manufacturer_part_number?: string | undefined;
53442
53403
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53443
53404
  display_value?: string | undefined;
53444
- display_name?: string | undefined;
53445
53405
  are_pins_interchangeable?: boolean | undefined;
53446
53406
  internally_connected_source_port_ids?: string[][] | undefined;
53447
53407
  }>, z.ZodObject<{
@@ -53477,10 +53437,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53477
53437
  phase?: number | undefined;
53478
53438
  duty_cycle?: number | undefined;
53479
53439
  peak_to_peak_current?: number | undefined;
53440
+ display_name?: string | undefined;
53480
53441
  manufacturer_part_number?: string | undefined;
53481
53442
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53482
53443
  display_value?: string | undefined;
53483
- display_name?: string | undefined;
53484
53444
  are_pins_interchangeable?: boolean | undefined;
53485
53445
  internally_connected_source_port_ids?: string[][] | undefined;
53486
53446
  }, {
@@ -53496,10 +53456,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53496
53456
  phase?: number | undefined;
53497
53457
  duty_cycle?: number | undefined;
53498
53458
  peak_to_peak_current?: string | number | undefined;
53459
+ display_name?: string | undefined;
53499
53460
  manufacturer_part_number?: string | undefined;
53500
53461
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53501
53462
  display_value?: string | undefined;
53502
- display_name?: string | undefined;
53503
53463
  are_pins_interchangeable?: boolean | undefined;
53504
53464
  internally_connected_source_port_ids?: string[][] | undefined;
53505
53465
  }>, z.ZodObject<{
@@ -53523,10 +53483,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53523
53483
  ftype: "simple_ammeter";
53524
53484
  subcircuit_id?: string | undefined;
53525
53485
  source_group_id?: string | undefined;
53486
+ display_name?: string | undefined;
53526
53487
  manufacturer_part_number?: string | undefined;
53527
53488
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53528
53489
  display_value?: string | undefined;
53529
- display_name?: string | undefined;
53530
53490
  are_pins_interchangeable?: boolean | undefined;
53531
53491
  internally_connected_source_port_ids?: string[][] | undefined;
53532
53492
  }, {
@@ -53536,10 +53496,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53536
53496
  ftype: "simple_ammeter";
53537
53497
  subcircuit_id?: string | undefined;
53538
53498
  source_group_id?: string | undefined;
53499
+ display_name?: string | undefined;
53539
53500
  manufacturer_part_number?: string | undefined;
53540
53501
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53541
53502
  display_value?: string | undefined;
53542
- display_name?: string | undefined;
53543
53503
  are_pins_interchangeable?: boolean | undefined;
53544
53504
  internally_connected_source_port_ids?: string[][] | undefined;
53545
53505
  }>, z.ZodObject<{
@@ -53565,10 +53525,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53565
53525
  capacity: number;
53566
53526
  subcircuit_id?: string | undefined;
53567
53527
  source_group_id?: string | undefined;
53528
+ display_name?: string | undefined;
53568
53529
  manufacturer_part_number?: string | undefined;
53569
53530
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53570
53531
  display_value?: string | undefined;
53571
- display_name?: string | undefined;
53572
53532
  are_pins_interchangeable?: boolean | undefined;
53573
53533
  internally_connected_source_port_ids?: string[][] | undefined;
53574
53534
  }, {
@@ -53579,10 +53539,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53579
53539
  capacity: string | number;
53580
53540
  subcircuit_id?: string | undefined;
53581
53541
  source_group_id?: string | undefined;
53542
+ display_name?: string | undefined;
53582
53543
  manufacturer_part_number?: string | undefined;
53583
53544
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53584
53545
  display_value?: string | undefined;
53585
- display_name?: string | undefined;
53586
53546
  are_pins_interchangeable?: boolean | undefined;
53587
53547
  internally_connected_source_port_ids?: string[][] | undefined;
53588
53548
  }>, z.ZodObject<{
@@ -53610,10 +53570,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53610
53570
  inductance: number;
53611
53571
  subcircuit_id?: string | undefined;
53612
53572
  source_group_id?: string | undefined;
53573
+ display_name?: string | undefined;
53613
53574
  manufacturer_part_number?: string | undefined;
53614
53575
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53615
53576
  display_value?: string | undefined;
53616
- display_name?: string | undefined;
53617
53577
  are_pins_interchangeable?: boolean | undefined;
53618
53578
  internally_connected_source_port_ids?: string[][] | undefined;
53619
53579
  display_inductance?: string | undefined;
@@ -53626,10 +53586,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53626
53586
  inductance: string | number;
53627
53587
  subcircuit_id?: string | undefined;
53628
53588
  source_group_id?: string | undefined;
53589
+ display_name?: string | undefined;
53629
53590
  manufacturer_part_number?: string | undefined;
53630
53591
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53631
53592
  display_value?: string | undefined;
53632
- display_name?: string | undefined;
53633
53593
  are_pins_interchangeable?: boolean | undefined;
53634
53594
  internally_connected_source_port_ids?: string[][] | undefined;
53635
53595
  display_inductance?: string | undefined;
@@ -53655,10 +53615,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53655
53615
  ftype: "simple_push_button";
53656
53616
  subcircuit_id?: string | undefined;
53657
53617
  source_group_id?: string | undefined;
53618
+ display_name?: string | undefined;
53658
53619
  manufacturer_part_number?: string | undefined;
53659
53620
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53660
53621
  display_value?: string | undefined;
53661
- display_name?: string | undefined;
53662
53622
  are_pins_interchangeable?: boolean | undefined;
53663
53623
  internally_connected_source_port_ids?: string[][] | undefined;
53664
53624
  }, {
@@ -53668,10 +53628,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53668
53628
  ftype: "simple_push_button";
53669
53629
  subcircuit_id?: string | undefined;
53670
53630
  source_group_id?: string | undefined;
53631
+ display_name?: string | undefined;
53671
53632
  manufacturer_part_number?: string | undefined;
53672
53633
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53673
53634
  display_value?: string | undefined;
53674
- display_name?: string | undefined;
53675
53635
  are_pins_interchangeable?: boolean | undefined;
53676
53636
  internally_connected_source_port_ids?: string[][] | undefined;
53677
53637
  }>, z.ZodObject<{
@@ -53698,10 +53658,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53698
53658
  max_resistance: number;
53699
53659
  subcircuit_id?: string | undefined;
53700
53660
  source_group_id?: string | undefined;
53661
+ display_name?: string | undefined;
53701
53662
  manufacturer_part_number?: string | undefined;
53702
53663
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53703
53664
  display_value?: string | undefined;
53704
- display_name?: string | undefined;
53705
53665
  are_pins_interchangeable?: boolean | undefined;
53706
53666
  internally_connected_source_port_ids?: string[][] | undefined;
53707
53667
  display_max_resistance?: string | undefined;
@@ -53713,10 +53673,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53713
53673
  max_resistance: string | number;
53714
53674
  subcircuit_id?: string | undefined;
53715
53675
  source_group_id?: string | undefined;
53676
+ display_name?: string | undefined;
53716
53677
  manufacturer_part_number?: string | undefined;
53717
53678
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53718
53679
  display_value?: string | undefined;
53719
- display_name?: string | undefined;
53720
53680
  are_pins_interchangeable?: boolean | undefined;
53721
53681
  internally_connected_source_port_ids?: string[][] | undefined;
53722
53682
  display_max_resistance?: string | undefined;
@@ -53745,10 +53705,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53745
53705
  ftype: "simple_crystal";
53746
53706
  subcircuit_id?: string | undefined;
53747
53707
  source_group_id?: string | undefined;
53708
+ display_name?: string | undefined;
53748
53709
  manufacturer_part_number?: string | undefined;
53749
53710
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53750
53711
  display_value?: string | undefined;
53751
- display_name?: string | undefined;
53752
53712
  are_pins_interchangeable?: boolean | undefined;
53753
53713
  internally_connected_source_port_ids?: string[][] | undefined;
53754
53714
  load_capacitance?: number | undefined;
@@ -53761,10 +53721,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53761
53721
  ftype: "simple_crystal";
53762
53722
  subcircuit_id?: string | undefined;
53763
53723
  source_group_id?: string | undefined;
53724
+ display_name?: string | undefined;
53764
53725
  manufacturer_part_number?: string | undefined;
53765
53726
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53766
53727
  display_value?: string | undefined;
53767
- display_name?: string | undefined;
53768
53728
  are_pins_interchangeable?: boolean | undefined;
53769
53729
  internally_connected_source_port_ids?: string[][] | undefined;
53770
53730
  load_capacitance?: number | undefined;
@@ -53794,10 +53754,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53794
53754
  gender: "male" | "female";
53795
53755
  subcircuit_id?: string | undefined;
53796
53756
  source_group_id?: string | undefined;
53757
+ display_name?: string | undefined;
53797
53758
  manufacturer_part_number?: string | undefined;
53798
53759
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53799
53760
  display_value?: string | undefined;
53800
- display_name?: string | undefined;
53801
53761
  are_pins_interchangeable?: boolean | undefined;
53802
53762
  internally_connected_source_port_ids?: string[][] | undefined;
53803
53763
  }, {
@@ -53808,10 +53768,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53808
53768
  pin_count: number;
53809
53769
  subcircuit_id?: string | undefined;
53810
53770
  source_group_id?: string | undefined;
53771
+ display_name?: string | undefined;
53811
53772
  manufacturer_part_number?: string | undefined;
53812
53773
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53813
53774
  display_value?: string | undefined;
53814
- display_name?: string | undefined;
53815
53775
  are_pins_interchangeable?: boolean | undefined;
53816
53776
  internally_connected_source_port_ids?: string[][] | undefined;
53817
53777
  gender?: "male" | "female" | undefined;
@@ -53837,10 +53797,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53837
53797
  ftype: "simple_connector";
53838
53798
  subcircuit_id?: string | undefined;
53839
53799
  source_group_id?: string | undefined;
53800
+ display_name?: string | undefined;
53840
53801
  manufacturer_part_number?: string | undefined;
53841
53802
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53842
53803
  display_value?: string | undefined;
53843
- display_name?: string | undefined;
53844
53804
  are_pins_interchangeable?: boolean | undefined;
53845
53805
  internally_connected_source_port_ids?: string[][] | undefined;
53846
53806
  standard?: "usb_c" | "m2" | undefined;
@@ -53851,10 +53811,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53851
53811
  ftype: "simple_connector";
53852
53812
  subcircuit_id?: string | undefined;
53853
53813
  source_group_id?: string | undefined;
53814
+ display_name?: string | undefined;
53854
53815
  manufacturer_part_number?: string | undefined;
53855
53816
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53856
53817
  display_value?: string | undefined;
53857
- display_name?: string | undefined;
53858
53818
  are_pins_interchangeable?: boolean | undefined;
53859
53819
  internally_connected_source_port_ids?: string[][] | undefined;
53860
53820
  standard?: "usb_c" | "m2" | undefined;
@@ -53879,10 +53839,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53879
53839
  ftype: "simple_pinout";
53880
53840
  subcircuit_id?: string | undefined;
53881
53841
  source_group_id?: string | undefined;
53842
+ display_name?: string | undefined;
53882
53843
  manufacturer_part_number?: string | undefined;
53883
53844
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53884
53845
  display_value?: string | undefined;
53885
- display_name?: string | undefined;
53886
53846
  are_pins_interchangeable?: boolean | undefined;
53887
53847
  internally_connected_source_port_ids?: string[][] | undefined;
53888
53848
  }, {
@@ -53892,10 +53852,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53892
53852
  ftype: "simple_pinout";
53893
53853
  subcircuit_id?: string | undefined;
53894
53854
  source_group_id?: string | undefined;
53855
+ display_name?: string | undefined;
53895
53856
  manufacturer_part_number?: string | undefined;
53896
53857
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53897
53858
  display_value?: string | undefined;
53898
- display_name?: string | undefined;
53899
53859
  are_pins_interchangeable?: boolean | undefined;
53900
53860
  internally_connected_source_port_ids?: string[][] | undefined;
53901
53861
  }>, z.ZodObject<{
@@ -53924,10 +53884,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53924
53884
  load_capacitance: number;
53925
53885
  subcircuit_id?: string | undefined;
53926
53886
  source_group_id?: string | undefined;
53887
+ display_name?: string | undefined;
53927
53888
  manufacturer_part_number?: string | undefined;
53928
53889
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53929
53890
  display_value?: string | undefined;
53930
- display_name?: string | undefined;
53931
53891
  are_pins_interchangeable?: boolean | undefined;
53932
53892
  internally_connected_source_port_ids?: string[][] | undefined;
53933
53893
  equivalent_series_resistance?: number | undefined;
@@ -53940,10 +53900,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53940
53900
  load_capacitance: string | number;
53941
53901
  subcircuit_id?: string | undefined;
53942
53902
  source_group_id?: string | undefined;
53903
+ display_name?: string | undefined;
53943
53904
  manufacturer_part_number?: string | undefined;
53944
53905
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53945
53906
  display_value?: string | undefined;
53946
- display_name?: string | undefined;
53947
53907
  are_pins_interchangeable?: boolean | undefined;
53948
53908
  internally_connected_source_port_ids?: string[][] | undefined;
53949
53909
  equivalent_series_resistance?: string | number | undefined;
@@ -53968,10 +53928,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53968
53928
  ftype: "simple_switch";
53969
53929
  subcircuit_id?: string | undefined;
53970
53930
  source_group_id?: string | undefined;
53931
+ display_name?: string | undefined;
53971
53932
  manufacturer_part_number?: string | undefined;
53972
53933
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53973
53934
  display_value?: string | undefined;
53974
- display_name?: string | undefined;
53975
53935
  are_pins_interchangeable?: boolean | undefined;
53976
53936
  internally_connected_source_port_ids?: string[][] | undefined;
53977
53937
  }, {
@@ -53981,10 +53941,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
53981
53941
  ftype: "simple_switch";
53982
53942
  subcircuit_id?: string | undefined;
53983
53943
  source_group_id?: string | undefined;
53944
+ display_name?: string | undefined;
53984
53945
  manufacturer_part_number?: string | undefined;
53985
53946
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
53986
53947
  display_value?: string | undefined;
53987
- display_name?: string | undefined;
53988
53948
  are_pins_interchangeable?: boolean | undefined;
53989
53949
  internally_connected_source_port_ids?: string[][] | undefined;
53990
53950
  }>, z.ZodObject<{
@@ -54010,10 +53970,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54010
53970
  transistor_type: "npn" | "pnp";
54011
53971
  subcircuit_id?: string | undefined;
54012
53972
  source_group_id?: string | undefined;
53973
+ display_name?: string | undefined;
54013
53974
  manufacturer_part_number?: string | undefined;
54014
53975
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54015
53976
  display_value?: string | undefined;
54016
- display_name?: string | undefined;
54017
53977
  are_pins_interchangeable?: boolean | undefined;
54018
53978
  internally_connected_source_port_ids?: string[][] | undefined;
54019
53979
  }, {
@@ -54024,10 +53984,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54024
53984
  transistor_type: "npn" | "pnp";
54025
53985
  subcircuit_id?: string | undefined;
54026
53986
  source_group_id?: string | undefined;
53987
+ display_name?: string | undefined;
54027
53988
  manufacturer_part_number?: string | undefined;
54028
53989
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54029
53990
  display_value?: string | undefined;
54030
- display_name?: string | undefined;
54031
53991
  are_pins_interchangeable?: boolean | undefined;
54032
53992
  internally_connected_source_port_ids?: string[][] | undefined;
54033
53993
  }>, z.ZodObject<{
@@ -54061,10 +54021,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54061
54021
  hole_diameter?: string | number | undefined;
54062
54022
  pad_shape?: "circle" | "rect" | undefined;
54063
54023
  source_group_id?: string | undefined;
54024
+ display_name?: string | undefined;
54064
54025
  manufacturer_part_number?: string | undefined;
54065
54026
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54066
54027
  display_value?: string | undefined;
54067
- display_name?: string | undefined;
54068
54028
  are_pins_interchangeable?: boolean | undefined;
54069
54029
  internally_connected_source_port_ids?: string[][] | undefined;
54070
54030
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -54080,10 +54040,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54080
54040
  hole_diameter?: string | number | undefined;
54081
54041
  pad_shape?: "circle" | "rect" | undefined;
54082
54042
  source_group_id?: string | undefined;
54043
+ display_name?: string | undefined;
54083
54044
  manufacturer_part_number?: string | undefined;
54084
54045
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54085
54046
  display_value?: string | undefined;
54086
- display_name?: string | undefined;
54087
54047
  are_pins_interchangeable?: boolean | undefined;
54088
54048
  internally_connected_source_port_ids?: string[][] | undefined;
54089
54049
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -54113,10 +54073,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54113
54073
  mosfet_mode: "enhancement" | "depletion";
54114
54074
  subcircuit_id?: string | undefined;
54115
54075
  source_group_id?: string | undefined;
54076
+ display_name?: string | undefined;
54116
54077
  manufacturer_part_number?: string | undefined;
54117
54078
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54118
54079
  display_value?: string | undefined;
54119
- display_name?: string | undefined;
54120
54080
  are_pins_interchangeable?: boolean | undefined;
54121
54081
  internally_connected_source_port_ids?: string[][] | undefined;
54122
54082
  }, {
@@ -54128,10 +54088,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54128
54088
  mosfet_mode: "enhancement" | "depletion";
54129
54089
  subcircuit_id?: string | undefined;
54130
54090
  source_group_id?: string | undefined;
54091
+ display_name?: string | undefined;
54131
54092
  manufacturer_part_number?: string | undefined;
54132
54093
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54133
54094
  display_value?: string | undefined;
54134
- display_name?: string | undefined;
54135
54095
  are_pins_interchangeable?: boolean | undefined;
54136
54096
  internally_connected_source_port_ids?: string[][] | undefined;
54137
54097
  }>, z.ZodObject<{
@@ -54155,10 +54115,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54155
54115
  ftype: "simple_op_amp";
54156
54116
  subcircuit_id?: string | undefined;
54157
54117
  source_group_id?: string | undefined;
54118
+ display_name?: string | undefined;
54158
54119
  manufacturer_part_number?: string | undefined;
54159
54120
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54160
54121
  display_value?: string | undefined;
54161
- display_name?: string | undefined;
54162
54122
  are_pins_interchangeable?: boolean | undefined;
54163
54123
  internally_connected_source_port_ids?: string[][] | undefined;
54164
54124
  }, {
@@ -54168,10 +54128,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54168
54128
  ftype: "simple_op_amp";
54169
54129
  subcircuit_id?: string | undefined;
54170
54130
  source_group_id?: string | undefined;
54131
+ display_name?: string | undefined;
54171
54132
  manufacturer_part_number?: string | undefined;
54172
54133
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54173
54134
  display_value?: string | undefined;
54174
- display_name?: string | undefined;
54175
54135
  are_pins_interchangeable?: boolean | undefined;
54176
54136
  internally_connected_source_port_ids?: string[][] | undefined;
54177
54137
  }>, z.ZodObject<{
@@ -54199,10 +54159,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54199
54159
  voltage_rating_volts: number;
54200
54160
  subcircuit_id?: string | undefined;
54201
54161
  source_group_id?: string | undefined;
54162
+ display_name?: string | undefined;
54202
54163
  manufacturer_part_number?: string | undefined;
54203
54164
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54204
54165
  display_value?: string | undefined;
54205
- display_name?: string | undefined;
54206
54166
  are_pins_interchangeable?: boolean | undefined;
54207
54167
  internally_connected_source_port_ids?: string[][] | undefined;
54208
54168
  }, {
@@ -54214,10 +54174,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54214
54174
  voltage_rating_volts: number;
54215
54175
  subcircuit_id?: string | undefined;
54216
54176
  source_group_id?: string | undefined;
54177
+ display_name?: string | undefined;
54217
54178
  manufacturer_part_number?: string | undefined;
54218
54179
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54219
54180
  display_value?: string | undefined;
54220
- display_name?: string | undefined;
54221
54181
  are_pins_interchangeable?: boolean | undefined;
54222
54182
  internally_connected_source_port_ids?: string[][] | undefined;
54223
54183
  }>, z.ZodObject<{
@@ -54241,10 +54201,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54241
54201
  ftype: "simple_voltage_probe";
54242
54202
  subcircuit_id?: string | undefined;
54243
54203
  source_group_id?: string | undefined;
54204
+ display_name?: string | undefined;
54244
54205
  manufacturer_part_number?: string | undefined;
54245
54206
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54246
54207
  display_value?: string | undefined;
54247
- display_name?: string | undefined;
54248
54208
  are_pins_interchangeable?: boolean | undefined;
54249
54209
  internally_connected_source_port_ids?: string[][] | undefined;
54250
54210
  }, {
@@ -54254,10 +54214,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54254
54214
  ftype: "simple_voltage_probe";
54255
54215
  subcircuit_id?: string | undefined;
54256
54216
  source_group_id?: string | undefined;
54217
+ display_name?: string | undefined;
54257
54218
  manufacturer_part_number?: string | undefined;
54258
54219
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54259
54220
  display_value?: string | undefined;
54260
- display_name?: string | undefined;
54261
54221
  are_pins_interchangeable?: boolean | undefined;
54262
54222
  internally_connected_source_port_ids?: string[][] | undefined;
54263
54223
  }>, z.ZodObject<{
@@ -54281,10 +54241,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54281
54241
  ftype: "interconnect";
54282
54242
  subcircuit_id?: string | undefined;
54283
54243
  source_group_id?: string | undefined;
54244
+ display_name?: string | undefined;
54284
54245
  manufacturer_part_number?: string | undefined;
54285
54246
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54286
54247
  display_value?: string | undefined;
54287
- display_name?: string | undefined;
54288
54248
  are_pins_interchangeable?: boolean | undefined;
54289
54249
  internally_connected_source_port_ids?: string[][] | undefined;
54290
54250
  }, {
@@ -54294,10 +54254,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54294
54254
  ftype: "interconnect";
54295
54255
  subcircuit_id?: string | undefined;
54296
54256
  source_group_id?: string | undefined;
54257
+ display_name?: string | undefined;
54297
54258
  manufacturer_part_number?: string | undefined;
54298
54259
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54299
54260
  display_value?: string | undefined;
54300
- display_name?: string | undefined;
54301
54261
  are_pins_interchangeable?: boolean | undefined;
54302
54262
  internally_connected_source_port_ids?: string[][] | undefined;
54303
54263
  }>, z.ZodObject<{
@@ -54343,10 +54303,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54343
54303
  fall_time?: number | undefined;
54344
54304
  pulse_width?: number | undefined;
54345
54305
  period?: number | undefined;
54306
+ display_name?: string | undefined;
54346
54307
  manufacturer_part_number?: string | undefined;
54347
54308
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54348
54309
  display_value?: string | undefined;
54349
- display_name?: string | undefined;
54350
54310
  are_pins_interchangeable?: boolean | undefined;
54351
54311
  internally_connected_source_port_ids?: string[][] | undefined;
54352
54312
  }, {
@@ -54367,10 +54327,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54367
54327
  fall_time?: string | number | undefined;
54368
54328
  pulse_width?: string | number | undefined;
54369
54329
  period?: string | number | undefined;
54330
+ display_name?: string | undefined;
54370
54331
  manufacturer_part_number?: string | undefined;
54371
54332
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54372
54333
  display_value?: string | undefined;
54373
- display_name?: string | undefined;
54374
54334
  are_pins_interchangeable?: boolean | undefined;
54375
54335
  internally_connected_source_port_ids?: string[][] | undefined;
54376
54336
  }>, z.ZodObject<{
@@ -54760,10 +54720,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54760
54720
  ftype: "simple_chip";
54761
54721
  subcircuit_id?: string | undefined;
54762
54722
  source_group_id?: string | undefined;
54723
+ display_name?: string | undefined;
54763
54724
  manufacturer_part_number?: string | undefined;
54764
54725
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54765
54726
  display_value?: string | undefined;
54766
- display_name?: string | undefined;
54767
54727
  are_pins_interchangeable?: boolean | undefined;
54768
54728
  internally_connected_source_port_ids?: string[][] | undefined;
54769
54729
  }, {
@@ -54773,10 +54733,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54773
54733
  ftype: "simple_chip";
54774
54734
  subcircuit_id?: string | undefined;
54775
54735
  source_group_id?: string | undefined;
54736
+ display_name?: string | undefined;
54776
54737
  manufacturer_part_number?: string | undefined;
54777
54738
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54778
54739
  display_value?: string | undefined;
54779
- display_name?: string | undefined;
54780
54740
  are_pins_interchangeable?: boolean | undefined;
54781
54741
  internally_connected_source_port_ids?: string[][] | undefined;
54782
54742
  }>, z.ZodObject<{
@@ -54805,10 +54765,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54805
54765
  capacitance: number;
54806
54766
  subcircuit_id?: string | undefined;
54807
54767
  source_group_id?: string | undefined;
54768
+ display_name?: string | undefined;
54808
54769
  manufacturer_part_number?: string | undefined;
54809
54770
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54810
54771
  display_value?: string | undefined;
54811
- display_name?: string | undefined;
54812
54772
  are_pins_interchangeable?: boolean | undefined;
54813
54773
  internally_connected_source_port_ids?: string[][] | undefined;
54814
54774
  max_voltage_rating?: number | undefined;
@@ -54822,10 +54782,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54822
54782
  capacitance: string | number;
54823
54783
  subcircuit_id?: string | undefined;
54824
54784
  source_group_id?: string | undefined;
54785
+ display_name?: string | undefined;
54825
54786
  manufacturer_part_number?: string | undefined;
54826
54787
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54827
54788
  display_value?: string | undefined;
54828
- display_name?: string | undefined;
54829
54789
  are_pins_interchangeable?: boolean | undefined;
54830
54790
  internally_connected_source_port_ids?: string[][] | undefined;
54831
54791
  max_voltage_rating?: string | number | undefined;
@@ -54852,10 +54812,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54852
54812
  ftype: "simple_diode";
54853
54813
  subcircuit_id?: string | undefined;
54854
54814
  source_group_id?: string | undefined;
54815
+ display_name?: string | undefined;
54855
54816
  manufacturer_part_number?: string | undefined;
54856
54817
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54857
54818
  display_value?: string | undefined;
54858
- display_name?: string | undefined;
54859
54819
  are_pins_interchangeable?: boolean | undefined;
54860
54820
  internally_connected_source_port_ids?: string[][] | undefined;
54861
54821
  }, {
@@ -54865,10 +54825,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54865
54825
  ftype: "simple_diode";
54866
54826
  subcircuit_id?: string | undefined;
54867
54827
  source_group_id?: string | undefined;
54828
+ display_name?: string | undefined;
54868
54829
  manufacturer_part_number?: string | undefined;
54869
54830
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54870
54831
  display_value?: string | undefined;
54871
- display_name?: string | undefined;
54872
54832
  are_pins_interchangeable?: boolean | undefined;
54873
54833
  internally_connected_source_port_ids?: string[][] | undefined;
54874
54834
  }>, z.ZodObject<{
@@ -54895,10 +54855,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54895
54855
  subcircuit_id?: string | undefined;
54896
54856
  color?: string | undefined;
54897
54857
  source_group_id?: string | undefined;
54858
+ display_name?: string | undefined;
54898
54859
  manufacturer_part_number?: string | undefined;
54899
54860
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54900
54861
  display_value?: string | undefined;
54901
- display_name?: string | undefined;
54902
54862
  are_pins_interchangeable?: boolean | undefined;
54903
54863
  internally_connected_source_port_ids?: string[][] | undefined;
54904
54864
  wavelength?: string | undefined;
@@ -54910,10 +54870,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54910
54870
  subcircuit_id?: string | undefined;
54911
54871
  color?: string | undefined;
54912
54872
  source_group_id?: string | undefined;
54873
+ display_name?: string | undefined;
54913
54874
  manufacturer_part_number?: string | undefined;
54914
54875
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54915
54876
  display_value?: string | undefined;
54916
- display_name?: string | undefined;
54917
54877
  are_pins_interchangeable?: boolean | undefined;
54918
54878
  internally_connected_source_port_ids?: string[][] | undefined;
54919
54879
  wavelength?: string | undefined;
@@ -54941,10 +54901,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54941
54901
  resistance: number;
54942
54902
  subcircuit_id?: string | undefined;
54943
54903
  source_group_id?: string | undefined;
54904
+ display_name?: string | undefined;
54944
54905
  manufacturer_part_number?: string | undefined;
54945
54906
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54946
54907
  display_value?: string | undefined;
54947
- display_name?: string | undefined;
54948
54908
  are_pins_interchangeable?: boolean | undefined;
54949
54909
  internally_connected_source_port_ids?: string[][] | undefined;
54950
54910
  display_resistance?: string | undefined;
@@ -54956,10 +54916,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54956
54916
  resistance: string | number;
54957
54917
  subcircuit_id?: string | undefined;
54958
54918
  source_group_id?: string | undefined;
54919
+ display_name?: string | undefined;
54959
54920
  manufacturer_part_number?: string | undefined;
54960
54921
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54961
54922
  display_value?: string | undefined;
54962
- display_name?: string | undefined;
54963
54923
  are_pins_interchangeable?: boolean | undefined;
54964
54924
  internally_connected_source_port_ids?: string[][] | undefined;
54965
54925
  display_resistance?: string | undefined;
@@ -54986,10 +54946,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54986
54946
  ftype: "simple_power_source";
54987
54947
  subcircuit_id?: string | undefined;
54988
54948
  source_group_id?: string | undefined;
54949
+ display_name?: string | undefined;
54989
54950
  manufacturer_part_number?: string | undefined;
54990
54951
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
54991
54952
  display_value?: string | undefined;
54992
- display_name?: string | undefined;
54993
54953
  are_pins_interchangeable?: boolean | undefined;
54994
54954
  internally_connected_source_port_ids?: string[][] | undefined;
54995
54955
  }, {
@@ -55000,10 +54960,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55000
54960
  ftype: "simple_power_source";
55001
54961
  subcircuit_id?: string | undefined;
55002
54962
  source_group_id?: string | undefined;
54963
+ display_name?: string | undefined;
55003
54964
  manufacturer_part_number?: string | undefined;
55004
54965
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55005
54966
  display_value?: string | undefined;
55006
- display_name?: string | undefined;
55007
54967
  are_pins_interchangeable?: boolean | undefined;
55008
54968
  internally_connected_source_port_ids?: string[][] | undefined;
55009
54969
  }>, z.ZodObject<{
@@ -55029,10 +54989,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55029
54989
  capacity: number;
55030
54990
  subcircuit_id?: string | undefined;
55031
54991
  source_group_id?: string | undefined;
54992
+ display_name?: string | undefined;
55032
54993
  manufacturer_part_number?: string | undefined;
55033
54994
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55034
54995
  display_value?: string | undefined;
55035
- display_name?: string | undefined;
55036
54996
  are_pins_interchangeable?: boolean | undefined;
55037
54997
  internally_connected_source_port_ids?: string[][] | undefined;
55038
54998
  }, {
@@ -55043,10 +55003,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55043
55003
  capacity: string | number;
55044
55004
  subcircuit_id?: string | undefined;
55045
55005
  source_group_id?: string | undefined;
55006
+ display_name?: string | undefined;
55046
55007
  manufacturer_part_number?: string | undefined;
55047
55008
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55048
55009
  display_value?: string | undefined;
55049
- display_name?: string | undefined;
55050
55010
  are_pins_interchangeable?: boolean | undefined;
55051
55011
  internally_connected_source_port_ids?: string[][] | undefined;
55052
55012
  }>, z.ZodObject<{
@@ -55074,10 +55034,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55074
55034
  inductance: number;
55075
55035
  subcircuit_id?: string | undefined;
55076
55036
  source_group_id?: string | undefined;
55037
+ display_name?: string | undefined;
55077
55038
  manufacturer_part_number?: string | undefined;
55078
55039
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55079
55040
  display_value?: string | undefined;
55080
- display_name?: string | undefined;
55081
55041
  are_pins_interchangeable?: boolean | undefined;
55082
55042
  internally_connected_source_port_ids?: string[][] | undefined;
55083
55043
  display_inductance?: string | undefined;
@@ -55090,10 +55050,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55090
55050
  inductance: string | number;
55091
55051
  subcircuit_id?: string | undefined;
55092
55052
  source_group_id?: string | undefined;
55053
+ display_name?: string | undefined;
55093
55054
  manufacturer_part_number?: string | undefined;
55094
55055
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55095
55056
  display_value?: string | undefined;
55096
- display_name?: string | undefined;
55097
55057
  are_pins_interchangeable?: boolean | undefined;
55098
55058
  internally_connected_source_port_ids?: string[][] | undefined;
55099
55059
  display_inductance?: string | undefined;
@@ -55123,10 +55083,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55123
55083
  gender: "male" | "female";
55124
55084
  subcircuit_id?: string | undefined;
55125
55085
  source_group_id?: string | undefined;
55086
+ display_name?: string | undefined;
55126
55087
  manufacturer_part_number?: string | undefined;
55127
55088
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55128
55089
  display_value?: string | undefined;
55129
- display_name?: string | undefined;
55130
55090
  are_pins_interchangeable?: boolean | undefined;
55131
55091
  internally_connected_source_port_ids?: string[][] | undefined;
55132
55092
  }, {
@@ -55137,10 +55097,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55137
55097
  pin_count: number;
55138
55098
  subcircuit_id?: string | undefined;
55139
55099
  source_group_id?: string | undefined;
55100
+ display_name?: string | undefined;
55140
55101
  manufacturer_part_number?: string | undefined;
55141
55102
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55142
55103
  display_value?: string | undefined;
55143
- display_name?: string | undefined;
55144
55104
  are_pins_interchangeable?: boolean | undefined;
55145
55105
  internally_connected_source_port_ids?: string[][] | undefined;
55146
55106
  gender?: "male" | "female" | undefined;
@@ -55165,10 +55125,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55165
55125
  ftype: "simple_pinout";
55166
55126
  subcircuit_id?: string | undefined;
55167
55127
  source_group_id?: string | undefined;
55128
+ display_name?: string | undefined;
55168
55129
  manufacturer_part_number?: string | undefined;
55169
55130
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55170
55131
  display_value?: string | undefined;
55171
- display_name?: string | undefined;
55172
55132
  are_pins_interchangeable?: boolean | undefined;
55173
55133
  internally_connected_source_port_ids?: string[][] | undefined;
55174
55134
  }, {
@@ -55178,10 +55138,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55178
55138
  ftype: "simple_pinout";
55179
55139
  subcircuit_id?: string | undefined;
55180
55140
  source_group_id?: string | undefined;
55141
+ display_name?: string | undefined;
55181
55142
  manufacturer_part_number?: string | undefined;
55182
55143
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55183
55144
  display_value?: string | undefined;
55184
- display_name?: string | undefined;
55185
55145
  are_pins_interchangeable?: boolean | undefined;
55186
55146
  internally_connected_source_port_ids?: string[][] | undefined;
55187
55147
  }>, z.ZodObject<{
@@ -55210,10 +55170,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55210
55170
  load_capacitance: number;
55211
55171
  subcircuit_id?: string | undefined;
55212
55172
  source_group_id?: string | undefined;
55173
+ display_name?: string | undefined;
55213
55174
  manufacturer_part_number?: string | undefined;
55214
55175
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55215
55176
  display_value?: string | undefined;
55216
- display_name?: string | undefined;
55217
55177
  are_pins_interchangeable?: boolean | undefined;
55218
55178
  internally_connected_source_port_ids?: string[][] | undefined;
55219
55179
  equivalent_series_resistance?: number | undefined;
@@ -55226,10 +55186,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55226
55186
  load_capacitance: string | number;
55227
55187
  subcircuit_id?: string | undefined;
55228
55188
  source_group_id?: string | undefined;
55189
+ display_name?: string | undefined;
55229
55190
  manufacturer_part_number?: string | undefined;
55230
55191
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55231
55192
  display_value?: string | undefined;
55232
- display_name?: string | undefined;
55233
55193
  are_pins_interchangeable?: boolean | undefined;
55234
55194
  internally_connected_source_port_ids?: string[][] | undefined;
55235
55195
  equivalent_series_resistance?: string | number | undefined;
@@ -55254,10 +55214,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55254
55214
  ftype: "simple_switch";
55255
55215
  subcircuit_id?: string | undefined;
55256
55216
  source_group_id?: string | undefined;
55217
+ display_name?: string | undefined;
55257
55218
  manufacturer_part_number?: string | undefined;
55258
55219
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55259
55220
  display_value?: string | undefined;
55260
- display_name?: string | undefined;
55261
55221
  are_pins_interchangeable?: boolean | undefined;
55262
55222
  internally_connected_source_port_ids?: string[][] | undefined;
55263
55223
  }, {
@@ -55267,10 +55227,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55267
55227
  ftype: "simple_switch";
55268
55228
  subcircuit_id?: string | undefined;
55269
55229
  source_group_id?: string | undefined;
55230
+ display_name?: string | undefined;
55270
55231
  manufacturer_part_number?: string | undefined;
55271
55232
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55272
55233
  display_value?: string | undefined;
55273
- display_name?: string | undefined;
55274
55234
  are_pins_interchangeable?: boolean | undefined;
55275
55235
  internally_connected_source_port_ids?: string[][] | undefined;
55276
55236
  }>, z.ZodObject<{
@@ -55296,10 +55256,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55296
55256
  transistor_type: "npn" | "pnp";
55297
55257
  subcircuit_id?: string | undefined;
55298
55258
  source_group_id?: string | undefined;
55259
+ display_name?: string | undefined;
55299
55260
  manufacturer_part_number?: string | undefined;
55300
55261
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55301
55262
  display_value?: string | undefined;
55302
- display_name?: string | undefined;
55303
55263
  are_pins_interchangeable?: boolean | undefined;
55304
55264
  internally_connected_source_port_ids?: string[][] | undefined;
55305
55265
  }, {
@@ -55310,10 +55270,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55310
55270
  transistor_type: "npn" | "pnp";
55311
55271
  subcircuit_id?: string | undefined;
55312
55272
  source_group_id?: string | undefined;
55273
+ display_name?: string | undefined;
55313
55274
  manufacturer_part_number?: string | undefined;
55314
55275
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55315
55276
  display_value?: string | undefined;
55316
- display_name?: string | undefined;
55317
55277
  are_pins_interchangeable?: boolean | undefined;
55318
55278
  internally_connected_source_port_ids?: string[][] | undefined;
55319
55279
  }>, z.ZodObject<{
@@ -55347,10 +55307,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55347
55307
  hole_diameter?: string | number | undefined;
55348
55308
  pad_shape?: "circle" | "rect" | undefined;
55349
55309
  source_group_id?: string | undefined;
55310
+ display_name?: string | undefined;
55350
55311
  manufacturer_part_number?: string | undefined;
55351
55312
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55352
55313
  display_value?: string | undefined;
55353
- display_name?: string | undefined;
55354
55314
  are_pins_interchangeable?: boolean | undefined;
55355
55315
  internally_connected_source_port_ids?: string[][] | undefined;
55356
55316
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -55366,10 +55326,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55366
55326
  hole_diameter?: string | number | undefined;
55367
55327
  pad_shape?: "circle" | "rect" | undefined;
55368
55328
  source_group_id?: string | undefined;
55329
+ display_name?: string | undefined;
55369
55330
  manufacturer_part_number?: string | undefined;
55370
55331
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55371
55332
  display_value?: string | undefined;
55372
- display_name?: string | undefined;
55373
55333
  are_pins_interchangeable?: boolean | undefined;
55374
55334
  internally_connected_source_port_ids?: string[][] | undefined;
55375
55335
  footprint_variant?: "through_hole" | "pad" | undefined;
@@ -55399,10 +55359,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55399
55359
  mosfet_mode: "enhancement" | "depletion";
55400
55360
  subcircuit_id?: string | undefined;
55401
55361
  source_group_id?: string | undefined;
55362
+ display_name?: string | undefined;
55402
55363
  manufacturer_part_number?: string | undefined;
55403
55364
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55404
55365
  display_value?: string | undefined;
55405
- display_name?: string | undefined;
55406
55366
  are_pins_interchangeable?: boolean | undefined;
55407
55367
  internally_connected_source_port_ids?: string[][] | undefined;
55408
55368
  }, {
@@ -55414,10 +55374,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55414
55374
  mosfet_mode: "enhancement" | "depletion";
55415
55375
  subcircuit_id?: string | undefined;
55416
55376
  source_group_id?: string | undefined;
55377
+ display_name?: string | undefined;
55417
55378
  manufacturer_part_number?: string | undefined;
55418
55379
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55419
55380
  display_value?: string | undefined;
55420
- display_name?: string | undefined;
55421
55381
  are_pins_interchangeable?: boolean | undefined;
55422
55382
  internally_connected_source_port_ids?: string[][] | undefined;
55423
55383
  }>, z.ZodObject<{
@@ -55441,10 +55401,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55441
55401
  ftype: "simple_op_amp";
55442
55402
  subcircuit_id?: string | undefined;
55443
55403
  source_group_id?: string | undefined;
55404
+ display_name?: string | undefined;
55444
55405
  manufacturer_part_number?: string | undefined;
55445
55406
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55446
55407
  display_value?: string | undefined;
55447
- display_name?: string | undefined;
55448
55408
  are_pins_interchangeable?: boolean | undefined;
55449
55409
  internally_connected_source_port_ids?: string[][] | undefined;
55450
55410
  }, {
@@ -55454,10 +55414,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55454
55414
  ftype: "simple_op_amp";
55455
55415
  subcircuit_id?: string | undefined;
55456
55416
  source_group_id?: string | undefined;
55417
+ display_name?: string | undefined;
55457
55418
  manufacturer_part_number?: string | undefined;
55458
55419
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55459
55420
  display_value?: string | undefined;
55460
- display_name?: string | undefined;
55461
55421
  are_pins_interchangeable?: boolean | undefined;
55462
55422
  internally_connected_source_port_ids?: string[][] | undefined;
55463
55423
  }>, z.ZodObject<{
@@ -55484,10 +55444,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55484
55444
  max_resistance: number;
55485
55445
  subcircuit_id?: string | undefined;
55486
55446
  source_group_id?: string | undefined;
55447
+ display_name?: string | undefined;
55487
55448
  manufacturer_part_number?: string | undefined;
55488
55449
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55489
55450
  display_value?: string | undefined;
55490
- display_name?: string | undefined;
55491
55451
  are_pins_interchangeable?: boolean | undefined;
55492
55452
  internally_connected_source_port_ids?: string[][] | undefined;
55493
55453
  display_max_resistance?: string | undefined;
@@ -55499,10 +55459,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55499
55459
  max_resistance: string | number;
55500
55460
  subcircuit_id?: string | undefined;
55501
55461
  source_group_id?: string | undefined;
55462
+ display_name?: string | undefined;
55502
55463
  manufacturer_part_number?: string | undefined;
55503
55464
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55504
55465
  display_value?: string | undefined;
55505
- display_name?: string | undefined;
55506
55466
  are_pins_interchangeable?: boolean | undefined;
55507
55467
  internally_connected_source_port_ids?: string[][] | undefined;
55508
55468
  display_max_resistance?: string | undefined;
@@ -55527,10 +55487,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55527
55487
  ftype: "simple_push_button";
55528
55488
  subcircuit_id?: string | undefined;
55529
55489
  source_group_id?: string | undefined;
55490
+ display_name?: string | undefined;
55530
55491
  manufacturer_part_number?: string | undefined;
55531
55492
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55532
55493
  display_value?: string | undefined;
55533
- display_name?: string | undefined;
55534
55494
  are_pins_interchangeable?: boolean | undefined;
55535
55495
  internally_connected_source_port_ids?: string[][] | undefined;
55536
55496
  }, {
@@ -55540,10 +55500,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55540
55500
  ftype: "simple_push_button";
55541
55501
  subcircuit_id?: string | undefined;
55542
55502
  source_group_id?: string | undefined;
55503
+ display_name?: string | undefined;
55543
55504
  manufacturer_part_number?: string | undefined;
55544
55505
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
55545
55506
  display_value?: string | undefined;
55546
- display_name?: string | undefined;
55547
55507
  are_pins_interchangeable?: boolean | undefined;
55548
55508
  internally_connected_source_port_ids?: string[][] | undefined;
55549
55509
  }>, z.ZodObject<{
@@ -71478,22 +71438,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71478
71438
  reference_input_source_net_id: z.ZodOptional<z.ZodString>;
71479
71439
  subcircuit_id: z.ZodOptional<z.ZodString>;
71480
71440
  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
71441
  }, "strip", z.ZodTypeAny, {
71498
71442
  type: "simulation_voltage_probe";
71499
71443
  simulation_voltage_probe_id: string;
@@ -71505,12 +71449,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71505
71449
  signal_input_source_net_id?: string | undefined;
71506
71450
  reference_input_source_port_id?: string | undefined;
71507
71451
  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
71452
  }, {
71515
71453
  type: "simulation_voltage_probe";
71516
71454
  name?: string | undefined;
@@ -71522,12 +71460,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71522
71460
  signal_input_source_net_id?: string | undefined;
71523
71461
  reference_input_source_port_id?: string | undefined;
71524
71462
  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
71463
  }>, {
71532
71464
  type: "simulation_voltage_probe";
71533
71465
  simulation_voltage_probe_id: string;
@@ -71539,12 +71471,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71539
71471
  signal_input_source_net_id?: string | undefined;
71540
71472
  reference_input_source_port_id?: string | undefined;
71541
71473
  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
71474
  }, {
71549
71475
  type: "simulation_voltage_probe";
71550
71476
  name?: string | undefined;
@@ -71556,12 +71482,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71556
71482
  signal_input_source_net_id?: string | undefined;
71557
71483
  reference_input_source_port_id?: string | undefined;
71558
71484
  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
71485
  }>, z.ZodEffects<z.ZodObject<{
71566
71486
  type: z.ZodLiteral<"simulation_current_probe">;
71567
71487
  simulation_current_probe_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -71573,22 +71493,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71573
71493
  negative_source_net_id: z.ZodOptional<z.ZodString>;
71574
71494
  subcircuit_id: z.ZodOptional<z.ZodString>;
71575
71495
  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
71496
  }, "strip", z.ZodTypeAny, {
71593
71497
  type: "simulation_current_probe";
71594
71498
  simulation_current_probe_id: string;
@@ -71600,12 +71504,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71600
71504
  negative_source_port_id?: string | undefined;
71601
71505
  positive_source_net_id?: string | undefined;
71602
71506
  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
71507
  }, {
71610
71508
  type: "simulation_current_probe";
71611
71509
  name?: string | undefined;
@@ -71616,12 +71514,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71616
71514
  negative_source_port_id?: string | undefined;
71617
71515
  positive_source_net_id?: string | undefined;
71618
71516
  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
71517
  simulation_current_probe_id?: string | undefined;
71626
71518
  }>, {
71627
71519
  type: "simulation_current_probe";
@@ -71634,12 +71526,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71634
71526
  negative_source_port_id?: string | undefined;
71635
71527
  positive_source_net_id?: string | undefined;
71636
71528
  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
71529
  }, {
71644
71530
  type: "simulation_current_probe";
71645
71531
  name?: string | undefined;
@@ -71650,13 +71536,72 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
71650
71536
  negative_source_port_id?: string | undefined;
71651
71537
  positive_source_net_id?: string | undefined;
71652
71538
  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
71539
  simulation_current_probe_id?: string | undefined;
71540
+ }>, z.ZodEffects<z.ZodObject<{
71541
+ type: z.ZodLiteral<"simulation_oscilloscope_trace">;
71542
+ simulation_oscilloscope_trace_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
71543
+ simulation_transient_voltage_graph_id: z.ZodOptional<z.ZodString>;
71544
+ simulation_transient_current_graph_id: z.ZodOptional<z.ZodString>;
71545
+ simulation_voltage_probe_id: z.ZodOptional<z.ZodString>;
71546
+ simulation_current_probe_id: z.ZodOptional<z.ZodString>;
71547
+ display_name: z.ZodOptional<z.ZodString>;
71548
+ color: z.ZodOptional<z.ZodString>;
71549
+ display_center_value: z.ZodOptional<z.ZodNumber>;
71550
+ display_center_offset_divs: z.ZodOptional<z.ZodNumber>;
71551
+ volts_per_div: z.ZodOptional<z.ZodNumber>;
71552
+ amps_per_div: z.ZodOptional<z.ZodNumber>;
71553
+ }, "strip", z.ZodTypeAny, {
71554
+ type: "simulation_oscilloscope_trace";
71555
+ simulation_oscilloscope_trace_id: string;
71556
+ color?: string | undefined;
71557
+ simulation_transient_voltage_graph_id?: string | undefined;
71558
+ simulation_transient_current_graph_id?: string | undefined;
71559
+ simulation_voltage_probe_id?: string | undefined;
71560
+ simulation_current_probe_id?: string | undefined;
71561
+ display_name?: string | undefined;
71562
+ display_center_value?: number | undefined;
71563
+ display_center_offset_divs?: number | undefined;
71564
+ volts_per_div?: number | undefined;
71565
+ amps_per_div?: number | undefined;
71566
+ }, {
71567
+ type: "simulation_oscilloscope_trace";
71568
+ color?: string | undefined;
71569
+ simulation_transient_voltage_graph_id?: string | undefined;
71570
+ simulation_transient_current_graph_id?: string | undefined;
71571
+ simulation_voltage_probe_id?: string | undefined;
71572
+ simulation_current_probe_id?: string | undefined;
71573
+ simulation_oscilloscope_trace_id?: string | undefined;
71574
+ display_name?: string | undefined;
71575
+ display_center_value?: number | undefined;
71576
+ display_center_offset_divs?: number | undefined;
71577
+ volts_per_div?: number | undefined;
71578
+ amps_per_div?: number | undefined;
71579
+ }>, {
71580
+ type: "simulation_oscilloscope_trace";
71581
+ simulation_oscilloscope_trace_id: string;
71582
+ color?: string | undefined;
71583
+ simulation_transient_voltage_graph_id?: string | undefined;
71584
+ simulation_transient_current_graph_id?: string | undefined;
71585
+ simulation_voltage_probe_id?: string | undefined;
71586
+ simulation_current_probe_id?: string | undefined;
71587
+ display_name?: string | undefined;
71588
+ display_center_value?: number | undefined;
71589
+ display_center_offset_divs?: number | undefined;
71590
+ volts_per_div?: number | undefined;
71591
+ amps_per_div?: number | undefined;
71592
+ }, {
71593
+ type: "simulation_oscilloscope_trace";
71594
+ color?: string | undefined;
71595
+ simulation_transient_voltage_graph_id?: string | undefined;
71596
+ simulation_transient_current_graph_id?: string | undefined;
71597
+ simulation_voltage_probe_id?: string | undefined;
71598
+ simulation_current_probe_id?: string | undefined;
71599
+ simulation_oscilloscope_trace_id?: string | undefined;
71600
+ display_name?: string | undefined;
71601
+ display_center_value?: number | undefined;
71602
+ display_center_offset_divs?: number | undefined;
71603
+ volts_per_div?: number | undefined;
71604
+ amps_per_div?: number | undefined;
71660
71605
  }>, z.ZodObject<{
71661
71606
  message: z.ZodString;
71662
71607
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -71744,4 +71689,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
71744
71689
  */
71745
71690
  type CircuitJson = AnyCircuitElement[];
71746
71691
 
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 };
71692
+ 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 };