circuit-json 0.0.207 → 0.0.208
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 +37 -0
- package/dist/index.d.mts +107 -237
- package/dist/index.mjs +725 -716
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,9 @@ https://github.com/user-attachments/assets/2f28b7ba-689e-4d80-85b2-5bdef84b41f8
|
|
|
48
48
|
- [Source Components](#source-components)
|
|
49
49
|
- [SourceComponentBase](#sourcecomponentbase)
|
|
50
50
|
- [SourceFailedToCreateComponentError](#sourcefailedtocreatecomponenterror)
|
|
51
|
+
- [SourceGroup](#sourcegroup)
|
|
51
52
|
- [SourceMissingPropertyError](#sourcemissingpropertyerror)
|
|
53
|
+
- [SourceNet](#sourcenet)
|
|
52
54
|
- [SourcePcbGroundPlane](#sourcepcbgroundplane)
|
|
53
55
|
- [SourcePort](#sourceport)
|
|
54
56
|
- [SourceProjectMetadata](#sourceprojectmetadata)
|
|
@@ -230,6 +232,21 @@ interface SourceFailedToCreateComponentError {
|
|
|
230
232
|
}
|
|
231
233
|
```
|
|
232
234
|
|
|
235
|
+
### SourceGroup
|
|
236
|
+
|
|
237
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_group.ts)
|
|
238
|
+
|
|
239
|
+
```typescript
|
|
240
|
+
interface SourceGroup {
|
|
241
|
+
type: "source_group"
|
|
242
|
+
source_group_id: string
|
|
243
|
+
subcircuit_id?: string
|
|
244
|
+
parent_subcircuit_id?: string
|
|
245
|
+
is_subcircuit?: boolean
|
|
246
|
+
name?: string
|
|
247
|
+
}
|
|
248
|
+
```
|
|
249
|
+
|
|
233
250
|
### SourceMissingPropertyError
|
|
234
251
|
|
|
235
252
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_missing_property_error.ts)
|
|
@@ -248,6 +265,26 @@ interface SourceMissingPropertyError {
|
|
|
248
265
|
}
|
|
249
266
|
```
|
|
250
267
|
|
|
268
|
+
### SourceNet
|
|
269
|
+
|
|
270
|
+
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_net.ts)
|
|
271
|
+
|
|
272
|
+
```typescript
|
|
273
|
+
interface SourceNet {
|
|
274
|
+
type: "source_net"
|
|
275
|
+
source_net_id: string
|
|
276
|
+
name: string
|
|
277
|
+
member_source_group_ids: string[]
|
|
278
|
+
is_power?: boolean
|
|
279
|
+
is_ground?: boolean
|
|
280
|
+
is_digital_signal?: boolean
|
|
281
|
+
is_analog_signal?: boolean
|
|
282
|
+
trace_width?: number
|
|
283
|
+
subcircuit_id?: string
|
|
284
|
+
subcircuit_connectivity_map_key?: string
|
|
285
|
+
}
|
|
286
|
+
```
|
|
287
|
+
|
|
251
288
|
### SourcePcbGroundPlane
|
|
252
289
|
|
|
253
290
|
[Source](https://github.com/tscircuit/circuit-json/blob/main/src/source/source_pcb_ground_plane.ts)
|
package/dist/index.d.mts
CHANGED
|
@@ -42,10 +42,16 @@ declare const position: z.ZodObject<{
|
|
|
42
42
|
x: string | number;
|
|
43
43
|
y: string | number;
|
|
44
44
|
}>;
|
|
45
|
-
type Point = z.infer<typeof point>;
|
|
46
45
|
type InputPoint = z.input<typeof point>;
|
|
47
46
|
type InputPosition = z.input<typeof position>;
|
|
48
|
-
|
|
47
|
+
interface Point {
|
|
48
|
+
x: number;
|
|
49
|
+
y: number;
|
|
50
|
+
}
|
|
51
|
+
interface Position {
|
|
52
|
+
x: number;
|
|
53
|
+
y: number;
|
|
54
|
+
}
|
|
49
55
|
|
|
50
56
|
declare const point3: z.ZodObject<{
|
|
51
57
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -73,7 +79,11 @@ declare const position3: z.ZodObject<{
|
|
|
73
79
|
y: string | number;
|
|
74
80
|
z: string | number;
|
|
75
81
|
}>;
|
|
76
|
-
|
|
82
|
+
interface Point3 {
|
|
83
|
+
x: number;
|
|
84
|
+
y: number;
|
|
85
|
+
z: number;
|
|
86
|
+
}
|
|
77
87
|
|
|
78
88
|
declare const size: z.ZodObject<{
|
|
79
89
|
width: z.ZodNumber;
|
|
@@ -85,7 +95,11 @@ declare const size: z.ZodObject<{
|
|
|
85
95
|
width: number;
|
|
86
96
|
height: number;
|
|
87
97
|
}>;
|
|
88
|
-
type
|
|
98
|
+
type SizeInput = z.input<typeof size>;
|
|
99
|
+
interface Size {
|
|
100
|
+
width: number;
|
|
101
|
+
height: number;
|
|
102
|
+
}
|
|
89
103
|
|
|
90
104
|
/**
|
|
91
105
|
* Use this for primary keys for any circuit element
|
|
@@ -104,7 +118,7 @@ declare const layer_ref: z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "i
|
|
|
104
118
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
105
119
|
}>;
|
|
106
120
|
type LayerRefInput = z.input<typeof layer_ref>;
|
|
107
|
-
type LayerRef =
|
|
121
|
+
type LayerRef = (typeof all_layers)[number];
|
|
108
122
|
declare const visible_layer: z.ZodEnum<["top", "bottom"]>;
|
|
109
123
|
type VisibleLayerRef = z.infer<typeof visible_layer>;
|
|
110
124
|
type VisibleLayer = z.infer<typeof visible_layer>;
|
|
@@ -163,11 +177,16 @@ declare const pcb_route_hints: z.ZodArray<z.ZodObject<{
|
|
|
163
177
|
}>, "many">;
|
|
164
178
|
type PcbRouteHintInput = z.input<typeof pcb_route_hint>;
|
|
165
179
|
type PcbRouteHintsInput = z.input<typeof pcb_route_hints>;
|
|
166
|
-
|
|
167
|
-
|
|
180
|
+
interface PcbRouteHint {
|
|
181
|
+
x: number;
|
|
182
|
+
y: number;
|
|
183
|
+
via?: boolean;
|
|
184
|
+
via_to_layer?: LayerRef;
|
|
185
|
+
}
|
|
186
|
+
type PcbRouteHints = PcbRouteHint[];
|
|
168
187
|
|
|
169
188
|
declare const supplier_name: z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>;
|
|
170
|
-
type SupplierName =
|
|
189
|
+
type SupplierName = "jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc";
|
|
171
190
|
|
|
172
191
|
declare const route_hint_point: z.ZodObject<{
|
|
173
192
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -198,8 +217,14 @@ declare const route_hint_point: z.ZodObject<{
|
|
|
198
217
|
} | undefined;
|
|
199
218
|
trace_width?: string | number | undefined;
|
|
200
219
|
}>;
|
|
201
|
-
type RouteHintPoint = z.infer<typeof route_hint_point>;
|
|
202
220
|
type RouteHintPointInput = z.input<typeof route_hint_point>;
|
|
221
|
+
interface RouteHintPoint {
|
|
222
|
+
x: number;
|
|
223
|
+
y: number;
|
|
224
|
+
via?: boolean;
|
|
225
|
+
to_layer?: LayerRef;
|
|
226
|
+
trace_width?: number;
|
|
227
|
+
}
|
|
203
228
|
|
|
204
229
|
declare const pcb_component: z.ZodObject<{
|
|
205
230
|
type: z.ZodLiteral<"pcb_component">;
|
|
@@ -3101,7 +3126,30 @@ declare const pcb_keepout: z.ZodUnion<[z.ZodObject<{
|
|
|
3101
3126
|
pcb_group_id?: string | undefined;
|
|
3102
3127
|
}>]>;
|
|
3103
3128
|
type PCBKeepoutInput = z.input<typeof pcb_keepout>;
|
|
3104
|
-
|
|
3129
|
+
interface PCBKeepoutRect {
|
|
3130
|
+
type: "pcb_keepout";
|
|
3131
|
+
shape: "rect";
|
|
3132
|
+
pcb_group_id?: string;
|
|
3133
|
+
subcircuit_id?: string;
|
|
3134
|
+
center: Point;
|
|
3135
|
+
width: number;
|
|
3136
|
+
height: number;
|
|
3137
|
+
pcb_keepout_id: string;
|
|
3138
|
+
layers: string[];
|
|
3139
|
+
description?: string;
|
|
3140
|
+
}
|
|
3141
|
+
interface PCBKeepoutCircle {
|
|
3142
|
+
type: "pcb_keepout";
|
|
3143
|
+
shape: "circle";
|
|
3144
|
+
pcb_group_id?: string;
|
|
3145
|
+
subcircuit_id?: string;
|
|
3146
|
+
center: Point;
|
|
3147
|
+
radius: number;
|
|
3148
|
+
pcb_keepout_id: string;
|
|
3149
|
+
layers: string[];
|
|
3150
|
+
description?: string;
|
|
3151
|
+
}
|
|
3152
|
+
type PCBKeepout = PCBKeepoutRect | PCBKeepoutCircle;
|
|
3105
3153
|
|
|
3106
3154
|
declare const pcb_cutout_rect: z.ZodObject<{
|
|
3107
3155
|
type: z.ZodLiteral<"pcb_cutout">;
|
|
@@ -3472,8 +3520,8 @@ declare const pcb_group: z.ZodObject<{
|
|
|
3472
3520
|
pcb_group_id: string;
|
|
3473
3521
|
pcb_component_ids: string[];
|
|
3474
3522
|
source_group_id: string;
|
|
3475
|
-
name?: string | undefined;
|
|
3476
3523
|
description?: string | undefined;
|
|
3524
|
+
name?: string | undefined;
|
|
3477
3525
|
subcircuit_id?: string | undefined;
|
|
3478
3526
|
is_subcircuit?: boolean | undefined;
|
|
3479
3527
|
}, {
|
|
@@ -3486,8 +3534,8 @@ declare const pcb_group: z.ZodObject<{
|
|
|
3486
3534
|
};
|
|
3487
3535
|
pcb_component_ids: string[];
|
|
3488
3536
|
source_group_id: string;
|
|
3489
|
-
name?: string | undefined;
|
|
3490
3537
|
description?: string | undefined;
|
|
3538
|
+
name?: string | undefined;
|
|
3491
3539
|
subcircuit_id?: string | undefined;
|
|
3492
3540
|
pcb_group_id?: string | undefined;
|
|
3493
3541
|
is_subcircuit?: boolean | undefined;
|
|
@@ -5181,8 +5229,8 @@ declare const schematic_group: z.ZodObject<{
|
|
|
5181
5229
|
source_group_id: string;
|
|
5182
5230
|
schematic_group_id: string;
|
|
5183
5231
|
schematic_component_ids: string[];
|
|
5184
|
-
name?: string | undefined;
|
|
5185
5232
|
description?: string | undefined;
|
|
5233
|
+
name?: string | undefined;
|
|
5186
5234
|
subcircuit_id?: string | undefined;
|
|
5187
5235
|
is_subcircuit?: boolean | undefined;
|
|
5188
5236
|
}, {
|
|
@@ -5195,8 +5243,8 @@ declare const schematic_group: z.ZodObject<{
|
|
|
5195
5243
|
};
|
|
5196
5244
|
source_group_id: string;
|
|
5197
5245
|
schematic_component_ids: string[];
|
|
5198
|
-
name?: string | undefined;
|
|
5199
5246
|
description?: string | undefined;
|
|
5247
|
+
name?: string | undefined;
|
|
5200
5248
|
subcircuit_id?: string | undefined;
|
|
5201
5249
|
is_subcircuit?: boolean | undefined;
|
|
5202
5250
|
schematic_group_id?: string | undefined;
|
|
@@ -5515,47 +5563,6 @@ interface SourceSimpleGround extends SourceComponentBase {
|
|
|
5515
5563
|
ftype: "simple_ground";
|
|
5516
5564
|
}
|
|
5517
5565
|
|
|
5518
|
-
/**
|
|
5519
|
-
* @deprecated Use source_simple_chip instead. This will be removed in a future version.
|
|
5520
|
-
*/
|
|
5521
|
-
declare const source_simple_bug: z.ZodObject<{
|
|
5522
|
-
type: z.ZodLiteral<"source_component">;
|
|
5523
|
-
source_component_id: z.ZodString;
|
|
5524
|
-
name: z.ZodString;
|
|
5525
|
-
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5526
|
-
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5527
|
-
display_value: z.ZodOptional<z.ZodString>;
|
|
5528
|
-
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5529
|
-
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5530
|
-
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5531
|
-
} & {
|
|
5532
|
-
ftype: z.ZodLiteral<"simple_bug">;
|
|
5533
|
-
}, "strip", z.ZodTypeAny, {
|
|
5534
|
-
type: "source_component";
|
|
5535
|
-
name: string;
|
|
5536
|
-
source_component_id: string;
|
|
5537
|
-
ftype: "simple_bug";
|
|
5538
|
-
source_group_id?: string | undefined;
|
|
5539
|
-
manufacturer_part_number?: string | undefined;
|
|
5540
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5541
|
-
display_value?: string | undefined;
|
|
5542
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
5543
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5544
|
-
}, {
|
|
5545
|
-
type: "source_component";
|
|
5546
|
-
name: string;
|
|
5547
|
-
source_component_id: string;
|
|
5548
|
-
ftype: "simple_bug";
|
|
5549
|
-
source_group_id?: string | undefined;
|
|
5550
|
-
manufacturer_part_number?: string | undefined;
|
|
5551
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5552
|
-
display_value?: string | undefined;
|
|
5553
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
5554
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5555
|
-
}>;
|
|
5556
|
-
type source_simple_bug = z.infer<typeof source_simple_bug>;
|
|
5557
|
-
type SourceSimpleBugInput = z.input<typeof source_simple_bug>;
|
|
5558
|
-
|
|
5559
5566
|
declare const source_simple_chip: z.ZodObject<{
|
|
5560
5567
|
type: z.ZodLiteral<"source_component">;
|
|
5561
5568
|
source_component_id: z.ZodString;
|
|
@@ -6586,40 +6593,6 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<{
|
|
|
6586
6593
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6587
6594
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6588
6595
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6589
|
-
} & {
|
|
6590
|
-
ftype: z.ZodLiteral<"simple_bug">;
|
|
6591
|
-
}, "strip", z.ZodTypeAny, {
|
|
6592
|
-
type: "source_component";
|
|
6593
|
-
name: string;
|
|
6594
|
-
source_component_id: string;
|
|
6595
|
-
ftype: "simple_bug";
|
|
6596
|
-
source_group_id?: string | undefined;
|
|
6597
|
-
manufacturer_part_number?: string | undefined;
|
|
6598
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6599
|
-
display_value?: string | undefined;
|
|
6600
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
6601
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6602
|
-
}, {
|
|
6603
|
-
type: "source_component";
|
|
6604
|
-
name: string;
|
|
6605
|
-
source_component_id: string;
|
|
6606
|
-
ftype: "simple_bug";
|
|
6607
|
-
source_group_id?: string | undefined;
|
|
6608
|
-
manufacturer_part_number?: string | undefined;
|
|
6609
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6610
|
-
display_value?: string | undefined;
|
|
6611
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
6612
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6613
|
-
}>, z.ZodObject<{
|
|
6614
|
-
type: z.ZodLiteral<"source_component">;
|
|
6615
|
-
source_component_id: z.ZodString;
|
|
6616
|
-
name: z.ZodString;
|
|
6617
|
-
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6618
|
-
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6619
|
-
display_value: z.ZodOptional<z.ZodString>;
|
|
6620
|
-
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6621
|
-
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6622
|
-
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6623
6596
|
} & {
|
|
6624
6597
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6625
6598
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7332,8 +7305,15 @@ declare const source_group: z.ZodObject<{
|
|
|
7332
7305
|
is_subcircuit?: boolean | undefined;
|
|
7333
7306
|
parent_subcircuit_id?: string | undefined;
|
|
7334
7307
|
}>;
|
|
7335
|
-
type SourceGroup = z.infer<typeof source_group>;
|
|
7336
7308
|
type SourceGroupInput = z.input<typeof source_group>;
|
|
7309
|
+
interface SourceGroup {
|
|
7310
|
+
type: "source_group";
|
|
7311
|
+
source_group_id: string;
|
|
7312
|
+
subcircuit_id?: string;
|
|
7313
|
+
parent_subcircuit_id?: string;
|
|
7314
|
+
is_subcircuit?: boolean;
|
|
7315
|
+
name?: string;
|
|
7316
|
+
}
|
|
7337
7317
|
|
|
7338
7318
|
declare const source_net: z.ZodObject<{
|
|
7339
7319
|
type: z.ZodLiteral<"source_net">;
|
|
@@ -7372,8 +7352,20 @@ declare const source_net: z.ZodObject<{
|
|
|
7372
7352
|
is_digital_signal?: boolean | undefined;
|
|
7373
7353
|
is_analog_signal?: boolean | undefined;
|
|
7374
7354
|
}>;
|
|
7375
|
-
type SourceNet = z.infer<typeof source_net>;
|
|
7376
7355
|
type SourceNetInput = z.input<typeof source_net>;
|
|
7356
|
+
interface SourceNet {
|
|
7357
|
+
type: "source_net";
|
|
7358
|
+
source_net_id: string;
|
|
7359
|
+
name: string;
|
|
7360
|
+
member_source_group_ids: string[];
|
|
7361
|
+
is_power?: boolean;
|
|
7362
|
+
is_ground?: boolean;
|
|
7363
|
+
is_digital_signal?: boolean;
|
|
7364
|
+
is_analog_signal?: boolean;
|
|
7365
|
+
trace_width?: number;
|
|
7366
|
+
subcircuit_id?: string;
|
|
7367
|
+
subcircuit_connectivity_map_key?: string;
|
|
7368
|
+
}
|
|
7377
7369
|
|
|
7378
7370
|
declare const source_pcb_ground_plane: z.ZodObject<{
|
|
7379
7371
|
type: z.ZodLiteral<"source_pcb_ground_plane">;
|
|
@@ -7520,7 +7512,21 @@ declare const cad_component: z.ZodObject<{
|
|
|
7520
7512
|
model_jscad?: any;
|
|
7521
7513
|
}>;
|
|
7522
7514
|
type CadComponentInput = z.input<typeof cad_component>;
|
|
7523
|
-
|
|
7515
|
+
interface CadComponent {
|
|
7516
|
+
type: "cad_component";
|
|
7517
|
+
cad_component_id: string;
|
|
7518
|
+
pcb_component_id: string;
|
|
7519
|
+
source_component_id: string;
|
|
7520
|
+
position: Point3;
|
|
7521
|
+
rotation?: Point3;
|
|
7522
|
+
size?: Point3;
|
|
7523
|
+
layer?: LayerRef;
|
|
7524
|
+
footprinter_string?: string;
|
|
7525
|
+
model_obj_url?: string;
|
|
7526
|
+
model_stl_url?: string;
|
|
7527
|
+
model_3mf_url?: string;
|
|
7528
|
+
model_jscad?: any;
|
|
7529
|
+
}
|
|
7524
7530
|
|
|
7525
7531
|
declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
7526
7532
|
type: z.ZodLiteral<"source_trace">;
|
|
@@ -7817,40 +7823,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7817
7823
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7818
7824
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7819
7825
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7820
|
-
} & {
|
|
7821
|
-
ftype: z.ZodLiteral<"simple_bug">;
|
|
7822
|
-
}, "strip", z.ZodTypeAny, {
|
|
7823
|
-
type: "source_component";
|
|
7824
|
-
name: string;
|
|
7825
|
-
source_component_id: string;
|
|
7826
|
-
ftype: "simple_bug";
|
|
7827
|
-
source_group_id?: string | undefined;
|
|
7828
|
-
manufacturer_part_number?: string | undefined;
|
|
7829
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7830
|
-
display_value?: string | undefined;
|
|
7831
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
7832
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7833
|
-
}, {
|
|
7834
|
-
type: "source_component";
|
|
7835
|
-
name: string;
|
|
7836
|
-
source_component_id: string;
|
|
7837
|
-
ftype: "simple_bug";
|
|
7838
|
-
source_group_id?: string | undefined;
|
|
7839
|
-
manufacturer_part_number?: string | undefined;
|
|
7840
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7841
|
-
display_value?: string | undefined;
|
|
7842
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
7843
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7844
|
-
}>, z.ZodObject<{
|
|
7845
|
-
type: z.ZodLiteral<"source_component">;
|
|
7846
|
-
source_component_id: z.ZodString;
|
|
7847
|
-
name: z.ZodString;
|
|
7848
|
-
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7849
|
-
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7850
|
-
display_value: z.ZodOptional<z.ZodString>;
|
|
7851
|
-
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7852
|
-
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7853
|
-
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7854
7826
|
} & {
|
|
7855
7827
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7856
7828
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8515,40 +8487,6 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8515
8487
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8516
8488
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8517
8489
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8518
|
-
} & {
|
|
8519
|
-
ftype: z.ZodLiteral<"simple_bug">;
|
|
8520
|
-
}, "strip", z.ZodTypeAny, {
|
|
8521
|
-
type: "source_component";
|
|
8522
|
-
name: string;
|
|
8523
|
-
source_component_id: string;
|
|
8524
|
-
ftype: "simple_bug";
|
|
8525
|
-
source_group_id?: string | undefined;
|
|
8526
|
-
manufacturer_part_number?: string | undefined;
|
|
8527
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8528
|
-
display_value?: string | undefined;
|
|
8529
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
8530
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8531
|
-
}, {
|
|
8532
|
-
type: "source_component";
|
|
8533
|
-
name: string;
|
|
8534
|
-
source_component_id: string;
|
|
8535
|
-
ftype: "simple_bug";
|
|
8536
|
-
source_group_id?: string | undefined;
|
|
8537
|
-
manufacturer_part_number?: string | undefined;
|
|
8538
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8539
|
-
display_value?: string | undefined;
|
|
8540
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
8541
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
8542
|
-
}>, z.ZodObject<{
|
|
8543
|
-
type: z.ZodLiteral<"source_component">;
|
|
8544
|
-
source_component_id: z.ZodString;
|
|
8545
|
-
name: z.ZodString;
|
|
8546
|
-
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
8547
|
-
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
8548
|
-
display_value: z.ZodOptional<z.ZodString>;
|
|
8549
|
-
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8550
|
-
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8551
|
-
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8552
8490
|
} & {
|
|
8553
8491
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
8554
8492
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10604,8 +10542,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10604
10542
|
pcb_group_id: string;
|
|
10605
10543
|
pcb_component_ids: string[];
|
|
10606
10544
|
source_group_id: string;
|
|
10607
|
-
name?: string | undefined;
|
|
10608
10545
|
description?: string | undefined;
|
|
10546
|
+
name?: string | undefined;
|
|
10609
10547
|
subcircuit_id?: string | undefined;
|
|
10610
10548
|
is_subcircuit?: boolean | undefined;
|
|
10611
10549
|
}, {
|
|
@@ -10618,8 +10556,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10618
10556
|
};
|
|
10619
10557
|
pcb_component_ids: string[];
|
|
10620
10558
|
source_group_id: string;
|
|
10621
|
-
name?: string | undefined;
|
|
10622
10559
|
description?: string | undefined;
|
|
10560
|
+
name?: string | undefined;
|
|
10623
10561
|
subcircuit_id?: string | undefined;
|
|
10624
10562
|
pcb_group_id?: string | undefined;
|
|
10625
10563
|
is_subcircuit?: boolean | undefined;
|
|
@@ -12270,8 +12208,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12270
12208
|
source_group_id: string;
|
|
12271
12209
|
schematic_group_id: string;
|
|
12272
12210
|
schematic_component_ids: string[];
|
|
12273
|
-
name?: string | undefined;
|
|
12274
12211
|
description?: string | undefined;
|
|
12212
|
+
name?: string | undefined;
|
|
12275
12213
|
subcircuit_id?: string | undefined;
|
|
12276
12214
|
is_subcircuit?: boolean | undefined;
|
|
12277
12215
|
}, {
|
|
@@ -12284,8 +12222,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12284
12222
|
};
|
|
12285
12223
|
source_group_id: string;
|
|
12286
12224
|
schematic_component_ids: string[];
|
|
12287
|
-
name?: string | undefined;
|
|
12288
12225
|
description?: string | undefined;
|
|
12226
|
+
name?: string | undefined;
|
|
12289
12227
|
subcircuit_id?: string | undefined;
|
|
12290
12228
|
is_subcircuit?: boolean | undefined;
|
|
12291
12229
|
schematic_group_id?: string | undefined;
|
|
@@ -12700,40 +12638,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12700
12638
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12701
12639
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12702
12640
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12703
|
-
} & {
|
|
12704
|
-
ftype: z.ZodLiteral<"simple_bug">;
|
|
12705
|
-
}, "strip", z.ZodTypeAny, {
|
|
12706
|
-
type: "source_component";
|
|
12707
|
-
name: string;
|
|
12708
|
-
source_component_id: string;
|
|
12709
|
-
ftype: "simple_bug";
|
|
12710
|
-
source_group_id?: string | undefined;
|
|
12711
|
-
manufacturer_part_number?: string | undefined;
|
|
12712
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12713
|
-
display_value?: string | undefined;
|
|
12714
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
12715
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12716
|
-
}, {
|
|
12717
|
-
type: "source_component";
|
|
12718
|
-
name: string;
|
|
12719
|
-
source_component_id: string;
|
|
12720
|
-
ftype: "simple_bug";
|
|
12721
|
-
source_group_id?: string | undefined;
|
|
12722
|
-
manufacturer_part_number?: string | undefined;
|
|
12723
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12724
|
-
display_value?: string | undefined;
|
|
12725
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
12726
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
12727
|
-
}>, z.ZodObject<{
|
|
12728
|
-
type: z.ZodLiteral<"source_component">;
|
|
12729
|
-
source_component_id: z.ZodString;
|
|
12730
|
-
name: z.ZodString;
|
|
12731
|
-
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
12732
|
-
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12733
|
-
display_value: z.ZodOptional<z.ZodString>;
|
|
12734
|
-
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12735
|
-
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12736
|
-
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12737
12641
|
} & {
|
|
12738
12642
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
12739
12643
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -13398,40 +13302,6 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13398
13302
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13399
13303
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13400
13304
|
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13401
|
-
} & {
|
|
13402
|
-
ftype: z.ZodLiteral<"simple_bug">;
|
|
13403
|
-
}, "strip", z.ZodTypeAny, {
|
|
13404
|
-
type: "source_component";
|
|
13405
|
-
name: string;
|
|
13406
|
-
source_component_id: string;
|
|
13407
|
-
ftype: "simple_bug";
|
|
13408
|
-
source_group_id?: string | undefined;
|
|
13409
|
-
manufacturer_part_number?: string | undefined;
|
|
13410
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13411
|
-
display_value?: string | undefined;
|
|
13412
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
13413
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13414
|
-
}, {
|
|
13415
|
-
type: "source_component";
|
|
13416
|
-
name: string;
|
|
13417
|
-
source_component_id: string;
|
|
13418
|
-
ftype: "simple_bug";
|
|
13419
|
-
source_group_id?: string | undefined;
|
|
13420
|
-
manufacturer_part_number?: string | undefined;
|
|
13421
|
-
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13422
|
-
display_value?: string | undefined;
|
|
13423
|
-
are_pins_interchangeable?: boolean | undefined;
|
|
13424
|
-
internally_connected_source_port_ids?: string[][] | undefined;
|
|
13425
|
-
}>, z.ZodObject<{
|
|
13426
|
-
type: z.ZodLiteral<"source_component">;
|
|
13427
|
-
source_component_id: z.ZodString;
|
|
13428
|
-
name: z.ZodString;
|
|
13429
|
-
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
13430
|
-
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
13431
|
-
display_value: z.ZodOptional<z.ZodString>;
|
|
13432
|
-
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
13433
|
-
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
13434
|
-
source_group_id: z.ZodOptional<z.ZodString>;
|
|
13435
13305
|
} & {
|
|
13436
13306
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
13437
13307
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -15487,8 +15357,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15487
15357
|
pcb_group_id: string;
|
|
15488
15358
|
pcb_component_ids: string[];
|
|
15489
15359
|
source_group_id: string;
|
|
15490
|
-
name?: string | undefined;
|
|
15491
15360
|
description?: string | undefined;
|
|
15361
|
+
name?: string | undefined;
|
|
15492
15362
|
subcircuit_id?: string | undefined;
|
|
15493
15363
|
is_subcircuit?: boolean | undefined;
|
|
15494
15364
|
}, {
|
|
@@ -15501,8 +15371,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15501
15371
|
};
|
|
15502
15372
|
pcb_component_ids: string[];
|
|
15503
15373
|
source_group_id: string;
|
|
15504
|
-
name?: string | undefined;
|
|
15505
15374
|
description?: string | undefined;
|
|
15375
|
+
name?: string | undefined;
|
|
15506
15376
|
subcircuit_id?: string | undefined;
|
|
15507
15377
|
pcb_group_id?: string | undefined;
|
|
15508
15378
|
is_subcircuit?: boolean | undefined;
|
|
@@ -17153,8 +17023,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17153
17023
|
source_group_id: string;
|
|
17154
17024
|
schematic_group_id: string;
|
|
17155
17025
|
schematic_component_ids: string[];
|
|
17156
|
-
name?: string | undefined;
|
|
17157
17026
|
description?: string | undefined;
|
|
17027
|
+
name?: string | undefined;
|
|
17158
17028
|
subcircuit_id?: string | undefined;
|
|
17159
17029
|
is_subcircuit?: boolean | undefined;
|
|
17160
17030
|
}, {
|
|
@@ -17167,8 +17037,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
17167
17037
|
};
|
|
17168
17038
|
source_group_id: string;
|
|
17169
17039
|
schematic_component_ids: string[];
|
|
17170
|
-
name?: string | undefined;
|
|
17171
17040
|
description?: string | undefined;
|
|
17041
|
+
name?: string | undefined;
|
|
17172
17042
|
subcircuit_id?: string | undefined;
|
|
17173
17043
|
is_subcircuit?: boolean | undefined;
|
|
17174
17044
|
schematic_group_id?: string | undefined;
|
|
@@ -17301,4 +17171,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
17301
17171
|
*/
|
|
17302
17172
|
type CircuitJson = AnyCircuitElement[];
|
|
17303
17173
|
|
|
17304
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, 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 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 PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, 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 SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type
|
|
17174
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InferredSchematicNetLabel, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type NinePointAnchor, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutCircle, type PCBKeepoutInput, type PCBKeepoutRect, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbBreakoutPoint, type PcbBreakoutPointInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbCutout, type PcbCutoutCircle, type PcbCutoutCircleInput, type PcbCutoutInput, type PcbCutoutPolygon, type PcbCutoutPolygonInput, type PcbCutoutRect, type PcbCutoutRectInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroundPlane, type PcbGroundPlaneInput, type PcbGroundPlaneRegion, type PcbGroundPlaneRegionInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, 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 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 PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, 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 SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SizeInput, type SourceComponentBase, type SourceFailedToCreateComponentError, type SourceFailedToCreateComponentErrorInput, type SourceGroup, type SourceGroupInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePcbGroundPlane, type SourcePcbGroundPlaneInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, 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 SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTestPoint, type SourceSimpleTestPointInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, ninePointAnchor, pcb_autorouting_error, pcb_board, pcb_breakout_point, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_ground_plane, pcb_ground_plane_region, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, 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_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, 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_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_failed_to_create_component_error, source_group, source_missing_property_error, source_net, source_pcb_ground_plane, source_port, source_project_metadata, 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_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_test_point, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|