circuit-json 0.0.103 → 0.0.105

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
@@ -5,6 +5,7 @@ declare const capacitance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>,
5
5
  declare const inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6
6
  declare const voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7
7
  declare const length: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8
+ declare const frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8
9
  /**
9
10
  * Length in meters
10
11
  */
@@ -648,6 +649,67 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
648
649
  manufacturer_part_number?: string | undefined;
649
650
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
650
651
  display_value?: string | undefined;
652
+ }>, z.ZodObject<z.objectUtil.extendShape<{
653
+ type: z.ZodLiteral<"source_component">;
654
+ ftype: z.ZodOptional<z.ZodString>;
655
+ source_component_id: z.ZodString;
656
+ name: z.ZodString;
657
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
658
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
659
+ display_value: z.ZodOptional<z.ZodString>;
660
+ }, {
661
+ ftype: z.ZodLiteral<"simple_potentiometer">;
662
+ max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
663
+ }>, "strip", z.ZodTypeAny, {
664
+ type: "source_component";
665
+ ftype: "simple_potentiometer";
666
+ source_component_id: string;
667
+ name: string;
668
+ max_resistance: number;
669
+ manufacturer_part_number?: string | undefined;
670
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
671
+ display_value?: string | undefined;
672
+ }, {
673
+ type: "source_component";
674
+ ftype: "simple_potentiometer";
675
+ source_component_id: string;
676
+ name: string;
677
+ max_resistance: string | number;
678
+ manufacturer_part_number?: string | undefined;
679
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
680
+ display_value?: string | undefined;
681
+ }>, z.ZodObject<z.objectUtil.extendShape<{
682
+ type: z.ZodLiteral<"source_component">;
683
+ ftype: z.ZodOptional<z.ZodString>;
684
+ source_component_id: z.ZodString;
685
+ name: z.ZodString;
686
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
687
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
688
+ display_value: z.ZodOptional<z.ZodString>;
689
+ }, {
690
+ ftype: z.ZodLiteral<"simple_crystal">;
691
+ frequency: z.ZodNumber;
692
+ load_capacitance: z.ZodOptional<z.ZodNumber>;
693
+ }>, "strip", z.ZodTypeAny, {
694
+ type: "source_component";
695
+ ftype: "simple_crystal";
696
+ source_component_id: string;
697
+ name: string;
698
+ frequency: number;
699
+ manufacturer_part_number?: string | undefined;
700
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
701
+ display_value?: string | undefined;
702
+ load_capacitance?: number | undefined;
703
+ }, {
704
+ type: "source_component";
705
+ ftype: "simple_crystal";
706
+ source_component_id: string;
707
+ name: string;
708
+ frequency: number;
709
+ manufacturer_part_number?: string | undefined;
710
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
711
+ display_value?: string | undefined;
712
+ load_capacitance?: number | undefined;
651
713
  }>]>;
652
714
  type AnySourceComponent = z.infer<typeof any_source_component>;
653
715
 
@@ -919,6 +981,42 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
919
981
  type SourceSimplePotentiometer = z.infer<typeof source_simple_potentiometer>;
920
982
  type SourceSimplePotentiometerInput = z.input<typeof source_simple_potentiometer>;
921
983
 
984
+ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
985
+ type: z.ZodLiteral<"source_component">;
986
+ ftype: z.ZodOptional<z.ZodString>;
987
+ source_component_id: z.ZodString;
988
+ name: z.ZodString;
989
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
990
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
991
+ display_value: z.ZodOptional<z.ZodString>;
992
+ }, {
993
+ ftype: z.ZodLiteral<"simple_crystal">;
994
+ frequency: z.ZodNumber;
995
+ load_capacitance: z.ZodOptional<z.ZodNumber>;
996
+ }>, "strip", z.ZodTypeAny, {
997
+ type: "source_component";
998
+ ftype: "simple_crystal";
999
+ source_component_id: string;
1000
+ name: string;
1001
+ frequency: number;
1002
+ manufacturer_part_number?: string | undefined;
1003
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
1004
+ display_value?: string | undefined;
1005
+ load_capacitance?: number | undefined;
1006
+ }, {
1007
+ type: "source_component";
1008
+ ftype: "simple_crystal";
1009
+ source_component_id: string;
1010
+ name: string;
1011
+ frequency: number;
1012
+ manufacturer_part_number?: string | undefined;
1013
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
1014
+ display_value?: string | undefined;
1015
+ load_capacitance?: number | undefined;
1016
+ }>;
1017
+ type SourceSimpleCrystal = z.infer<typeof source_simple_crystal>;
1018
+ type SourceSimpleCrystalInput = z.input<typeof source_simple_crystal>;
1019
+
922
1020
  declare const schematic_box: z.ZodObject<{
923
1021
  type: z.ZodLiteral<"schematic_box">;
924
1022
  schematic_component_id: z.ZodString;
@@ -4683,6 +4781,67 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
4683
4781
  manufacturer_part_number?: string | undefined;
4684
4782
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4685
4783
  display_value?: string | undefined;
4784
+ }>, z.ZodObject<z.objectUtil.extendShape<{
4785
+ type: z.ZodLiteral<"source_component">;
4786
+ ftype: z.ZodOptional<z.ZodString>;
4787
+ source_component_id: z.ZodString;
4788
+ name: z.ZodString;
4789
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
4790
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
4791
+ display_value: z.ZodOptional<z.ZodString>;
4792
+ }, {
4793
+ ftype: z.ZodLiteral<"simple_potentiometer">;
4794
+ max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
4795
+ }>, "strip", z.ZodTypeAny, {
4796
+ type: "source_component";
4797
+ ftype: "simple_potentiometer";
4798
+ source_component_id: string;
4799
+ name: string;
4800
+ max_resistance: number;
4801
+ manufacturer_part_number?: string | undefined;
4802
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4803
+ display_value?: string | undefined;
4804
+ }, {
4805
+ type: "source_component";
4806
+ ftype: "simple_potentiometer";
4807
+ source_component_id: string;
4808
+ name: string;
4809
+ max_resistance: string | number;
4810
+ manufacturer_part_number?: string | undefined;
4811
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4812
+ display_value?: string | undefined;
4813
+ }>, z.ZodObject<z.objectUtil.extendShape<{
4814
+ type: z.ZodLiteral<"source_component">;
4815
+ ftype: z.ZodOptional<z.ZodString>;
4816
+ source_component_id: z.ZodString;
4817
+ name: z.ZodString;
4818
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
4819
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
4820
+ display_value: z.ZodOptional<z.ZodString>;
4821
+ }, {
4822
+ ftype: z.ZodLiteral<"simple_crystal">;
4823
+ frequency: z.ZodNumber;
4824
+ load_capacitance: z.ZodOptional<z.ZodNumber>;
4825
+ }>, "strip", z.ZodTypeAny, {
4826
+ type: "source_component";
4827
+ ftype: "simple_crystal";
4828
+ source_component_id: string;
4829
+ name: string;
4830
+ frequency: number;
4831
+ manufacturer_part_number?: string | undefined;
4832
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4833
+ display_value?: string | undefined;
4834
+ load_capacitance?: number | undefined;
4835
+ }, {
4836
+ type: "source_component";
4837
+ ftype: "simple_crystal";
4838
+ source_component_id: string;
4839
+ name: string;
4840
+ frequency: number;
4841
+ manufacturer_part_number?: string | undefined;
4842
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
4843
+ display_value?: string | undefined;
4844
+ load_capacitance?: number | undefined;
4686
4845
  }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
4687
4846
  type: z.ZodLiteral<"source_component">;
4688
4847
  ftype: z.ZodOptional<z.ZodString>;
@@ -4984,6 +5143,35 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
4984
5143
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
4985
5144
  supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
4986
5145
  display_value: z.ZodOptional<z.ZodString>;
5146
+ }, {
5147
+ ftype: z.ZodLiteral<"simple_potentiometer">;
5148
+ max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5149
+ }>, "strip", z.ZodTypeAny, {
5150
+ type: "source_component";
5151
+ ftype: "simple_potentiometer";
5152
+ source_component_id: string;
5153
+ name: string;
5154
+ max_resistance: number;
5155
+ manufacturer_part_number?: string | undefined;
5156
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5157
+ display_value?: string | undefined;
5158
+ }, {
5159
+ type: "source_component";
5160
+ ftype: "simple_potentiometer";
5161
+ source_component_id: string;
5162
+ name: string;
5163
+ max_resistance: string | number;
5164
+ manufacturer_part_number?: string | undefined;
5165
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
5166
+ display_value?: string | undefined;
5167
+ }>, z.ZodObject<z.objectUtil.extendShape<{
5168
+ type: z.ZodLiteral<"source_component">;
5169
+ ftype: z.ZodOptional<z.ZodString>;
5170
+ source_component_id: z.ZodString;
5171
+ name: z.ZodString;
5172
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
5173
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
5174
+ display_value: z.ZodOptional<z.ZodString>;
4987
5175
  }, {
4988
5176
  ftype: z.ZodLiteral<"simple_push_button">;
4989
5177
  }>, "strip", z.ZodTypeAny, {
@@ -5408,7 +5596,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
5408
5596
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
5409
5597
  }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
5410
5598
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
5411
- }>;
5599
+ }>; /**
5600
+ * @deprecated use any_circuit_element instead
5601
+ */
5412
5602
  }, "strip", z.ZodTypeAny, {
5413
5603
  x: number;
5414
5604
  y: number;
@@ -7423,6 +7613,67 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
7423
7613
  manufacturer_part_number?: string | undefined;
7424
7614
  supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7425
7615
  display_value?: string | undefined;
7616
+ }>, z.ZodObject<z.objectUtil.extendShape<{
7617
+ type: z.ZodLiteral<"source_component">;
7618
+ ftype: z.ZodOptional<z.ZodString>;
7619
+ source_component_id: z.ZodString;
7620
+ name: z.ZodString;
7621
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
7622
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
7623
+ display_value: z.ZodOptional<z.ZodString>;
7624
+ }, {
7625
+ ftype: z.ZodLiteral<"simple_potentiometer">;
7626
+ max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7627
+ }>, "strip", z.ZodTypeAny, {
7628
+ type: "source_component";
7629
+ ftype: "simple_potentiometer";
7630
+ source_component_id: string;
7631
+ name: string;
7632
+ max_resistance: number;
7633
+ manufacturer_part_number?: string | undefined;
7634
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7635
+ display_value?: string | undefined;
7636
+ }, {
7637
+ type: "source_component";
7638
+ ftype: "simple_potentiometer";
7639
+ source_component_id: string;
7640
+ name: string;
7641
+ max_resistance: string | number;
7642
+ manufacturer_part_number?: string | undefined;
7643
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7644
+ display_value?: string | undefined;
7645
+ }>, z.ZodObject<z.objectUtil.extendShape<{
7646
+ type: z.ZodLiteral<"source_component">;
7647
+ ftype: z.ZodOptional<z.ZodString>;
7648
+ source_component_id: z.ZodString;
7649
+ name: z.ZodString;
7650
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
7651
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
7652
+ display_value: z.ZodOptional<z.ZodString>;
7653
+ }, {
7654
+ ftype: z.ZodLiteral<"simple_crystal">;
7655
+ frequency: z.ZodNumber;
7656
+ load_capacitance: z.ZodOptional<z.ZodNumber>;
7657
+ }>, "strip", z.ZodTypeAny, {
7658
+ type: "source_component";
7659
+ ftype: "simple_crystal";
7660
+ source_component_id: string;
7661
+ name: string;
7662
+ frequency: number;
7663
+ manufacturer_part_number?: string | undefined;
7664
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7665
+ display_value?: string | undefined;
7666
+ load_capacitance?: number | undefined;
7667
+ }, {
7668
+ type: "source_component";
7669
+ ftype: "simple_crystal";
7670
+ source_component_id: string;
7671
+ name: string;
7672
+ frequency: number;
7673
+ manufacturer_part_number?: string | undefined;
7674
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7675
+ display_value?: string | undefined;
7676
+ load_capacitance?: number | undefined;
7426
7677
  }>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
7427
7678
  type: z.ZodLiteral<"source_component">;
7428
7679
  ftype: z.ZodOptional<z.ZodString>;
@@ -7724,6 +7975,35 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
7724
7975
  manufacturer_part_number: z.ZodOptional<z.ZodString>;
7725
7976
  supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
7726
7977
  display_value: z.ZodOptional<z.ZodString>;
7978
+ }, {
7979
+ ftype: z.ZodLiteral<"simple_potentiometer">;
7980
+ max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7981
+ }>, "strip", z.ZodTypeAny, {
7982
+ type: "source_component";
7983
+ ftype: "simple_potentiometer";
7984
+ source_component_id: string;
7985
+ name: string;
7986
+ max_resistance: number;
7987
+ manufacturer_part_number?: string | undefined;
7988
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7989
+ display_value?: string | undefined;
7990
+ }, {
7991
+ type: "source_component";
7992
+ ftype: "simple_potentiometer";
7993
+ source_component_id: string;
7994
+ name: string;
7995
+ max_resistance: string | number;
7996
+ manufacturer_part_number?: string | undefined;
7997
+ supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
7998
+ display_value?: string | undefined;
7999
+ }>, z.ZodObject<z.objectUtil.extendShape<{
8000
+ type: z.ZodLiteral<"source_component">;
8001
+ ftype: z.ZodOptional<z.ZodString>;
8002
+ source_component_id: z.ZodString;
8003
+ name: z.ZodString;
8004
+ manufacturer_part_number: z.ZodOptional<z.ZodString>;
8005
+ supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
8006
+ display_value: z.ZodOptional<z.ZodString>;
7727
8007
  }, {
7728
8008
  ftype: z.ZodLiteral<"simple_push_button">;
7729
8009
  }>, "strip", z.ZodTypeAny, {
@@ -8148,7 +8428,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
8148
8428
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8149
8429
  }>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
8150
8430
  name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
8151
- }>;
8431
+ }>; /**
8432
+ * @deprecated use any_circuit_element instead
8433
+ */
8152
8434
  }, "strip", z.ZodTypeAny, {
8153
8435
  x: number;
8154
8436
  y: number;
@@ -9829,4 +10111,4 @@ type AnySoupElement = AnyCircuitElement;
9829
10111
  */
9830
10112
  type AnySoupElementInput = AnyCircuitElementInput;
9831
10113
 
9832
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type Distance, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, 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 PCBVia, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushbutton, type SourceSimplePushbuttonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, size, source_component_base, source_group, source_led, source_net, source_port, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };
10114
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type CadComponent, type CadComponentInput, type Distance, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, 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 PCBVia, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleOval, type PcbHoleOvalInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushbutton, type SourceSimplePushbuttonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_line, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, size, source_component_base, source_group, source_led, source_net, source_port, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_trace, supplier_name, time, visible_layer, voltage };