circuit-json 0.0.392 → 0.0.394

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
@@ -28871,6 +28871,45 @@ interface SourceBoard {
28871
28871
  title?: string;
28872
28872
  }
28873
28873
 
28874
+ declare const source_ambiguous_port_reference: z.ZodObject<{
28875
+ message: z.ZodString;
28876
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
28877
+ } & {
28878
+ type: z.ZodLiteral<"source_ambiguous_port_reference">;
28879
+ source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
28880
+ error_type: z.ZodDefault<z.ZodLiteral<"source_ambiguous_port_reference">>;
28881
+ source_port_id: z.ZodOptional<z.ZodString>;
28882
+ source_component_id: z.ZodOptional<z.ZodString>;
28883
+ }, "strip", z.ZodTypeAny, {
28884
+ message: string;
28885
+ type: "source_ambiguous_port_reference";
28886
+ error_type: "source_ambiguous_port_reference";
28887
+ source_ambiguous_port_reference_id: string;
28888
+ source_component_id?: string | undefined;
28889
+ source_port_id?: string | undefined;
28890
+ is_fatal?: boolean | undefined;
28891
+ }, {
28892
+ message: string;
28893
+ type: "source_ambiguous_port_reference";
28894
+ source_component_id?: string | undefined;
28895
+ source_port_id?: string | undefined;
28896
+ error_type?: "source_ambiguous_port_reference" | undefined;
28897
+ is_fatal?: boolean | undefined;
28898
+ source_ambiguous_port_reference_id?: string | undefined;
28899
+ }>;
28900
+ type SourceAmbiguousPortReferenceInput = z.input<typeof source_ambiguous_port_reference>;
28901
+ /**
28902
+ * Error emitted when a port hint matches multiple non-overlapping pads,
28903
+ * making the port reference ambiguous (e.g. multiple pads all named "SH").
28904
+ */
28905
+ interface SourceAmbiguousPortReference extends BaseCircuitJsonError {
28906
+ type: "source_ambiguous_port_reference";
28907
+ source_ambiguous_port_reference_id: string;
28908
+ error_type: "source_ambiguous_port_reference";
28909
+ source_port_id?: string;
28910
+ source_component_id?: string;
28911
+ }
28912
+
28874
28913
  declare const source_pcb_ground_plane: z.ZodObject<{
28875
28914
  type: z.ZodLiteral<"source_pcb_ground_plane">;
28876
28915
  source_pcb_ground_plane_id: z.ZodString;
@@ -31701,6 +31740,22 @@ declare const cad_component: z.ZodObject<{
31701
31740
  mimetype: string;
31702
31741
  }>>;
31703
31742
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
31743
+ model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
31744
+ model_origin_position: z.ZodOptional<z.ZodObject<{
31745
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
31746
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
31747
+ z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
31748
+ }, "strip", z.ZodTypeAny, {
31749
+ x: number;
31750
+ y: number;
31751
+ z: number;
31752
+ }, {
31753
+ x: string | number;
31754
+ y: string | number;
31755
+ z: string | number;
31756
+ }>>;
31757
+ model_origin_alignment: z.ZodOptional<z.ZodEnum<["unknown", "center", "center_of_component_on_board_surface"]>>;
31758
+ model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
31704
31759
  model_jscad: z.ZodOptional<z.ZodAny>;
31705
31760
  show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
31706
31761
  anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "xy_center_z_board"]>>>;
@@ -31715,6 +31770,7 @@ declare const cad_component: z.ZodObject<{
31715
31770
  z: number;
31716
31771
  };
31717
31772
  cad_component_id: string;
31773
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
31718
31774
  rotation?: {
31719
31775
  x: number;
31720
31776
  y: number;
@@ -31741,6 +31797,13 @@ declare const cad_component: z.ZodObject<{
31741
31797
  mimetype: string;
31742
31798
  } | undefined;
31743
31799
  model_unit_to_mm_scale_factor?: number | undefined;
31800
+ model_board_normal_direction?: "y+" | "z+" | undefined;
31801
+ model_origin_position?: {
31802
+ x: number;
31803
+ y: number;
31804
+ z: number;
31805
+ } | undefined;
31806
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
31744
31807
  model_jscad?: any;
31745
31808
  show_as_translucent_model?: boolean | undefined;
31746
31809
  }, {
@@ -31782,6 +31845,14 @@ declare const cad_component: z.ZodObject<{
31782
31845
  mimetype: string;
31783
31846
  } | undefined;
31784
31847
  model_unit_to_mm_scale_factor?: number | undefined;
31848
+ model_board_normal_direction?: "y+" | "z+" | undefined;
31849
+ model_origin_position?: {
31850
+ x: string | number;
31851
+ y: string | number;
31852
+ z: string | number;
31853
+ } | undefined;
31854
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
31855
+ model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
31785
31856
  model_jscad?: any;
31786
31857
  show_as_translucent_model?: boolean | undefined;
31787
31858
  }>;
@@ -31808,6 +31879,10 @@ interface CadComponent {
31808
31879
  model_wrl_url?: string;
31809
31880
  model_asset?: Asset;
31810
31881
  model_unit_to_mm_scale_factor?: number;
31882
+ model_board_normal_direction?: "y+" | "z+";
31883
+ model_origin_position?: Point3;
31884
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface";
31885
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
31811
31886
  model_jscad?: any;
31812
31887
  show_as_translucent_model?: boolean;
31813
31888
  anchor_alignment: CadComponentAnchorAlignment;
@@ -34516,6 +34591,31 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34516
34591
  error_type?: "source_i2c_misconfigured_error" | undefined;
34517
34592
  is_fatal?: boolean | undefined;
34518
34593
  source_i2c_misconfigured_error_id?: string | undefined;
34594
+ }>, z.ZodObject<{
34595
+ message: z.ZodString;
34596
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
34597
+ } & {
34598
+ type: z.ZodLiteral<"source_ambiguous_port_reference">;
34599
+ source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34600
+ error_type: z.ZodDefault<z.ZodLiteral<"source_ambiguous_port_reference">>;
34601
+ source_port_id: z.ZodOptional<z.ZodString>;
34602
+ source_component_id: z.ZodOptional<z.ZodString>;
34603
+ }, "strip", z.ZodTypeAny, {
34604
+ message: string;
34605
+ type: "source_ambiguous_port_reference";
34606
+ error_type: "source_ambiguous_port_reference";
34607
+ source_ambiguous_port_reference_id: string;
34608
+ source_component_id?: string | undefined;
34609
+ source_port_id?: string | undefined;
34610
+ is_fatal?: boolean | undefined;
34611
+ }, {
34612
+ message: string;
34613
+ type: "source_ambiguous_port_reference";
34614
+ source_component_id?: string | undefined;
34615
+ source_port_id?: string | undefined;
34616
+ error_type?: "source_ambiguous_port_reference" | undefined;
34617
+ is_fatal?: boolean | undefined;
34618
+ source_ambiguous_port_reference_id?: string | undefined;
34519
34619
  }>, z.ZodObject<{
34520
34620
  type: z.ZodLiteral<"pcb_component">;
34521
34621
  pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -48905,6 +49005,22 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
48905
49005
  mimetype: string;
48906
49006
  }>>;
48907
49007
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
49008
+ model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
49009
+ model_origin_position: z.ZodOptional<z.ZodObject<{
49010
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
49011
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
49012
+ z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
49013
+ }, "strip", z.ZodTypeAny, {
49014
+ x: number;
49015
+ y: number;
49016
+ z: number;
49017
+ }, {
49018
+ x: string | number;
49019
+ y: string | number;
49020
+ z: string | number;
49021
+ }>>;
49022
+ model_origin_alignment: z.ZodOptional<z.ZodEnum<["unknown", "center", "center_of_component_on_board_surface"]>>;
49023
+ model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
48908
49024
  model_jscad: z.ZodOptional<z.ZodAny>;
48909
49025
  show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
48910
49026
  anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "xy_center_z_board"]>>>;
@@ -48919,6 +49035,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
48919
49035
  z: number;
48920
49036
  };
48921
49037
  cad_component_id: string;
49038
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
48922
49039
  rotation?: {
48923
49040
  x: number;
48924
49041
  y: number;
@@ -48945,6 +49062,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
48945
49062
  mimetype: string;
48946
49063
  } | undefined;
48947
49064
  model_unit_to_mm_scale_factor?: number | undefined;
49065
+ model_board_normal_direction?: "y+" | "z+" | undefined;
49066
+ model_origin_position?: {
49067
+ x: number;
49068
+ y: number;
49069
+ z: number;
49070
+ } | undefined;
49071
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
48948
49072
  model_jscad?: any;
48949
49073
  show_as_translucent_model?: boolean | undefined;
48950
49074
  }, {
@@ -48986,6 +49110,14 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
48986
49110
  mimetype: string;
48987
49111
  } | undefined;
48988
49112
  model_unit_to_mm_scale_factor?: number | undefined;
49113
+ model_board_normal_direction?: "y+" | "z+" | undefined;
49114
+ model_origin_position?: {
49115
+ x: string | number;
49116
+ y: string | number;
49117
+ z: string | number;
49118
+ } | undefined;
49119
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
49120
+ model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
48989
49121
  model_jscad?: any;
48990
49122
  show_as_translucent_model?: boolean | undefined;
48991
49123
  }>, z.ZodUnion<[z.ZodObject<{
@@ -52027,6 +52159,31 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52027
52159
  error_type?: "source_i2c_misconfigured_error" | undefined;
52028
52160
  is_fatal?: boolean | undefined;
52029
52161
  source_i2c_misconfigured_error_id?: string | undefined;
52162
+ }>, z.ZodObject<{
52163
+ message: z.ZodString;
52164
+ is_fatal: z.ZodOptional<z.ZodBoolean>;
52165
+ } & {
52166
+ type: z.ZodLiteral<"source_ambiguous_port_reference">;
52167
+ source_ambiguous_port_reference_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52168
+ error_type: z.ZodDefault<z.ZodLiteral<"source_ambiguous_port_reference">>;
52169
+ source_port_id: z.ZodOptional<z.ZodString>;
52170
+ source_component_id: z.ZodOptional<z.ZodString>;
52171
+ }, "strip", z.ZodTypeAny, {
52172
+ message: string;
52173
+ type: "source_ambiguous_port_reference";
52174
+ error_type: "source_ambiguous_port_reference";
52175
+ source_ambiguous_port_reference_id: string;
52176
+ source_component_id?: string | undefined;
52177
+ source_port_id?: string | undefined;
52178
+ is_fatal?: boolean | undefined;
52179
+ }, {
52180
+ message: string;
52181
+ type: "source_ambiguous_port_reference";
52182
+ source_component_id?: string | undefined;
52183
+ source_port_id?: string | undefined;
52184
+ error_type?: "source_ambiguous_port_reference" | undefined;
52185
+ is_fatal?: boolean | undefined;
52186
+ source_ambiguous_port_reference_id?: string | undefined;
52030
52187
  }>, z.ZodObject<{
52031
52188
  type: z.ZodLiteral<"pcb_component">;
52032
52189
  pcb_component_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -66416,6 +66573,22 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66416
66573
  mimetype: string;
66417
66574
  }>>;
66418
66575
  model_unit_to_mm_scale_factor: z.ZodOptional<z.ZodNumber>;
66576
+ model_board_normal_direction: z.ZodOptional<z.ZodEnum<["y+", "z+"]>>;
66577
+ model_origin_position: z.ZodOptional<z.ZodObject<{
66578
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66579
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66580
+ z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66581
+ }, "strip", z.ZodTypeAny, {
66582
+ x: number;
66583
+ y: number;
66584
+ z: number;
66585
+ }, {
66586
+ x: string | number;
66587
+ y: string | number;
66588
+ z: string | number;
66589
+ }>>;
66590
+ model_origin_alignment: z.ZodOptional<z.ZodEnum<["unknown", "center", "center_of_component_on_board_surface"]>>;
66591
+ model_object_fit: z.ZodDefault<z.ZodOptional<z.ZodEnum<["contain_within_bounds", "fill_bounds"]>>>;
66419
66592
  model_jscad: z.ZodOptional<z.ZodAny>;
66420
66593
  show_as_translucent_model: z.ZodOptional<z.ZodBoolean>;
66421
66594
  anchor_alignment: z.ZodDefault<z.ZodOptional<z.ZodEnum<["center", "xy_center_z_board"]>>>;
@@ -66430,6 +66603,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66430
66603
  z: number;
66431
66604
  };
66432
66605
  cad_component_id: string;
66606
+ model_object_fit: "contain_within_bounds" | "fill_bounds";
66433
66607
  rotation?: {
66434
66608
  x: number;
66435
66609
  y: number;
@@ -66456,6 +66630,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66456
66630
  mimetype: string;
66457
66631
  } | undefined;
66458
66632
  model_unit_to_mm_scale_factor?: number | undefined;
66633
+ model_board_normal_direction?: "y+" | "z+" | undefined;
66634
+ model_origin_position?: {
66635
+ x: number;
66636
+ y: number;
66637
+ z: number;
66638
+ } | undefined;
66639
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
66459
66640
  model_jscad?: any;
66460
66641
  show_as_translucent_model?: boolean | undefined;
66461
66642
  }, {
@@ -66497,6 +66678,14 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
66497
66678
  mimetype: string;
66498
66679
  } | undefined;
66499
66680
  model_unit_to_mm_scale_factor?: number | undefined;
66681
+ model_board_normal_direction?: "y+" | "z+" | undefined;
66682
+ model_origin_position?: {
66683
+ x: string | number;
66684
+ y: string | number;
66685
+ z: string | number;
66686
+ } | undefined;
66687
+ model_origin_alignment?: "unknown" | "center" | "center_of_component_on_board_surface" | undefined;
66688
+ model_object_fit?: "contain_within_bounds" | "fill_bounds" | undefined;
66500
66689
  model_jscad?: any;
66501
66690
  show_as_translucent_model?: boolean | undefined;
66502
66691
  }>, z.ZodUnion<[z.ZodObject<{
@@ -66848,4 +67037,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
66848
67037
  */
66849
67038
  type CircuitJson = AnyCircuitElement[];
66850
67039
 
66851
- 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 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 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 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 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 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 PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type 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 SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type 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, cad_component, 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, 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_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_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_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_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, simulation_transient_voltage_graph, simulation_unknown_experiment_error, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
67040
+ 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 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 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 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 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 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 PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaClearanceError, type PcbViaClearanceErrorInput, type PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicArc, type SchematicArcInput, type SchematicBox, type SchematicBoxInput, type SchematicCircle, type SchematicCircleInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicGroup, type SchematicGroupInput, type SchematicLayoutError, type SchematicLayoutErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicRect, type SchematicRectInput, type SchematicSheet, type SchematicSheetInput, type 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 SimulationCurrentSource, type SimulationCurrentSourceInput, type SimulationDcCurrentSource, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationOpAmp, type SimulationOpAmpInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationUnknownExperimentError, type SimulationUnknownExperimentErrorInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceAmbiguousPortReference, type SourceAmbiguousPortReferenceInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleConnector, type SourceSimpleConnectorInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleCurrentSource, type SourceSimpleCurrentSourceInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleFiducial, type SourceSimpleFiducialInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimpleOpAmp, type SourceSimpleOpAmpInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePinout, type SourceSimplePinoutInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, type SourceSimpleVoltageSource, type SourceSimpleVoltageSourceInput, type SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type 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, cad_component, 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, 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_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_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_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_via, pcb_trace_route_point_wire, pcb_via, pcb_via_clearance_error, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, rotation, route_hint_point, schematic_arc, schematic_box, schematic_circle, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_rect, schematic_sheet, schematic_symbol, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_current_source, simulation_ac_voltage_source, simulation_current_source, simulation_dc_current_source, simulation_dc_voltage_source, simulation_experiment, simulation_op_amp, simulation_switch, 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_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_connector, source_simple_crystal, source_simple_current_source, source_simple_diode, source_simple_fiducial, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, source_simple_op_amp, source_simple_pin_header, source_simple_pinout, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_simple_voltage_probe, source_simple_voltage_source, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };