circuit-json 0.0.257 → 0.0.259

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
@@ -4128,6 +4128,50 @@ interface ExternalFootprintLoadError {
4128
4128
  message: string;
4129
4129
  }
4130
4130
 
4131
+ declare const circuit_json_footprint_load_error: z.ZodObject<{
4132
+ type: z.ZodLiteral<"circuit_json_footprint_load_error">;
4133
+ circuit_json_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4134
+ pcb_component_id: z.ZodString;
4135
+ source_component_id: z.ZodString;
4136
+ pcb_group_id: z.ZodOptional<z.ZodString>;
4137
+ subcircuit_id: z.ZodOptional<z.ZodString>;
4138
+ error_type: z.ZodDefault<z.ZodLiteral<"circuit_json_footprint_load_error">>;
4139
+ message: z.ZodString;
4140
+ circuit_json: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
4141
+ }, "strip", z.ZodTypeAny, {
4142
+ message: string;
4143
+ type: "circuit_json_footprint_load_error";
4144
+ pcb_component_id: string;
4145
+ source_component_id: string;
4146
+ error_type: "circuit_json_footprint_load_error";
4147
+ circuit_json_footprint_load_error_id: string;
4148
+ subcircuit_id?: string | undefined;
4149
+ pcb_group_id?: string | undefined;
4150
+ circuit_json?: any[] | undefined;
4151
+ }, {
4152
+ message: string;
4153
+ type: "circuit_json_footprint_load_error";
4154
+ pcb_component_id: string;
4155
+ source_component_id: string;
4156
+ subcircuit_id?: string | undefined;
4157
+ pcb_group_id?: string | undefined;
4158
+ error_type?: "circuit_json_footprint_load_error" | undefined;
4159
+ circuit_json_footprint_load_error_id?: string | undefined;
4160
+ circuit_json?: any[] | undefined;
4161
+ }>;
4162
+ type CircuitJsonFootprintLoadErrorInput = z.input<typeof circuit_json_footprint_load_error>;
4163
+ interface CircuitJsonFootprintLoadError {
4164
+ type: "circuit_json_footprint_load_error";
4165
+ circuit_json_footprint_load_error_id: string;
4166
+ pcb_component_id: string;
4167
+ source_component_id: string;
4168
+ pcb_group_id?: string;
4169
+ subcircuit_id?: string;
4170
+ error_type: "circuit_json_footprint_load_error";
4171
+ message: string;
4172
+ circuit_json?: any[];
4173
+ }
4174
+
4131
4175
  declare const pcb_group: z.ZodObject<{
4132
4176
  type: z.ZodLiteral<"pcb_group">;
4133
4177
  pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -5174,7 +5218,7 @@ interface PcbComponentOutsideBoardError {
5174
5218
  source_component_id?: string;
5175
5219
  }
5176
5220
 
5177
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError;
5221
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError;
5178
5222
 
5179
5223
  interface SchematicBox {
5180
5224
  type: "schematic_box";
@@ -5753,27 +5797,31 @@ declare const schematic_component: z.ZodObject<{
5753
5797
  }>;
5754
5798
  type SchematicComponentInput = z.input<typeof schematic_component>;
5755
5799
 
5756
- /**
5757
- * Defines a line on the schematic, this can be used for adding arbitrary lines
5758
- * to a schematic, but don't use it for drawing traces, schematic boxes or where
5759
- * other schematic elements are more appropriate.
5760
- */
5800
+ /** Draws a styled line on the schematic */
5761
5801
  interface SchematicLine {
5762
5802
  type: "schematic_line";
5803
+ schematic_line_id: string;
5763
5804
  schematic_component_id: string;
5764
5805
  x1: number;
5765
- x2: number;
5766
5806
  y1: number;
5807
+ x2: number;
5767
5808
  y2: number;
5809
+ stroke_width?: number | null;
5810
+ color: string;
5811
+ is_dashed: boolean;
5768
5812
  subcircuit_id?: string;
5769
5813
  }
5770
5814
  declare const schematic_line: z.ZodObject<{
5771
5815
  type: z.ZodLiteral<"schematic_line">;
5816
+ schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5772
5817
  schematic_component_id: z.ZodString;
5773
5818
  x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5774
- x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5775
5819
  y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5820
+ x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5776
5821
  y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5822
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
5823
+ color: z.ZodDefault<z.ZodString>;
5824
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
5777
5825
  subcircuit_id: z.ZodOptional<z.ZodString>;
5778
5826
  }, "strip", z.ZodTypeAny, {
5779
5827
  type: "schematic_line";
@@ -5781,8 +5829,12 @@ declare const schematic_line: z.ZodObject<{
5781
5829
  y1: number;
5782
5830
  x2: number;
5783
5831
  y2: number;
5832
+ color: string;
5784
5833
  schematic_component_id: string;
5834
+ is_dashed: boolean;
5835
+ schematic_line_id: string;
5785
5836
  subcircuit_id?: string | undefined;
5837
+ stroke_width?: number | null | undefined;
5786
5838
  }, {
5787
5839
  type: "schematic_line";
5788
5840
  x1: string | number;
@@ -5791,9 +5843,229 @@ declare const schematic_line: z.ZodObject<{
5791
5843
  y2: string | number;
5792
5844
  schematic_component_id: string;
5793
5845
  subcircuit_id?: string | undefined;
5846
+ stroke_width?: string | number | null | undefined;
5847
+ color?: string | undefined;
5848
+ is_dashed?: boolean | undefined;
5849
+ schematic_line_id?: string | undefined;
5794
5850
  }>;
5795
5851
  type SchematicLineInput = z.input<typeof schematic_line>;
5796
5852
 
5853
+ /** Draws a styled rectangle on the schematic */
5854
+ interface SchematicRect {
5855
+ type: "schematic_rect";
5856
+ schematic_rect_id: string;
5857
+ schematic_component_id: string;
5858
+ center: Point;
5859
+ width: number;
5860
+ height: number;
5861
+ rotation: number;
5862
+ stroke_width?: number | null;
5863
+ color: string;
5864
+ is_filled: boolean;
5865
+ fill_color?: string;
5866
+ is_dashed: boolean;
5867
+ subcircuit_id?: string;
5868
+ }
5869
+ declare const schematic_rect: z.ZodObject<{
5870
+ type: z.ZodLiteral<"schematic_rect">;
5871
+ schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5872
+ schematic_component_id: z.ZodString;
5873
+ center: z.ZodObject<{
5874
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5875
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5876
+ }, "strip", z.ZodTypeAny, {
5877
+ x: number;
5878
+ y: number;
5879
+ }, {
5880
+ x: string | number;
5881
+ y: string | number;
5882
+ }>;
5883
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5884
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5885
+ rotation: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
5886
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
5887
+ color: z.ZodDefault<z.ZodString>;
5888
+ is_filled: z.ZodDefault<z.ZodBoolean>;
5889
+ fill_color: z.ZodOptional<z.ZodString>;
5890
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
5891
+ subcircuit_id: z.ZodOptional<z.ZodString>;
5892
+ }, "strip", z.ZodTypeAny, {
5893
+ type: "schematic_rect";
5894
+ width: number;
5895
+ height: number;
5896
+ center: {
5897
+ x: number;
5898
+ y: number;
5899
+ };
5900
+ rotation: number;
5901
+ is_filled: boolean;
5902
+ color: string;
5903
+ schematic_component_id: string;
5904
+ is_dashed: boolean;
5905
+ schematic_rect_id: string;
5906
+ subcircuit_id?: string | undefined;
5907
+ stroke_width?: number | null | undefined;
5908
+ fill_color?: string | undefined;
5909
+ }, {
5910
+ type: "schematic_rect";
5911
+ width: string | number;
5912
+ height: string | number;
5913
+ center: {
5914
+ x: string | number;
5915
+ y: string | number;
5916
+ };
5917
+ schematic_component_id: string;
5918
+ rotation?: string | number | undefined;
5919
+ subcircuit_id?: string | undefined;
5920
+ stroke_width?: string | number | null | undefined;
5921
+ is_filled?: boolean | undefined;
5922
+ color?: string | undefined;
5923
+ is_dashed?: boolean | undefined;
5924
+ fill_color?: string | undefined;
5925
+ schematic_rect_id?: string | undefined;
5926
+ }>;
5927
+ type SchematicRectInput = z.input<typeof schematic_rect>;
5928
+
5929
+ /** Draws a styled circle on the schematic */
5930
+ interface SchematicCircle {
5931
+ type: "schematic_circle";
5932
+ schematic_circle_id: string;
5933
+ schematic_component_id: string;
5934
+ center: Point;
5935
+ radius: number;
5936
+ stroke_width?: number | null;
5937
+ color: string;
5938
+ is_filled: boolean;
5939
+ fill_color?: string;
5940
+ is_dashed: boolean;
5941
+ subcircuit_id?: string;
5942
+ }
5943
+ declare const schematic_circle: z.ZodObject<{
5944
+ type: z.ZodLiteral<"schematic_circle">;
5945
+ schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
5946
+ schematic_component_id: z.ZodString;
5947
+ center: z.ZodObject<{
5948
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5949
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5950
+ }, "strip", z.ZodTypeAny, {
5951
+ x: number;
5952
+ y: number;
5953
+ }, {
5954
+ x: string | number;
5955
+ y: string | number;
5956
+ }>;
5957
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
5958
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
5959
+ color: z.ZodDefault<z.ZodString>;
5960
+ is_filled: z.ZodDefault<z.ZodBoolean>;
5961
+ fill_color: z.ZodOptional<z.ZodString>;
5962
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
5963
+ subcircuit_id: z.ZodOptional<z.ZodString>;
5964
+ }, "strip", z.ZodTypeAny, {
5965
+ type: "schematic_circle";
5966
+ center: {
5967
+ x: number;
5968
+ y: number;
5969
+ };
5970
+ radius: number;
5971
+ is_filled: boolean;
5972
+ color: string;
5973
+ schematic_component_id: string;
5974
+ is_dashed: boolean;
5975
+ schematic_circle_id: string;
5976
+ subcircuit_id?: string | undefined;
5977
+ stroke_width?: number | null | undefined;
5978
+ fill_color?: string | undefined;
5979
+ }, {
5980
+ type: "schematic_circle";
5981
+ center: {
5982
+ x: string | number;
5983
+ y: string | number;
5984
+ };
5985
+ radius: string | number;
5986
+ schematic_component_id: string;
5987
+ subcircuit_id?: string | undefined;
5988
+ stroke_width?: string | number | null | undefined;
5989
+ is_filled?: boolean | undefined;
5990
+ color?: string | undefined;
5991
+ is_dashed?: boolean | undefined;
5992
+ fill_color?: string | undefined;
5993
+ schematic_circle_id?: string | undefined;
5994
+ }>;
5995
+ type SchematicCircleInput = z.input<typeof schematic_circle>;
5996
+
5997
+ /** Draws a styled arc on the schematic */
5998
+ interface SchematicArc {
5999
+ type: "schematic_arc";
6000
+ schematic_arc_id: string;
6001
+ schematic_component_id: string;
6002
+ center: Point;
6003
+ radius: number;
6004
+ start_angle_degrees: number;
6005
+ end_angle_degrees: number;
6006
+ direction: "clockwise" | "counterclockwise";
6007
+ stroke_width?: number | null;
6008
+ color: string;
6009
+ is_dashed: boolean;
6010
+ subcircuit_id?: string;
6011
+ }
6012
+ declare const schematic_arc: z.ZodObject<{
6013
+ type: z.ZodLiteral<"schematic_arc">;
6014
+ schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
6015
+ schematic_component_id: z.ZodString;
6016
+ center: z.ZodObject<{
6017
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6018
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6019
+ }, "strip", z.ZodTypeAny, {
6020
+ x: number;
6021
+ y: number;
6022
+ }, {
6023
+ x: string | number;
6024
+ y: string | number;
6025
+ }>;
6026
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6027
+ start_angle_degrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6028
+ end_angle_degrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
6029
+ direction: z.ZodDefault<z.ZodEnum<["clockwise", "counterclockwise"]>>;
6030
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
6031
+ color: z.ZodDefault<z.ZodString>;
6032
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
6033
+ subcircuit_id: z.ZodOptional<z.ZodString>;
6034
+ }, "strip", z.ZodTypeAny, {
6035
+ type: "schematic_arc";
6036
+ center: {
6037
+ x: number;
6038
+ y: number;
6039
+ };
6040
+ radius: number;
6041
+ color: string;
6042
+ schematic_component_id: string;
6043
+ is_dashed: boolean;
6044
+ direction: "clockwise" | "counterclockwise";
6045
+ schematic_arc_id: string;
6046
+ start_angle_degrees: number;
6047
+ end_angle_degrees: number;
6048
+ subcircuit_id?: string | undefined;
6049
+ stroke_width?: number | null | undefined;
6050
+ }, {
6051
+ type: "schematic_arc";
6052
+ center: {
6053
+ x: string | number;
6054
+ y: string | number;
6055
+ };
6056
+ radius: string | number;
6057
+ schematic_component_id: string;
6058
+ start_angle_degrees: string | number;
6059
+ end_angle_degrees: string | number;
6060
+ subcircuit_id?: string | undefined;
6061
+ stroke_width?: string | number | null | undefined;
6062
+ color?: string | undefined;
6063
+ is_dashed?: boolean | undefined;
6064
+ direction?: "clockwise" | "counterclockwise" | undefined;
6065
+ schematic_arc_id?: string | undefined;
6066
+ }>;
6067
+ type SchematicArcInput = z.input<typeof schematic_arc>;
6068
+
5797
6069
  interface SchematicTraceEdge {
5798
6070
  from: {
5799
6071
  x: number;
@@ -11927,6 +12199,36 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
11927
12199
  error_type?: "external_footprint_load_error" | undefined;
11928
12200
  external_footprint_load_error_id?: string | undefined;
11929
12201
  footprinter_string?: string | undefined;
12202
+ }>, z.ZodObject<{
12203
+ type: z.ZodLiteral<"circuit_json_footprint_load_error">;
12204
+ circuit_json_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
12205
+ pcb_component_id: z.ZodString;
12206
+ source_component_id: z.ZodString;
12207
+ pcb_group_id: z.ZodOptional<z.ZodString>;
12208
+ subcircuit_id: z.ZodOptional<z.ZodString>;
12209
+ error_type: z.ZodDefault<z.ZodLiteral<"circuit_json_footprint_load_error">>;
12210
+ message: z.ZodString;
12211
+ circuit_json: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
12212
+ }, "strip", z.ZodTypeAny, {
12213
+ message: string;
12214
+ type: "circuit_json_footprint_load_error";
12215
+ pcb_component_id: string;
12216
+ source_component_id: string;
12217
+ error_type: "circuit_json_footprint_load_error";
12218
+ circuit_json_footprint_load_error_id: string;
12219
+ subcircuit_id?: string | undefined;
12220
+ pcb_group_id?: string | undefined;
12221
+ circuit_json?: any[] | undefined;
12222
+ }, {
12223
+ message: string;
12224
+ type: "circuit_json_footprint_load_error";
12225
+ pcb_component_id: string;
12226
+ source_component_id: string;
12227
+ subcircuit_id?: string | undefined;
12228
+ pcb_group_id?: string | undefined;
12229
+ error_type?: "circuit_json_footprint_load_error" | undefined;
12230
+ circuit_json_footprint_load_error_id?: string | undefined;
12231
+ circuit_json?: any[] | undefined;
11930
12232
  }>, z.ZodObject<{
11931
12233
  type: z.ZodLiteral<"pcb_manual_edit_conflict_warning">;
11932
12234
  pcb_manual_edit_conflict_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -14795,11 +15097,15 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14795
15097
  schematic_component_id?: string | undefined;
14796
15098
  }>, z.ZodObject<{
14797
15099
  type: z.ZodLiteral<"schematic_line">;
15100
+ schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
14798
15101
  schematic_component_id: z.ZodString;
14799
15102
  x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14800
- x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14801
15103
  y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15104
+ x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
14802
15105
  y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15106
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
15107
+ color: z.ZodDefault<z.ZodString>;
15108
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
14803
15109
  subcircuit_id: z.ZodOptional<z.ZodString>;
14804
15110
  }, "strip", z.ZodTypeAny, {
14805
15111
  type: "schematic_line";
@@ -14807,8 +15113,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14807
15113
  y1: number;
14808
15114
  x2: number;
14809
15115
  y2: number;
15116
+ color: string;
14810
15117
  schematic_component_id: string;
15118
+ is_dashed: boolean;
15119
+ schematic_line_id: string;
14811
15120
  subcircuit_id?: string | undefined;
15121
+ stroke_width?: number | null | undefined;
14812
15122
  }, {
14813
15123
  type: "schematic_line";
14814
15124
  x1: string | number;
@@ -14817,6 +15127,172 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
14817
15127
  y2: string | number;
14818
15128
  schematic_component_id: string;
14819
15129
  subcircuit_id?: string | undefined;
15130
+ stroke_width?: string | number | null | undefined;
15131
+ color?: string | undefined;
15132
+ is_dashed?: boolean | undefined;
15133
+ schematic_line_id?: string | undefined;
15134
+ }>, z.ZodObject<{
15135
+ type: z.ZodLiteral<"schematic_rect">;
15136
+ schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15137
+ schematic_component_id: z.ZodString;
15138
+ center: z.ZodObject<{
15139
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15140
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15141
+ }, "strip", z.ZodTypeAny, {
15142
+ x: number;
15143
+ y: number;
15144
+ }, {
15145
+ x: string | number;
15146
+ y: string | number;
15147
+ }>;
15148
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15149
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15150
+ rotation: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
15151
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
15152
+ color: z.ZodDefault<z.ZodString>;
15153
+ is_filled: z.ZodDefault<z.ZodBoolean>;
15154
+ fill_color: z.ZodOptional<z.ZodString>;
15155
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
15156
+ subcircuit_id: z.ZodOptional<z.ZodString>;
15157
+ }, "strip", z.ZodTypeAny, {
15158
+ type: "schematic_rect";
15159
+ width: number;
15160
+ height: number;
15161
+ center: {
15162
+ x: number;
15163
+ y: number;
15164
+ };
15165
+ rotation: number;
15166
+ is_filled: boolean;
15167
+ color: string;
15168
+ schematic_component_id: string;
15169
+ is_dashed: boolean;
15170
+ schematic_rect_id: string;
15171
+ subcircuit_id?: string | undefined;
15172
+ stroke_width?: number | null | undefined;
15173
+ fill_color?: string | undefined;
15174
+ }, {
15175
+ type: "schematic_rect";
15176
+ width: string | number;
15177
+ height: string | number;
15178
+ center: {
15179
+ x: string | number;
15180
+ y: string | number;
15181
+ };
15182
+ schematic_component_id: string;
15183
+ rotation?: string | number | undefined;
15184
+ subcircuit_id?: string | undefined;
15185
+ stroke_width?: string | number | null | undefined;
15186
+ is_filled?: boolean | undefined;
15187
+ color?: string | undefined;
15188
+ is_dashed?: boolean | undefined;
15189
+ fill_color?: string | undefined;
15190
+ schematic_rect_id?: string | undefined;
15191
+ }>, z.ZodObject<{
15192
+ type: z.ZodLiteral<"schematic_circle">;
15193
+ schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15194
+ schematic_component_id: z.ZodString;
15195
+ center: z.ZodObject<{
15196
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15197
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15198
+ }, "strip", z.ZodTypeAny, {
15199
+ x: number;
15200
+ y: number;
15201
+ }, {
15202
+ x: string | number;
15203
+ y: string | number;
15204
+ }>;
15205
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15206
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
15207
+ color: z.ZodDefault<z.ZodString>;
15208
+ is_filled: z.ZodDefault<z.ZodBoolean>;
15209
+ fill_color: z.ZodOptional<z.ZodString>;
15210
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
15211
+ subcircuit_id: z.ZodOptional<z.ZodString>;
15212
+ }, "strip", z.ZodTypeAny, {
15213
+ type: "schematic_circle";
15214
+ center: {
15215
+ x: number;
15216
+ y: number;
15217
+ };
15218
+ radius: number;
15219
+ is_filled: boolean;
15220
+ color: string;
15221
+ schematic_component_id: string;
15222
+ is_dashed: boolean;
15223
+ schematic_circle_id: string;
15224
+ subcircuit_id?: string | undefined;
15225
+ stroke_width?: number | null | undefined;
15226
+ fill_color?: string | undefined;
15227
+ }, {
15228
+ type: "schematic_circle";
15229
+ center: {
15230
+ x: string | number;
15231
+ y: string | number;
15232
+ };
15233
+ radius: string | number;
15234
+ schematic_component_id: string;
15235
+ subcircuit_id?: string | undefined;
15236
+ stroke_width?: string | number | null | undefined;
15237
+ is_filled?: boolean | undefined;
15238
+ color?: string | undefined;
15239
+ is_dashed?: boolean | undefined;
15240
+ fill_color?: string | undefined;
15241
+ schematic_circle_id?: string | undefined;
15242
+ }>, z.ZodObject<{
15243
+ type: z.ZodLiteral<"schematic_arc">;
15244
+ schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
15245
+ schematic_component_id: z.ZodString;
15246
+ center: z.ZodObject<{
15247
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15248
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15249
+ }, "strip", z.ZodTypeAny, {
15250
+ x: number;
15251
+ y: number;
15252
+ }, {
15253
+ x: string | number;
15254
+ y: string | number;
15255
+ }>;
15256
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15257
+ start_angle_degrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15258
+ end_angle_degrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
15259
+ direction: z.ZodDefault<z.ZodEnum<["clockwise", "counterclockwise"]>>;
15260
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
15261
+ color: z.ZodDefault<z.ZodString>;
15262
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
15263
+ subcircuit_id: z.ZodOptional<z.ZodString>;
15264
+ }, "strip", z.ZodTypeAny, {
15265
+ type: "schematic_arc";
15266
+ center: {
15267
+ x: number;
15268
+ y: number;
15269
+ };
15270
+ radius: number;
15271
+ color: string;
15272
+ schematic_component_id: string;
15273
+ is_dashed: boolean;
15274
+ direction: "clockwise" | "counterclockwise";
15275
+ schematic_arc_id: string;
15276
+ start_angle_degrees: number;
15277
+ end_angle_degrees: number;
15278
+ subcircuit_id?: string | undefined;
15279
+ stroke_width?: number | null | undefined;
15280
+ }, {
15281
+ type: "schematic_arc";
15282
+ center: {
15283
+ x: string | number;
15284
+ y: string | number;
15285
+ };
15286
+ radius: string | number;
15287
+ schematic_component_id: string;
15288
+ start_angle_degrees: string | number;
15289
+ end_angle_degrees: string | number;
15290
+ subcircuit_id?: string | undefined;
15291
+ stroke_width?: string | number | null | undefined;
15292
+ color?: string | undefined;
15293
+ is_dashed?: boolean | undefined;
15294
+ direction?: "clockwise" | "counterclockwise" | undefined;
15295
+ schematic_arc_id?: string | undefined;
14820
15296
  }>, z.ZodObject<{
14821
15297
  type: z.ZodLiteral<"schematic_component">;
14822
15298
  size: z.ZodObject<{
@@ -18073,6 +18549,36 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
18073
18549
  error_type?: "external_footprint_load_error" | undefined;
18074
18550
  external_footprint_load_error_id?: string | undefined;
18075
18551
  footprinter_string?: string | undefined;
18552
+ }>, z.ZodObject<{
18553
+ type: z.ZodLiteral<"circuit_json_footprint_load_error">;
18554
+ circuit_json_footprint_load_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
18555
+ pcb_component_id: z.ZodString;
18556
+ source_component_id: z.ZodString;
18557
+ pcb_group_id: z.ZodOptional<z.ZodString>;
18558
+ subcircuit_id: z.ZodOptional<z.ZodString>;
18559
+ error_type: z.ZodDefault<z.ZodLiteral<"circuit_json_footprint_load_error">>;
18560
+ message: z.ZodString;
18561
+ circuit_json: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
18562
+ }, "strip", z.ZodTypeAny, {
18563
+ message: string;
18564
+ type: "circuit_json_footprint_load_error";
18565
+ pcb_component_id: string;
18566
+ source_component_id: string;
18567
+ error_type: "circuit_json_footprint_load_error";
18568
+ circuit_json_footprint_load_error_id: string;
18569
+ subcircuit_id?: string | undefined;
18570
+ pcb_group_id?: string | undefined;
18571
+ circuit_json?: any[] | undefined;
18572
+ }, {
18573
+ message: string;
18574
+ type: "circuit_json_footprint_load_error";
18575
+ pcb_component_id: string;
18576
+ source_component_id: string;
18577
+ subcircuit_id?: string | undefined;
18578
+ pcb_group_id?: string | undefined;
18579
+ error_type?: "circuit_json_footprint_load_error" | undefined;
18580
+ circuit_json_footprint_load_error_id?: string | undefined;
18581
+ circuit_json?: any[] | undefined;
18076
18582
  }>, z.ZodObject<{
18077
18583
  type: z.ZodLiteral<"pcb_manual_edit_conflict_warning">;
18078
18584
  pcb_manual_edit_conflict_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -20941,11 +21447,15 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20941
21447
  schematic_component_id?: string | undefined;
20942
21448
  }>, z.ZodObject<{
20943
21449
  type: z.ZodLiteral<"schematic_line">;
21450
+ schematic_line_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
20944
21451
  schematic_component_id: z.ZodString;
20945
21452
  x1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
20946
- x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
20947
21453
  y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21454
+ x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
20948
21455
  y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21456
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
21457
+ color: z.ZodDefault<z.ZodString>;
21458
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
20949
21459
  subcircuit_id: z.ZodOptional<z.ZodString>;
20950
21460
  }, "strip", z.ZodTypeAny, {
20951
21461
  type: "schematic_line";
@@ -20953,8 +21463,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20953
21463
  y1: number;
20954
21464
  x2: number;
20955
21465
  y2: number;
21466
+ color: string;
20956
21467
  schematic_component_id: string;
21468
+ is_dashed: boolean;
21469
+ schematic_line_id: string;
20957
21470
  subcircuit_id?: string | undefined;
21471
+ stroke_width?: number | null | undefined;
20958
21472
  }, {
20959
21473
  type: "schematic_line";
20960
21474
  x1: string | number;
@@ -20963,6 +21477,172 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
20963
21477
  y2: string | number;
20964
21478
  schematic_component_id: string;
20965
21479
  subcircuit_id?: string | undefined;
21480
+ stroke_width?: string | number | null | undefined;
21481
+ color?: string | undefined;
21482
+ is_dashed?: boolean | undefined;
21483
+ schematic_line_id?: string | undefined;
21484
+ }>, z.ZodObject<{
21485
+ type: z.ZodLiteral<"schematic_rect">;
21486
+ schematic_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
21487
+ schematic_component_id: z.ZodString;
21488
+ center: z.ZodObject<{
21489
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21490
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21491
+ }, "strip", z.ZodTypeAny, {
21492
+ x: number;
21493
+ y: number;
21494
+ }, {
21495
+ x: string | number;
21496
+ y: string | number;
21497
+ }>;
21498
+ width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21499
+ height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21500
+ rotation: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
21501
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
21502
+ color: z.ZodDefault<z.ZodString>;
21503
+ is_filled: z.ZodDefault<z.ZodBoolean>;
21504
+ fill_color: z.ZodOptional<z.ZodString>;
21505
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
21506
+ subcircuit_id: z.ZodOptional<z.ZodString>;
21507
+ }, "strip", z.ZodTypeAny, {
21508
+ type: "schematic_rect";
21509
+ width: number;
21510
+ height: number;
21511
+ center: {
21512
+ x: number;
21513
+ y: number;
21514
+ };
21515
+ rotation: number;
21516
+ is_filled: boolean;
21517
+ color: string;
21518
+ schematic_component_id: string;
21519
+ is_dashed: boolean;
21520
+ schematic_rect_id: string;
21521
+ subcircuit_id?: string | undefined;
21522
+ stroke_width?: number | null | undefined;
21523
+ fill_color?: string | undefined;
21524
+ }, {
21525
+ type: "schematic_rect";
21526
+ width: string | number;
21527
+ height: string | number;
21528
+ center: {
21529
+ x: string | number;
21530
+ y: string | number;
21531
+ };
21532
+ schematic_component_id: string;
21533
+ rotation?: string | number | undefined;
21534
+ subcircuit_id?: string | undefined;
21535
+ stroke_width?: string | number | null | undefined;
21536
+ is_filled?: boolean | undefined;
21537
+ color?: string | undefined;
21538
+ is_dashed?: boolean | undefined;
21539
+ fill_color?: string | undefined;
21540
+ schematic_rect_id?: string | undefined;
21541
+ }>, z.ZodObject<{
21542
+ type: z.ZodLiteral<"schematic_circle">;
21543
+ schematic_circle_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
21544
+ schematic_component_id: z.ZodString;
21545
+ center: z.ZodObject<{
21546
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21547
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21548
+ }, "strip", z.ZodTypeAny, {
21549
+ x: number;
21550
+ y: number;
21551
+ }, {
21552
+ x: string | number;
21553
+ y: string | number;
21554
+ }>;
21555
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21556
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
21557
+ color: z.ZodDefault<z.ZodString>;
21558
+ is_filled: z.ZodDefault<z.ZodBoolean>;
21559
+ fill_color: z.ZodOptional<z.ZodString>;
21560
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
21561
+ subcircuit_id: z.ZodOptional<z.ZodString>;
21562
+ }, "strip", z.ZodTypeAny, {
21563
+ type: "schematic_circle";
21564
+ center: {
21565
+ x: number;
21566
+ y: number;
21567
+ };
21568
+ radius: number;
21569
+ is_filled: boolean;
21570
+ color: string;
21571
+ schematic_component_id: string;
21572
+ is_dashed: boolean;
21573
+ schematic_circle_id: string;
21574
+ subcircuit_id?: string | undefined;
21575
+ stroke_width?: number | null | undefined;
21576
+ fill_color?: string | undefined;
21577
+ }, {
21578
+ type: "schematic_circle";
21579
+ center: {
21580
+ x: string | number;
21581
+ y: string | number;
21582
+ };
21583
+ radius: string | number;
21584
+ schematic_component_id: string;
21585
+ subcircuit_id?: string | undefined;
21586
+ stroke_width?: string | number | null | undefined;
21587
+ is_filled?: boolean | undefined;
21588
+ color?: string | undefined;
21589
+ is_dashed?: boolean | undefined;
21590
+ fill_color?: string | undefined;
21591
+ schematic_circle_id?: string | undefined;
21592
+ }>, z.ZodObject<{
21593
+ type: z.ZodLiteral<"schematic_arc">;
21594
+ schematic_arc_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
21595
+ schematic_component_id: z.ZodString;
21596
+ center: z.ZodObject<{
21597
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21598
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21599
+ }, "strip", z.ZodTypeAny, {
21600
+ x: number;
21601
+ y: number;
21602
+ }, {
21603
+ x: string | number;
21604
+ y: string | number;
21605
+ }>;
21606
+ radius: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21607
+ start_angle_degrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21608
+ end_angle_degrees: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
21609
+ direction: z.ZodDefault<z.ZodEnum<["clockwise", "counterclockwise"]>>;
21610
+ stroke_width: z.ZodOptional<z.ZodNullable<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>>;
21611
+ color: z.ZodDefault<z.ZodString>;
21612
+ is_dashed: z.ZodDefault<z.ZodBoolean>;
21613
+ subcircuit_id: z.ZodOptional<z.ZodString>;
21614
+ }, "strip", z.ZodTypeAny, {
21615
+ type: "schematic_arc";
21616
+ center: {
21617
+ x: number;
21618
+ y: number;
21619
+ };
21620
+ radius: number;
21621
+ color: string;
21622
+ schematic_component_id: string;
21623
+ is_dashed: boolean;
21624
+ direction: "clockwise" | "counterclockwise";
21625
+ schematic_arc_id: string;
21626
+ start_angle_degrees: number;
21627
+ end_angle_degrees: number;
21628
+ subcircuit_id?: string | undefined;
21629
+ stroke_width?: number | null | undefined;
21630
+ }, {
21631
+ type: "schematic_arc";
21632
+ center: {
21633
+ x: string | number;
21634
+ y: string | number;
21635
+ };
21636
+ radius: string | number;
21637
+ schematic_component_id: string;
21638
+ start_angle_degrees: string | number;
21639
+ end_angle_degrees: string | number;
21640
+ subcircuit_id?: string | undefined;
21641
+ stroke_width?: string | number | null | undefined;
21642
+ color?: string | undefined;
21643
+ is_dashed?: boolean | undefined;
21644
+ direction?: "clockwise" | "counterclockwise" | undefined;
21645
+ schematic_arc_id?: string | undefined;
20966
21646
  }>, z.ZodObject<{
20967
21647
  type: z.ZodLiteral<"schematic_component">;
20968
21648
  size: z.ZodObject<{
@@ -22106,4 +22786,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
22106
22786
  */
22107
22787
  type CircuitJson = AnyCircuitElement[];
22108
22788
 
22109
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, 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 PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, 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 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 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 PcbViaInput, type Point, type Point3, type PointWithBulge, type Position, type Ring, 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, 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 SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, current, distance, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_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_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, point, point3, point_with_bulge, port_arrangement, position, position3, resistance, ring, 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_group, schematic_layout_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };
22789
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, 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 PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbFootprintOverlapError, type PcbFootprintOverlapErrorInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, 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 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 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, 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 SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, brep_shape, cad_component, capacitance, circuit_json_footprint_load_error, current, distance, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, 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_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_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_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, 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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_voltage_source, size, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, visible_layer, voltage, wave_shape };