circuit-json 0.0.283 → 0.0.285
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 +20 -0
- package/dist/index.d.mts +138 -2
- package/dist/index.mjs +408 -393
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,6 +110,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
110
110
|
- [PcbNotePath](#pcbnotepath)
|
|
111
111
|
- [PcbNoteRect](#pcbnoterect)
|
|
112
112
|
- [PcbNoteText](#pcbnotetext)
|
|
113
|
+
- [PcbPanel](#pcbpanel)
|
|
113
114
|
- [PcbPlacementError](#pcbplacementerror)
|
|
114
115
|
- [PcbPlatedHole](#pcbplatedhole)
|
|
115
116
|
- [PcbPort](#pcbport)
|
|
@@ -839,6 +840,7 @@ Defines the board outline of the PCB
|
|
|
839
840
|
interface PcbBoard {
|
|
840
841
|
type: "pcb_board"
|
|
841
842
|
pcb_board_id: string
|
|
843
|
+
pcb_panel_id?: string
|
|
842
844
|
is_subcircuit?: boolean
|
|
843
845
|
subcircuit_id?: string
|
|
844
846
|
width: Length
|
|
@@ -1211,6 +1213,7 @@ interface PcbGroup {
|
|
|
1211
1213
|
width: Length
|
|
1212
1214
|
height: Length
|
|
1213
1215
|
center: Point
|
|
1216
|
+
outline?: Point[]
|
|
1214
1217
|
anchor_position?: Point
|
|
1215
1218
|
anchor_alignment?:
|
|
1216
1219
|
| "center"
|
|
@@ -1425,6 +1428,23 @@ interface PcbNoteText {
|
|
|
1425
1428
|
}
|
|
1426
1429
|
```
|
|
1427
1430
|
|
|
1431
|
+
### PcbPanel
|
|
1432
|
+
|
|
1433
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_panel.ts)
|
|
1434
|
+
|
|
1435
|
+
Defines a PCB panel that can contain multiple boards
|
|
1436
|
+
|
|
1437
|
+
```typescript
|
|
1438
|
+
/** Defines a PCB panel that can contain multiple boards */
|
|
1439
|
+
interface PcbPanel {
|
|
1440
|
+
type: "pcb_panel"
|
|
1441
|
+
pcb_panel_id: string
|
|
1442
|
+
width: Length
|
|
1443
|
+
height: Length
|
|
1444
|
+
covered_with_solder_mask: boolean
|
|
1445
|
+
}
|
|
1446
|
+
```
|
|
1447
|
+
|
|
1428
1448
|
### PcbPlacementError
|
|
1429
1449
|
|
|
1430
1450
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/pcb/pcb_placement_error.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -3034,6 +3034,7 @@ type PCBVia = PcbVia;
|
|
|
3034
3034
|
declare const pcb_board: z.ZodObject<{
|
|
3035
3035
|
type: z.ZodLiteral<"pcb_board">;
|
|
3036
3036
|
pcb_board_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3037
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
3037
3038
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
3038
3039
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3039
3040
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3074,6 +3075,7 @@ declare const pcb_board: z.ZodObject<{
|
|
|
3074
3075
|
num_layers: number;
|
|
3075
3076
|
material: "fr4" | "fr1";
|
|
3076
3077
|
subcircuit_id?: string | undefined;
|
|
3078
|
+
pcb_panel_id?: string | undefined;
|
|
3077
3079
|
is_subcircuit?: boolean | undefined;
|
|
3078
3080
|
outline?: {
|
|
3079
3081
|
x: number;
|
|
@@ -3089,6 +3091,7 @@ declare const pcb_board: z.ZodObject<{
|
|
|
3089
3091
|
};
|
|
3090
3092
|
subcircuit_id?: string | undefined;
|
|
3091
3093
|
pcb_board_id?: string | undefined;
|
|
3094
|
+
pcb_panel_id?: string | undefined;
|
|
3092
3095
|
is_subcircuit?: boolean | undefined;
|
|
3093
3096
|
thickness?: string | number | undefined;
|
|
3094
3097
|
num_layers?: number | undefined;
|
|
@@ -3104,6 +3107,7 @@ declare const pcb_board: z.ZodObject<{
|
|
|
3104
3107
|
interface PcbBoard {
|
|
3105
3108
|
type: "pcb_board";
|
|
3106
3109
|
pcb_board_id: string;
|
|
3110
|
+
pcb_panel_id?: string;
|
|
3107
3111
|
is_subcircuit?: boolean;
|
|
3108
3112
|
subcircuit_id?: string;
|
|
3109
3113
|
width: Length;
|
|
@@ -3120,6 +3124,41 @@ type PcbBoardInput = z.input<typeof pcb_board>;
|
|
|
3120
3124
|
*/
|
|
3121
3125
|
type PCBBoard = PcbBoard;
|
|
3122
3126
|
|
|
3127
|
+
declare const pcb_panel: z.ZodObject<{
|
|
3128
|
+
type: z.ZodLiteral<"pcb_panel">;
|
|
3129
|
+
pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3130
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3131
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3132
|
+
covered_with_solder_mask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3133
|
+
}, "strip", z.ZodTypeAny, {
|
|
3134
|
+
type: "pcb_panel";
|
|
3135
|
+
width: number;
|
|
3136
|
+
height: number;
|
|
3137
|
+
pcb_panel_id: string;
|
|
3138
|
+
covered_with_solder_mask: boolean;
|
|
3139
|
+
}, {
|
|
3140
|
+
type: "pcb_panel";
|
|
3141
|
+
width: string | number;
|
|
3142
|
+
height: string | number;
|
|
3143
|
+
pcb_panel_id?: string | undefined;
|
|
3144
|
+
covered_with_solder_mask?: boolean | undefined;
|
|
3145
|
+
}>;
|
|
3146
|
+
/**
|
|
3147
|
+
* Defines a PCB panel that can contain multiple boards
|
|
3148
|
+
*/
|
|
3149
|
+
interface PcbPanel {
|
|
3150
|
+
type: "pcb_panel";
|
|
3151
|
+
pcb_panel_id: string;
|
|
3152
|
+
width: Length;
|
|
3153
|
+
height: Length;
|
|
3154
|
+
covered_with_solder_mask: boolean;
|
|
3155
|
+
}
|
|
3156
|
+
type PcbPanelInput = z.input<typeof pcb_panel>;
|
|
3157
|
+
/**
|
|
3158
|
+
* @deprecated use PcbPanel
|
|
3159
|
+
*/
|
|
3160
|
+
type PCBPanel = PcbPanel;
|
|
3161
|
+
|
|
3123
3162
|
declare const pcb_placement_error: z.ZodObject<{
|
|
3124
3163
|
type: z.ZodLiteral<"pcb_placement_error">;
|
|
3125
3164
|
pcb_placement_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -5005,6 +5044,16 @@ declare const pcb_group: z.ZodObject<{
|
|
|
5005
5044
|
x: string | number;
|
|
5006
5045
|
y: string | number;
|
|
5007
5046
|
}>;
|
|
5047
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5048
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5049
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5050
|
+
}, "strip", z.ZodTypeAny, {
|
|
5051
|
+
x: number;
|
|
5052
|
+
y: number;
|
|
5053
|
+
}, {
|
|
5054
|
+
x: string | number;
|
|
5055
|
+
y: string | number;
|
|
5056
|
+
}>, "many">>;
|
|
5008
5057
|
anchor_position: z.ZodOptional<z.ZodObject<{
|
|
5009
5058
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
5010
5059
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5043,6 +5092,10 @@ declare const pcb_group: z.ZodObject<{
|
|
|
5043
5092
|
name?: string | undefined;
|
|
5044
5093
|
subcircuit_id?: string | undefined;
|
|
5045
5094
|
is_subcircuit?: boolean | undefined;
|
|
5095
|
+
outline?: {
|
|
5096
|
+
x: number;
|
|
5097
|
+
y: number;
|
|
5098
|
+
}[] | undefined;
|
|
5046
5099
|
anchor_position?: {
|
|
5047
5100
|
x: number;
|
|
5048
5101
|
y: number;
|
|
@@ -5068,6 +5121,10 @@ declare const pcb_group: z.ZodObject<{
|
|
|
5068
5121
|
subcircuit_id?: string | undefined;
|
|
5069
5122
|
pcb_group_id?: string | undefined;
|
|
5070
5123
|
is_subcircuit?: boolean | undefined;
|
|
5124
|
+
outline?: {
|
|
5125
|
+
x: string | number;
|
|
5126
|
+
y: string | number;
|
|
5127
|
+
}[] | undefined;
|
|
5071
5128
|
anchor_position?: {
|
|
5072
5129
|
x: string | number;
|
|
5073
5130
|
y: string | number;
|
|
@@ -5092,6 +5149,7 @@ interface PcbGroup {
|
|
|
5092
5149
|
width: Length;
|
|
5093
5150
|
height: Length;
|
|
5094
5151
|
center: Point;
|
|
5152
|
+
outline?: Point[];
|
|
5095
5153
|
anchor_position?: Point;
|
|
5096
5154
|
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right";
|
|
5097
5155
|
pcb_component_ids: string[];
|
|
@@ -6330,7 +6388,7 @@ interface PcbCourtyardOutline {
|
|
|
6330
6388
|
*/
|
|
6331
6389
|
type PCBCourtyardOutline = PcbCourtyardOutline;
|
|
6332
6390
|
|
|
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;
|
|
6391
|
+
type PcbCircuitElement = PcbComponent | PcbHole | PcbPlatedHole | PcbPort | PcbSmtPad | PcbSolderPaste | PcbText | PcbTrace | PcbTraceError | PcbTraceMissingError | PcbMissingFootprintError | ExternalFootprintLoadError | CircuitJsonFootprintLoadError | PcbManualEditConflictWarning | PcbPortNotMatchedError | PcbPortNotConnectedError | PcbVia | PcbNet | PcbBoard | PcbPanel | 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;
|
|
6334
6392
|
|
|
6335
6393
|
interface SchematicBox {
|
|
6336
6394
|
type: "schematic_box";
|
|
@@ -15020,6 +15078,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15020
15078
|
}>]>, z.ZodObject<{
|
|
15021
15079
|
type: z.ZodLiteral<"pcb_board">;
|
|
15022
15080
|
pcb_board_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15081
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
15023
15082
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
15024
15083
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15025
15084
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15060,6 +15119,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15060
15119
|
num_layers: number;
|
|
15061
15120
|
material: "fr4" | "fr1";
|
|
15062
15121
|
subcircuit_id?: string | undefined;
|
|
15122
|
+
pcb_panel_id?: string | undefined;
|
|
15063
15123
|
is_subcircuit?: boolean | undefined;
|
|
15064
15124
|
outline?: {
|
|
15065
15125
|
x: number;
|
|
@@ -15075,6 +15135,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15075
15135
|
};
|
|
15076
15136
|
subcircuit_id?: string | undefined;
|
|
15077
15137
|
pcb_board_id?: string | undefined;
|
|
15138
|
+
pcb_panel_id?: string | undefined;
|
|
15078
15139
|
is_subcircuit?: boolean | undefined;
|
|
15079
15140
|
thickness?: string | number | undefined;
|
|
15080
15141
|
num_layers?: number | undefined;
|
|
@@ -15083,6 +15144,24 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15083
15144
|
y: string | number;
|
|
15084
15145
|
}[] | undefined;
|
|
15085
15146
|
material?: "fr4" | "fr1" | undefined;
|
|
15147
|
+
}>, z.ZodObject<{
|
|
15148
|
+
type: z.ZodLiteral<"pcb_panel">;
|
|
15149
|
+
pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15150
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15151
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15152
|
+
covered_with_solder_mask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
15153
|
+
}, "strip", z.ZodTypeAny, {
|
|
15154
|
+
type: "pcb_panel";
|
|
15155
|
+
width: number;
|
|
15156
|
+
height: number;
|
|
15157
|
+
pcb_panel_id: string;
|
|
15158
|
+
covered_with_solder_mask: boolean;
|
|
15159
|
+
}, {
|
|
15160
|
+
type: "pcb_panel";
|
|
15161
|
+
width: string | number;
|
|
15162
|
+
height: string | number;
|
|
15163
|
+
pcb_panel_id?: string | undefined;
|
|
15164
|
+
covered_with_solder_mask?: boolean | undefined;
|
|
15086
15165
|
}>, z.ZodObject<{
|
|
15087
15166
|
type: z.ZodLiteral<"pcb_group">;
|
|
15088
15167
|
pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -15101,6 +15180,16 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15101
15180
|
x: string | number;
|
|
15102
15181
|
y: string | number;
|
|
15103
15182
|
}>;
|
|
15183
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
15184
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15185
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15186
|
+
}, "strip", z.ZodTypeAny, {
|
|
15187
|
+
x: number;
|
|
15188
|
+
y: number;
|
|
15189
|
+
}, {
|
|
15190
|
+
x: string | number;
|
|
15191
|
+
y: string | number;
|
|
15192
|
+
}>, "many">>;
|
|
15104
15193
|
anchor_position: z.ZodOptional<z.ZodObject<{
|
|
15105
15194
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15106
15195
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15139,6 +15228,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15139
15228
|
name?: string | undefined;
|
|
15140
15229
|
subcircuit_id?: string | undefined;
|
|
15141
15230
|
is_subcircuit?: boolean | undefined;
|
|
15231
|
+
outline?: {
|
|
15232
|
+
x: number;
|
|
15233
|
+
y: number;
|
|
15234
|
+
}[] | undefined;
|
|
15142
15235
|
anchor_position?: {
|
|
15143
15236
|
x: number;
|
|
15144
15237
|
y: number;
|
|
@@ -15164,6 +15257,10 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15164
15257
|
subcircuit_id?: string | undefined;
|
|
15165
15258
|
pcb_group_id?: string | undefined;
|
|
15166
15259
|
is_subcircuit?: boolean | undefined;
|
|
15260
|
+
outline?: {
|
|
15261
|
+
x: string | number;
|
|
15262
|
+
y: string | number;
|
|
15263
|
+
}[] | undefined;
|
|
15167
15264
|
anchor_position?: {
|
|
15168
15265
|
x: string | number;
|
|
15169
15266
|
y: string | number;
|
|
@@ -22210,6 +22307,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22210
22307
|
}>]>, z.ZodObject<{
|
|
22211
22308
|
type: z.ZodLiteral<"pcb_board">;
|
|
22212
22309
|
pcb_board_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22310
|
+
pcb_panel_id: z.ZodOptional<z.ZodString>;
|
|
22213
22311
|
is_subcircuit: z.ZodOptional<z.ZodBoolean>;
|
|
22214
22312
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
22215
22313
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -22250,6 +22348,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22250
22348
|
num_layers: number;
|
|
22251
22349
|
material: "fr4" | "fr1";
|
|
22252
22350
|
subcircuit_id?: string | undefined;
|
|
22351
|
+
pcb_panel_id?: string | undefined;
|
|
22253
22352
|
is_subcircuit?: boolean | undefined;
|
|
22254
22353
|
outline?: {
|
|
22255
22354
|
x: number;
|
|
@@ -22265,6 +22364,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22265
22364
|
};
|
|
22266
22365
|
subcircuit_id?: string | undefined;
|
|
22267
22366
|
pcb_board_id?: string | undefined;
|
|
22367
|
+
pcb_panel_id?: string | undefined;
|
|
22268
22368
|
is_subcircuit?: boolean | undefined;
|
|
22269
22369
|
thickness?: string | number | undefined;
|
|
22270
22370
|
num_layers?: number | undefined;
|
|
@@ -22273,6 +22373,24 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22273
22373
|
y: string | number;
|
|
22274
22374
|
}[] | undefined;
|
|
22275
22375
|
material?: "fr4" | "fr1" | undefined;
|
|
22376
|
+
}>, z.ZodObject<{
|
|
22377
|
+
type: z.ZodLiteral<"pcb_panel">;
|
|
22378
|
+
pcb_panel_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
22379
|
+
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22380
|
+
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22381
|
+
covered_with_solder_mask: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
22382
|
+
}, "strip", z.ZodTypeAny, {
|
|
22383
|
+
type: "pcb_panel";
|
|
22384
|
+
width: number;
|
|
22385
|
+
height: number;
|
|
22386
|
+
pcb_panel_id: string;
|
|
22387
|
+
covered_with_solder_mask: boolean;
|
|
22388
|
+
}, {
|
|
22389
|
+
type: "pcb_panel";
|
|
22390
|
+
width: string | number;
|
|
22391
|
+
height: string | number;
|
|
22392
|
+
pcb_panel_id?: string | undefined;
|
|
22393
|
+
covered_with_solder_mask?: boolean | undefined;
|
|
22276
22394
|
}>, z.ZodObject<{
|
|
22277
22395
|
type: z.ZodLiteral<"pcb_group">;
|
|
22278
22396
|
pcb_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -22291,6 +22409,16 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22291
22409
|
x: string | number;
|
|
22292
22410
|
y: string | number;
|
|
22293
22411
|
}>;
|
|
22412
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
22413
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22414
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22415
|
+
}, "strip", z.ZodTypeAny, {
|
|
22416
|
+
x: number;
|
|
22417
|
+
y: number;
|
|
22418
|
+
}, {
|
|
22419
|
+
x: string | number;
|
|
22420
|
+
y: string | number;
|
|
22421
|
+
}>, "many">>;
|
|
22294
22422
|
anchor_position: z.ZodOptional<z.ZodObject<{
|
|
22295
22423
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
22296
22424
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -22329,6 +22457,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22329
22457
|
name?: string | undefined;
|
|
22330
22458
|
subcircuit_id?: string | undefined;
|
|
22331
22459
|
is_subcircuit?: boolean | undefined;
|
|
22460
|
+
outline?: {
|
|
22461
|
+
x: number;
|
|
22462
|
+
y: number;
|
|
22463
|
+
}[] | undefined;
|
|
22332
22464
|
anchor_position?: {
|
|
22333
22465
|
x: number;
|
|
22334
22466
|
y: number;
|
|
@@ -22354,6 +22486,10 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
22354
22486
|
subcircuit_id?: string | undefined;
|
|
22355
22487
|
pcb_group_id?: string | undefined;
|
|
22356
22488
|
is_subcircuit?: boolean | undefined;
|
|
22489
|
+
outline?: {
|
|
22490
|
+
x: string | number;
|
|
22491
|
+
y: string | number;
|
|
22492
|
+
}[] | undefined;
|
|
22357
22493
|
anchor_position?: {
|
|
22358
22494
|
x: string | number;
|
|
22359
22495
|
y: string | number;
|
|
@@ -25788,4 +25924,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
25788
25924
|
*/
|
|
25789
25925
|
type CircuitJson = AnyCircuitElement[];
|
|
25790
25926
|
|
|
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 };
|
|
25927
|
+
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 PCBPanel, 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 PcbPanel, type PcbPanelInput, 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_panel, 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 };
|