circuit-json 0.0.324 → 0.0.326
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 +1171 -1161
- 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)
|
|
@@ -2141,6 +2155,7 @@ interface PcbVia {
|
|
|
2141
2155
|
pcb_trace_id?: string
|
|
2142
2156
|
net_is_assignable?: boolean
|
|
2143
2157
|
net_assigned?: boolean
|
|
2158
|
+
is_tented?: boolean
|
|
2144
2159
|
}
|
|
2145
2160
|
```
|
|
2146
2161
|
|
package/dist/index.d.mts
CHANGED
|
@@ -3490,6 +3490,7 @@ declare const pcb_via: z.ZodObject<{
|
|
|
3490
3490
|
pcb_trace_id: z.ZodOptional<z.ZodString>;
|
|
3491
3491
|
net_is_assignable: z.ZodOptional<z.ZodBoolean>;
|
|
3492
3492
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
3493
|
+
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
3493
3494
|
}, "strip", z.ZodTypeAny, {
|
|
3494
3495
|
x: number;
|
|
3495
3496
|
y: number;
|
|
@@ -3506,6 +3507,7 @@ declare const pcb_via: z.ZodObject<{
|
|
|
3506
3507
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
3507
3508
|
net_is_assignable?: boolean | undefined;
|
|
3508
3509
|
net_assigned?: boolean | undefined;
|
|
3510
|
+
is_tented?: boolean | undefined;
|
|
3509
3511
|
}, {
|
|
3510
3512
|
x: string | number;
|
|
3511
3513
|
y: string | number;
|
|
@@ -3528,6 +3530,7 @@ declare const pcb_via: z.ZodObject<{
|
|
|
3528
3530
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
3529
3531
|
net_is_assignable?: boolean | undefined;
|
|
3530
3532
|
net_assigned?: boolean | undefined;
|
|
3533
|
+
is_tented?: boolean | undefined;
|
|
3531
3534
|
}>;
|
|
3532
3535
|
type PcbViaInput = z.input<typeof pcb_via>;
|
|
3533
3536
|
/**
|
|
@@ -3551,6 +3554,7 @@ interface PcbVia {
|
|
|
3551
3554
|
pcb_trace_id?: string;
|
|
3552
3555
|
net_is_assignable?: boolean;
|
|
3553
3556
|
net_assigned?: boolean;
|
|
3557
|
+
is_tented?: boolean;
|
|
3554
3558
|
}
|
|
3555
3559
|
/**
|
|
3556
3560
|
* @deprecated use PcbVia
|
|
@@ -11183,6 +11187,52 @@ interface SourceSimpleVoltageProbe extends SourceComponentBase {
|
|
|
11183
11187
|
ftype: "simple_voltage_probe";
|
|
11184
11188
|
}
|
|
11185
11189
|
|
|
11190
|
+
declare const source_interconnect: z.ZodObject<{
|
|
11191
|
+
type: z.ZodLiteral<"source_component">;
|
|
11192
|
+
source_component_id: z.ZodString;
|
|
11193
|
+
name: z.ZodString;
|
|
11194
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
11195
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11196
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
11197
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11198
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11199
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11200
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
11201
|
+
} & {
|
|
11202
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
11203
|
+
}, "strip", z.ZodTypeAny, {
|
|
11204
|
+
type: "source_component";
|
|
11205
|
+
name: string;
|
|
11206
|
+
source_component_id: string;
|
|
11207
|
+
ftype: "interconnect";
|
|
11208
|
+
subcircuit_id?: string | undefined;
|
|
11209
|
+
source_group_id?: string | undefined;
|
|
11210
|
+
manufacturer_part_number?: string | undefined;
|
|
11211
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11212
|
+
display_value?: string | undefined;
|
|
11213
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11214
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11215
|
+
}, {
|
|
11216
|
+
type: "source_component";
|
|
11217
|
+
name: string;
|
|
11218
|
+
source_component_id: string;
|
|
11219
|
+
ftype: "interconnect";
|
|
11220
|
+
subcircuit_id?: string | undefined;
|
|
11221
|
+
source_group_id?: string | undefined;
|
|
11222
|
+
manufacturer_part_number?: string | undefined;
|
|
11223
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11224
|
+
display_value?: string | undefined;
|
|
11225
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
11226
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11227
|
+
}>;
|
|
11228
|
+
type SourceInterconnectInput = z.input<typeof source_interconnect>;
|
|
11229
|
+
/**
|
|
11230
|
+
* Defines a generic interconnect component
|
|
11231
|
+
*/
|
|
11232
|
+
interface SourceInterconnect extends SourceComponentBase {
|
|
11233
|
+
ftype: "interconnect";
|
|
11234
|
+
}
|
|
11235
|
+
|
|
11186
11236
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
11187
11237
|
type: z.ZodLiteral<"source_component">;
|
|
11188
11238
|
source_component_id: z.ZodString;
|
|
@@ -12053,6 +12103,43 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
12053
12103
|
display_value?: string | undefined;
|
|
12054
12104
|
are_pins_interchangeable?: boolean | undefined;
|
|
12055
12105
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12106
|
+
}>, z.ZodObject<{
|
|
12107
|
+
type: z.ZodLiteral<"source_component">;
|
|
12108
|
+
source_component_id: z.ZodString;
|
|
12109
|
+
name: z.ZodString;
|
|
12110
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
12111
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12112
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
12113
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12114
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12115
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12116
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
12117
|
+
} & {
|
|
12118
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
12119
|
+
}, "strip", z.ZodTypeAny, {
|
|
12120
|
+
type: "source_component";
|
|
12121
|
+
name: string;
|
|
12122
|
+
source_component_id: string;
|
|
12123
|
+
ftype: "interconnect";
|
|
12124
|
+
subcircuit_id?: string | undefined;
|
|
12125
|
+
source_group_id?: string | undefined;
|
|
12126
|
+
manufacturer_part_number?: string | undefined;
|
|
12127
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12128
|
+
display_value?: string | undefined;
|
|
12129
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
12130
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12131
|
+
}, {
|
|
12132
|
+
type: "source_component";
|
|
12133
|
+
name: string;
|
|
12134
|
+
source_component_id: string;
|
|
12135
|
+
ftype: "interconnect";
|
|
12136
|
+
subcircuit_id?: string | undefined;
|
|
12137
|
+
source_group_id?: string | undefined;
|
|
12138
|
+
manufacturer_part_number?: string | undefined;
|
|
12139
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12140
|
+
display_value?: string | undefined;
|
|
12141
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
12142
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12056
12143
|
}>, z.ZodObject<{
|
|
12057
12144
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
12058
12145
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -12238,7 +12325,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
12238
12325
|
* Deprecated: use `AnySourceElement` instead
|
|
12239
12326
|
*/
|
|
12240
12327
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
12241
|
-
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;
|
|
12328
|
+
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;
|
|
12242
12329
|
|
|
12243
12330
|
declare const source_port: z.ZodObject<{
|
|
12244
12331
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -13696,6 +13783,43 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13696
13783
|
display_value?: string | undefined;
|
|
13697
13784
|
are_pins_interchangeable?: boolean | undefined;
|
|
13698
13785
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13786
|
+
}>, z.ZodObject<{
|
|
13787
|
+
type: z.ZodLiteral<"source_component">;
|
|
13788
|
+
source_component_id: z.ZodString;
|
|
13789
|
+
name: z.ZodString;
|
|
13790
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13791
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13792
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
13793
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13794
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13795
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13796
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13797
|
+
} & {
|
|
13798
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
13799
|
+
}, "strip", z.ZodTypeAny, {
|
|
13800
|
+
type: "source_component";
|
|
13801
|
+
name: string;
|
|
13802
|
+
source_component_id: string;
|
|
13803
|
+
ftype: "interconnect";
|
|
13804
|
+
subcircuit_id?: string | undefined;
|
|
13805
|
+
source_group_id?: string | undefined;
|
|
13806
|
+
manufacturer_part_number?: string | undefined;
|
|
13807
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13808
|
+
display_value?: string | undefined;
|
|
13809
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13810
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13811
|
+
}, {
|
|
13812
|
+
type: "source_component";
|
|
13813
|
+
name: string;
|
|
13814
|
+
source_component_id: string;
|
|
13815
|
+
ftype: "interconnect";
|
|
13816
|
+
subcircuit_id?: string | undefined;
|
|
13817
|
+
source_group_id?: string | undefined;
|
|
13818
|
+
manufacturer_part_number?: string | undefined;
|
|
13819
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13820
|
+
display_value?: string | undefined;
|
|
13821
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
13822
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13699
13823
|
}>, z.ZodObject<{
|
|
13700
13824
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
13701
13825
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -16053,6 +16177,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16053
16177
|
pcb_trace_id: z.ZodOptional<z.ZodString>;
|
|
16054
16178
|
net_is_assignable: z.ZodOptional<z.ZodBoolean>;
|
|
16055
16179
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
16180
|
+
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
16056
16181
|
}, "strip", z.ZodTypeAny, {
|
|
16057
16182
|
x: number;
|
|
16058
16183
|
y: number;
|
|
@@ -16069,6 +16194,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16069
16194
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
16070
16195
|
net_is_assignable?: boolean | undefined;
|
|
16071
16196
|
net_assigned?: boolean | undefined;
|
|
16197
|
+
is_tented?: boolean | undefined;
|
|
16072
16198
|
}, {
|
|
16073
16199
|
x: string | number;
|
|
16074
16200
|
y: string | number;
|
|
@@ -16091,6 +16217,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
16091
16217
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
16092
16218
|
net_is_assignable?: boolean | undefined;
|
|
16093
16219
|
net_assigned?: boolean | undefined;
|
|
16220
|
+
is_tented?: boolean | undefined;
|
|
16094
16221
|
}>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
16095
16222
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
16096
16223
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -21643,6 +21770,43 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
21643
21770
|
display_value?: string | undefined;
|
|
21644
21771
|
are_pins_interchangeable?: boolean | undefined;
|
|
21645
21772
|
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21773
|
+
}>, z.ZodObject<{
|
|
21774
|
+
type: z.ZodLiteral<"source_component">;
|
|
21775
|
+
source_component_id: z.ZodString;
|
|
21776
|
+
name: z.ZodString;
|
|
21777
|
+
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
21778
|
+
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
21779
|
+
display_value: z.ZodOptional<z.ZodString>;
|
|
21780
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
21781
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
21782
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
21783
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
21784
|
+
} & {
|
|
21785
|
+
ftype: z.ZodLiteral<"interconnect">;
|
|
21786
|
+
}, "strip", z.ZodTypeAny, {
|
|
21787
|
+
type: "source_component";
|
|
21788
|
+
name: string;
|
|
21789
|
+
source_component_id: string;
|
|
21790
|
+
ftype: "interconnect";
|
|
21791
|
+
subcircuit_id?: string | undefined;
|
|
21792
|
+
source_group_id?: string | undefined;
|
|
21793
|
+
manufacturer_part_number?: string | undefined;
|
|
21794
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21795
|
+
display_value?: string | undefined;
|
|
21796
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21797
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21798
|
+
}, {
|
|
21799
|
+
type: "source_component";
|
|
21800
|
+
name: string;
|
|
21801
|
+
source_component_id: string;
|
|
21802
|
+
ftype: "interconnect";
|
|
21803
|
+
subcircuit_id?: string | undefined;
|
|
21804
|
+
source_group_id?: string | undefined;
|
|
21805
|
+
manufacturer_part_number?: string | undefined;
|
|
21806
|
+
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21807
|
+
display_value?: string | undefined;
|
|
21808
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
21809
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
21646
21810
|
}>, z.ZodObject<{
|
|
21647
21811
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
21648
21812
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -24000,6 +24164,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24000
24164
|
pcb_trace_id: z.ZodOptional<z.ZodString>;
|
|
24001
24165
|
net_is_assignable: z.ZodOptional<z.ZodBoolean>;
|
|
24002
24166
|
net_assigned: z.ZodOptional<z.ZodBoolean>;
|
|
24167
|
+
is_tented: z.ZodOptional<z.ZodBoolean>;
|
|
24003
24168
|
}, "strip", z.ZodTypeAny, {
|
|
24004
24169
|
x: number;
|
|
24005
24170
|
y: number;
|
|
@@ -24016,6 +24181,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24016
24181
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
24017
24182
|
net_is_assignable?: boolean | undefined;
|
|
24018
24183
|
net_assigned?: boolean | undefined;
|
|
24184
|
+
is_tented?: boolean | undefined;
|
|
24019
24185
|
}, {
|
|
24020
24186
|
x: string | number;
|
|
24021
24187
|
y: string | number;
|
|
@@ -24038,6 +24204,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
24038
24204
|
subcircuit_connectivity_map_key?: string | undefined;
|
|
24039
24205
|
net_is_assignable?: boolean | undefined;
|
|
24040
24206
|
net_assigned?: boolean | undefined;
|
|
24207
|
+
is_tented?: boolean | undefined;
|
|
24041
24208
|
}>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<{
|
|
24042
24209
|
type: z.ZodLiteral<"pcb_smtpad">;
|
|
24043
24210
|
shape: z.ZodLiteral<"circle">;
|
|
@@ -28670,4 +28837,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
28670
28837
|
*/
|
|
28671
28838
|
type CircuitJson = AnyCircuitElement[];
|
|
28672
28839
|
|
|
28673
|
-
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 };
|
|
28840
|
+
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 };
|