circuit-json 0.0.406 → 0.0.408

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
@@ -8846,10 +8846,12 @@ declare const pcb_note_text: z.ZodObject<{
8846
8846
  y: string | number;
8847
8847
  }>>;
8848
8848
  anchor_alignment: z.ZodDefault<z.ZodEnum<["center", "top_left", "top_right", "bottom_left", "bottom_right"]>>;
8849
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
8849
8850
  color: z.ZodOptional<z.ZodString>;
8850
8851
  }, "strip", z.ZodTypeAny, {
8851
8852
  type: "pcb_note_text";
8852
8853
  font: "tscircuit2024";
8854
+ layer: "top" | "bottom";
8853
8855
  anchor_position: {
8854
8856
  x: number;
8855
8857
  y: number;
@@ -8867,6 +8869,7 @@ declare const pcb_note_text: z.ZodObject<{
8867
8869
  type: "pcb_note_text";
8868
8870
  name?: string | undefined;
8869
8871
  font?: "tscircuit2024" | undefined;
8872
+ layer?: "top" | "bottom" | undefined;
8870
8873
  pcb_component_id?: string | undefined;
8871
8874
  subcircuit_id?: string | undefined;
8872
8875
  pcb_group_id?: string | undefined;
@@ -8896,6 +8899,7 @@ interface PcbNoteText {
8896
8899
  text?: string;
8897
8900
  anchor_position: Point;
8898
8901
  anchor_alignment: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
8902
+ layer: VisibleLayer;
8899
8903
  color?: string;
8900
8904
  }
8901
8905
 
@@ -8919,6 +8923,7 @@ declare const pcb_note_rect: z.ZodObject<{
8919
8923
  }>;
8920
8924
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8921
8925
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
8926
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
8922
8927
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8923
8928
  corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
8924
8929
  is_filled: z.ZodOptional<z.ZodBoolean>;
@@ -8929,6 +8934,7 @@ declare const pcb_note_rect: z.ZodObject<{
8929
8934
  type: "pcb_note_rect";
8930
8935
  width: number;
8931
8936
  height: number;
8937
+ layer: "top" | "bottom";
8932
8938
  center: {
8933
8939
  x: number;
8934
8940
  y: number;
@@ -8954,6 +8960,7 @@ declare const pcb_note_rect: z.ZodObject<{
8954
8960
  y: string | number;
8955
8961
  };
8956
8962
  name?: string | undefined;
8963
+ layer?: "top" | "bottom" | undefined;
8957
8964
  pcb_component_id?: string | undefined;
8958
8965
  subcircuit_id?: string | undefined;
8959
8966
  pcb_group_id?: string | undefined;
@@ -8981,6 +8988,7 @@ interface PcbNoteRect {
8981
8988
  center: Point;
8982
8989
  width: Length;
8983
8990
  height: Length;
8991
+ layer: VisibleLayer;
8984
8992
  stroke_width: Length;
8985
8993
  corner_radius?: Length;
8986
8994
  is_filled?: boolean;
@@ -9007,10 +9015,12 @@ declare const pcb_note_path: z.ZodObject<{
9007
9015
  x: string | number;
9008
9016
  y: string | number;
9009
9017
  }>, "many">;
9018
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
9010
9019
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9011
9020
  color: z.ZodOptional<z.ZodString>;
9012
9021
  }, "strip", z.ZodTypeAny, {
9013
9022
  type: "pcb_note_path";
9023
+ layer: "top" | "bottom";
9014
9024
  route: {
9015
9025
  x: number;
9016
9026
  y: number;
@@ -9030,6 +9040,7 @@ declare const pcb_note_path: z.ZodObject<{
9030
9040
  y: string | number;
9031
9041
  }[];
9032
9042
  name?: string | undefined;
9043
+ layer?: "top" | "bottom" | undefined;
9033
9044
  pcb_component_id?: string | undefined;
9034
9045
  subcircuit_id?: string | undefined;
9035
9046
  pcb_group_id?: string | undefined;
@@ -9051,6 +9062,7 @@ interface PcbNotePath {
9051
9062
  name?: string;
9052
9063
  text?: string;
9053
9064
  route: Point[];
9065
+ layer: VisibleLayer;
9054
9066
  stroke_width: Length;
9055
9067
  color?: string;
9056
9068
  }
@@ -9067,11 +9079,13 @@ declare const pcb_note_line: z.ZodObject<{
9067
9079
  y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9068
9080
  x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9069
9081
  y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
9082
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
9070
9083
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9071
9084
  color: z.ZodOptional<z.ZodString>;
9072
9085
  is_dashed: z.ZodOptional<z.ZodBoolean>;
9073
9086
  }, "strip", z.ZodTypeAny, {
9074
9087
  type: "pcb_note_line";
9088
+ layer: "top" | "bottom";
9075
9089
  stroke_width: number;
9076
9090
  x1: number;
9077
9091
  y1: number;
@@ -9092,6 +9106,7 @@ declare const pcb_note_line: z.ZodObject<{
9092
9106
  x2: string | number;
9093
9107
  y2: string | number;
9094
9108
  name?: string | undefined;
9109
+ layer?: "top" | "bottom" | undefined;
9095
9110
  pcb_component_id?: string | undefined;
9096
9111
  subcircuit_id?: string | undefined;
9097
9112
  pcb_group_id?: string | undefined;
@@ -9117,6 +9132,7 @@ interface PcbNoteLine {
9117
9132
  y1: Distance;
9118
9133
  x2: Distance;
9119
9134
  y2: Distance;
9135
+ layer: VisibleLayer;
9120
9136
  stroke_width: Distance;
9121
9137
  color?: string;
9122
9138
  is_dashed?: boolean;
@@ -9164,11 +9180,13 @@ declare const pcb_note_dimension: z.ZodObject<{
9164
9180
  }>>;
9165
9181
  font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
9166
9182
  font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9183
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
9167
9184
  color: z.ZodOptional<z.ZodString>;
9168
9185
  arrow_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
9169
9186
  }, "strip", z.ZodTypeAny, {
9170
9187
  type: "pcb_note_dimension";
9171
9188
  font: "tscircuit2024";
9189
+ layer: "top" | "bottom";
9172
9190
  font_size: number;
9173
9191
  from: {
9174
9192
  x: number;
@@ -9204,6 +9222,7 @@ declare const pcb_note_dimension: z.ZodObject<{
9204
9222
  };
9205
9223
  name?: string | undefined;
9206
9224
  font?: "tscircuit2024" | undefined;
9225
+ layer?: "top" | "bottom" | undefined;
9207
9226
  pcb_component_id?: string | undefined;
9208
9227
  subcircuit_id?: string | undefined;
9209
9228
  pcb_group_id?: string | undefined;
@@ -9241,6 +9260,7 @@ interface PcbNoteDimension {
9241
9260
  };
9242
9261
  font: "tscircuit2024";
9243
9262
  font_size: Length;
9263
+ layer: VisibleLayer;
9244
9264
  color?: string;
9245
9265
  arrow_size: Length;
9246
9266
  }
@@ -27073,6 +27093,45 @@ interface SourcePinMissingTraceWarning {
27073
27093
  subcircuit_id?: string;
27074
27094
  }
27075
27095
 
27096
+ declare const source_missing_manufacturer_part_number_warning: z.ZodObject<{
27097
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
27098
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
27099
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
27100
+ message: z.ZodString;
27101
+ source_component_id: z.ZodString;
27102
+ standard: z.ZodString;
27103
+ subcircuit_id: z.ZodOptional<z.ZodString>;
27104
+ }, "strip", z.ZodTypeAny, {
27105
+ message: string;
27106
+ type: "source_missing_manufacturer_part_number_warning";
27107
+ source_component_id: string;
27108
+ warning_type: "source_missing_manufacturer_part_number_warning";
27109
+ standard: string;
27110
+ source_missing_manufacturer_part_number_warning_id: string;
27111
+ subcircuit_id?: string | undefined;
27112
+ }, {
27113
+ message: string;
27114
+ type: "source_missing_manufacturer_part_number_warning";
27115
+ source_component_id: string;
27116
+ standard: string;
27117
+ subcircuit_id?: string | undefined;
27118
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
27119
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
27120
+ }>;
27121
+ type SourceMissingManufacturerPartNumberWarningInput = z.input<typeof source_missing_manufacturer_part_number_warning>;
27122
+ /**
27123
+ * Warning emitted when a standard connector is missing manufacturer part number
27124
+ */
27125
+ interface SourceMissingManufacturerPartNumberWarning {
27126
+ type: "source_missing_manufacturer_part_number_warning";
27127
+ source_missing_manufacturer_part_number_warning_id: string;
27128
+ warning_type: "source_missing_manufacturer_part_number_warning";
27129
+ message: string;
27130
+ source_component_id: string;
27131
+ standard: string;
27132
+ subcircuit_id?: string;
27133
+ }
27134
+
27076
27135
  declare const source_simple_voltage_probe: z.ZodObject<{
27077
27136
  type: z.ZodLiteral<"source_component">;
27078
27137
  source_component_id: z.ZodString;
@@ -28722,6 +28781,30 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
28722
28781
  subcircuit_id?: string | undefined;
28723
28782
  warning_type?: "source_pin_missing_trace_warning" | undefined;
28724
28783
  source_pin_missing_trace_warning_id?: string | undefined;
28784
+ }>, z.ZodObject<{
28785
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
28786
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
28787
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
28788
+ message: z.ZodString;
28789
+ source_component_id: z.ZodString;
28790
+ standard: z.ZodString;
28791
+ subcircuit_id: z.ZodOptional<z.ZodString>;
28792
+ }, "strip", z.ZodTypeAny, {
28793
+ message: string;
28794
+ type: "source_missing_manufacturer_part_number_warning";
28795
+ source_component_id: string;
28796
+ warning_type: "source_missing_manufacturer_part_number_warning";
28797
+ standard: string;
28798
+ source_missing_manufacturer_part_number_warning_id: string;
28799
+ subcircuit_id?: string | undefined;
28800
+ }, {
28801
+ message: string;
28802
+ type: "source_missing_manufacturer_part_number_warning";
28803
+ source_component_id: string;
28804
+ standard: string;
28805
+ subcircuit_id?: string | undefined;
28806
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
28807
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
28725
28808
  }>, z.ZodObject<{
28726
28809
  message: z.ZodString;
28727
28810
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -28749,7 +28832,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
28749
28832
  * Deprecated: use `AnySourceElement` instead
28750
28833
  */
28751
28834
  type AnySourceComponent = z.infer<typeof any_source_component>;
28752
- type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceI2cMisconfiguredError;
28835
+ type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleCurrentSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleConnector | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleOpAmp | SourceSimpleVoltageProbe | SourceSimpleVoltageSource | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceInvalidComponentPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning | SourceMissingManufacturerPartNumberWarning | SourceI2cMisconfiguredError;
28753
28836
 
28754
28837
  declare const source_port: z.ZodObject<{
28755
28838
  type: z.ZodLiteral<"source_port">;
@@ -33896,6 +33979,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
33896
33979
  subcircuit_id?: string | undefined;
33897
33980
  warning_type?: "source_pin_missing_trace_warning" | undefined;
33898
33981
  source_pin_missing_trace_warning_id?: string | undefined;
33982
+ }>, z.ZodObject<{
33983
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
33984
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
33985
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
33986
+ message: z.ZodString;
33987
+ source_component_id: z.ZodString;
33988
+ standard: z.ZodString;
33989
+ subcircuit_id: z.ZodOptional<z.ZodString>;
33990
+ }, "strip", z.ZodTypeAny, {
33991
+ message: string;
33992
+ type: "source_missing_manufacturer_part_number_warning";
33993
+ source_component_id: string;
33994
+ warning_type: "source_missing_manufacturer_part_number_warning";
33995
+ standard: string;
33996
+ source_missing_manufacturer_part_number_warning_id: string;
33997
+ subcircuit_id?: string | undefined;
33998
+ }, {
33999
+ message: string;
34000
+ type: "source_missing_manufacturer_part_number_warning";
34001
+ source_component_id: string;
34002
+ standard: string;
34003
+ subcircuit_id?: string | undefined;
34004
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
34005
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
33899
34006
  }>, z.ZodObject<{
33900
34007
  message: z.ZodString;
33901
34008
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -34955,6 +35062,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34955
35062
  subcircuit_id?: string | undefined;
34956
35063
  warning_type?: "source_pin_missing_trace_warning" | undefined;
34957
35064
  source_pin_missing_trace_warning_id?: string | undefined;
35065
+ }>, z.ZodObject<{
35066
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
35067
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
35068
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
35069
+ message: z.ZodString;
35070
+ source_component_id: z.ZodString;
35071
+ standard: z.ZodString;
35072
+ subcircuit_id: z.ZodOptional<z.ZodString>;
35073
+ }, "strip", z.ZodTypeAny, {
35074
+ message: string;
35075
+ type: "source_missing_manufacturer_part_number_warning";
35076
+ source_component_id: string;
35077
+ warning_type: "source_missing_manufacturer_part_number_warning";
35078
+ standard: string;
35079
+ source_missing_manufacturer_part_number_warning_id: string;
35080
+ subcircuit_id?: string | undefined;
35081
+ }, {
35082
+ message: string;
35083
+ type: "source_missing_manufacturer_part_number_warning";
35084
+ source_component_id: string;
35085
+ standard: string;
35086
+ subcircuit_id?: string | undefined;
35087
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
35088
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
34958
35089
  }>, z.ZodObject<{
34959
35090
  type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
34960
35091
  source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -40122,10 +40253,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40122
40253
  y: string | number;
40123
40254
  }>>;
40124
40255
  anchor_alignment: z.ZodDefault<z.ZodEnum<["center", "top_left", "top_right", "bottom_left", "bottom_right"]>>;
40256
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
40125
40257
  color: z.ZodOptional<z.ZodString>;
40126
40258
  }, "strip", z.ZodTypeAny, {
40127
40259
  type: "pcb_note_text";
40128
40260
  font: "tscircuit2024";
40261
+ layer: "top" | "bottom";
40129
40262
  anchor_position: {
40130
40263
  x: number;
40131
40264
  y: number;
@@ -40143,6 +40276,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40143
40276
  type: "pcb_note_text";
40144
40277
  name?: string | undefined;
40145
40278
  font?: "tscircuit2024" | undefined;
40279
+ layer?: "top" | "bottom" | undefined;
40146
40280
  pcb_component_id?: string | undefined;
40147
40281
  subcircuit_id?: string | undefined;
40148
40282
  pcb_group_id?: string | undefined;
@@ -40175,6 +40309,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40175
40309
  }>;
40176
40310
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
40177
40311
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
40312
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
40178
40313
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
40179
40314
  corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
40180
40315
  is_filled: z.ZodOptional<z.ZodBoolean>;
@@ -40185,6 +40320,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40185
40320
  type: "pcb_note_rect";
40186
40321
  width: number;
40187
40322
  height: number;
40323
+ layer: "top" | "bottom";
40188
40324
  center: {
40189
40325
  x: number;
40190
40326
  y: number;
@@ -40210,6 +40346,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40210
40346
  y: string | number;
40211
40347
  };
40212
40348
  name?: string | undefined;
40349
+ layer?: "top" | "bottom" | undefined;
40213
40350
  pcb_component_id?: string | undefined;
40214
40351
  subcircuit_id?: string | undefined;
40215
40352
  pcb_group_id?: string | undefined;
@@ -40239,10 +40376,12 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40239
40376
  x: string | number;
40240
40377
  y: string | number;
40241
40378
  }>, "many">;
40379
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
40242
40380
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
40243
40381
  color: z.ZodOptional<z.ZodString>;
40244
40382
  }, "strip", z.ZodTypeAny, {
40245
40383
  type: "pcb_note_path";
40384
+ layer: "top" | "bottom";
40246
40385
  route: {
40247
40386
  x: number;
40248
40387
  y: number;
@@ -40262,6 +40401,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40262
40401
  y: string | number;
40263
40402
  }[];
40264
40403
  name?: string | undefined;
40404
+ layer?: "top" | "bottom" | undefined;
40265
40405
  pcb_component_id?: string | undefined;
40266
40406
  subcircuit_id?: string | undefined;
40267
40407
  pcb_group_id?: string | undefined;
@@ -40281,11 +40421,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40281
40421
  y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
40282
40422
  x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
40283
40423
  y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
40424
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
40284
40425
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
40285
40426
  color: z.ZodOptional<z.ZodString>;
40286
40427
  is_dashed: z.ZodOptional<z.ZodBoolean>;
40287
40428
  }, "strip", z.ZodTypeAny, {
40288
40429
  type: "pcb_note_line";
40430
+ layer: "top" | "bottom";
40289
40431
  stroke_width: number;
40290
40432
  x1: number;
40291
40433
  y1: number;
@@ -40306,6 +40448,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40306
40448
  x2: string | number;
40307
40449
  y2: string | number;
40308
40450
  name?: string | undefined;
40451
+ layer?: "top" | "bottom" | undefined;
40309
40452
  pcb_component_id?: string | undefined;
40310
40453
  subcircuit_id?: string | undefined;
40311
40454
  pcb_group_id?: string | undefined;
@@ -40356,11 +40499,13 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40356
40499
  }>>;
40357
40500
  font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
40358
40501
  font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
40502
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
40359
40503
  color: z.ZodOptional<z.ZodString>;
40360
40504
  arrow_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
40361
40505
  }, "strip", z.ZodTypeAny, {
40362
40506
  type: "pcb_note_dimension";
40363
40507
  font: "tscircuit2024";
40508
+ layer: "top" | "bottom";
40364
40509
  font_size: number;
40365
40510
  from: {
40366
40511
  x: number;
@@ -40396,6 +40541,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40396
40541
  };
40397
40542
  name?: string | undefined;
40398
40543
  font?: "tscircuit2024" | undefined;
40544
+ layer?: "top" | "bottom" | undefined;
40399
40545
  pcb_component_id?: string | undefined;
40400
40546
  subcircuit_id?: string | undefined;
40401
40547
  pcb_group_id?: string | undefined;
@@ -51679,6 +51825,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
51679
51825
  subcircuit_id?: string | undefined;
51680
51826
  warning_type?: "source_pin_missing_trace_warning" | undefined;
51681
51827
  source_pin_missing_trace_warning_id?: string | undefined;
51828
+ }>, z.ZodObject<{
51829
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
51830
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
51831
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
51832
+ message: z.ZodString;
51833
+ source_component_id: z.ZodString;
51834
+ standard: z.ZodString;
51835
+ subcircuit_id: z.ZodOptional<z.ZodString>;
51836
+ }, "strip", z.ZodTypeAny, {
51837
+ message: string;
51838
+ type: "source_missing_manufacturer_part_number_warning";
51839
+ source_component_id: string;
51840
+ warning_type: "source_missing_manufacturer_part_number_warning";
51841
+ standard: string;
51842
+ source_missing_manufacturer_part_number_warning_id: string;
51843
+ subcircuit_id?: string | undefined;
51844
+ }, {
51845
+ message: string;
51846
+ type: "source_missing_manufacturer_part_number_warning";
51847
+ source_component_id: string;
51848
+ standard: string;
51849
+ subcircuit_id?: string | undefined;
51850
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
51851
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
51682
51852
  }>, z.ZodObject<{
51683
51853
  message: z.ZodString;
51684
51854
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -52738,6 +52908,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52738
52908
  subcircuit_id?: string | undefined;
52739
52909
  warning_type?: "source_pin_missing_trace_warning" | undefined;
52740
52910
  source_pin_missing_trace_warning_id?: string | undefined;
52911
+ }>, z.ZodObject<{
52912
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
52913
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
52914
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
52915
+ message: z.ZodString;
52916
+ source_component_id: z.ZodString;
52917
+ standard: z.ZodString;
52918
+ subcircuit_id: z.ZodOptional<z.ZodString>;
52919
+ }, "strip", z.ZodTypeAny, {
52920
+ message: string;
52921
+ type: "source_missing_manufacturer_part_number_warning";
52922
+ source_component_id: string;
52923
+ warning_type: "source_missing_manufacturer_part_number_warning";
52924
+ standard: string;
52925
+ source_missing_manufacturer_part_number_warning_id: string;
52926
+ subcircuit_id?: string | undefined;
52927
+ }, {
52928
+ message: string;
52929
+ type: "source_missing_manufacturer_part_number_warning";
52930
+ source_component_id: string;
52931
+ standard: string;
52932
+ subcircuit_id?: string | undefined;
52933
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
52934
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
52741
52935
  }>, z.ZodObject<{
52742
52936
  type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
52743
52937
  source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -57905,10 +58099,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57905
58099
  y: string | number;
57906
58100
  }>>;
57907
58101
  anchor_alignment: z.ZodDefault<z.ZodEnum<["center", "top_left", "top_right", "bottom_left", "bottom_right"]>>;
58102
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
57908
58103
  color: z.ZodOptional<z.ZodString>;
57909
58104
  }, "strip", z.ZodTypeAny, {
57910
58105
  type: "pcb_note_text";
57911
58106
  font: "tscircuit2024";
58107
+ layer: "top" | "bottom";
57912
58108
  anchor_position: {
57913
58109
  x: number;
57914
58110
  y: number;
@@ -57926,6 +58122,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57926
58122
  type: "pcb_note_text";
57927
58123
  name?: string | undefined;
57928
58124
  font?: "tscircuit2024" | undefined;
58125
+ layer?: "top" | "bottom" | undefined;
57929
58126
  pcb_component_id?: string | undefined;
57930
58127
  subcircuit_id?: string | undefined;
57931
58128
  pcb_group_id?: string | undefined;
@@ -57958,6 +58155,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57958
58155
  }>;
57959
58156
  width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
57960
58157
  height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
58158
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
57961
58159
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57962
58160
  corner_radius: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
57963
58161
  is_filled: z.ZodOptional<z.ZodBoolean>;
@@ -57968,6 +58166,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57968
58166
  type: "pcb_note_rect";
57969
58167
  width: number;
57970
58168
  height: number;
58169
+ layer: "top" | "bottom";
57971
58170
  center: {
57972
58171
  x: number;
57973
58172
  y: number;
@@ -57993,6 +58192,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57993
58192
  y: string | number;
57994
58193
  };
57995
58194
  name?: string | undefined;
58195
+ layer?: "top" | "bottom" | undefined;
57996
58196
  pcb_component_id?: string | undefined;
57997
58197
  subcircuit_id?: string | undefined;
57998
58198
  pcb_group_id?: string | undefined;
@@ -58022,10 +58222,12 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58022
58222
  x: string | number;
58023
58223
  y: string | number;
58024
58224
  }>, "many">;
58225
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
58025
58226
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
58026
58227
  color: z.ZodOptional<z.ZodString>;
58027
58228
  }, "strip", z.ZodTypeAny, {
58028
58229
  type: "pcb_note_path";
58230
+ layer: "top" | "bottom";
58029
58231
  route: {
58030
58232
  x: number;
58031
58233
  y: number;
@@ -58045,6 +58247,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58045
58247
  y: string | number;
58046
58248
  }[];
58047
58249
  name?: string | undefined;
58250
+ layer?: "top" | "bottom" | undefined;
58048
58251
  pcb_component_id?: string | undefined;
58049
58252
  subcircuit_id?: string | undefined;
58050
58253
  pcb_group_id?: string | undefined;
@@ -58064,11 +58267,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58064
58267
  y1: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
58065
58268
  x2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
58066
58269
  y2: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
58270
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
58067
58271
  stroke_width: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
58068
58272
  color: z.ZodOptional<z.ZodString>;
58069
58273
  is_dashed: z.ZodOptional<z.ZodBoolean>;
58070
58274
  }, "strip", z.ZodTypeAny, {
58071
58275
  type: "pcb_note_line";
58276
+ layer: "top" | "bottom";
58072
58277
  stroke_width: number;
58073
58278
  x1: number;
58074
58279
  y1: number;
@@ -58089,6 +58294,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58089
58294
  x2: string | number;
58090
58295
  y2: string | number;
58091
58296
  name?: string | undefined;
58297
+ layer?: "top" | "bottom" | undefined;
58092
58298
  pcb_component_id?: string | undefined;
58093
58299
  subcircuit_id?: string | undefined;
58094
58300
  pcb_group_id?: string | undefined;
@@ -58139,11 +58345,13 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58139
58345
  }>>;
58140
58346
  font: z.ZodDefault<z.ZodLiteral<"tscircuit2024">>;
58141
58347
  font_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
58348
+ layer: z.ZodDefault<z.ZodEnum<["top", "bottom"]>>;
58142
58349
  color: z.ZodOptional<z.ZodString>;
58143
58350
  arrow_size: z.ZodDefault<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
58144
58351
  }, "strip", z.ZodTypeAny, {
58145
58352
  type: "pcb_note_dimension";
58146
58353
  font: "tscircuit2024";
58354
+ layer: "top" | "bottom";
58147
58355
  font_size: number;
58148
58356
  from: {
58149
58357
  x: number;
@@ -58179,6 +58387,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58179
58387
  };
58180
58388
  name?: string | undefined;
58181
58389
  font?: "tscircuit2024" | undefined;
58390
+ layer?: "top" | "bottom" | undefined;
58182
58391
  pcb_component_id?: string | undefined;
58183
58392
  subcircuit_id?: string | undefined;
58184
58393
  pcb_group_id?: string | undefined;
@@ -67838,4 +68047,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
67838
68047
  */
67839
68048
  type CircuitJson = AnyCircuitElement[];
67840
68049
 
67841
- export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type 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 SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type 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, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_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_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_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 };
68050
+ export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type Asset, type AssetInput, type BRepShape, type BaseCircuitJsonError, type BaseCircuitJsonErrorInput, type CadComponent, type CadComponentAnchorAlignment, type CadComponentInput, type CadModelAxisDirection, type CadModelFormat, type CircuitJson, type CircuitJsonError, type CircuitJsonFootprintLoadError, type CircuitJsonFootprintLoadErrorInput, type Distance, type ExperimentType, type ExternalFootprintLoadError, type ExternalFootprintLoadErrorInput, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type KicadAt, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCopperText, type PCBCourtyardOutline, type PCBCourtyardPolygon, type PCBCourtyardRect, type PCBFabricationNoteDimension, type PCBFabricationNotePath, type PCBFabricationNoteRect, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPanel, type PCBPanelizationPlacementError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBTraceMissingError, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbComponentInvalidLayerError, type PcbComponentInvalidLayerErrorInput, type PcbComponentMetadata, type PcbComponentNotOnBoardEdgeError, type PcbComponentNotOnBoardEdgeErrorInput, type PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbConnectorNotInAccessibleOrientationWarning, type PcbConnectorNotInAccessibleOrientationWarningInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCopperText, type PcbCopperTextInput, type PcbCourtyardCircle, type PcbCourtyardCircleInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardOverlapError, type PcbCourtyardOverlapErrorInput, type 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 SourceComponentPinsUnderspecifiedWarning, type SourceComponentPinsUnderspecifiedWarningInput, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceInvalidComponentPropertyError, type SourceInvalidComponentPropertyErrorInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingManufacturerPartNumberWarning, type SourceMissingManufacturerPartNumberWarningInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourceNoGroundPinDefinedWarning, type SourceNoGroundPinDefinedWarningInput, type SourceNoPowerPinDefinedWarning, type SourceNoPowerPinDefinedWarningInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinAttributes, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePinMustBeConnectedError, type SourcePinMustBeConnectedErrorInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type 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, cadModelDefaultDirectionMap, cad_component, cad_model_axis_directions, cad_model_formats, capacitance, circuit_json_footprint_load_error, current, distance, duration_ms, experiment_type, external_footprint_load_error, frequency, getZodPrefixedIdWithDefault, inductance, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layer_ref, layer_string, length, ms, ninePointAnchor, pcbRenderLayer, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_not_on_board_edge_error, pcb_component_outside_board_error, pcb_connector_not_in_accessible_orientation_warning, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_copper_text, pcb_courtyard_circle, pcb_courtyard_outline, pcb_courtyard_overlap_error, pcb_courtyard_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_component_pins_underspecified_warning, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_invalid_component_property_error, source_manually_placed_via, source_missing_manufacturer_part_number_warning, source_missing_property_error, source_net, source_no_ground_pin_defined_warning, source_no_power_pin_defined_warning, source_pcb_ground_plane, source_pin_attributes, source_pin_missing_trace_warning, source_pin_must_be_connected_error, source_port, source_project_metadata, source_property_ignored_warning, source_simple_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 };