circuit-json 0.0.407 → 0.0.409

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
@@ -7008,6 +7008,72 @@ type PCBTrace = PcbTrace;
7008
7008
  */
7009
7009
  type PCBTraceInput = PcbTraceInput;
7010
7010
 
7011
+ declare const pcb_trace_warning: z.ZodObject<{
7012
+ type: z.ZodLiteral<"pcb_trace_warning">;
7013
+ pcb_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
7014
+ warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_warning">>;
7015
+ message: z.ZodString;
7016
+ center: z.ZodOptional<z.ZodObject<{
7017
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7018
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
7019
+ }, "strip", z.ZodTypeAny, {
7020
+ x: number;
7021
+ y: number;
7022
+ }, {
7023
+ x: string | number;
7024
+ y: string | number;
7025
+ }>>;
7026
+ pcb_trace_id: z.ZodString;
7027
+ source_trace_id: z.ZodString;
7028
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
7029
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
7030
+ subcircuit_id: z.ZodOptional<z.ZodString>;
7031
+ }, "strip", z.ZodTypeAny, {
7032
+ message: string;
7033
+ type: "pcb_trace_warning";
7034
+ source_trace_id: string;
7035
+ pcb_trace_id: string;
7036
+ pcb_trace_warning_id: string;
7037
+ warning_type: "pcb_trace_warning";
7038
+ pcb_component_ids: string[];
7039
+ pcb_port_ids: string[];
7040
+ center?: {
7041
+ x: number;
7042
+ y: number;
7043
+ } | undefined;
7044
+ subcircuit_id?: string | undefined;
7045
+ }, {
7046
+ message: string;
7047
+ type: "pcb_trace_warning";
7048
+ source_trace_id: string;
7049
+ pcb_trace_id: string;
7050
+ pcb_component_ids: string[];
7051
+ pcb_port_ids: string[];
7052
+ center?: {
7053
+ x: string | number;
7054
+ y: string | number;
7055
+ } | undefined;
7056
+ subcircuit_id?: string | undefined;
7057
+ pcb_trace_warning_id?: string | undefined;
7058
+ warning_type?: "pcb_trace_warning" | undefined;
7059
+ }>;
7060
+ type PcbTraceWarningInput = z.input<typeof pcb_trace_warning>;
7061
+ /**
7062
+ * Defines a trace warning on the PCB
7063
+ */
7064
+ interface PcbTraceWarning {
7065
+ type: "pcb_trace_warning";
7066
+ pcb_trace_warning_id: string;
7067
+ warning_type: "pcb_trace_warning";
7068
+ message: string;
7069
+ center?: Point;
7070
+ pcb_trace_id: string;
7071
+ source_trace_id: string;
7072
+ pcb_component_ids: string[];
7073
+ pcb_port_ids: string[];
7074
+ subcircuit_id?: string;
7075
+ }
7076
+
7011
7077
  declare const base_circuit_json_error: z.ZodObject<{
7012
7078
  error_type: z.ZodString;
7013
7079
  message: z.ZodString;
@@ -7055,10 +7121,10 @@ declare const pcb_trace_error: z.ZodObject<{
7055
7121
  type: "pcb_trace_error";
7056
7122
  source_trace_id: string;
7057
7123
  pcb_trace_id: string;
7058
- error_type: "pcb_trace_error";
7059
- pcb_trace_error_id: string;
7060
7124
  pcb_component_ids: string[];
7061
7125
  pcb_port_ids: string[];
7126
+ error_type: "pcb_trace_error";
7127
+ pcb_trace_error_id: string;
7062
7128
  center?: {
7063
7129
  x: number;
7064
7130
  y: number;
@@ -7126,9 +7192,9 @@ declare const pcb_trace_missing_error: z.ZodObject<{
7126
7192
  message: string;
7127
7193
  type: "pcb_trace_missing_error";
7128
7194
  source_trace_id: string;
7129
- error_type: "pcb_trace_missing_error";
7130
7195
  pcb_component_ids: string[];
7131
7196
  pcb_port_ids: string[];
7197
+ error_type: "pcb_trace_missing_error";
7132
7198
  pcb_trace_missing_error_id: string;
7133
7199
  center?: {
7134
7200
  x: number;
@@ -7182,8 +7248,8 @@ declare const pcb_port_not_matched_error: z.ZodObject<{
7182
7248
  }, "strip", z.ZodTypeAny, {
7183
7249
  message: string;
7184
7250
  type: "pcb_port_not_matched_error";
7185
- error_type: "pcb_port_not_matched_error";
7186
7251
  pcb_component_ids: string[];
7252
+ error_type: "pcb_port_not_matched_error";
7187
7253
  pcb_error_id: string;
7188
7254
  subcircuit_id?: string | undefined;
7189
7255
  is_fatal?: boolean | undefined;
@@ -7225,9 +7291,9 @@ declare const pcb_port_not_connected_error: z.ZodObject<{
7225
7291
  }, "strip", z.ZodTypeAny, {
7226
7292
  message: string;
7227
7293
  type: "pcb_port_not_connected_error";
7228
- error_type: "pcb_port_not_connected_error";
7229
7294
  pcb_component_ids: string[];
7230
7295
  pcb_port_ids: string[];
7296
+ error_type: "pcb_port_not_connected_error";
7231
7297
  pcb_port_not_connected_error_id: string;
7232
7298
  subcircuit_id?: string | undefined;
7233
7299
  is_fatal?: boolean | undefined;
@@ -9320,8 +9386,8 @@ declare const pcb_courtyard_overlap_error: z.ZodObject<{
9320
9386
  }, "strip", z.ZodTypeAny, {
9321
9387
  message: string;
9322
9388
  type: "pcb_courtyard_overlap_error";
9323
- error_type: "pcb_courtyard_overlap_error";
9324
9389
  pcb_component_ids: [string, string];
9390
+ error_type: "pcb_courtyard_overlap_error";
9325
9391
  pcb_error_id: string;
9326
9392
  is_fatal?: boolean | undefined;
9327
9393
  }, {
@@ -10282,8 +10348,8 @@ declare const pcb_manual_edit_conflict_warning: z.ZodObject<{
10282
10348
  type: "pcb_manual_edit_conflict_warning";
10283
10349
  pcb_component_id: string;
10284
10350
  source_component_id: string;
10285
- pcb_manual_edit_conflict_warning_id: string;
10286
10351
  warning_type: "pcb_manual_edit_conflict_warning";
10352
+ pcb_manual_edit_conflict_warning_id: string;
10287
10353
  subcircuit_id?: string | undefined;
10288
10354
  pcb_group_id?: string | undefined;
10289
10355
  }, {
@@ -10293,8 +10359,8 @@ declare const pcb_manual_edit_conflict_warning: z.ZodObject<{
10293
10359
  source_component_id: string;
10294
10360
  subcircuit_id?: string | undefined;
10295
10361
  pcb_group_id?: string | undefined;
10296
- pcb_manual_edit_conflict_warning_id?: string | undefined;
10297
10362
  warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
10363
+ pcb_manual_edit_conflict_warning_id?: string | undefined;
10298
10364
  }>;
10299
10365
  type PcbManualEditConflictWarningInput = z.input<typeof pcb_manual_edit_conflict_warning>;
10300
10366
  /**
@@ -10343,8 +10409,8 @@ declare const pcb_connector_not_in_accessible_orientation_warning: z.ZodObject<{
10343
10409
  recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
10344
10410
  source_component_id?: string | undefined;
10345
10411
  subcircuit_id?: string | undefined;
10346
- pcb_board_id?: string | undefined;
10347
10412
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
10413
+ pcb_board_id?: string | undefined;
10348
10414
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
10349
10415
  }>;
10350
10416
  type PcbConnectorNotInAccessibleOrientationWarningInput = z.input<typeof pcb_connector_not_in_accessible_orientation_warning>;
@@ -11709,7 +11775,7 @@ interface PcbCourtyardCircle {
11709
11775
  color?: string;
11710
11776
  }
11711
11777
 
11712
- type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
11778
+ type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceWarning | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbConnectorNotInAccessibleOrientationWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | PcbPlacementError | PcbPanelizationPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenPill | PcbCopperText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbSilkscreenOval | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentNotOnBoardEdgeError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline | PcbCourtyardPolygon | PcbCourtyardCircle;
11713
11779
 
11714
11780
  interface SchematicBox {
11715
11781
  type: "schematic_box";
@@ -27093,6 +27159,45 @@ interface SourcePinMissingTraceWarning {
27093
27159
  subcircuit_id?: string;
27094
27160
  }
27095
27161
 
27162
+ declare const source_missing_manufacturer_part_number_warning: z.ZodObject<{
27163
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
27164
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
27165
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
27166
+ message: z.ZodString;
27167
+ source_component_id: z.ZodString;
27168
+ standard: z.ZodString;
27169
+ subcircuit_id: z.ZodOptional<z.ZodString>;
27170
+ }, "strip", z.ZodTypeAny, {
27171
+ message: string;
27172
+ type: "source_missing_manufacturer_part_number_warning";
27173
+ source_component_id: string;
27174
+ warning_type: "source_missing_manufacturer_part_number_warning";
27175
+ standard: string;
27176
+ source_missing_manufacturer_part_number_warning_id: string;
27177
+ subcircuit_id?: string | undefined;
27178
+ }, {
27179
+ message: string;
27180
+ type: "source_missing_manufacturer_part_number_warning";
27181
+ source_component_id: string;
27182
+ standard: string;
27183
+ subcircuit_id?: string | undefined;
27184
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
27185
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
27186
+ }>;
27187
+ type SourceMissingManufacturerPartNumberWarningInput = z.input<typeof source_missing_manufacturer_part_number_warning>;
27188
+ /**
27189
+ * Warning emitted when a standard connector is missing manufacturer part number
27190
+ */
27191
+ interface SourceMissingManufacturerPartNumberWarning {
27192
+ type: "source_missing_manufacturer_part_number_warning";
27193
+ source_missing_manufacturer_part_number_warning_id: string;
27194
+ warning_type: "source_missing_manufacturer_part_number_warning";
27195
+ message: string;
27196
+ source_component_id: string;
27197
+ standard: string;
27198
+ subcircuit_id?: string;
27199
+ }
27200
+
27096
27201
  declare const source_simple_voltage_probe: z.ZodObject<{
27097
27202
  type: z.ZodLiteral<"source_component">;
27098
27203
  source_component_id: z.ZodString;
@@ -28742,6 +28847,30 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
28742
28847
  subcircuit_id?: string | undefined;
28743
28848
  warning_type?: "source_pin_missing_trace_warning" | undefined;
28744
28849
  source_pin_missing_trace_warning_id?: string | undefined;
28850
+ }>, z.ZodObject<{
28851
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
28852
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
28853
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
28854
+ message: z.ZodString;
28855
+ source_component_id: z.ZodString;
28856
+ standard: z.ZodString;
28857
+ subcircuit_id: z.ZodOptional<z.ZodString>;
28858
+ }, "strip", z.ZodTypeAny, {
28859
+ message: string;
28860
+ type: "source_missing_manufacturer_part_number_warning";
28861
+ source_component_id: string;
28862
+ warning_type: "source_missing_manufacturer_part_number_warning";
28863
+ standard: string;
28864
+ source_missing_manufacturer_part_number_warning_id: string;
28865
+ subcircuit_id?: string | undefined;
28866
+ }, {
28867
+ message: string;
28868
+ type: "source_missing_manufacturer_part_number_warning";
28869
+ source_component_id: string;
28870
+ standard: string;
28871
+ subcircuit_id?: string | undefined;
28872
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
28873
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
28745
28874
  }>, z.ZodObject<{
28746
28875
  message: z.ZodString;
28747
28876
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -28769,7 +28898,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
28769
28898
  * Deprecated: use `AnySourceElement` instead
28770
28899
  */
28771
28900
  type AnySourceComponent = z.infer<typeof any_source_component>;
28772
- 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;
28901
+ 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;
28773
28902
 
28774
28903
  declare const source_port: z.ZodObject<{
28775
28904
  type: z.ZodLiteral<"source_port">;
@@ -33916,6 +34045,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
33916
34045
  subcircuit_id?: string | undefined;
33917
34046
  warning_type?: "source_pin_missing_trace_warning" | undefined;
33918
34047
  source_pin_missing_trace_warning_id?: string | undefined;
34048
+ }>, z.ZodObject<{
34049
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
34050
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
34051
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
34052
+ message: z.ZodString;
34053
+ source_component_id: z.ZodString;
34054
+ standard: z.ZodString;
34055
+ subcircuit_id: z.ZodOptional<z.ZodString>;
34056
+ }, "strip", z.ZodTypeAny, {
34057
+ message: string;
34058
+ type: "source_missing_manufacturer_part_number_warning";
34059
+ source_component_id: string;
34060
+ warning_type: "source_missing_manufacturer_part_number_warning";
34061
+ standard: string;
34062
+ source_missing_manufacturer_part_number_warning_id: string;
34063
+ subcircuit_id?: string | undefined;
34064
+ }, {
34065
+ message: string;
34066
+ type: "source_missing_manufacturer_part_number_warning";
34067
+ source_component_id: string;
34068
+ standard: string;
34069
+ subcircuit_id?: string | undefined;
34070
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
34071
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
33919
34072
  }>, z.ZodObject<{
33920
34073
  message: z.ZodString;
33921
34074
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -34975,6 +35128,30 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
34975
35128
  subcircuit_id?: string | undefined;
34976
35129
  warning_type?: "source_pin_missing_trace_warning" | undefined;
34977
35130
  source_pin_missing_trace_warning_id?: string | undefined;
35131
+ }>, z.ZodObject<{
35132
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
35133
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
35134
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
35135
+ message: z.ZodString;
35136
+ source_component_id: z.ZodString;
35137
+ standard: z.ZodString;
35138
+ subcircuit_id: z.ZodOptional<z.ZodString>;
35139
+ }, "strip", z.ZodTypeAny, {
35140
+ message: string;
35141
+ type: "source_missing_manufacturer_part_number_warning";
35142
+ source_component_id: string;
35143
+ warning_type: "source_missing_manufacturer_part_number_warning";
35144
+ standard: string;
35145
+ source_missing_manufacturer_part_number_warning_id: string;
35146
+ subcircuit_id?: string | undefined;
35147
+ }, {
35148
+ message: string;
35149
+ type: "source_missing_manufacturer_part_number_warning";
35150
+ source_component_id: string;
35151
+ standard: string;
35152
+ subcircuit_id?: string | undefined;
35153
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
35154
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
34978
35155
  }>, z.ZodObject<{
34979
35156
  type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
34980
35157
  source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -37142,8 +37319,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37142
37319
  type: "pcb_manual_edit_conflict_warning";
37143
37320
  pcb_component_id: string;
37144
37321
  source_component_id: string;
37145
- pcb_manual_edit_conflict_warning_id: string;
37146
37322
  warning_type: "pcb_manual_edit_conflict_warning";
37323
+ pcb_manual_edit_conflict_warning_id: string;
37147
37324
  subcircuit_id?: string | undefined;
37148
37325
  pcb_group_id?: string | undefined;
37149
37326
  }, {
@@ -37153,8 +37330,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37153
37330
  source_component_id: string;
37154
37331
  subcircuit_id?: string | undefined;
37155
37332
  pcb_group_id?: string | undefined;
37156
- pcb_manual_edit_conflict_warning_id?: string | undefined;
37157
37333
  warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
37334
+ pcb_manual_edit_conflict_warning_id?: string | undefined;
37158
37335
  }>, z.ZodObject<{
37159
37336
  type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
37160
37337
  pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -37185,8 +37362,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37185
37362
  recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
37186
37363
  source_component_id?: string | undefined;
37187
37364
  subcircuit_id?: string | undefined;
37188
- pcb_board_id?: string | undefined;
37189
37365
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
37366
+ pcb_board_id?: string | undefined;
37190
37367
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
37191
37368
  }>, z.ZodUnion<[z.ZodObject<{
37192
37369
  type: z.ZodLiteral<"pcb_plated_hole">;
@@ -38034,6 +38211,54 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
38034
38211
  should_round_corners?: boolean | undefined;
38035
38212
  trace_length?: number | undefined;
38036
38213
  highlight_color?: string | undefined;
38214
+ }>, z.ZodObject<{
38215
+ type: z.ZodLiteral<"pcb_trace_warning">;
38216
+ pcb_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
38217
+ warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_warning">>;
38218
+ message: z.ZodString;
38219
+ center: z.ZodOptional<z.ZodObject<{
38220
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
38221
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
38222
+ }, "strip", z.ZodTypeAny, {
38223
+ x: number;
38224
+ y: number;
38225
+ }, {
38226
+ x: string | number;
38227
+ y: string | number;
38228
+ }>>;
38229
+ pcb_trace_id: z.ZodString;
38230
+ source_trace_id: z.ZodString;
38231
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
38232
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
38233
+ subcircuit_id: z.ZodOptional<z.ZodString>;
38234
+ }, "strip", z.ZodTypeAny, {
38235
+ message: string;
38236
+ type: "pcb_trace_warning";
38237
+ source_trace_id: string;
38238
+ pcb_trace_id: string;
38239
+ pcb_trace_warning_id: string;
38240
+ warning_type: "pcb_trace_warning";
38241
+ pcb_component_ids: string[];
38242
+ pcb_port_ids: string[];
38243
+ center?: {
38244
+ x: number;
38245
+ y: number;
38246
+ } | undefined;
38247
+ subcircuit_id?: string | undefined;
38248
+ }, {
38249
+ message: string;
38250
+ type: "pcb_trace_warning";
38251
+ source_trace_id: string;
38252
+ pcb_trace_id: string;
38253
+ pcb_component_ids: string[];
38254
+ pcb_port_ids: string[];
38255
+ center?: {
38256
+ x: string | number;
38257
+ y: string | number;
38258
+ } | undefined;
38259
+ subcircuit_id?: string | undefined;
38260
+ pcb_trace_warning_id?: string | undefined;
38261
+ warning_type?: "pcb_trace_warning" | undefined;
38037
38262
  }>, z.ZodObject<{
38038
38263
  type: z.ZodLiteral<"pcb_via">;
38039
38264
  pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -39627,10 +39852,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39627
39852
  type: "pcb_trace_error";
39628
39853
  source_trace_id: string;
39629
39854
  pcb_trace_id: string;
39630
- error_type: "pcb_trace_error";
39631
- pcb_trace_error_id: string;
39632
39855
  pcb_component_ids: string[];
39633
39856
  pcb_port_ids: string[];
39857
+ error_type: "pcb_trace_error";
39858
+ pcb_trace_error_id: string;
39634
39859
  center?: {
39635
39860
  x: number;
39636
39861
  y: number;
@@ -39677,9 +39902,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39677
39902
  message: string;
39678
39903
  type: "pcb_trace_missing_error";
39679
39904
  source_trace_id: string;
39680
- error_type: "pcb_trace_missing_error";
39681
39905
  pcb_component_ids: string[];
39682
39906
  pcb_port_ids: string[];
39907
+ error_type: "pcb_trace_missing_error";
39683
39908
  pcb_trace_missing_error_id: string;
39684
39909
  center?: {
39685
39910
  x: number;
@@ -39763,8 +39988,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39763
39988
  }, "strip", z.ZodTypeAny, {
39764
39989
  message: string;
39765
39990
  type: "pcb_port_not_matched_error";
39766
- error_type: "pcb_port_not_matched_error";
39767
39991
  pcb_component_ids: string[];
39992
+ error_type: "pcb_port_not_matched_error";
39768
39993
  pcb_error_id: string;
39769
39994
  subcircuit_id?: string | undefined;
39770
39995
  is_fatal?: boolean | undefined;
@@ -39789,9 +40014,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39789
40014
  }, "strip", z.ZodTypeAny, {
39790
40015
  message: string;
39791
40016
  type: "pcb_port_not_connected_error";
39792
- error_type: "pcb_port_not_connected_error";
39793
40017
  pcb_component_ids: string[];
39794
40018
  pcb_port_ids: string[];
40019
+ error_type: "pcb_port_not_connected_error";
39795
40020
  pcb_port_not_connected_error_id: string;
39796
40021
  subcircuit_id?: string | undefined;
39797
40022
  is_fatal?: boolean | undefined;
@@ -40509,8 +40734,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40509
40734
  }, "strip", z.ZodTypeAny, {
40510
40735
  message: string;
40511
40736
  type: "pcb_courtyard_overlap_error";
40512
- error_type: "pcb_courtyard_overlap_error";
40513
40737
  pcb_component_ids: [string, string];
40738
+ error_type: "pcb_courtyard_overlap_error";
40514
40739
  pcb_error_id: string;
40515
40740
  is_fatal?: boolean | undefined;
40516
40741
  }, {
@@ -51714,6 +51939,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
51714
51939
  subcircuit_id?: string | undefined;
51715
51940
  warning_type?: "source_pin_missing_trace_warning" | undefined;
51716
51941
  source_pin_missing_trace_warning_id?: string | undefined;
51942
+ }>, z.ZodObject<{
51943
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
51944
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
51945
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
51946
+ message: z.ZodString;
51947
+ source_component_id: z.ZodString;
51948
+ standard: z.ZodString;
51949
+ subcircuit_id: z.ZodOptional<z.ZodString>;
51950
+ }, "strip", z.ZodTypeAny, {
51951
+ message: string;
51952
+ type: "source_missing_manufacturer_part_number_warning";
51953
+ source_component_id: string;
51954
+ warning_type: "source_missing_manufacturer_part_number_warning";
51955
+ standard: string;
51956
+ source_missing_manufacturer_part_number_warning_id: string;
51957
+ subcircuit_id?: string | undefined;
51958
+ }, {
51959
+ message: string;
51960
+ type: "source_missing_manufacturer_part_number_warning";
51961
+ source_component_id: string;
51962
+ standard: string;
51963
+ subcircuit_id?: string | undefined;
51964
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
51965
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
51717
51966
  }>, z.ZodObject<{
51718
51967
  message: z.ZodString;
51719
51968
  is_fatal: z.ZodOptional<z.ZodBoolean>;
@@ -52773,6 +53022,30 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
52773
53022
  subcircuit_id?: string | undefined;
52774
53023
  warning_type?: "source_pin_missing_trace_warning" | undefined;
52775
53024
  source_pin_missing_trace_warning_id?: string | undefined;
53025
+ }>, z.ZodObject<{
53026
+ type: z.ZodLiteral<"source_missing_manufacturer_part_number_warning">;
53027
+ source_missing_manufacturer_part_number_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
53028
+ warning_type: z.ZodDefault<z.ZodLiteral<"source_missing_manufacturer_part_number_warning">>;
53029
+ message: z.ZodString;
53030
+ source_component_id: z.ZodString;
53031
+ standard: z.ZodString;
53032
+ subcircuit_id: z.ZodOptional<z.ZodString>;
53033
+ }, "strip", z.ZodTypeAny, {
53034
+ message: string;
53035
+ type: "source_missing_manufacturer_part_number_warning";
53036
+ source_component_id: string;
53037
+ warning_type: "source_missing_manufacturer_part_number_warning";
53038
+ standard: string;
53039
+ source_missing_manufacturer_part_number_warning_id: string;
53040
+ subcircuit_id?: string | undefined;
53041
+ }, {
53042
+ message: string;
53043
+ type: "source_missing_manufacturer_part_number_warning";
53044
+ source_component_id: string;
53045
+ standard: string;
53046
+ subcircuit_id?: string | undefined;
53047
+ warning_type?: "source_missing_manufacturer_part_number_warning" | undefined;
53048
+ source_missing_manufacturer_part_number_warning_id?: string | undefined;
52776
53049
  }>, z.ZodObject<{
52777
53050
  type: z.ZodLiteral<"source_no_power_pin_defined_warning">;
52778
53051
  source_no_power_pin_defined_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -54940,8 +55213,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54940
55213
  type: "pcb_manual_edit_conflict_warning";
54941
55214
  pcb_component_id: string;
54942
55215
  source_component_id: string;
54943
- pcb_manual_edit_conflict_warning_id: string;
54944
55216
  warning_type: "pcb_manual_edit_conflict_warning";
55217
+ pcb_manual_edit_conflict_warning_id: string;
54945
55218
  subcircuit_id?: string | undefined;
54946
55219
  pcb_group_id?: string | undefined;
54947
55220
  }, {
@@ -54951,8 +55224,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54951
55224
  source_component_id: string;
54952
55225
  subcircuit_id?: string | undefined;
54953
55226
  pcb_group_id?: string | undefined;
54954
- pcb_manual_edit_conflict_warning_id?: string | undefined;
54955
55227
  warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
55228
+ pcb_manual_edit_conflict_warning_id?: string | undefined;
54956
55229
  }>, z.ZodObject<{
54957
55230
  type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
54958
55231
  pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -54983,8 +55256,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
54983
55256
  recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
54984
55257
  source_component_id?: string | undefined;
54985
55258
  subcircuit_id?: string | undefined;
54986
- pcb_board_id?: string | undefined;
54987
55259
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
55260
+ pcb_board_id?: string | undefined;
54988
55261
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
54989
55262
  }>, z.ZodUnion<[z.ZodObject<{
54990
55263
  type: z.ZodLiteral<"pcb_plated_hole">;
@@ -55832,6 +56105,54 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55832
56105
  should_round_corners?: boolean | undefined;
55833
56106
  trace_length?: number | undefined;
55834
56107
  highlight_color?: string | undefined;
56108
+ }>, z.ZodObject<{
56109
+ type: z.ZodLiteral<"pcb_trace_warning">;
56110
+ pcb_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
56111
+ warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_warning">>;
56112
+ message: z.ZodString;
56113
+ center: z.ZodOptional<z.ZodObject<{
56114
+ x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
56115
+ y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
56116
+ }, "strip", z.ZodTypeAny, {
56117
+ x: number;
56118
+ y: number;
56119
+ }, {
56120
+ x: string | number;
56121
+ y: string | number;
56122
+ }>>;
56123
+ pcb_trace_id: z.ZodString;
56124
+ source_trace_id: z.ZodString;
56125
+ pcb_component_ids: z.ZodArray<z.ZodString, "many">;
56126
+ pcb_port_ids: z.ZodArray<z.ZodString, "many">;
56127
+ subcircuit_id: z.ZodOptional<z.ZodString>;
56128
+ }, "strip", z.ZodTypeAny, {
56129
+ message: string;
56130
+ type: "pcb_trace_warning";
56131
+ source_trace_id: string;
56132
+ pcb_trace_id: string;
56133
+ pcb_trace_warning_id: string;
56134
+ warning_type: "pcb_trace_warning";
56135
+ pcb_component_ids: string[];
56136
+ pcb_port_ids: string[];
56137
+ center?: {
56138
+ x: number;
56139
+ y: number;
56140
+ } | undefined;
56141
+ subcircuit_id?: string | undefined;
56142
+ }, {
56143
+ message: string;
56144
+ type: "pcb_trace_warning";
56145
+ source_trace_id: string;
56146
+ pcb_trace_id: string;
56147
+ pcb_component_ids: string[];
56148
+ pcb_port_ids: string[];
56149
+ center?: {
56150
+ x: string | number;
56151
+ y: string | number;
56152
+ } | undefined;
56153
+ subcircuit_id?: string | undefined;
56154
+ pcb_trace_warning_id?: string | undefined;
56155
+ warning_type?: "pcb_trace_warning" | undefined;
55835
56156
  }>, z.ZodObject<{
55836
56157
  type: z.ZodLiteral<"pcb_via">;
55837
56158
  pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -57425,10 +57746,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57425
57746
  type: "pcb_trace_error";
57426
57747
  source_trace_id: string;
57427
57748
  pcb_trace_id: string;
57428
- error_type: "pcb_trace_error";
57429
- pcb_trace_error_id: string;
57430
57749
  pcb_component_ids: string[];
57431
57750
  pcb_port_ids: string[];
57751
+ error_type: "pcb_trace_error";
57752
+ pcb_trace_error_id: string;
57432
57753
  center?: {
57433
57754
  x: number;
57434
57755
  y: number;
@@ -57475,9 +57796,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57475
57796
  message: string;
57476
57797
  type: "pcb_trace_missing_error";
57477
57798
  source_trace_id: string;
57478
- error_type: "pcb_trace_missing_error";
57479
57799
  pcb_component_ids: string[];
57480
57800
  pcb_port_ids: string[];
57801
+ error_type: "pcb_trace_missing_error";
57481
57802
  pcb_trace_missing_error_id: string;
57482
57803
  center?: {
57483
57804
  x: number;
@@ -57561,8 +57882,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57561
57882
  }, "strip", z.ZodTypeAny, {
57562
57883
  message: string;
57563
57884
  type: "pcb_port_not_matched_error";
57564
- error_type: "pcb_port_not_matched_error";
57565
57885
  pcb_component_ids: string[];
57886
+ error_type: "pcb_port_not_matched_error";
57566
57887
  pcb_error_id: string;
57567
57888
  subcircuit_id?: string | undefined;
57568
57889
  is_fatal?: boolean | undefined;
@@ -57587,9 +57908,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57587
57908
  }, "strip", z.ZodTypeAny, {
57588
57909
  message: string;
57589
57910
  type: "pcb_port_not_connected_error";
57590
- error_type: "pcb_port_not_connected_error";
57591
57911
  pcb_component_ids: string[];
57592
57912
  pcb_port_ids: string[];
57913
+ error_type: "pcb_port_not_connected_error";
57593
57914
  pcb_port_not_connected_error_id: string;
57594
57915
  subcircuit_id?: string | undefined;
57595
57916
  is_fatal?: boolean | undefined;
@@ -58307,8 +58628,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58307
58628
  }, "strip", z.ZodTypeAny, {
58308
58629
  message: string;
58309
58630
  type: "pcb_courtyard_overlap_error";
58310
- error_type: "pcb_courtyard_overlap_error";
58311
58631
  pcb_component_ids: [string, string];
58632
+ error_type: "pcb_courtyard_overlap_error";
58312
58633
  pcb_error_id: string;
58313
58634
  is_fatal?: boolean | undefined;
58314
58635
  }, {
@@ -67888,4 +68209,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
67888
68209
  */
67889
68210
  type CircuitJson = AnyCircuitElement[];
67890
68211
 
67891
- 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 };
68212
+ 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 PcbTraceWarning, type PcbTraceWarningInput, 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_trace_warning, 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 };