circuit-json 0.0.281 → 0.0.283
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/README.md +21 -0
- package/dist/index.d.mts +147 -2
- package/dist/index.mjs +120 -98
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -87,6 +87,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
87
87
|
- [PcbBoard](#pcbboard)
|
|
88
88
|
- [PcbBreakoutPoint](#pcbbreakoutpoint)
|
|
89
89
|
- [PcbComponent](#pcbcomponent)
|
|
90
|
+
- [PcbComponentInvalidLayerError](#pcbcomponentinvalidlayererror)
|
|
90
91
|
- [PcbComponentOutsideBoardError](#pcbcomponentoutsideboarderror)
|
|
91
92
|
- [PcbCopperPour](#pcbcopperpour)
|
|
92
93
|
- [PcbCourtyardOutline](#pcbcourtyardoutline)
|
|
@@ -895,6 +896,26 @@ interface PcbComponent {
|
|
|
895
896
|
}
|
|
896
897
|
```
|
|
897
898
|
|
|
899
|
+
### PcbComponentInvalidLayerError
|
|
900
|
+
|
|
901
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_component_invalid_layer_error.ts)
|
|
902
|
+
|
|
903
|
+
Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers)
|
|
904
|
+
|
|
905
|
+
```typescript
|
|
906
|
+
/** Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers) */
|
|
907
|
+
interface PcbComponentInvalidLayerError {
|
|
908
|
+
type: "pcb_component_invalid_layer_error"
|
|
909
|
+
pcb_component_invalid_layer_error_id: string
|
|
910
|
+
error_type: "pcb_component_invalid_layer_error"
|
|
911
|
+
message: string
|
|
912
|
+
pcb_component_id?: string
|
|
913
|
+
source_component_id: string
|
|
914
|
+
layer: LayerRef
|
|
915
|
+
subcircuit_id?: string
|
|
916
|
+
}
|
|
917
|
+
```
|
|
918
|
+
|
|
898
919
|
### PcbComponentOutsideBoardError
|
|
899
920
|
|
|
900
921
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_component_outside_board_error.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -1548,6 +1548,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1548
1548
|
width: z.ZodNumber;
|
|
1549
1549
|
height: z.ZodNumber;
|
|
1550
1550
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1551
|
+
corner_radius: z.ZodOptional<z.ZodNumber>;
|
|
1551
1552
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1552
1553
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
1553
1554
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1577,6 +1578,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1577
1578
|
pcb_port_id?: string | undefined;
|
|
1578
1579
|
rect_border_radius?: number | undefined;
|
|
1579
1580
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
1581
|
+
corner_radius?: number | undefined;
|
|
1580
1582
|
}, {
|
|
1581
1583
|
x: string | number;
|
|
1582
1584
|
y: string | number;
|
|
@@ -1595,6 +1597,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1595
1597
|
rect_border_radius?: number | undefined;
|
|
1596
1598
|
pcb_smtpad_id?: string | undefined;
|
|
1597
1599
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
1600
|
+
corner_radius?: number | undefined;
|
|
1598
1601
|
}>, z.ZodObject<{
|
|
1599
1602
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1600
1603
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -1606,6 +1609,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1606
1609
|
width: z.ZodNumber;
|
|
1607
1610
|
height: z.ZodNumber;
|
|
1608
1611
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
1612
|
+
corner_radius: z.ZodOptional<z.ZodNumber>;
|
|
1609
1613
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1610
1614
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
1611
1615
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
@@ -1637,6 +1641,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1637
1641
|
pcb_port_id?: string | undefined;
|
|
1638
1642
|
rect_border_radius?: number | undefined;
|
|
1639
1643
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
1644
|
+
corner_radius?: number | undefined;
|
|
1640
1645
|
}, {
|
|
1641
1646
|
x: string | number;
|
|
1642
1647
|
y: string | number;
|
|
@@ -1656,6 +1661,7 @@ declare const pcb_smtpad: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
|
1656
1661
|
rect_border_radius?: number | undefined;
|
|
1657
1662
|
pcb_smtpad_id?: string | undefined;
|
|
1658
1663
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
1664
|
+
corner_radius?: number | undefined;
|
|
1659
1665
|
}>, z.ZodObject<{
|
|
1660
1666
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
1661
1667
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -1870,6 +1876,7 @@ interface PcbSmtPadRect {
|
|
|
1870
1876
|
width: number;
|
|
1871
1877
|
height: number;
|
|
1872
1878
|
rect_border_radius?: number;
|
|
1879
|
+
corner_radius?: number;
|
|
1873
1880
|
layer: LayerRef;
|
|
1874
1881
|
port_hints?: string[];
|
|
1875
1882
|
pcb_component_id?: string;
|
|
@@ -1890,6 +1897,7 @@ interface PcbSmtPadRotatedRect {
|
|
|
1890
1897
|
width: number;
|
|
1891
1898
|
height: number;
|
|
1892
1899
|
rect_border_radius?: number;
|
|
1900
|
+
corner_radius?: number;
|
|
1893
1901
|
ccw_rotation: Rotation;
|
|
1894
1902
|
layer: LayerRef;
|
|
1895
1903
|
port_hints?: string[];
|
|
@@ -6048,6 +6056,57 @@ interface PcbComponentOutsideBoardError {
|
|
|
6048
6056
|
source_component_id?: string;
|
|
6049
6057
|
}
|
|
6050
6058
|
|
|
6059
|
+
declare const pcb_component_invalid_layer_error: z.ZodObject<{
|
|
6060
|
+
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
6061
|
+
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6062
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
|
|
6063
|
+
message: z.ZodString;
|
|
6064
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
6065
|
+
source_component_id: z.ZodString;
|
|
6066
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6067
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6068
|
+
}, "strip", z.ZodTypeAny, {
|
|
6069
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6070
|
+
}, {
|
|
6071
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6072
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6073
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6074
|
+
}>;
|
|
6075
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
6076
|
+
}, "strip", z.ZodTypeAny, {
|
|
6077
|
+
message: string;
|
|
6078
|
+
type: "pcb_component_invalid_layer_error";
|
|
6079
|
+
source_component_id: string;
|
|
6080
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6081
|
+
error_type: "pcb_component_invalid_layer_error";
|
|
6082
|
+
pcb_component_invalid_layer_error_id: string;
|
|
6083
|
+
pcb_component_id?: string | undefined;
|
|
6084
|
+
subcircuit_id?: string | undefined;
|
|
6085
|
+
}, {
|
|
6086
|
+
message: string;
|
|
6087
|
+
type: "pcb_component_invalid_layer_error";
|
|
6088
|
+
source_component_id: string;
|
|
6089
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
6090
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
6091
|
+
};
|
|
6092
|
+
pcb_component_id?: string | undefined;
|
|
6093
|
+
subcircuit_id?: string | undefined;
|
|
6094
|
+
error_type?: "pcb_component_invalid_layer_error" | undefined;
|
|
6095
|
+
pcb_component_invalid_layer_error_id?: string | undefined;
|
|
6096
|
+
}>;
|
|
6097
|
+
type PcbComponentInvalidLayerErrorInput = z.input<typeof pcb_component_invalid_layer_error>;
|
|
6098
|
+
/** Error emitted when a component is placed on an invalid layer (components can only be on 'top' or 'bottom' layers) */
|
|
6099
|
+
interface PcbComponentInvalidLayerError {
|
|
6100
|
+
type: "pcb_component_invalid_layer_error";
|
|
6101
|
+
pcb_component_invalid_layer_error_id: string;
|
|
6102
|
+
error_type: "pcb_component_invalid_layer_error";
|
|
6103
|
+
message: string;
|
|
6104
|
+
pcb_component_id?: string;
|
|
6105
|
+
source_component_id: string;
|
|
6106
|
+
layer: LayerRef;
|
|
6107
|
+
subcircuit_id?: string;
|
|
6108
|
+
}
|
|
6109
|
+
|
|
6051
6110
|
declare const pcb_via_clearance_error: z.ZodObject<{
|
|
6052
6111
|
type: z.ZodLiteral<"pcb_via_clearance_error">;
|
|
6053
6112
|
pcb_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -6271,7 +6330,7 @@ interface PcbCourtyardOutline {
|
|
|
6271
6330
|
*/
|
|
6272
6331
|
type PCBCourtyardOutline = PcbCourtyardOutline;
|
|
6273
6332
|
|
|
6274
|
-
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline;
|
|
6333
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPlacementError | PcbTraceHint | PcbSilkscreenLine | PcbSilkscreenPath | PcbSilkscreenText | PcbSilkscreenRect | PcbSilkscreenCircle | PcbFabricationNoteRect | PcbFabricationNoteDimension | PcbNoteText | PcbNoteRect | PcbNotePath | PcbNoteLine | PcbNoteDimension | PcbAutoroutingError | PcbFootprintOverlapError | PcbCutout | PcbBreakoutPoint | PcbGroundPlane | PcbGroundPlaneRegion | PcbThermalSpoke | PcbCopperPour | PcbComponentOutsideBoardError | PcbComponentInvalidLayerError | PcbViaClearanceError | PcbCourtyardRect | PcbCourtyardOutline;
|
|
6275
6334
|
|
|
6276
6335
|
interface SchematicBox {
|
|
6277
6336
|
type: "schematic_box";
|
|
@@ -14416,6 +14475,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14416
14475
|
width: z.ZodNumber;
|
|
14417
14476
|
height: z.ZodNumber;
|
|
14418
14477
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
14478
|
+
corner_radius: z.ZodOptional<z.ZodNumber>;
|
|
14419
14479
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
14420
14480
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
14421
14481
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -14445,6 +14505,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14445
14505
|
pcb_port_id?: string | undefined;
|
|
14446
14506
|
rect_border_radius?: number | undefined;
|
|
14447
14507
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
14508
|
+
corner_radius?: number | undefined;
|
|
14448
14509
|
}, {
|
|
14449
14510
|
x: string | number;
|
|
14450
14511
|
y: string | number;
|
|
@@ -14463,6 +14524,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14463
14524
|
rect_border_radius?: number | undefined;
|
|
14464
14525
|
pcb_smtpad_id?: string | undefined;
|
|
14465
14526
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
14527
|
+
corner_radius?: number | undefined;
|
|
14466
14528
|
}>, z.ZodObject<{
|
|
14467
14529
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
14468
14530
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -14474,6 +14536,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14474
14536
|
width: z.ZodNumber;
|
|
14475
14537
|
height: z.ZodNumber;
|
|
14476
14538
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
14539
|
+
corner_radius: z.ZodOptional<z.ZodNumber>;
|
|
14477
14540
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14478
14541
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
14479
14542
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
@@ -14505,6 +14568,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14505
14568
|
pcb_port_id?: string | undefined;
|
|
14506
14569
|
rect_border_radius?: number | undefined;
|
|
14507
14570
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
14571
|
+
corner_radius?: number | undefined;
|
|
14508
14572
|
}, {
|
|
14509
14573
|
x: string | number;
|
|
14510
14574
|
y: string | number;
|
|
@@ -14524,6 +14588,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14524
14588
|
rect_border_radius?: number | undefined;
|
|
14525
14589
|
pcb_smtpad_id?: string | undefined;
|
|
14526
14590
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
14591
|
+
corner_radius?: number | undefined;
|
|
14527
14592
|
}>, z.ZodObject<{
|
|
14528
14593
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
14529
14594
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -16847,6 +16912,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16847
16912
|
subcircuit_id?: string | undefined;
|
|
16848
16913
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
16849
16914
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
16915
|
+
}>, z.ZodObject<{
|
|
16916
|
+
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
16917
|
+
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
16918
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
|
|
16919
|
+
message: z.ZodString;
|
|
16920
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
16921
|
+
source_component_id: z.ZodString;
|
|
16922
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
16923
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
16924
|
+
}, "strip", z.ZodTypeAny, {
|
|
16925
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16926
|
+
}, {
|
|
16927
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16928
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16929
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16930
|
+
}>;
|
|
16931
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
16932
|
+
}, "strip", z.ZodTypeAny, {
|
|
16933
|
+
message: string;
|
|
16934
|
+
type: "pcb_component_invalid_layer_error";
|
|
16935
|
+
source_component_id: string;
|
|
16936
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16937
|
+
error_type: "pcb_component_invalid_layer_error";
|
|
16938
|
+
pcb_component_invalid_layer_error_id: string;
|
|
16939
|
+
pcb_component_id?: string | undefined;
|
|
16940
|
+
subcircuit_id?: string | undefined;
|
|
16941
|
+
}, {
|
|
16942
|
+
message: string;
|
|
16943
|
+
type: "pcb_component_invalid_layer_error";
|
|
16944
|
+
source_component_id: string;
|
|
16945
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
16946
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
16947
|
+
};
|
|
16948
|
+
pcb_component_id?: string | undefined;
|
|
16949
|
+
subcircuit_id?: string | undefined;
|
|
16950
|
+
error_type?: "pcb_component_invalid_layer_error" | undefined;
|
|
16951
|
+
pcb_component_invalid_layer_error_id?: string | undefined;
|
|
16850
16952
|
}>, z.ZodObject<{
|
|
16851
16953
|
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
16852
16954
|
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -21563,6 +21665,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21563
21665
|
width: z.ZodNumber;
|
|
21564
21666
|
height: z.ZodNumber;
|
|
21565
21667
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
21668
|
+
corner_radius: z.ZodOptional<z.ZodNumber>;
|
|
21566
21669
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
21567
21670
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
21568
21671
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -21592,6 +21695,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21592
21695
|
pcb_port_id?: string | undefined;
|
|
21593
21696
|
rect_border_radius?: number | undefined;
|
|
21594
21697
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
21698
|
+
corner_radius?: number | undefined;
|
|
21595
21699
|
}, {
|
|
21596
21700
|
x: string | number;
|
|
21597
21701
|
y: string | number;
|
|
@@ -21610,6 +21714,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21610
21714
|
rect_border_radius?: number | undefined;
|
|
21611
21715
|
pcb_smtpad_id?: string | undefined;
|
|
21612
21716
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
21717
|
+
corner_radius?: number | undefined;
|
|
21613
21718
|
}>, z.ZodObject<{
|
|
21614
21719
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
21615
21720
|
shape: z.ZodLiteral<"rotated_rect">;
|
|
@@ -21621,6 +21726,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21621
21726
|
width: z.ZodNumber;
|
|
21622
21727
|
height: z.ZodNumber;
|
|
21623
21728
|
rect_border_radius: z.ZodOptional<z.ZodNumber>;
|
|
21729
|
+
corner_radius: z.ZodOptional<z.ZodNumber>;
|
|
21624
21730
|
ccw_rotation: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
21625
21731
|
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
21626
21732
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
@@ -21652,6 +21758,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21652
21758
|
pcb_port_id?: string | undefined;
|
|
21653
21759
|
rect_border_radius?: number | undefined;
|
|
21654
21760
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
21761
|
+
corner_radius?: number | undefined;
|
|
21655
21762
|
}, {
|
|
21656
21763
|
x: string | number;
|
|
21657
21764
|
y: string | number;
|
|
@@ -21671,6 +21778,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21671
21778
|
rect_border_radius?: number | undefined;
|
|
21672
21779
|
pcb_smtpad_id?: string | undefined;
|
|
21673
21780
|
is_covered_with_solder_mask?: boolean | undefined;
|
|
21781
|
+
corner_radius?: number | undefined;
|
|
21674
21782
|
}>, z.ZodObject<{
|
|
21675
21783
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
21676
21784
|
shape: z.ZodLiteral<"rotated_pill">;
|
|
@@ -23994,6 +24102,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23994
24102
|
subcircuit_id?: string | undefined;
|
|
23995
24103
|
error_type?: "pcb_component_outside_board_error" | undefined;
|
|
23996
24104
|
pcb_component_outside_board_error_id?: string | undefined;
|
|
24105
|
+
}>, z.ZodObject<{
|
|
24106
|
+
type: z.ZodLiteral<"pcb_component_invalid_layer_error">;
|
|
24107
|
+
pcb_component_invalid_layer_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
24108
|
+
error_type: z.ZodDefault<z.ZodLiteral<"pcb_component_invalid_layer_error">>;
|
|
24109
|
+
message: z.ZodString;
|
|
24110
|
+
pcb_component_id: z.ZodOptional<z.ZodString>;
|
|
24111
|
+
source_component_id: z.ZodString;
|
|
24112
|
+
layer: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
24113
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
24114
|
+
}, "strip", z.ZodTypeAny, {
|
|
24115
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24116
|
+
}, {
|
|
24117
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24118
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
24119
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24120
|
+
}>;
|
|
24121
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
24122
|
+
}, "strip", z.ZodTypeAny, {
|
|
24123
|
+
message: string;
|
|
24124
|
+
type: "pcb_component_invalid_layer_error";
|
|
24125
|
+
source_component_id: string;
|
|
24126
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24127
|
+
error_type: "pcb_component_invalid_layer_error";
|
|
24128
|
+
pcb_component_invalid_layer_error_id: string;
|
|
24129
|
+
pcb_component_id?: string | undefined;
|
|
24130
|
+
subcircuit_id?: string | undefined;
|
|
24131
|
+
}, {
|
|
24132
|
+
message: string;
|
|
24133
|
+
type: "pcb_component_invalid_layer_error";
|
|
24134
|
+
source_component_id: string;
|
|
24135
|
+
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
24136
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
24137
|
+
};
|
|
24138
|
+
pcb_component_id?: string | undefined;
|
|
24139
|
+
subcircuit_id?: string | undefined;
|
|
24140
|
+
error_type?: "pcb_component_invalid_layer_error" | undefined;
|
|
24141
|
+
pcb_component_invalid_layer_error_id?: string | undefined;
|
|
23997
24142
|
}>, z.ZodObject<{
|
|
23998
24143
|
type: z.ZodLiteral<"pcb_courtyard_rect">;
|
|
23999
24144
|
pcb_courtyard_rect_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -25643,4 +25788,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
25643
25788
|
*/
|
|
25644
25789
|
type CircuitJson = AnyCircuitElement[];
|
|
25645
25790
|
|
|
25646
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, 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 LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, 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 PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, 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 PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, 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, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, 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_oval_shape, pcb_hole_pill_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_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_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|
|
25791
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type BRepShape, type CadComponent, 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 LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBCourtyardOutline, 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 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 PcbComponentOutsideBoardError, type PcbComponentOutsideBoardErrorInput, type PcbCopperPour, type PcbCopperPourBRep, type PcbCopperPourBRepInput, type PcbCopperPourInput, type PcbCopperPourPolygon, type PcbCopperPourPolygonInput, type PcbCopperPourRect, type PcbCopperPourRectInput, type PcbCourtyardOutline, type PcbCourtyardOutlineInput, type PcbCourtyardRect, type PcbCourtyardRectInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, 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 PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePill, type PcbHolePillInput, type PcbHolePillWithRectPad, type PcbHoleRotatedPill, type PcbHoleRotatedPillInput, type PcbHoleRotatedPillWithRectPad, 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 PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotConnectedError, type PcbPortNotConnectedErrorInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, 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 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 SchematicTable, type SchematicTableCell, type SchematicTableCellInput, type SchematicTableInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type SimulationAcVoltageSource, type SimulationAcVoltageSourceInput, type SimulationDcVoltageSource, type SimulationExperiment, type SimulationExperimentInput, type SimulationSwitch, type SimulationSwitchInput, type SimulationTransientVoltageGraph, type SimulationTransientVoltageGraphInput, type SimulationVoltageProbe, type SimulationVoltageProbeInput, type SimulationVoltageSource, type SimulationVoltageSourceInput, type Size, type SizeInput, type SourceBoard, type SourceBoardInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceManuallyPlacedVia, type SourceManuallyPlacedViaInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePinMissingTraceWarning, type SourcePinMissingTraceWarningInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourcePropertyIgnoredWarning, type SourcePropertyIgnoredWarningInput, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleLed, type SourceSimpleLedInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, 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 SourceTrace, type SourceTraceNotConnectedError, type SourceTraceNotConnectedErrorInput, type SupplierName, type VisibleLayer, type VisibleLayerRef, type WaveShape, all_layers, any_circuit_element, any_soup_element, any_source_component, 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, layer_ref, layer_string, length, ms, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_component_invalid_layer_error, pcb_component_outside_board_error, pcb_copper_pour, pcb_copper_pour_brep, pcb_copper_pour_polygon, pcb_copper_pour_rect, pcb_courtyard_outline, pcb_courtyard_rect, pcb_cutout, pcb_cutout_circle, 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_oval_shape, pcb_hole_pill_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_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_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_table, schematic_table_cell, schematic_text, schematic_trace, schematic_voltage_probe, simulation_ac_voltage_source, simulation_dc_voltage_source, simulation_experiment, simulation_switch, simulation_transient_voltage_graph, simulation_voltage_probe, simulation_voltage_source, size, source_board, source_component_base, source_failed_to_create_component_error, source_group, source_manually_placed_via, source_missing_property_error, source_net, source_pcb_ground_plane, source_pin_missing_trace_warning, source_port, source_project_metadata, source_property_ignored_warning, source_simple_battery, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_led, source_simple_mosfet, 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_trace, source_trace_not_connected_error, supplier_name, time, timestamp, visible_layer, voltage, wave_shape };
|