circuit-json 0.0.333 → 0.0.335
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 +15 -6
- package/dist/index.d.mts +169 -12
- package/dist/index.mjs +1299 -1290
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -66,6 +66,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
66
66
|
- [SourceSimpleChip](#sourcesimplechip)
|
|
67
67
|
- [SourceSimpleCrystal](#sourcesimplecrystal)
|
|
68
68
|
- [SourceSimpleDiode](#sourcesimplediode)
|
|
69
|
+
- [SourceSimpleFiducial](#sourcesimplefiducial)
|
|
69
70
|
- [SourceSimpleFuse](#sourcesimplefuse)
|
|
70
71
|
- [SourceSimpleGround](#sourcesimpleground)
|
|
71
72
|
- [SourceSimpleInductor](#sourcesimpleinductor)
|
|
@@ -591,6 +592,19 @@ interface SourceSimpleDiode extends SourceComponentBase {
|
|
|
591
592
|
}
|
|
592
593
|
```
|
|
593
594
|
|
|
595
|
+
### SourceSimpleFiducial
|
|
596
|
+
|
|
597
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_fiducial.ts)
|
|
598
|
+
|
|
599
|
+
Defines a simple fiducial component
|
|
600
|
+
|
|
601
|
+
```typescript
|
|
602
|
+
/** Defines a simple fiducial component */
|
|
603
|
+
interface SourceSimpleFiducial extends SourceComponentBase {
|
|
604
|
+
ftype: "simple_fiducial"
|
|
605
|
+
}
|
|
606
|
+
```
|
|
607
|
+
|
|
594
608
|
### SourceSimpleFuse
|
|
595
609
|
|
|
596
610
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_simple_fuse.ts)
|
|
@@ -1371,12 +1385,7 @@ interface PcbGroup {
|
|
|
1371
1385
|
display_offset_y?: string
|
|
1372
1386
|
outline?: Point[]
|
|
1373
1387
|
anchor_position?: Point
|
|
1374
|
-
anchor_alignment
|
|
1375
|
-
| "center"
|
|
1376
|
-
| "top_left"
|
|
1377
|
-
| "top_right"
|
|
1378
|
-
| "bottom_left"
|
|
1379
|
-
| "bottom_right"
|
|
1388
|
+
anchor_alignment: NinePointAnchor
|
|
1380
1389
|
position_mode?: "packed" | "relative_to_group_anchor" | "none"
|
|
1381
1390
|
positioned_relative_to_pcb_group_id?: string
|
|
1382
1391
|
positioned_relative_to_pcb_board_id?: string
|
package/dist/index.d.mts
CHANGED
|
@@ -6050,7 +6050,7 @@ declare const pcb_group: z.ZodObject<{
|
|
|
6050
6050
|
x: string | number;
|
|
6051
6051
|
y: string | number;
|
|
6052
6052
|
}>>;
|
|
6053
|
-
anchor_alignment: z.
|
|
6053
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
6054
6054
|
position_mode: z.ZodOptional<z.ZodEnum<["packed", "relative_to_group_anchor", "none"]>>;
|
|
6055
6055
|
positioned_relative_to_pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
6056
6056
|
positioned_relative_to_pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
@@ -6075,6 +6075,7 @@ declare const pcb_group: z.ZodObject<{
|
|
|
6075
6075
|
};
|
|
6076
6076
|
pcb_group_id: string;
|
|
6077
6077
|
pcb_component_ids: string[];
|
|
6078
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
6078
6079
|
source_group_id: string;
|
|
6079
6080
|
description?: string | undefined;
|
|
6080
6081
|
width?: number | undefined;
|
|
@@ -6095,7 +6096,6 @@ declare const pcb_group: z.ZodObject<{
|
|
|
6095
6096
|
x: number;
|
|
6096
6097
|
y: number;
|
|
6097
6098
|
} | undefined;
|
|
6098
|
-
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
6099
6099
|
child_layout_mode?: "packed" | "none" | undefined;
|
|
6100
6100
|
layout_mode?: string | undefined;
|
|
6101
6101
|
autorouter_configuration?: {
|
|
@@ -6130,7 +6130,7 @@ declare const pcb_group: z.ZodObject<{
|
|
|
6130
6130
|
x: string | number;
|
|
6131
6131
|
y: string | number;
|
|
6132
6132
|
} | undefined;
|
|
6133
|
-
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
6133
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
6134
6134
|
child_layout_mode?: "packed" | "none" | undefined;
|
|
6135
6135
|
layout_mode?: string | undefined;
|
|
6136
6136
|
autorouter_configuration?: {
|
|
@@ -6155,7 +6155,7 @@ interface PcbGroup {
|
|
|
6155
6155
|
display_offset_y?: string;
|
|
6156
6156
|
outline?: Point[];
|
|
6157
6157
|
anchor_position?: Point;
|
|
6158
|
-
anchor_alignment
|
|
6158
|
+
anchor_alignment: NinePointAnchor;
|
|
6159
6159
|
position_mode?: "packed" | "relative_to_group_anchor" | "none";
|
|
6160
6160
|
positioned_relative_to_pcb_group_id?: string;
|
|
6161
6161
|
positioned_relative_to_pcb_board_id?: string;
|
|
@@ -10071,6 +10071,52 @@ interface SourceSimpleDiode extends SourceComponentBase {
|
|
|
10071
10071
|
ftype: "simple_diode";
|
|
10072
10072
|
}
|
|
10073
10073
|
|
|
10074
|
+
declare const source_simple_fiducial: z.ZodObject<{
|
|
10075
|
+
type: z.ZodLiteral<"source_component">;
|
|
10076
|
+
source_component_id: z.ZodString;
|
|
10077
|
+
name: z.ZodString;
|
|
10078
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10079
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10080
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
10081
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10082
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10083
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
10084
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10085
|
+
} & {
|
|
10086
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
10087
|
+
}, "strip", z.ZodTypeAny, {
|
|
10088
|
+
type: "source_component";
|
|
10089
|
+
name: string;
|
|
10090
|
+
source_component_id: string;
|
|
10091
|
+
ftype: "simple_fiducial";
|
|
10092
|
+
subcircuit_id?: string | undefined;
|
|
10093
|
+
source_group_id?: string | undefined;
|
|
10094
|
+
manufacturer_part_number?: string | undefined;
|
|
10095
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10096
|
+
display_value?: string | undefined;
|
|
10097
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10098
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10099
|
+
}, {
|
|
10100
|
+
type: "source_component";
|
|
10101
|
+
name: string;
|
|
10102
|
+
source_component_id: string;
|
|
10103
|
+
ftype: "simple_fiducial";
|
|
10104
|
+
subcircuit_id?: string | undefined;
|
|
10105
|
+
source_group_id?: string | undefined;
|
|
10106
|
+
manufacturer_part_number?: string | undefined;
|
|
10107
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10108
|
+
display_value?: string | undefined;
|
|
10109
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10110
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10111
|
+
}>;
|
|
10112
|
+
type SourceSimpleFiducialInput = z.input<typeof source_simple_fiducial>;
|
|
10113
|
+
/**
|
|
10114
|
+
* Defines a simple fiducial component
|
|
10115
|
+
*/
|
|
10116
|
+
interface SourceSimpleFiducial extends SourceComponentBase {
|
|
10117
|
+
ftype: "simple_fiducial";
|
|
10118
|
+
}
|
|
10119
|
+
|
|
10074
10120
|
declare const source_simple_led: z.ZodObject<{
|
|
10075
10121
|
type: z.ZodLiteral<"source_component">;
|
|
10076
10122
|
source_component_id: z.ZodString;
|
|
@@ -11413,6 +11459,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
11413
11459
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11414
11460
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11415
11461
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11462
|
+
} & {
|
|
11463
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
11464
|
+
}, "strip", z.ZodTypeAny, {
|
|
11465
|
+
type: "source_component";
|
|
11466
|
+
name: string;
|
|
11467
|
+
source_component_id: string;
|
|
11468
|
+
ftype: "simple_fiducial";
|
|
11469
|
+
subcircuit_id?: string | undefined;
|
|
11470
|
+
source_group_id?: string | undefined;
|
|
11471
|
+
manufacturer_part_number?: string | undefined;
|
|
11472
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11473
|
+
display_value?: string | undefined;
|
|
11474
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11475
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11476
|
+
}, {
|
|
11477
|
+
type: "source_component";
|
|
11478
|
+
name: string;
|
|
11479
|
+
source_component_id: string;
|
|
11480
|
+
ftype: "simple_fiducial";
|
|
11481
|
+
subcircuit_id?: string | undefined;
|
|
11482
|
+
source_group_id?: string | undefined;
|
|
11483
|
+
manufacturer_part_number?: string | undefined;
|
|
11484
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11485
|
+
display_value?: string | undefined;
|
|
11486
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11487
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11488
|
+
}>, z.ZodObject<{
|
|
11489
|
+
type: z.ZodLiteral<"source_component">;
|
|
11490
|
+
source_component_id: z.ZodString;
|
|
11491
|
+
name: z.ZodString;
|
|
11492
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
11493
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11494
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
11495
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11496
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11497
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11498
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11416
11499
|
} & {
|
|
11417
11500
|
ftype: z.ZodLiteral<"simple_led">;
|
|
11418
11501
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -12365,7 +12448,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
12365
12448
|
* Deprecated: use `AnySourceElement` instead
|
|
12366
12449
|
*/
|
|
12367
12450
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
12368
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
12451
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleFiducial | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceInterconnect | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
12369
12452
|
|
|
12370
12453
|
declare const source_port: z.ZodObject<{
|
|
12371
12454
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -13138,6 +13221,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13138
13221
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13139
13222
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13140
13223
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13224
|
+
} & {
|
|
13225
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
13226
|
+
}, "strip", z.ZodTypeAny, {
|
|
13227
|
+
type: "source_component";
|
|
13228
|
+
name: string;
|
|
13229
|
+
source_component_id: string;
|
|
13230
|
+
ftype: "simple_fiducial";
|
|
13231
|
+
subcircuit_id?: string | undefined;
|
|
13232
|
+
source_group_id?: string | undefined;
|
|
13233
|
+
manufacturer_part_number?: string | undefined;
|
|
13234
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13235
|
+
display_value?: string | undefined;
|
|
13236
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13237
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13238
|
+
}, {
|
|
13239
|
+
type: "source_component";
|
|
13240
|
+
name: string;
|
|
13241
|
+
source_component_id: string;
|
|
13242
|
+
ftype: "simple_fiducial";
|
|
13243
|
+
subcircuit_id?: string | undefined;
|
|
13244
|
+
source_group_id?: string | undefined;
|
|
13245
|
+
manufacturer_part_number?: string | undefined;
|
|
13246
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13247
|
+
display_value?: string | undefined;
|
|
13248
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13249
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13250
|
+
}>, z.ZodObject<{
|
|
13251
|
+
type: z.ZodLiteral<"source_component">;
|
|
13252
|
+
source_component_id: z.ZodString;
|
|
13253
|
+
name: z.ZodString;
|
|
13254
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13255
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13256
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13257
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13258
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13259
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13260
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13141
13261
|
} & {
|
|
13142
13262
|
ftype: z.ZodLiteral<"simple_led">;
|
|
13143
13263
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -17086,7 +17206,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17086
17206
|
x: string | number;
|
|
17087
17207
|
y: string | number;
|
|
17088
17208
|
}>>;
|
|
17089
|
-
anchor_alignment: z.
|
|
17209
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
17090
17210
|
position_mode: z.ZodOptional<z.ZodEnum<["packed", "relative_to_group_anchor", "none"]>>;
|
|
17091
17211
|
positioned_relative_to_pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
17092
17212
|
positioned_relative_to_pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
@@ -17111,6 +17231,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17111
17231
|
};
|
|
17112
17232
|
pcb_group_id: string;
|
|
17113
17233
|
pcb_component_ids: string[];
|
|
17234
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
17114
17235
|
source_group_id: string;
|
|
17115
17236
|
description?: string | undefined;
|
|
17116
17237
|
width?: number | undefined;
|
|
@@ -17131,7 +17252,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17131
17252
|
x: number;
|
|
17132
17253
|
y: number;
|
|
17133
17254
|
} | undefined;
|
|
17134
|
-
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
17135
17255
|
child_layout_mode?: "packed" | "none" | undefined;
|
|
17136
17256
|
layout_mode?: string | undefined;
|
|
17137
17257
|
autorouter_configuration?: {
|
|
@@ -17166,7 +17286,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17166
17286
|
x: string | number;
|
|
17167
17287
|
y: string | number;
|
|
17168
17288
|
} | undefined;
|
|
17169
|
-
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
17289
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
17170
17290
|
child_layout_mode?: "packed" | "none" | undefined;
|
|
17171
17291
|
layout_mode?: string | undefined;
|
|
17172
17292
|
autorouter_configuration?: {
|
|
@@ -21173,6 +21293,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21173
21293
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
21174
21294
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21175
21295
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21296
|
+
} & {
|
|
21297
|
+
ftype: z.ZodLiteral<"simple_fiducial">;
|
|
21298
|
+
}, "strip", z.ZodTypeAny, {
|
|
21299
|
+
type: "source_component";
|
|
21300
|
+
name: string;
|
|
21301
|
+
source_component_id: string;
|
|
21302
|
+
ftype: "simple_fiducial";
|
|
21303
|
+
subcircuit_id?: string | undefined;
|
|
21304
|
+
source_group_id?: string | undefined;
|
|
21305
|
+
manufacturer_part_number?: string | undefined;
|
|
21306
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21307
|
+
display_value?: string | undefined;
|
|
21308
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21309
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21310
|
+
}, {
|
|
21311
|
+
type: "source_component";
|
|
21312
|
+
name: string;
|
|
21313
|
+
source_component_id: string;
|
|
21314
|
+
ftype: "simple_fiducial";
|
|
21315
|
+
subcircuit_id?: string | undefined;
|
|
21316
|
+
source_group_id?: string | undefined;
|
|
21317
|
+
manufacturer_part_number?: string | undefined;
|
|
21318
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21319
|
+
display_value?: string | undefined;
|
|
21320
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21321
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21322
|
+
}>, z.ZodObject<{
|
|
21323
|
+
type: z.ZodLiteral<"source_component">;
|
|
21324
|
+
source_component_id: z.ZodString;
|
|
21325
|
+
name: z.ZodString;
|
|
21326
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
21327
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
21328
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
21329
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
21330
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
21331
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21332
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21176
21333
|
} & {
|
|
21177
21334
|
ftype: z.ZodLiteral<"simple_led">;
|
|
21178
21335
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -25121,7 +25278,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25121
25278
|
x: string | number;
|
|
25122
25279
|
y: string | number;
|
|
25123
25280
|
}>>;
|
|
25124
|
-
anchor_alignment: z.
|
|
25281
|
+
anchor_alignment: z.ZodDefault<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
25125
25282
|
position_mode: z.ZodOptional<z.ZodEnum<["packed", "relative_to_group_anchor", "none"]>>;
|
|
25126
25283
|
positioned_relative_to_pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
25127
25284
|
positioned_relative_to_pcb_board_id: z.ZodOptional<z.ZodString>;
|
|
@@ -25146,6 +25303,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25146
25303
|
};
|
|
25147
25304
|
pcb_group_id: string;
|
|
25148
25305
|
pcb_component_ids: string[];
|
|
25306
|
+
anchor_alignment: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right";
|
|
25149
25307
|
source_group_id: string;
|
|
25150
25308
|
description?: string | undefined;
|
|
25151
25309
|
width?: number | undefined;
|
|
@@ -25166,7 +25324,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25166
25324
|
x: number;
|
|
25167
25325
|
y: number;
|
|
25168
25326
|
} | undefined;
|
|
25169
|
-
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
25170
25327
|
child_layout_mode?: "packed" | "none" | undefined;
|
|
25171
25328
|
layout_mode?: string | undefined;
|
|
25172
25329
|
autorouter_configuration?: {
|
|
@@ -25201,7 +25358,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
25201
25358
|
x: string | number;
|
|
25202
25359
|
y: string | number;
|
|
25203
25360
|
} | undefined;
|
|
25204
|
-
anchor_alignment?: "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | undefined;
|
|
25361
|
+
anchor_alignment?: "center" | "top_left" | "top_center" | "top_right" | "center_left" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25205
25362
|
child_layout_mode?: "packed" | "none" | undefined;
|
|
25206
25363
|
layout_mode?: string | undefined;
|
|
25207
25364
|
autorouter_configuration?: {
|
|
@@ -29000,4 +29157,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
29000
29157
|
*/
|
|
29001
29158
|
type CircuitJson = AnyCircuitElement[];
|
|
29002
29159
|
|
|
29003
|
-
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 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 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 PcbCopperText, type PcbCopperTextInput, 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 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 SchematicSheet, type SchematicSheetInput, 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 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 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 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 SourceSimpleVoltageProbe, type SourceSimpleVoltageProbeInput, 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, 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_copper_text, 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_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_sheet, 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_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_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_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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|
|
29160
|
+
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 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 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 PcbCopperText, type PcbCopperTextInput, 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 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 SchematicSheet, type SchematicSheetInput, 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 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 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 SourceSimpleCrystal, type SourceSimpleCrystalInput, 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 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 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, 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_copper_text, 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_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_sheet, 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_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_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_crystal, source_simple_diode, source_simple_fiducial, 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_simple_voltage_probe, source_trace, source_trace_not_connected_error, supplier_name, time, timestamp, unknown_error_finding_part, visible_layer, voltage, wave_shape };
|