circuit-json 0.0.325 → 0.0.327
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 -0
- package/dist/index.d.mts +169 -2
- package/dist/index.mjs +1172 -1162
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,6 +50,7 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
50
50
|
- [SourceComponentBase](#sourcecomponentbase)
|
|
51
51
|
- [SourceFailedToCreateComponentError](#sourcefailedtocreatecomponenterror)
|
|
52
52
|
- [SourceGroup](#sourcegroup)
|
|
53
|
+
- [SourceInterconnect](#sourceinterconnect)
|
|
53
54
|
- [SourceManuallyPlacedVia](#sourcemanuallyplacedvia)
|
|
54
55
|
- [SourceMissingPropertyError](#sourcemissingpropertyerror)
|
|
55
56
|
- [SourceNet](#sourcenet)
|
|
@@ -322,6 +323,19 @@ interface SourceGroup {
|
|
|
322
323
|
}
|
|
323
324
|
```
|
|
324
325
|
|
|
326
|
+
### SourceInterconnect
|
|
327
|
+
|
|
328
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_interconnect.ts)
|
|
329
|
+
|
|
330
|
+
Defines a generic interconnect component
|
|
331
|
+
|
|
332
|
+
```typescript
|
|
333
|
+
/** Defines a generic interconnect component */
|
|
334
|
+
interface SourceInterconnect extends SourceComponentBase {
|
|
335
|
+
ftype: "interconnect"
|
|
336
|
+
}
|
|
337
|
+
```
|
|
338
|
+
|
|
325
339
|
### SourceManuallyPlacedVia
|
|
326
340
|
|
|
327
341
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_manually_placed_via.ts)
|
|
@@ -1618,6 +1632,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1618
1632
|
subcircuit_id?: string
|
|
1619
1633
|
outer_diameter: number
|
|
1620
1634
|
hole_diameter: number
|
|
1635
|
+
is_covered_with_solder_mask?: boolean
|
|
1621
1636
|
x: Distance
|
|
1622
1637
|
y: Distance
|
|
1623
1638
|
layers: LayerRef[]
|
package/dist/index.d.mts
CHANGED
|
@@ -1249,6 +1249,7 @@ interface PcbPlatedHoleCircle {
|
|
|
1249
1249
|
subcircuit_id?: string;
|
|
1250
1250
|
outer_diameter: number;
|
|
1251
1251
|
hole_diameter: number;
|
|
1252
|
+
is_covered_with_solder_mask?: boolean;
|
|
1252
1253
|
x: Distance;
|
|
1253
1254
|
y: Distance;
|
|
1254
1255
|
layers: LayerRef[];
|
|
@@ -1389,6 +1390,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1389
1390
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
1390
1391
|
outer_diameter: z.ZodNumber;
|
|
1391
1392
|
hole_diameter: z.ZodNumber;
|
|
1393
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
1392
1394
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1393
1395
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
1394
1396
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -1417,6 +1419,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1417
1419
|
pcb_component_id?: string | undefined;
|
|
1418
1420
|
subcircuit_id?: string | undefined;
|
|
1419
1421
|
pcb_group_id?: string | undefined;
|
|
1422
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1420
1423
|
soldermask_margin?: number | undefined;
|
|
1421
1424
|
port_hints?: string[] | undefined;
|
|
1422
1425
|
pcb_port_id?: string | undefined;
|
|
@@ -1433,6 +1436,7 @@ declare const pcb_plated_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
1433
1436
|
pcb_component_id?: string | undefined;
|
|
1434
1437
|
subcircuit_id?: string | undefined;
|
|
1435
1438
|
pcb_group_id?: string | undefined;
|
|
1439
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
1436
1440
|
soldermask_margin?: number | undefined;
|
|
1437
1441
|
port_hints?: string[] | undefined;
|
|
1438
1442
|
pcb_port_id?: string | undefined;
|
|
@@ -11187,6 +11191,52 @@ interface SourceSimpleVoltageProbe extends SourceComponentBase {
|
|
|
11187
11191
|
ftype: "simple_voltage_probe";
|
|
11188
11192
|
}
|
|
11189
11193
|
|
|
11194
|
+
declare const source_interconnect: z.ZodObject<{
|
|
11195
|
+
type: z.ZodLiteral<"source_component">;
|
|
11196
|
+
source_component_id: z.ZodString;
|
|
11197
|
+
name: z.ZodString;
|
|
11198
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
11199
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11200
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
11201
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11202
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11203
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11204
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11205
|
+
} & {
|
|
11206
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
11207
|
+
}, "strip", z.ZodTypeAny, {
|
|
11208
|
+
type: "source_component";
|
|
11209
|
+
name: string;
|
|
11210
|
+
source_component_id: string;
|
|
11211
|
+
ftype: "interconnect";
|
|
11212
|
+
subcircuit_id?: string | undefined;
|
|
11213
|
+
source_group_id?: string | undefined;
|
|
11214
|
+
manufacturer_part_number?: string | undefined;
|
|
11215
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11216
|
+
display_value?: string | undefined;
|
|
11217
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11218
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11219
|
+
}, {
|
|
11220
|
+
type: "source_component";
|
|
11221
|
+
name: string;
|
|
11222
|
+
source_component_id: string;
|
|
11223
|
+
ftype: "interconnect";
|
|
11224
|
+
subcircuit_id?: string | undefined;
|
|
11225
|
+
source_group_id?: string | undefined;
|
|
11226
|
+
manufacturer_part_number?: string | undefined;
|
|
11227
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11228
|
+
display_value?: string | undefined;
|
|
11229
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11230
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11231
|
+
}>;
|
|
11232
|
+
type SourceInterconnectInput = z.input<typeof source_interconnect>;
|
|
11233
|
+
/**
|
|
11234
|
+
* Defines a generic interconnect component
|
|
11235
|
+
*/
|
|
11236
|
+
interface SourceInterconnect extends SourceComponentBase {
|
|
11237
|
+
ftype: "interconnect";
|
|
11238
|
+
}
|
|
11239
|
+
|
|
11190
11240
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
11191
11241
|
type: z.ZodLiteral<"source_component">;
|
|
11192
11242
|
source_component_id: z.ZodString;
|
|
@@ -12057,6 +12107,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
12057
12107
|
display_value?: string | undefined;
|
|
12058
12108
|
are_pins_interchangeable?: boolean | undefined;
|
|
12059
12109
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12110
|
+
}>, z.ZodObject<{
|
|
12111
|
+
type: z.ZodLiteral<"source_component">;
|
|
12112
|
+
source_component_id: z.ZodString;
|
|
12113
|
+
name: z.ZodString;
|
|
12114
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
12115
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12116
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
12117
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12118
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12119
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12120
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12121
|
+
} & {
|
|
12122
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
12123
|
+
}, "strip", z.ZodTypeAny, {
|
|
12124
|
+
type: "source_component";
|
|
12125
|
+
name: string;
|
|
12126
|
+
source_component_id: string;
|
|
12127
|
+
ftype: "interconnect";
|
|
12128
|
+
subcircuit_id?: string | undefined;
|
|
12129
|
+
source_group_id?: string | undefined;
|
|
12130
|
+
manufacturer_part_number?: string | undefined;
|
|
12131
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12132
|
+
display_value?: string | undefined;
|
|
12133
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
12134
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12135
|
+
}, {
|
|
12136
|
+
type: "source_component";
|
|
12137
|
+
name: string;
|
|
12138
|
+
source_component_id: string;
|
|
12139
|
+
ftype: "interconnect";
|
|
12140
|
+
subcircuit_id?: string | undefined;
|
|
12141
|
+
source_group_id?: string | undefined;
|
|
12142
|
+
manufacturer_part_number?: string | undefined;
|
|
12143
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12144
|
+
display_value?: string | undefined;
|
|
12145
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
12146
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12060
12147
|
}>, z.ZodObject<{
|
|
12061
12148
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
12062
12149
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -12242,7 +12329,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
12242
12329
|
* Deprecated: use `AnySourceElement` instead
|
|
12243
12330
|
*/
|
|
12244
12331
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
12245
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleLed | SourceSimpleGround | SourceSimpleChip | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimplePinout | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleTestPoint | SourceSimpleMosfet | SourceSimpleFuse | SourceSimpleVoltageProbe | SourceProjectMetadata | SourceMissingPropertyError | SourceFailedToCreateComponentError | SourceTraceNotConnectedError | SourcePropertyIgnoredWarning | SourcePinMissingTraceWarning;
|
|
12332
|
+
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;
|
|
12246
12333
|
|
|
12247
12334
|
declare const source_port: z.ZodObject<{
|
|
12248
12335
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -13700,6 +13787,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13700
13787
|
display_value?: string | undefined;
|
|
13701
13788
|
are_pins_interchangeable?: boolean | undefined;
|
|
13702
13789
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13790
|
+
}>, z.ZodObject<{
|
|
13791
|
+
type: z.ZodLiteral<"source_component">;
|
|
13792
|
+
source_component_id: z.ZodString;
|
|
13793
|
+
name: z.ZodString;
|
|
13794
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13795
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13796
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13797
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13798
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13799
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13800
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13801
|
+
} & {
|
|
13802
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
13803
|
+
}, "strip", z.ZodTypeAny, {
|
|
13804
|
+
type: "source_component";
|
|
13805
|
+
name: string;
|
|
13806
|
+
source_component_id: string;
|
|
13807
|
+
ftype: "interconnect";
|
|
13808
|
+
subcircuit_id?: string | undefined;
|
|
13809
|
+
source_group_id?: string | undefined;
|
|
13810
|
+
manufacturer_part_number?: string | undefined;
|
|
13811
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13812
|
+
display_value?: string | undefined;
|
|
13813
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13814
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13815
|
+
}, {
|
|
13816
|
+
type: "source_component";
|
|
13817
|
+
name: string;
|
|
13818
|
+
source_component_id: string;
|
|
13819
|
+
ftype: "interconnect";
|
|
13820
|
+
subcircuit_id?: string | undefined;
|
|
13821
|
+
source_group_id?: string | undefined;
|
|
13822
|
+
manufacturer_part_number?: string | undefined;
|
|
13823
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13824
|
+
display_value?: string | undefined;
|
|
13825
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13826
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13703
13827
|
}>, z.ZodObject<{
|
|
13704
13828
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
13705
13829
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -15231,6 +15355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15231
15355
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15232
15356
|
outer_diameter: z.ZodNumber;
|
|
15233
15357
|
hole_diameter: z.ZodNumber;
|
|
15358
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
15234
15359
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15235
15360
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
15236
15361
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -15259,6 +15384,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15259
15384
|
pcb_component_id?: string | undefined;
|
|
15260
15385
|
subcircuit_id?: string | undefined;
|
|
15261
15386
|
pcb_group_id?: string | undefined;
|
|
15387
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15262
15388
|
soldermask_margin?: number | undefined;
|
|
15263
15389
|
port_hints?: string[] | undefined;
|
|
15264
15390
|
pcb_port_id?: string | undefined;
|
|
@@ -15275,6 +15401,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15275
15401
|
pcb_component_id?: string | undefined;
|
|
15276
15402
|
subcircuit_id?: string | undefined;
|
|
15277
15403
|
pcb_group_id?: string | undefined;
|
|
15404
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
15278
15405
|
soldermask_margin?: number | undefined;
|
|
15279
15406
|
port_hints?: string[] | undefined;
|
|
15280
15407
|
pcb_port_id?: string | undefined;
|
|
@@ -21650,6 +21777,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21650
21777
|
display_value?: string | undefined;
|
|
21651
21778
|
are_pins_interchangeable?: boolean | undefined;
|
|
21652
21779
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21780
|
+
}>, z.ZodObject<{
|
|
21781
|
+
type: z.ZodLiteral<"source_component">;
|
|
21782
|
+
source_component_id: z.ZodString;
|
|
21783
|
+
name: z.ZodString;
|
|
21784
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
21785
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
21786
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
21787
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
21788
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
21789
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21790
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21791
|
+
} & {
|
|
21792
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
21793
|
+
}, "strip", z.ZodTypeAny, {
|
|
21794
|
+
type: "source_component";
|
|
21795
|
+
name: string;
|
|
21796
|
+
source_component_id: string;
|
|
21797
|
+
ftype: "interconnect";
|
|
21798
|
+
subcircuit_id?: string | undefined;
|
|
21799
|
+
source_group_id?: string | undefined;
|
|
21800
|
+
manufacturer_part_number?: string | undefined;
|
|
21801
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21802
|
+
display_value?: string | undefined;
|
|
21803
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21804
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21805
|
+
}, {
|
|
21806
|
+
type: "source_component";
|
|
21807
|
+
name: string;
|
|
21808
|
+
source_component_id: string;
|
|
21809
|
+
ftype: "interconnect";
|
|
21810
|
+
subcircuit_id?: string | undefined;
|
|
21811
|
+
source_group_id?: string | undefined;
|
|
21812
|
+
manufacturer_part_number?: string | undefined;
|
|
21813
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21814
|
+
display_value?: string | undefined;
|
|
21815
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21816
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21653
21817
|
}>, z.ZodObject<{
|
|
21654
21818
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
21655
21819
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -23181,6 +23345,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23181
23345
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
23182
23346
|
outer_diameter: z.ZodNumber;
|
|
23183
23347
|
hole_diameter: z.ZodNumber;
|
|
23348
|
+
is_covered_with_solder_mask: z.ZodOptional<z.ZodBoolean>;
|
|
23184
23349
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23185
23350
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23186
23351
|
layers: z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
@@ -23209,6 +23374,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23209
23374
|
pcb_component_id?: string | undefined;
|
|
23210
23375
|
subcircuit_id?: string | undefined;
|
|
23211
23376
|
pcb_group_id?: string | undefined;
|
|
23377
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23212
23378
|
soldermask_margin?: number | undefined;
|
|
23213
23379
|
port_hints?: string[] | undefined;
|
|
23214
23380
|
pcb_port_id?: string | undefined;
|
|
@@ -23225,6 +23391,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
23225
23391
|
pcb_component_id?: string | undefined;
|
|
23226
23392
|
subcircuit_id?: string | undefined;
|
|
23227
23393
|
pcb_group_id?: string | undefined;
|
|
23394
|
+
is_covered_with_solder_mask?: boolean | undefined;
|
|
23228
23395
|
soldermask_margin?: number | undefined;
|
|
23229
23396
|
port_hints?: string[] | undefined;
|
|
23230
23397
|
pcb_port_id?: string | undefined;
|
|
@@ -28680,4 +28847,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
28680
28847
|
*/
|
|
28681
28848
|
type CircuitJson = AnyCircuitElement[];
|
|
28682
28849
|
|
|
28683
|
-
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 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 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_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_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 };
|
|
28850
|
+
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 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_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 };
|