circuit-json 0.0.408 → 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";
@@ -37253,8 +37319,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37253
37319
  type: "pcb_manual_edit_conflict_warning";
37254
37320
  pcb_component_id: string;
37255
37321
  source_component_id: string;
37256
- pcb_manual_edit_conflict_warning_id: string;
37257
37322
  warning_type: "pcb_manual_edit_conflict_warning";
37323
+ pcb_manual_edit_conflict_warning_id: string;
37258
37324
  subcircuit_id?: string | undefined;
37259
37325
  pcb_group_id?: string | undefined;
37260
37326
  }, {
@@ -37264,8 +37330,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37264
37330
  source_component_id: string;
37265
37331
  subcircuit_id?: string | undefined;
37266
37332
  pcb_group_id?: string | undefined;
37267
- pcb_manual_edit_conflict_warning_id?: string | undefined;
37268
37333
  warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
37334
+ pcb_manual_edit_conflict_warning_id?: string | undefined;
37269
37335
  }>, z.ZodObject<{
37270
37336
  type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
37271
37337
  pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -37296,8 +37362,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
37296
37362
  recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
37297
37363
  source_component_id?: string | undefined;
37298
37364
  subcircuit_id?: string | undefined;
37299
- pcb_board_id?: string | undefined;
37300
37365
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
37366
+ pcb_board_id?: string | undefined;
37301
37367
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
37302
37368
  }>, z.ZodUnion<[z.ZodObject<{
37303
37369
  type: z.ZodLiteral<"pcb_plated_hole">;
@@ -38145,6 +38211,54 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
38145
38211
  should_round_corners?: boolean | undefined;
38146
38212
  trace_length?: number | undefined;
38147
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;
38148
38262
  }>, z.ZodObject<{
38149
38263
  type: z.ZodLiteral<"pcb_via">;
38150
38264
  pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -39738,10 +39852,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39738
39852
  type: "pcb_trace_error";
39739
39853
  source_trace_id: string;
39740
39854
  pcb_trace_id: string;
39741
- error_type: "pcb_trace_error";
39742
- pcb_trace_error_id: string;
39743
39855
  pcb_component_ids: string[];
39744
39856
  pcb_port_ids: string[];
39857
+ error_type: "pcb_trace_error";
39858
+ pcb_trace_error_id: string;
39745
39859
  center?: {
39746
39860
  x: number;
39747
39861
  y: number;
@@ -39788,9 +39902,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39788
39902
  message: string;
39789
39903
  type: "pcb_trace_missing_error";
39790
39904
  source_trace_id: string;
39791
- error_type: "pcb_trace_missing_error";
39792
39905
  pcb_component_ids: string[];
39793
39906
  pcb_port_ids: string[];
39907
+ error_type: "pcb_trace_missing_error";
39794
39908
  pcb_trace_missing_error_id: string;
39795
39909
  center?: {
39796
39910
  x: number;
@@ -39874,8 +39988,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39874
39988
  }, "strip", z.ZodTypeAny, {
39875
39989
  message: string;
39876
39990
  type: "pcb_port_not_matched_error";
39877
- error_type: "pcb_port_not_matched_error";
39878
39991
  pcb_component_ids: string[];
39992
+ error_type: "pcb_port_not_matched_error";
39879
39993
  pcb_error_id: string;
39880
39994
  subcircuit_id?: string | undefined;
39881
39995
  is_fatal?: boolean | undefined;
@@ -39900,9 +40014,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
39900
40014
  }, "strip", z.ZodTypeAny, {
39901
40015
  message: string;
39902
40016
  type: "pcb_port_not_connected_error";
39903
- error_type: "pcb_port_not_connected_error";
39904
40017
  pcb_component_ids: string[];
39905
40018
  pcb_port_ids: string[];
40019
+ error_type: "pcb_port_not_connected_error";
39906
40020
  pcb_port_not_connected_error_id: string;
39907
40021
  subcircuit_id?: string | undefined;
39908
40022
  is_fatal?: boolean | undefined;
@@ -40620,8 +40734,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
40620
40734
  }, "strip", z.ZodTypeAny, {
40621
40735
  message: string;
40622
40736
  type: "pcb_courtyard_overlap_error";
40623
- error_type: "pcb_courtyard_overlap_error";
40624
40737
  pcb_component_ids: [string, string];
40738
+ error_type: "pcb_courtyard_overlap_error";
40625
40739
  pcb_error_id: string;
40626
40740
  is_fatal?: boolean | undefined;
40627
40741
  }, {
@@ -55099,8 +55213,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55099
55213
  type: "pcb_manual_edit_conflict_warning";
55100
55214
  pcb_component_id: string;
55101
55215
  source_component_id: string;
55102
- pcb_manual_edit_conflict_warning_id: string;
55103
55216
  warning_type: "pcb_manual_edit_conflict_warning";
55217
+ pcb_manual_edit_conflict_warning_id: string;
55104
55218
  subcircuit_id?: string | undefined;
55105
55219
  pcb_group_id?: string | undefined;
55106
55220
  }, {
@@ -55110,8 +55224,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55110
55224
  source_component_id: string;
55111
55225
  subcircuit_id?: string | undefined;
55112
55226
  pcb_group_id?: string | undefined;
55113
- pcb_manual_edit_conflict_warning_id?: string | undefined;
55114
55227
  warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
55228
+ pcb_manual_edit_conflict_warning_id?: string | undefined;
55115
55229
  }>, z.ZodObject<{
55116
55230
  type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
55117
55231
  pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -55142,8 +55256,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55142
55256
  recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
55143
55257
  source_component_id?: string | undefined;
55144
55258
  subcircuit_id?: string | undefined;
55145
- pcb_board_id?: string | undefined;
55146
55259
  warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
55260
+ pcb_board_id?: string | undefined;
55147
55261
  pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
55148
55262
  }>, z.ZodUnion<[z.ZodObject<{
55149
55263
  type: z.ZodLiteral<"pcb_plated_hole">;
@@ -55991,6 +56105,54 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
55991
56105
  should_round_corners?: boolean | undefined;
55992
56106
  trace_length?: number | undefined;
55993
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;
55994
56156
  }>, z.ZodObject<{
55995
56157
  type: z.ZodLiteral<"pcb_via">;
55996
56158
  pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
@@ -57584,10 +57746,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57584
57746
  type: "pcb_trace_error";
57585
57747
  source_trace_id: string;
57586
57748
  pcb_trace_id: string;
57587
- error_type: "pcb_trace_error";
57588
- pcb_trace_error_id: string;
57589
57749
  pcb_component_ids: string[];
57590
57750
  pcb_port_ids: string[];
57751
+ error_type: "pcb_trace_error";
57752
+ pcb_trace_error_id: string;
57591
57753
  center?: {
57592
57754
  x: number;
57593
57755
  y: number;
@@ -57634,9 +57796,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57634
57796
  message: string;
57635
57797
  type: "pcb_trace_missing_error";
57636
57798
  source_trace_id: string;
57637
- error_type: "pcb_trace_missing_error";
57638
57799
  pcb_component_ids: string[];
57639
57800
  pcb_port_ids: string[];
57801
+ error_type: "pcb_trace_missing_error";
57640
57802
  pcb_trace_missing_error_id: string;
57641
57803
  center?: {
57642
57804
  x: number;
@@ -57720,8 +57882,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57720
57882
  }, "strip", z.ZodTypeAny, {
57721
57883
  message: string;
57722
57884
  type: "pcb_port_not_matched_error";
57723
- error_type: "pcb_port_not_matched_error";
57724
57885
  pcb_component_ids: string[];
57886
+ error_type: "pcb_port_not_matched_error";
57725
57887
  pcb_error_id: string;
57726
57888
  subcircuit_id?: string | undefined;
57727
57889
  is_fatal?: boolean | undefined;
@@ -57746,9 +57908,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
57746
57908
  }, "strip", z.ZodTypeAny, {
57747
57909
  message: string;
57748
57910
  type: "pcb_port_not_connected_error";
57749
- error_type: "pcb_port_not_connected_error";
57750
57911
  pcb_component_ids: string[];
57751
57912
  pcb_port_ids: string[];
57913
+ error_type: "pcb_port_not_connected_error";
57752
57914
  pcb_port_not_connected_error_id: string;
57753
57915
  subcircuit_id?: string | undefined;
57754
57916
  is_fatal?: boolean | undefined;
@@ -58466,8 +58628,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
58466
58628
  }, "strip", z.ZodTypeAny, {
58467
58629
  message: string;
58468
58630
  type: "pcb_courtyard_overlap_error";
58469
- error_type: "pcb_courtyard_overlap_error";
58470
58631
  pcb_component_ids: [string, string];
58632
+ error_type: "pcb_courtyard_overlap_error";
58471
58633
  pcb_error_id: string;
58472
58634
  is_fatal?: boolean | undefined;
58473
58635
  }, {
@@ -68047,4 +68209,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
68047
68209
  */
68048
68210
  type CircuitJson = AnyCircuitElement[];
68049
68211
 
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 };
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 };