circuit-json 0.0.408 → 0.0.410
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 +201 -29
- package/dist/index.mjs +589 -564
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2426,6 +2426,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
2426
2426
|
x: string | number;
|
|
2427
2427
|
y: string | number;
|
|
2428
2428
|
}>>;
|
|
2429
|
+
insertion_direction: z.ZodOptional<z.ZodEnum<["from_above", "from_left", "from_right", "from_front", "from_back"]>>;
|
|
2429
2430
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2430
2431
|
kicad_footprint: z.ZodOptional<z.ZodObject<{
|
|
2431
2432
|
footprintName: z.ZodOptional<z.ZodString>;
|
|
@@ -3723,6 +3724,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
3723
3724
|
x: number;
|
|
3724
3725
|
y: number;
|
|
3725
3726
|
} | undefined;
|
|
3727
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back" | undefined;
|
|
3726
3728
|
metadata?: {
|
|
3727
3729
|
kicad_footprint?: {
|
|
3728
3730
|
layer?: string | undefined;
|
|
@@ -3889,6 +3891,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
3889
3891
|
x: string | number;
|
|
3890
3892
|
y: string | number;
|
|
3891
3893
|
} | undefined;
|
|
3894
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back" | undefined;
|
|
3892
3895
|
metadata?: {
|
|
3893
3896
|
kicad_footprint?: {
|
|
3894
3897
|
layer?: string | undefined;
|
|
@@ -4050,6 +4053,7 @@ interface PcbComponent {
|
|
|
4050
4053
|
positioned_relative_to_pcb_group_id?: string;
|
|
4051
4054
|
positioned_relative_to_pcb_board_id?: string;
|
|
4052
4055
|
cable_insertion_center?: Point;
|
|
4056
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back";
|
|
4053
4057
|
metadata?: PcbComponentMetadata;
|
|
4054
4058
|
obstructs_within_bounds: boolean;
|
|
4055
4059
|
}
|
|
@@ -7008,6 +7012,72 @@ type PCBTrace = PcbTrace;
|
|
|
7008
7012
|
*/
|
|
7009
7013
|
type PCBTraceInput = PcbTraceInput;
|
|
7010
7014
|
|
|
7015
|
+
declare const pcb_trace_warning: z.ZodObject<{
|
|
7016
|
+
type: z.ZodLiteral<"pcb_trace_warning">;
|
|
7017
|
+
pcb_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
7018
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_warning">>;
|
|
7019
|
+
message: z.ZodString;
|
|
7020
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
7021
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7022
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7023
|
+
}, "strip", z.ZodTypeAny, {
|
|
7024
|
+
x: number;
|
|
7025
|
+
y: number;
|
|
7026
|
+
}, {
|
|
7027
|
+
x: string | number;
|
|
7028
|
+
y: string | number;
|
|
7029
|
+
}>>;
|
|
7030
|
+
pcb_trace_id: z.ZodString;
|
|
7031
|
+
source_trace_id: z.ZodString;
|
|
7032
|
+
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
7033
|
+
pcb_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
7034
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
7035
|
+
}, "strip", z.ZodTypeAny, {
|
|
7036
|
+
message: string;
|
|
7037
|
+
type: "pcb_trace_warning";
|
|
7038
|
+
source_trace_id: string;
|
|
7039
|
+
pcb_trace_id: string;
|
|
7040
|
+
pcb_trace_warning_id: string;
|
|
7041
|
+
warning_type: "pcb_trace_warning";
|
|
7042
|
+
pcb_component_ids: string[];
|
|
7043
|
+
pcb_port_ids: string[];
|
|
7044
|
+
center?: {
|
|
7045
|
+
x: number;
|
|
7046
|
+
y: number;
|
|
7047
|
+
} | undefined;
|
|
7048
|
+
subcircuit_id?: string | undefined;
|
|
7049
|
+
}, {
|
|
7050
|
+
message: string;
|
|
7051
|
+
type: "pcb_trace_warning";
|
|
7052
|
+
source_trace_id: string;
|
|
7053
|
+
pcb_trace_id: string;
|
|
7054
|
+
pcb_component_ids: string[];
|
|
7055
|
+
pcb_port_ids: string[];
|
|
7056
|
+
center?: {
|
|
7057
|
+
x: string | number;
|
|
7058
|
+
y: string | number;
|
|
7059
|
+
} | undefined;
|
|
7060
|
+
subcircuit_id?: string | undefined;
|
|
7061
|
+
pcb_trace_warning_id?: string | undefined;
|
|
7062
|
+
warning_type?: "pcb_trace_warning" | undefined;
|
|
7063
|
+
}>;
|
|
7064
|
+
type PcbTraceWarningInput = z.input<typeof pcb_trace_warning>;
|
|
7065
|
+
/**
|
|
7066
|
+
* Defines a trace warning on the PCB
|
|
7067
|
+
*/
|
|
7068
|
+
interface PcbTraceWarning {
|
|
7069
|
+
type: "pcb_trace_warning";
|
|
7070
|
+
pcb_trace_warning_id: string;
|
|
7071
|
+
warning_type: "pcb_trace_warning";
|
|
7072
|
+
message: string;
|
|
7073
|
+
center?: Point;
|
|
7074
|
+
pcb_trace_id: string;
|
|
7075
|
+
source_trace_id: string;
|
|
7076
|
+
pcb_component_ids: string[];
|
|
7077
|
+
pcb_port_ids: string[];
|
|
7078
|
+
subcircuit_id?: string;
|
|
7079
|
+
}
|
|
7080
|
+
|
|
7011
7081
|
declare const base_circuit_json_error: z.ZodObject<{
|
|
7012
7082
|
error_type: z.ZodString;
|
|
7013
7083
|
message: z.ZodString;
|
|
@@ -7055,10 +7125,10 @@ declare const pcb_trace_error: z.ZodObject<{
|
|
|
7055
7125
|
type: "pcb_trace_error";
|
|
7056
7126
|
source_trace_id: string;
|
|
7057
7127
|
pcb_trace_id: string;
|
|
7058
|
-
error_type: "pcb_trace_error";
|
|
7059
|
-
pcb_trace_error_id: string;
|
|
7060
7128
|
pcb_component_ids: string[];
|
|
7061
7129
|
pcb_port_ids: string[];
|
|
7130
|
+
error_type: "pcb_trace_error";
|
|
7131
|
+
pcb_trace_error_id: string;
|
|
7062
7132
|
center?: {
|
|
7063
7133
|
x: number;
|
|
7064
7134
|
y: number;
|
|
@@ -7126,9 +7196,9 @@ declare const pcb_trace_missing_error: z.ZodObject<{
|
|
|
7126
7196
|
message: string;
|
|
7127
7197
|
type: "pcb_trace_missing_error";
|
|
7128
7198
|
source_trace_id: string;
|
|
7129
|
-
error_type: "pcb_trace_missing_error";
|
|
7130
7199
|
pcb_component_ids: string[];
|
|
7131
7200
|
pcb_port_ids: string[];
|
|
7201
|
+
error_type: "pcb_trace_missing_error";
|
|
7132
7202
|
pcb_trace_missing_error_id: string;
|
|
7133
7203
|
center?: {
|
|
7134
7204
|
x: number;
|
|
@@ -7182,8 +7252,8 @@ declare const pcb_port_not_matched_error: z.ZodObject<{
|
|
|
7182
7252
|
}, "strip", z.ZodTypeAny, {
|
|
7183
7253
|
message: string;
|
|
7184
7254
|
type: "pcb_port_not_matched_error";
|
|
7185
|
-
error_type: "pcb_port_not_matched_error";
|
|
7186
7255
|
pcb_component_ids: string[];
|
|
7256
|
+
error_type: "pcb_port_not_matched_error";
|
|
7187
7257
|
pcb_error_id: string;
|
|
7188
7258
|
subcircuit_id?: string | undefined;
|
|
7189
7259
|
is_fatal?: boolean | undefined;
|
|
@@ -7225,9 +7295,9 @@ declare const pcb_port_not_connected_error: z.ZodObject<{
|
|
|
7225
7295
|
}, "strip", z.ZodTypeAny, {
|
|
7226
7296
|
message: string;
|
|
7227
7297
|
type: "pcb_port_not_connected_error";
|
|
7228
|
-
error_type: "pcb_port_not_connected_error";
|
|
7229
7298
|
pcb_component_ids: string[];
|
|
7230
7299
|
pcb_port_ids: string[];
|
|
7300
|
+
error_type: "pcb_port_not_connected_error";
|
|
7231
7301
|
pcb_port_not_connected_error_id: string;
|
|
7232
7302
|
subcircuit_id?: string | undefined;
|
|
7233
7303
|
is_fatal?: boolean | undefined;
|
|
@@ -9320,8 +9390,8 @@ declare const pcb_courtyard_overlap_error: z.ZodObject<{
|
|
|
9320
9390
|
}, "strip", z.ZodTypeAny, {
|
|
9321
9391
|
message: string;
|
|
9322
9392
|
type: "pcb_courtyard_overlap_error";
|
|
9323
|
-
error_type: "pcb_courtyard_overlap_error";
|
|
9324
9393
|
pcb_component_ids: [string, string];
|
|
9394
|
+
error_type: "pcb_courtyard_overlap_error";
|
|
9325
9395
|
pcb_error_id: string;
|
|
9326
9396
|
is_fatal?: boolean | undefined;
|
|
9327
9397
|
}, {
|
|
@@ -10282,8 +10352,8 @@ declare const pcb_manual_edit_conflict_warning: z.ZodObject<{
|
|
|
10282
10352
|
type: "pcb_manual_edit_conflict_warning";
|
|
10283
10353
|
pcb_component_id: string;
|
|
10284
10354
|
source_component_id: string;
|
|
10285
|
-
pcb_manual_edit_conflict_warning_id: string;
|
|
10286
10355
|
warning_type: "pcb_manual_edit_conflict_warning";
|
|
10356
|
+
pcb_manual_edit_conflict_warning_id: string;
|
|
10287
10357
|
subcircuit_id?: string | undefined;
|
|
10288
10358
|
pcb_group_id?: string | undefined;
|
|
10289
10359
|
}, {
|
|
@@ -10293,8 +10363,8 @@ declare const pcb_manual_edit_conflict_warning: z.ZodObject<{
|
|
|
10293
10363
|
source_component_id: string;
|
|
10294
10364
|
subcircuit_id?: string | undefined;
|
|
10295
10365
|
pcb_group_id?: string | undefined;
|
|
10296
|
-
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
10297
10366
|
warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
|
|
10367
|
+
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
10298
10368
|
}>;
|
|
10299
10369
|
type PcbManualEditConflictWarningInput = z.input<typeof pcb_manual_edit_conflict_warning>;
|
|
10300
10370
|
/**
|
|
@@ -10343,8 +10413,8 @@ declare const pcb_connector_not_in_accessible_orientation_warning: z.ZodObject<{
|
|
|
10343
10413
|
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
10344
10414
|
source_component_id?: string | undefined;
|
|
10345
10415
|
subcircuit_id?: string | undefined;
|
|
10346
|
-
pcb_board_id?: string | undefined;
|
|
10347
10416
|
warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
|
|
10417
|
+
pcb_board_id?: string | undefined;
|
|
10348
10418
|
pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
|
|
10349
10419
|
}>;
|
|
10350
10420
|
type PcbConnectorNotInAccessibleOrientationWarningInput = z.input<typeof pcb_connector_not_in_accessible_orientation_warning>;
|
|
@@ -11709,7 +11779,7 @@ interface PcbCourtyardCircle {
|
|
|
11709
11779
|
color?: string;
|
|
11710
11780
|
}
|
|
11711
11781
|
|
|
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;
|
|
11782
|
+
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
11783
|
|
|
11714
11784
|
interface SchematicBox {
|
|
11715
11785
|
type: "schematic_box";
|
|
@@ -35314,6 +35384,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35314
35384
|
x: string | number;
|
|
35315
35385
|
y: string | number;
|
|
35316
35386
|
}>>;
|
|
35387
|
+
insertion_direction: z.ZodOptional<z.ZodEnum<["from_above", "from_left", "from_right", "from_front", "from_back"]>>;
|
|
35317
35388
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
35318
35389
|
kicad_footprint: z.ZodOptional<z.ZodObject<{
|
|
35319
35390
|
footprintName: z.ZodOptional<z.ZodString>;
|
|
@@ -36611,6 +36682,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
36611
36682
|
x: number;
|
|
36612
36683
|
y: number;
|
|
36613
36684
|
} | undefined;
|
|
36685
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back" | undefined;
|
|
36614
36686
|
metadata?: {
|
|
36615
36687
|
kicad_footprint?: {
|
|
36616
36688
|
layer?: string | undefined;
|
|
@@ -36777,6 +36849,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
36777
36849
|
x: string | number;
|
|
36778
36850
|
y: string | number;
|
|
36779
36851
|
} | undefined;
|
|
36852
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back" | undefined;
|
|
36780
36853
|
metadata?: {
|
|
36781
36854
|
kicad_footprint?: {
|
|
36782
36855
|
layer?: string | undefined;
|
|
@@ -37253,8 +37326,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37253
37326
|
type: "pcb_manual_edit_conflict_warning";
|
|
37254
37327
|
pcb_component_id: string;
|
|
37255
37328
|
source_component_id: string;
|
|
37256
|
-
pcb_manual_edit_conflict_warning_id: string;
|
|
37257
37329
|
warning_type: "pcb_manual_edit_conflict_warning";
|
|
37330
|
+
pcb_manual_edit_conflict_warning_id: string;
|
|
37258
37331
|
subcircuit_id?: string | undefined;
|
|
37259
37332
|
pcb_group_id?: string | undefined;
|
|
37260
37333
|
}, {
|
|
@@ -37264,8 +37337,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37264
37337
|
source_component_id: string;
|
|
37265
37338
|
subcircuit_id?: string | undefined;
|
|
37266
37339
|
pcb_group_id?: string | undefined;
|
|
37267
|
-
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
37268
37340
|
warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
|
|
37341
|
+
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
37269
37342
|
}>, z.ZodObject<{
|
|
37270
37343
|
type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
|
|
37271
37344
|
pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -37296,8 +37369,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
37296
37369
|
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
37297
37370
|
source_component_id?: string | undefined;
|
|
37298
37371
|
subcircuit_id?: string | undefined;
|
|
37299
|
-
pcb_board_id?: string | undefined;
|
|
37300
37372
|
warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
|
|
37373
|
+
pcb_board_id?: string | undefined;
|
|
37301
37374
|
pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
|
|
37302
37375
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
37303
37376
|
type: z.ZodLiteral<"pcb_plated_hole">;
|
|
@@ -38145,6 +38218,54 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
38145
38218
|
should_round_corners?: boolean | undefined;
|
|
38146
38219
|
trace_length?: number | undefined;
|
|
38147
38220
|
highlight_color?: string | undefined;
|
|
38221
|
+
}>, z.ZodObject<{
|
|
38222
|
+
type: z.ZodLiteral<"pcb_trace_warning">;
|
|
38223
|
+
pcb_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
38224
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_warning">>;
|
|
38225
|
+
message: z.ZodString;
|
|
38226
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
38227
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38228
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
38229
|
+
}, "strip", z.ZodTypeAny, {
|
|
38230
|
+
x: number;
|
|
38231
|
+
y: number;
|
|
38232
|
+
}, {
|
|
38233
|
+
x: string | number;
|
|
38234
|
+
y: string | number;
|
|
38235
|
+
}>>;
|
|
38236
|
+
pcb_trace_id: z.ZodString;
|
|
38237
|
+
source_trace_id: z.ZodString;
|
|
38238
|
+
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
38239
|
+
pcb_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
38240
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
38241
|
+
}, "strip", z.ZodTypeAny, {
|
|
38242
|
+
message: string;
|
|
38243
|
+
type: "pcb_trace_warning";
|
|
38244
|
+
source_trace_id: string;
|
|
38245
|
+
pcb_trace_id: string;
|
|
38246
|
+
pcb_trace_warning_id: string;
|
|
38247
|
+
warning_type: "pcb_trace_warning";
|
|
38248
|
+
pcb_component_ids: string[];
|
|
38249
|
+
pcb_port_ids: string[];
|
|
38250
|
+
center?: {
|
|
38251
|
+
x: number;
|
|
38252
|
+
y: number;
|
|
38253
|
+
} | undefined;
|
|
38254
|
+
subcircuit_id?: string | undefined;
|
|
38255
|
+
}, {
|
|
38256
|
+
message: string;
|
|
38257
|
+
type: "pcb_trace_warning";
|
|
38258
|
+
source_trace_id: string;
|
|
38259
|
+
pcb_trace_id: string;
|
|
38260
|
+
pcb_component_ids: string[];
|
|
38261
|
+
pcb_port_ids: string[];
|
|
38262
|
+
center?: {
|
|
38263
|
+
x: string | number;
|
|
38264
|
+
y: string | number;
|
|
38265
|
+
} | undefined;
|
|
38266
|
+
subcircuit_id?: string | undefined;
|
|
38267
|
+
pcb_trace_warning_id?: string | undefined;
|
|
38268
|
+
warning_type?: "pcb_trace_warning" | undefined;
|
|
38148
38269
|
}>, z.ZodObject<{
|
|
38149
38270
|
type: z.ZodLiteral<"pcb_via">;
|
|
38150
38271
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -39738,10 +39859,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39738
39859
|
type: "pcb_trace_error";
|
|
39739
39860
|
source_trace_id: string;
|
|
39740
39861
|
pcb_trace_id: string;
|
|
39741
|
-
error_type: "pcb_trace_error";
|
|
39742
|
-
pcb_trace_error_id: string;
|
|
39743
39862
|
pcb_component_ids: string[];
|
|
39744
39863
|
pcb_port_ids: string[];
|
|
39864
|
+
error_type: "pcb_trace_error";
|
|
39865
|
+
pcb_trace_error_id: string;
|
|
39745
39866
|
center?: {
|
|
39746
39867
|
x: number;
|
|
39747
39868
|
y: number;
|
|
@@ -39788,9 +39909,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39788
39909
|
message: string;
|
|
39789
39910
|
type: "pcb_trace_missing_error";
|
|
39790
39911
|
source_trace_id: string;
|
|
39791
|
-
error_type: "pcb_trace_missing_error";
|
|
39792
39912
|
pcb_component_ids: string[];
|
|
39793
39913
|
pcb_port_ids: string[];
|
|
39914
|
+
error_type: "pcb_trace_missing_error";
|
|
39794
39915
|
pcb_trace_missing_error_id: string;
|
|
39795
39916
|
center?: {
|
|
39796
39917
|
x: number;
|
|
@@ -39874,8 +39995,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39874
39995
|
}, "strip", z.ZodTypeAny, {
|
|
39875
39996
|
message: string;
|
|
39876
39997
|
type: "pcb_port_not_matched_error";
|
|
39877
|
-
error_type: "pcb_port_not_matched_error";
|
|
39878
39998
|
pcb_component_ids: string[];
|
|
39999
|
+
error_type: "pcb_port_not_matched_error";
|
|
39879
40000
|
pcb_error_id: string;
|
|
39880
40001
|
subcircuit_id?: string | undefined;
|
|
39881
40002
|
is_fatal?: boolean | undefined;
|
|
@@ -39900,9 +40021,9 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
39900
40021
|
}, "strip", z.ZodTypeAny, {
|
|
39901
40022
|
message: string;
|
|
39902
40023
|
type: "pcb_port_not_connected_error";
|
|
39903
|
-
error_type: "pcb_port_not_connected_error";
|
|
39904
40024
|
pcb_component_ids: string[];
|
|
39905
40025
|
pcb_port_ids: string[];
|
|
40026
|
+
error_type: "pcb_port_not_connected_error";
|
|
39906
40027
|
pcb_port_not_connected_error_id: string;
|
|
39907
40028
|
subcircuit_id?: string | undefined;
|
|
39908
40029
|
is_fatal?: boolean | undefined;
|
|
@@ -40620,8 +40741,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
40620
40741
|
}, "strip", z.ZodTypeAny, {
|
|
40621
40742
|
message: string;
|
|
40622
40743
|
type: "pcb_courtyard_overlap_error";
|
|
40623
|
-
error_type: "pcb_courtyard_overlap_error";
|
|
40624
40744
|
pcb_component_ids: [string, string];
|
|
40745
|
+
error_type: "pcb_courtyard_overlap_error";
|
|
40625
40746
|
pcb_error_id: string;
|
|
40626
40747
|
is_fatal?: boolean | undefined;
|
|
40627
40748
|
}, {
|
|
@@ -53160,6 +53281,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53160
53281
|
x: string | number;
|
|
53161
53282
|
y: string | number;
|
|
53162
53283
|
}>>;
|
|
53284
|
+
insertion_direction: z.ZodOptional<z.ZodEnum<["from_above", "from_left", "from_right", "from_front", "from_back"]>>;
|
|
53163
53285
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
53164
53286
|
kicad_footprint: z.ZodOptional<z.ZodObject<{
|
|
53165
53287
|
footprintName: z.ZodOptional<z.ZodString>;
|
|
@@ -54457,6 +54579,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
54457
54579
|
x: number;
|
|
54458
54580
|
y: number;
|
|
54459
54581
|
} | undefined;
|
|
54582
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back" | undefined;
|
|
54460
54583
|
metadata?: {
|
|
54461
54584
|
kicad_footprint?: {
|
|
54462
54585
|
layer?: string | undefined;
|
|
@@ -54623,6 +54746,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
54623
54746
|
x: string | number;
|
|
54624
54747
|
y: string | number;
|
|
54625
54748
|
} | undefined;
|
|
54749
|
+
insertion_direction?: "from_above" | "from_left" | "from_right" | "from_front" | "from_back" | undefined;
|
|
54626
54750
|
metadata?: {
|
|
54627
54751
|
kicad_footprint?: {
|
|
54628
54752
|
layer?: string | undefined;
|
|
@@ -55099,8 +55223,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55099
55223
|
type: "pcb_manual_edit_conflict_warning";
|
|
55100
55224
|
pcb_component_id: string;
|
|
55101
55225
|
source_component_id: string;
|
|
55102
|
-
pcb_manual_edit_conflict_warning_id: string;
|
|
55103
55226
|
warning_type: "pcb_manual_edit_conflict_warning";
|
|
55227
|
+
pcb_manual_edit_conflict_warning_id: string;
|
|
55104
55228
|
subcircuit_id?: string | undefined;
|
|
55105
55229
|
pcb_group_id?: string | undefined;
|
|
55106
55230
|
}, {
|
|
@@ -55110,8 +55234,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55110
55234
|
source_component_id: string;
|
|
55111
55235
|
subcircuit_id?: string | undefined;
|
|
55112
55236
|
pcb_group_id?: string | undefined;
|
|
55113
|
-
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
55114
55237
|
warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
|
|
55238
|
+
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
55115
55239
|
}>, z.ZodObject<{
|
|
55116
55240
|
type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
|
|
55117
55241
|
pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -55142,8 +55266,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55142
55266
|
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
55143
55267
|
source_component_id?: string | undefined;
|
|
55144
55268
|
subcircuit_id?: string | undefined;
|
|
55145
|
-
pcb_board_id?: string | undefined;
|
|
55146
55269
|
warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
|
|
55270
|
+
pcb_board_id?: string | undefined;
|
|
55147
55271
|
pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
|
|
55148
55272
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
55149
55273
|
type: z.ZodLiteral<"pcb_plated_hole">;
|
|
@@ -55991,6 +56115,54 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
55991
56115
|
should_round_corners?: boolean | undefined;
|
|
55992
56116
|
trace_length?: number | undefined;
|
|
55993
56117
|
highlight_color?: string | undefined;
|
|
56118
|
+
}>, z.ZodObject<{
|
|
56119
|
+
type: z.ZodLiteral<"pcb_trace_warning">;
|
|
56120
|
+
pcb_trace_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
56121
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_trace_warning">>;
|
|
56122
|
+
message: z.ZodString;
|
|
56123
|
+
center: z.ZodOptional<z.ZodObject<{
|
|
56124
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
56125
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
56126
|
+
}, "strip", z.ZodTypeAny, {
|
|
56127
|
+
x: number;
|
|
56128
|
+
y: number;
|
|
56129
|
+
}, {
|
|
56130
|
+
x: string | number;
|
|
56131
|
+
y: string | number;
|
|
56132
|
+
}>>;
|
|
56133
|
+
pcb_trace_id: z.ZodString;
|
|
56134
|
+
source_trace_id: z.ZodString;
|
|
56135
|
+
pcb_component_ids: z.ZodArray<z.ZodString, "many">;
|
|
56136
|
+
pcb_port_ids: z.ZodArray<z.ZodString, "many">;
|
|
56137
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
56138
|
+
}, "strip", z.ZodTypeAny, {
|
|
56139
|
+
message: string;
|
|
56140
|
+
type: "pcb_trace_warning";
|
|
56141
|
+
source_trace_id: string;
|
|
56142
|
+
pcb_trace_id: string;
|
|
56143
|
+
pcb_trace_warning_id: string;
|
|
56144
|
+
warning_type: "pcb_trace_warning";
|
|
56145
|
+
pcb_component_ids: string[];
|
|
56146
|
+
pcb_port_ids: string[];
|
|
56147
|
+
center?: {
|
|
56148
|
+
x: number;
|
|
56149
|
+
y: number;
|
|
56150
|
+
} | undefined;
|
|
56151
|
+
subcircuit_id?: string | undefined;
|
|
56152
|
+
}, {
|
|
56153
|
+
message: string;
|
|
56154
|
+
type: "pcb_trace_warning";
|
|
56155
|
+
source_trace_id: string;
|
|
56156
|
+
pcb_trace_id: string;
|
|
56157
|
+
pcb_component_ids: string[];
|
|
56158
|
+
pcb_port_ids: string[];
|
|
56159
|
+
center?: {
|
|
56160
|
+
x: string | number;
|
|
56161
|
+
y: string | number;
|
|
56162
|
+
} | undefined;
|
|
56163
|
+
subcircuit_id?: string | undefined;
|
|
56164
|
+
pcb_trace_warning_id?: string | undefined;
|
|
56165
|
+
warning_type?: "pcb_trace_warning" | undefined;
|
|
55994
56166
|
}>, z.ZodObject<{
|
|
55995
56167
|
type: z.ZodLiteral<"pcb_via">;
|
|
55996
56168
|
pcb_via_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -57584,10 +57756,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57584
57756
|
type: "pcb_trace_error";
|
|
57585
57757
|
source_trace_id: string;
|
|
57586
57758
|
pcb_trace_id: string;
|
|
57587
|
-
error_type: "pcb_trace_error";
|
|
57588
|
-
pcb_trace_error_id: string;
|
|
57589
57759
|
pcb_component_ids: string[];
|
|
57590
57760
|
pcb_port_ids: string[];
|
|
57761
|
+
error_type: "pcb_trace_error";
|
|
57762
|
+
pcb_trace_error_id: string;
|
|
57591
57763
|
center?: {
|
|
57592
57764
|
x: number;
|
|
57593
57765
|
y: number;
|
|
@@ -57634,9 +57806,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57634
57806
|
message: string;
|
|
57635
57807
|
type: "pcb_trace_missing_error";
|
|
57636
57808
|
source_trace_id: string;
|
|
57637
|
-
error_type: "pcb_trace_missing_error";
|
|
57638
57809
|
pcb_component_ids: string[];
|
|
57639
57810
|
pcb_port_ids: string[];
|
|
57811
|
+
error_type: "pcb_trace_missing_error";
|
|
57640
57812
|
pcb_trace_missing_error_id: string;
|
|
57641
57813
|
center?: {
|
|
57642
57814
|
x: number;
|
|
@@ -57720,8 +57892,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57720
57892
|
}, "strip", z.ZodTypeAny, {
|
|
57721
57893
|
message: string;
|
|
57722
57894
|
type: "pcb_port_not_matched_error";
|
|
57723
|
-
error_type: "pcb_port_not_matched_error";
|
|
57724
57895
|
pcb_component_ids: string[];
|
|
57896
|
+
error_type: "pcb_port_not_matched_error";
|
|
57725
57897
|
pcb_error_id: string;
|
|
57726
57898
|
subcircuit_id?: string | undefined;
|
|
57727
57899
|
is_fatal?: boolean | undefined;
|
|
@@ -57746,9 +57918,9 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
57746
57918
|
}, "strip", z.ZodTypeAny, {
|
|
57747
57919
|
message: string;
|
|
57748
57920
|
type: "pcb_port_not_connected_error";
|
|
57749
|
-
error_type: "pcb_port_not_connected_error";
|
|
57750
57921
|
pcb_component_ids: string[];
|
|
57751
57922
|
pcb_port_ids: string[];
|
|
57923
|
+
error_type: "pcb_port_not_connected_error";
|
|
57752
57924
|
pcb_port_not_connected_error_id: string;
|
|
57753
57925
|
subcircuit_id?: string | undefined;
|
|
57754
57926
|
is_fatal?: boolean | undefined;
|
|
@@ -58466,8 +58638,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
58466
58638
|
}, "strip", z.ZodTypeAny, {
|
|
58467
58639
|
message: string;
|
|
58468
58640
|
type: "pcb_courtyard_overlap_error";
|
|
58469
|
-
error_type: "pcb_courtyard_overlap_error";
|
|
58470
58641
|
pcb_component_ids: [string, string];
|
|
58642
|
+
error_type: "pcb_courtyard_overlap_error";
|
|
58471
58643
|
pcb_error_id: string;
|
|
58472
58644
|
is_fatal?: boolean | undefined;
|
|
58473
58645
|
}, {
|
|
@@ -68047,4 +68219,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
68047
68219
|
*/
|
|
68048
68220
|
type CircuitJson = AnyCircuitElement[];
|
|
68049
68221
|
|
|
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 };
|
|
68222
|
+
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 };
|