circuit-json 0.0.389 → 0.0.391
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 +180 -8
- package/dist/index.mjs +240 -216
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2416,6 +2416,16 @@ declare const pcb_component: z.ZodObject<{
|
|
|
2416
2416
|
anchor_alignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
2417
2417
|
positioned_relative_to_pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
2418
2418
|
positioned_relative_to_pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
2419
|
+
cable_insertion_center: z.ZodOptional<z.ZodObject<{
|
|
2420
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
2421
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
2422
|
+
}, "strip", z.ZodTypeAny, {
|
|
2423
|
+
x: number;
|
|
2424
|
+
y: number;
|
|
2425
|
+
}, {
|
|
2426
|
+
x: string | number;
|
|
2427
|
+
y: string | number;
|
|
2428
|
+
}>>;
|
|
2419
2429
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
2420
2430
|
kicad_footprint: z.ZodOptional<z.ZodObject<{
|
|
2421
2431
|
footprintName: z.ZodOptional<z.ZodString>;
|
|
@@ -3709,6 +3719,10 @@ declare const pcb_component: z.ZodObject<{
|
|
|
3709
3719
|
anchor_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
3710
3720
|
positioned_relative_to_pcb_group_id?: string | undefined;
|
|
3711
3721
|
positioned_relative_to_pcb_board_id?: string | undefined;
|
|
3722
|
+
cable_insertion_center?: {
|
|
3723
|
+
x: number;
|
|
3724
|
+
y: number;
|
|
3725
|
+
} | undefined;
|
|
3712
3726
|
metadata?: {
|
|
3713
3727
|
kicad_footprint?: {
|
|
3714
3728
|
layer?: string | undefined;
|
|
@@ -3871,6 +3885,10 @@ declare const pcb_component: z.ZodObject<{
|
|
|
3871
3885
|
anchor_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
3872
3886
|
positioned_relative_to_pcb_group_id?: string | undefined;
|
|
3873
3887
|
positioned_relative_to_pcb_board_id?: string | undefined;
|
|
3888
|
+
cable_insertion_center?: {
|
|
3889
|
+
x: string | number;
|
|
3890
|
+
y: string | number;
|
|
3891
|
+
} | undefined;
|
|
3874
3892
|
metadata?: {
|
|
3875
3893
|
kicad_footprint?: {
|
|
3876
3894
|
layer?: string | undefined;
|
|
@@ -4031,6 +4049,7 @@ interface PcbComponent {
|
|
|
4031
4049
|
anchor_alignment?: NinePointAnchor;
|
|
4032
4050
|
positioned_relative_to_pcb_group_id?: string;
|
|
4033
4051
|
positioned_relative_to_pcb_board_id?: string;
|
|
4052
|
+
cable_insertion_center?: Point;
|
|
4034
4053
|
metadata?: PcbComponentMetadata;
|
|
4035
4054
|
obstructs_within_bounds: boolean;
|
|
4036
4055
|
}
|
|
@@ -10120,6 +10139,57 @@ interface PcbManualEditConflictWarning {
|
|
|
10120
10139
|
source_component_id: string;
|
|
10121
10140
|
}
|
|
10122
10141
|
|
|
10142
|
+
declare const connectorOrientationDirection: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
10143
|
+
type ConnectorOrientationDirection = z.infer<typeof connectorOrientationDirection>;
|
|
10144
|
+
declare const pcb_connector_not_in_accessible_orientation_warning: z.ZodObject<{
|
|
10145
|
+
type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
|
|
10146
|
+
pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10147
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">>;
|
|
10148
|
+
message: z.ZodString;
|
|
10149
|
+
pcb_component_id: z.ZodString;
|
|
10150
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
10151
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
10152
|
+
facing_direction: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
10153
|
+
recommended_facing_direction: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
10154
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10155
|
+
}, "strip", z.ZodTypeAny, {
|
|
10156
|
+
message: string;
|
|
10157
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
10158
|
+
pcb_component_id: string;
|
|
10159
|
+
warning_type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
10160
|
+
pcb_connector_not_in_accessible_orientation_warning_id: string;
|
|
10161
|
+
facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
10162
|
+
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
10163
|
+
source_component_id?: string | undefined;
|
|
10164
|
+
subcircuit_id?: string | undefined;
|
|
10165
|
+
pcb_board_id?: string | undefined;
|
|
10166
|
+
}, {
|
|
10167
|
+
message: string;
|
|
10168
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
10169
|
+
pcb_component_id: string;
|
|
10170
|
+
facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
10171
|
+
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
10172
|
+
source_component_id?: string | undefined;
|
|
10173
|
+
subcircuit_id?: string | undefined;
|
|
10174
|
+
pcb_board_id?: string | undefined;
|
|
10175
|
+
warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
|
|
10176
|
+
pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
|
|
10177
|
+
}>;
|
|
10178
|
+
type PcbConnectorNotInAccessibleOrientationWarningInput = z.input<typeof pcb_connector_not_in_accessible_orientation_warning>;
|
|
10179
|
+
/** Warning emitted when a connector PCB component is facing inward toward the board and should be reoriented */
|
|
10180
|
+
interface PcbConnectorNotInAccessibleOrientationWarning {
|
|
10181
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
10182
|
+
pcb_connector_not_in_accessible_orientation_warning_id: string;
|
|
10183
|
+
warning_type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
10184
|
+
message: string;
|
|
10185
|
+
pcb_component_id: string;
|
|
10186
|
+
source_component_id?: string;
|
|
10187
|
+
pcb_board_id?: string;
|
|
10188
|
+
facing_direction: ConnectorOrientationDirection;
|
|
10189
|
+
recommended_facing_direction: ConnectorOrientationDirection;
|
|
10190
|
+
subcircuit_id?: string;
|
|
10191
|
+
}
|
|
10192
|
+
|
|
10123
10193
|
declare const pcb_breakout_point: z.ZodObject<{
|
|
10124
10194
|
type: z.ZodLiteral<"pcb_breakout_point">;
|
|
10125
10195
|
pcb_breakout_point_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -11463,7 +11533,7 @@ interface PcbCourtyardCircle {
|
|
|
11463
11533
|
color?: string;
|
|
11464
11534
|
}
|
|
11465
11535
|
|
|
11466
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | 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;
|
|
11536
|
+
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;
|
|
11467
11537
|
|
|
11468
11538
|
interface SchematicBox {
|
|
11469
11539
|
type: "schematic_box";
|
|
@@ -23502,8 +23572,8 @@ declare const schematic_port: z.ZodObject<{
|
|
|
23502
23572
|
source_port_id: string;
|
|
23503
23573
|
schematic_port_id: string;
|
|
23504
23574
|
subcircuit_id?: string | undefined;
|
|
23505
|
-
schematic_component_id?: string | undefined;
|
|
23506
23575
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
23576
|
+
schematic_component_id?: string | undefined;
|
|
23507
23577
|
distance_from_component_edge?: number | undefined;
|
|
23508
23578
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
23509
23579
|
true_ccw_index?: number | undefined;
|
|
@@ -23522,8 +23592,8 @@ declare const schematic_port: z.ZodObject<{
|
|
|
23522
23592
|
source_port_id: string;
|
|
23523
23593
|
schematic_port_id: string;
|
|
23524
23594
|
subcircuit_id?: string | undefined;
|
|
23525
|
-
schematic_component_id?: string | undefined;
|
|
23526
23595
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
23596
|
+
schematic_component_id?: string | undefined;
|
|
23527
23597
|
distance_from_component_edge?: number | undefined;
|
|
23528
23598
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
23529
23599
|
true_ccw_index?: number | undefined;
|
|
@@ -34232,6 +34302,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
34232
34302
|
anchor_alignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
34233
34303
|
positioned_relative_to_pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
34234
34304
|
positioned_relative_to_pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
34305
|
+
cable_insertion_center: z.ZodOptional<z.ZodObject<{
|
|
34306
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
34307
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
34308
|
+
}, "strip", z.ZodTypeAny, {
|
|
34309
|
+
x: number;
|
|
34310
|
+
y: number;
|
|
34311
|
+
}, {
|
|
34312
|
+
x: string | number;
|
|
34313
|
+
y: string | number;
|
|
34314
|
+
}>>;
|
|
34235
34315
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
34236
34316
|
kicad_footprint: z.ZodOptional<z.ZodObject<{
|
|
34237
34317
|
footprintName: z.ZodOptional<z.ZodString>;
|
|
@@ -35525,6 +35605,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35525
35605
|
anchor_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
35526
35606
|
positioned_relative_to_pcb_group_id?: string | undefined;
|
|
35527
35607
|
positioned_relative_to_pcb_board_id?: string | undefined;
|
|
35608
|
+
cable_insertion_center?: {
|
|
35609
|
+
x: number;
|
|
35610
|
+
y: number;
|
|
35611
|
+
} | undefined;
|
|
35528
35612
|
metadata?: {
|
|
35529
35613
|
kicad_footprint?: {
|
|
35530
35614
|
layer?: string | undefined;
|
|
@@ -35687,6 +35771,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
35687
35771
|
anchor_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
35688
35772
|
positioned_relative_to_pcb_group_id?: string | undefined;
|
|
35689
35773
|
positioned_relative_to_pcb_board_id?: string | undefined;
|
|
35774
|
+
cable_insertion_center?: {
|
|
35775
|
+
x: string | number;
|
|
35776
|
+
y: string | number;
|
|
35777
|
+
} | undefined;
|
|
35690
35778
|
metadata?: {
|
|
35691
35779
|
kicad_footprint?: {
|
|
35692
35780
|
layer?: string | undefined;
|
|
@@ -36176,6 +36264,39 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
36176
36264
|
pcb_group_id?: string | undefined;
|
|
36177
36265
|
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
36178
36266
|
warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
|
|
36267
|
+
}>, z.ZodObject<{
|
|
36268
|
+
type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
|
|
36269
|
+
pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
36270
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">>;
|
|
36271
|
+
message: z.ZodString;
|
|
36272
|
+
pcb_component_id: z.ZodString;
|
|
36273
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
36274
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
36275
|
+
facing_direction: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
36276
|
+
recommended_facing_direction: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
36277
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
36278
|
+
}, "strip", z.ZodTypeAny, {
|
|
36279
|
+
message: string;
|
|
36280
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
36281
|
+
pcb_component_id: string;
|
|
36282
|
+
warning_type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
36283
|
+
pcb_connector_not_in_accessible_orientation_warning_id: string;
|
|
36284
|
+
facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
36285
|
+
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
36286
|
+
source_component_id?: string | undefined;
|
|
36287
|
+
subcircuit_id?: string | undefined;
|
|
36288
|
+
pcb_board_id?: string | undefined;
|
|
36289
|
+
}, {
|
|
36290
|
+
message: string;
|
|
36291
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
36292
|
+
pcb_component_id: string;
|
|
36293
|
+
facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
36294
|
+
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
36295
|
+
source_component_id?: string | undefined;
|
|
36296
|
+
subcircuit_id?: string | undefined;
|
|
36297
|
+
pcb_board_id?: string | undefined;
|
|
36298
|
+
warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
|
|
36299
|
+
pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
|
|
36179
36300
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
36180
36301
|
type: z.ZodLiteral<"pcb_plated_hole">;
|
|
36181
36302
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -47746,8 +47867,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
47746
47867
|
source_port_id: string;
|
|
47747
47868
|
schematic_port_id: string;
|
|
47748
47869
|
subcircuit_id?: string | undefined;
|
|
47749
|
-
schematic_component_id?: string | undefined;
|
|
47750
47870
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
47871
|
+
schematic_component_id?: string | undefined;
|
|
47751
47872
|
distance_from_component_edge?: number | undefined;
|
|
47752
47873
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
47753
47874
|
true_ccw_index?: number | undefined;
|
|
@@ -47766,8 +47887,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
47766
47887
|
source_port_id: string;
|
|
47767
47888
|
schematic_port_id: string;
|
|
47768
47889
|
subcircuit_id?: string | undefined;
|
|
47769
|
-
schematic_component_id?: string | undefined;
|
|
47770
47890
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
47891
|
+
schematic_component_id?: string | undefined;
|
|
47771
47892
|
distance_from_component_edge?: number | undefined;
|
|
47772
47893
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
47773
47894
|
true_ccw_index?: number | undefined;
|
|
@@ -51631,6 +51752,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
51631
51752
|
anchor_alignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
51632
51753
|
positioned_relative_to_pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
51633
51754
|
positioned_relative_to_pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
51755
|
+
cable_insertion_center: z.ZodOptional<z.ZodObject<{
|
|
51756
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
51757
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
51758
|
+
}, "strip", z.ZodTypeAny, {
|
|
51759
|
+
x: number;
|
|
51760
|
+
y: number;
|
|
51761
|
+
}, {
|
|
51762
|
+
x: string | number;
|
|
51763
|
+
y: string | number;
|
|
51764
|
+
}>>;
|
|
51634
51765
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
51635
51766
|
kicad_footprint: z.ZodOptional<z.ZodObject<{
|
|
51636
51767
|
footprintName: z.ZodOptional<z.ZodString>;
|
|
@@ -52924,6 +53055,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
52924
53055
|
anchor_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
52925
53056
|
positioned_relative_to_pcb_group_id?: string | undefined;
|
|
52926
53057
|
positioned_relative_to_pcb_board_id?: string | undefined;
|
|
53058
|
+
cable_insertion_center?: {
|
|
53059
|
+
x: number;
|
|
53060
|
+
y: number;
|
|
53061
|
+
} | undefined;
|
|
52927
53062
|
metadata?: {
|
|
52928
53063
|
kicad_footprint?: {
|
|
52929
53064
|
layer?: string | undefined;
|
|
@@ -53086,6 +53221,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53086
53221
|
anchor_alignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
53087
53222
|
positioned_relative_to_pcb_group_id?: string | undefined;
|
|
53088
53223
|
positioned_relative_to_pcb_board_id?: string | undefined;
|
|
53224
|
+
cable_insertion_center?: {
|
|
53225
|
+
x: string | number;
|
|
53226
|
+
y: string | number;
|
|
53227
|
+
} | undefined;
|
|
53089
53228
|
metadata?: {
|
|
53090
53229
|
kicad_footprint?: {
|
|
53091
53230
|
layer?: string | undefined;
|
|
@@ -53575,6 +53714,39 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
53575
53714
|
pcb_group_id?: string | undefined;
|
|
53576
53715
|
pcb_manual_edit_conflict_warning_id?: string | undefined;
|
|
53577
53716
|
warning_type?: "pcb_manual_edit_conflict_warning" | undefined;
|
|
53717
|
+
}>, z.ZodObject<{
|
|
53718
|
+
type: z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">;
|
|
53719
|
+
pcb_connector_not_in_accessible_orientation_warning_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
53720
|
+
warning_type: z.ZodDefault<z.ZodLiteral<"pcb_connector_not_in_accessible_orientation_warning">>;
|
|
53721
|
+
message: z.ZodString;
|
|
53722
|
+
pcb_component_id: z.ZodString;
|
|
53723
|
+
source_component_id: z.ZodOptional<z.ZodString>;
|
|
53724
|
+
pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
53725
|
+
facing_direction: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
53726
|
+
recommended_facing_direction: z.ZodEnum<["x-", "x+", "y+", "y-"]>;
|
|
53727
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
53728
|
+
}, "strip", z.ZodTypeAny, {
|
|
53729
|
+
message: string;
|
|
53730
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
53731
|
+
pcb_component_id: string;
|
|
53732
|
+
warning_type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
53733
|
+
pcb_connector_not_in_accessible_orientation_warning_id: string;
|
|
53734
|
+
facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
53735
|
+
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
53736
|
+
source_component_id?: string | undefined;
|
|
53737
|
+
subcircuit_id?: string | undefined;
|
|
53738
|
+
pcb_board_id?: string | undefined;
|
|
53739
|
+
}, {
|
|
53740
|
+
message: string;
|
|
53741
|
+
type: "pcb_connector_not_in_accessible_orientation_warning";
|
|
53742
|
+
pcb_component_id: string;
|
|
53743
|
+
facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
53744
|
+
recommended_facing_direction: "x-" | "x+" | "y+" | "y-";
|
|
53745
|
+
source_component_id?: string | undefined;
|
|
53746
|
+
subcircuit_id?: string | undefined;
|
|
53747
|
+
pcb_board_id?: string | undefined;
|
|
53748
|
+
warning_type?: "pcb_connector_not_in_accessible_orientation_warning" | undefined;
|
|
53749
|
+
pcb_connector_not_in_accessible_orientation_warning_id?: string | undefined;
|
|
53578
53750
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
53579
53751
|
type: z.ZodLiteral<"pcb_plated_hole">;
|
|
53580
53752
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -65145,8 +65317,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
65145
65317
|
source_port_id: string;
|
|
65146
65318
|
schematic_port_id: string;
|
|
65147
65319
|
subcircuit_id?: string | undefined;
|
|
65148
|
-
schematic_component_id?: string | undefined;
|
|
65149
65320
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
65321
|
+
schematic_component_id?: string | undefined;
|
|
65150
65322
|
distance_from_component_edge?: number | undefined;
|
|
65151
65323
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
65152
65324
|
true_ccw_index?: number | undefined;
|
|
@@ -65165,8 +65337,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
65165
65337
|
source_port_id: string;
|
|
65166
65338
|
schematic_port_id: string;
|
|
65167
65339
|
subcircuit_id?: string | undefined;
|
|
65168
|
-
schematic_component_id?: string | undefined;
|
|
65169
65340
|
facing_direction?: "left" | "right" | "up" | "down" | undefined;
|
|
65341
|
+
schematic_component_id?: string | undefined;
|
|
65170
65342
|
distance_from_component_edge?: number | undefined;
|
|
65171
65343
|
side_of_component?: "top" | "bottom" | "left" | "right" | undefined;
|
|
65172
65344
|
true_ccw_index?: number | undefined;
|
|
@@ -66355,4 +66527,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
66355
66527
|
*/
|
|
66356
66528
|
type CircuitJson = AnyCircuitElement[];
|
|
66357
66529
|
|
|
66358
|
-
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 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 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 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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, cad_component, 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_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_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_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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 };
|
|
66530
|
+
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 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 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 SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceComponentInternalConnection, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceI2cMisconfiguredError, type SourceI2cMisconfiguredErrorInput, type SourceInterconnect, type SourceInterconnectInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, 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, cad_component, 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_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_board, source_component_base, source_component_internal_connection, source_failed_to_create_component_error, source_group, source_i2c_misconfigured_error, source_interconnect, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, 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 };
|