circuit-json 0.0.180 → 0.0.182
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 +21 -0
- package/dist/index.d.mts +390 -15
- package/dist/index.mjs +10 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -228,6 +228,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
228
228
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
229
229
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
230
230
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
231
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
231
232
|
}, "strip", z.ZodTypeAny, {
|
|
232
233
|
type: "pcb_component";
|
|
233
234
|
width: number;
|
|
@@ -241,6 +242,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
241
242
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
242
243
|
rotation: number;
|
|
243
244
|
subcircuit_id?: string | undefined;
|
|
245
|
+
pcb_group_id?: string | undefined;
|
|
244
246
|
}, {
|
|
245
247
|
type: "pcb_component";
|
|
246
248
|
width: string | number;
|
|
@@ -256,6 +258,7 @@ declare const pcb_component: z.ZodObject<{
|
|
|
256
258
|
rotation: string | number;
|
|
257
259
|
pcb_component_id?: string | undefined;
|
|
258
260
|
subcircuit_id?: string | undefined;
|
|
261
|
+
pcb_group_id?: string | undefined;
|
|
259
262
|
}>;
|
|
260
263
|
type PcbComponentInput = z.input<typeof pcb_component>;
|
|
261
264
|
/**
|
|
@@ -271,6 +274,7 @@ interface PcbComponent {
|
|
|
271
274
|
rotation: Rotation;
|
|
272
275
|
width: Length;
|
|
273
276
|
height: Length;
|
|
277
|
+
pcb_group_id?: string;
|
|
274
278
|
}
|
|
275
279
|
/**
|
|
276
280
|
* @deprecated use PcbComponent
|
|
@@ -302,8 +306,8 @@ declare const pcb_hole_circle_or_square: z.ZodObject<{
|
|
|
302
306
|
hole_shape: "circle" | "square";
|
|
303
307
|
hole_diameter: number;
|
|
304
308
|
subcircuit_id?: string | undefined;
|
|
305
|
-
pcb_hole_id?: string | undefined;
|
|
306
309
|
pcb_group_id?: string | undefined;
|
|
310
|
+
pcb_hole_id?: string | undefined;
|
|
307
311
|
}>;
|
|
308
312
|
declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
309
313
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -330,8 +334,8 @@ declare const pcb_hole_circle_or_square_shape: z.ZodObject<{
|
|
|
330
334
|
hole_shape: "circle" | "square";
|
|
331
335
|
hole_diameter: number;
|
|
332
336
|
subcircuit_id?: string | undefined;
|
|
333
|
-
pcb_hole_id?: string | undefined;
|
|
334
337
|
pcb_group_id?: string | undefined;
|
|
338
|
+
pcb_hole_id?: string | undefined;
|
|
335
339
|
}>;
|
|
336
340
|
type PcbHoleCircleOrSquareInput = z.input<typeof pcb_hole_circle_or_square>;
|
|
337
341
|
/**
|
|
@@ -375,8 +379,8 @@ declare const pcb_hole_oval: z.ZodObject<{
|
|
|
375
379
|
hole_width: number;
|
|
376
380
|
hole_height: number;
|
|
377
381
|
subcircuit_id?: string | undefined;
|
|
378
|
-
pcb_hole_id?: string | undefined;
|
|
379
382
|
pcb_group_id?: string | undefined;
|
|
383
|
+
pcb_hole_id?: string | undefined;
|
|
380
384
|
}>;
|
|
381
385
|
declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
382
386
|
type: z.ZodLiteral<"pcb_hole">;
|
|
@@ -406,8 +410,8 @@ declare const pcb_hole_oval_shape: z.ZodObject<{
|
|
|
406
410
|
hole_width: number;
|
|
407
411
|
hole_height: number;
|
|
408
412
|
subcircuit_id?: string | undefined;
|
|
409
|
-
pcb_hole_id?: string | undefined;
|
|
410
413
|
pcb_group_id?: string | undefined;
|
|
414
|
+
pcb_hole_id?: string | undefined;
|
|
411
415
|
}>;
|
|
412
416
|
type PcbHoleOvalInput = z.input<typeof pcb_hole_oval>;
|
|
413
417
|
/**
|
|
@@ -449,8 +453,8 @@ declare const pcb_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
449
453
|
hole_shape: "circle" | "square";
|
|
450
454
|
hole_diameter: number;
|
|
451
455
|
subcircuit_id?: string | undefined;
|
|
452
|
-
pcb_hole_id?: string | undefined;
|
|
453
456
|
pcb_group_id?: string | undefined;
|
|
457
|
+
pcb_hole_id?: string | undefined;
|
|
454
458
|
}>, z.ZodObject<{
|
|
455
459
|
type: z.ZodLiteral<"pcb_hole">;
|
|
456
460
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -479,8 +483,8 @@ declare const pcb_hole: z.ZodUnion<[z.ZodObject<{
|
|
|
479
483
|
hole_width: number;
|
|
480
484
|
hole_height: number;
|
|
481
485
|
subcircuit_id?: string | undefined;
|
|
482
|
-
pcb_hole_id?: string | undefined;
|
|
483
486
|
pcb_group_id?: string | undefined;
|
|
487
|
+
pcb_hole_id?: string | undefined;
|
|
484
488
|
}>]>;
|
|
485
489
|
/**
|
|
486
490
|
* @deprecated Use PcbHoleCircleOrSquare or PcbHoleOval
|
|
@@ -3606,6 +3610,8 @@ interface SchematicComponent {
|
|
|
3606
3610
|
port_arrangement?: SchematicPortArrangement;
|
|
3607
3611
|
port_labels?: Record<string, string>;
|
|
3608
3612
|
symbol_display_value?: string;
|
|
3613
|
+
subcircuit_id?: string;
|
|
3614
|
+
schematic_group_id?: string;
|
|
3609
3615
|
}
|
|
3610
3616
|
declare const schematic_component_port_arrangement_by_size: z.ZodObject<{
|
|
3611
3617
|
left_size: z.ZodNumber;
|
|
@@ -3926,6 +3932,8 @@ declare const schematic_component: z.ZodObject<{
|
|
|
3926
3932
|
}>]>>;
|
|
3927
3933
|
port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3928
3934
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
3935
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
3936
|
+
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
3929
3937
|
}, "strip", z.ZodTypeAny, {
|
|
3930
3938
|
type: "schematic_component";
|
|
3931
3939
|
source_component_id: string;
|
|
@@ -3938,6 +3946,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
3938
3946
|
width: number;
|
|
3939
3947
|
height: number;
|
|
3940
3948
|
};
|
|
3949
|
+
subcircuit_id?: string | undefined;
|
|
3941
3950
|
pin_spacing?: number | undefined;
|
|
3942
3951
|
pin_styles?: Record<string, {
|
|
3943
3952
|
left_margin?: number | undefined;
|
|
@@ -3972,6 +3981,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
3972
3981
|
} | undefined;
|
|
3973
3982
|
port_labels?: Record<string, string> | undefined;
|
|
3974
3983
|
symbol_display_value?: string | undefined;
|
|
3984
|
+
schematic_group_id?: string | undefined;
|
|
3975
3985
|
}, {
|
|
3976
3986
|
type: "schematic_component";
|
|
3977
3987
|
source_component_id: string;
|
|
@@ -3984,6 +3994,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
3984
3994
|
width: number;
|
|
3985
3995
|
height: number;
|
|
3986
3996
|
};
|
|
3997
|
+
subcircuit_id?: string | undefined;
|
|
3987
3998
|
pin_spacing?: string | number | undefined;
|
|
3988
3999
|
pin_styles?: Record<string, {
|
|
3989
4000
|
left_margin?: string | number | undefined;
|
|
@@ -4018,6 +4029,7 @@ declare const schematic_component: z.ZodObject<{
|
|
|
4018
4029
|
} | undefined;
|
|
4019
4030
|
port_labels?: Record<string, string> | undefined;
|
|
4020
4031
|
symbol_display_value?: string | undefined;
|
|
4032
|
+
schematic_group_id?: string | undefined;
|
|
4021
4033
|
}>;
|
|
4022
4034
|
type SchematicComponentInput = z.input<typeof schematic_component>;
|
|
4023
4035
|
|
|
@@ -4322,8 +4334,21 @@ declare const schematic_port: z.ZodObject<{
|
|
|
4322
4334
|
}>;
|
|
4323
4335
|
type SchematicPortInput = z.input<typeof schematic_port>;
|
|
4324
4336
|
|
|
4337
|
+
interface SchematicNetLabel {
|
|
4338
|
+
type: "schematic_net_label";
|
|
4339
|
+
schematic_net_label_id: string;
|
|
4340
|
+
schematic_trace_id?: string;
|
|
4341
|
+
source_net_id: string;
|
|
4342
|
+
center: Point;
|
|
4343
|
+
anchor_position?: Point | undefined;
|
|
4344
|
+
anchor_side: "top" | "bottom" | "left" | "right";
|
|
4345
|
+
text: string;
|
|
4346
|
+
symbol_name?: string | undefined;
|
|
4347
|
+
}
|
|
4325
4348
|
declare const schematic_net_label: z.ZodObject<{
|
|
4326
4349
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
4350
|
+
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
4351
|
+
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
4327
4352
|
source_net_id: z.ZodString;
|
|
4328
4353
|
center: z.ZodObject<{
|
|
4329
4354
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4355,6 +4380,7 @@ declare const schematic_net_label: z.ZodObject<{
|
|
|
4355
4380
|
y: number;
|
|
4356
4381
|
};
|
|
4357
4382
|
text: string;
|
|
4383
|
+
schematic_net_label_id: string;
|
|
4358
4384
|
source_net_id: string;
|
|
4359
4385
|
anchor_side: "top" | "bottom" | "left" | "right";
|
|
4360
4386
|
anchor_position?: {
|
|
@@ -4362,6 +4388,7 @@ declare const schematic_net_label: z.ZodObject<{
|
|
|
4362
4388
|
y: number;
|
|
4363
4389
|
} | undefined;
|
|
4364
4390
|
symbol_name?: string | undefined;
|
|
4391
|
+
schematic_trace_id?: string | undefined;
|
|
4365
4392
|
}, {
|
|
4366
4393
|
type: "schematic_net_label";
|
|
4367
4394
|
center: {
|
|
@@ -4376,9 +4403,11 @@ declare const schematic_net_label: z.ZodObject<{
|
|
|
4376
4403
|
y: string | number;
|
|
4377
4404
|
} | undefined;
|
|
4378
4405
|
symbol_name?: string | undefined;
|
|
4406
|
+
schematic_trace_id?: string | undefined;
|
|
4407
|
+
schematic_net_label_id?: string | undefined;
|
|
4379
4408
|
}>;
|
|
4380
4409
|
type SchematicNetLabelInput = z.input<typeof schematic_net_label>;
|
|
4381
|
-
type
|
|
4410
|
+
type InferredSchematicNetLabel = z.infer<typeof schematic_net_label>;
|
|
4382
4411
|
|
|
4383
4412
|
interface SchematicError {
|
|
4384
4413
|
type: "schematic_error";
|
|
@@ -4764,8 +4793,8 @@ declare const schematic_manual_edit_conflict_warning: z.ZodObject<{
|
|
|
4764
4793
|
source_component_id: string;
|
|
4765
4794
|
schematic_component_id: string;
|
|
4766
4795
|
subcircuit_id?: string | undefined;
|
|
4767
|
-
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
4768
4796
|
schematic_group_id?: string | undefined;
|
|
4797
|
+
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
4769
4798
|
}>;
|
|
4770
4799
|
type SchematicManualEditConflictWarningInput = z.input<typeof schematic_manual_edit_conflict_warning>;
|
|
4771
4800
|
/**
|
|
@@ -4863,6 +4892,7 @@ interface SourceComponentBase {
|
|
|
4863
4892
|
display_value?: string;
|
|
4864
4893
|
are_pins_interchangeable?: boolean;
|
|
4865
4894
|
internally_connected_source_port_ids?: string[][];
|
|
4895
|
+
source_group_id?: string;
|
|
4866
4896
|
}
|
|
4867
4897
|
declare const source_component_base: z.ZodObject<{
|
|
4868
4898
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -4874,10 +4904,12 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4874
4904
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4875
4905
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4876
4906
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4907
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
4877
4908
|
}, "strip", z.ZodTypeAny, {
|
|
4878
4909
|
type: "source_component";
|
|
4879
4910
|
name: string;
|
|
4880
4911
|
source_component_id: string;
|
|
4912
|
+
source_group_id?: string | undefined;
|
|
4881
4913
|
ftype?: string | undefined;
|
|
4882
4914
|
manufacturer_part_number?: string | undefined;
|
|
4883
4915
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
@@ -4888,6 +4920,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4888
4920
|
type: "source_component";
|
|
4889
4921
|
name: string;
|
|
4890
4922
|
source_component_id: string;
|
|
4923
|
+
source_group_id?: string | undefined;
|
|
4891
4924
|
ftype?: string | undefined;
|
|
4892
4925
|
manufacturer_part_number?: string | undefined;
|
|
4893
4926
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
@@ -4906,6 +4939,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4906
4939
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4907
4940
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4908
4941
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4942
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
4909
4943
|
}, {
|
|
4910
4944
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
4911
4945
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4918,6 +4952,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4918
4952
|
source_component_id: string;
|
|
4919
4953
|
ftype: "simple_capacitor";
|
|
4920
4954
|
capacitance: number;
|
|
4955
|
+
source_group_id?: string | undefined;
|
|
4921
4956
|
manufacturer_part_number?: string | undefined;
|
|
4922
4957
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4923
4958
|
display_value?: string | undefined;
|
|
@@ -4932,6 +4967,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4932
4967
|
source_component_id: string;
|
|
4933
4968
|
ftype: "simple_capacitor";
|
|
4934
4969
|
capacitance: string | number;
|
|
4970
|
+
source_group_id?: string | undefined;
|
|
4935
4971
|
manufacturer_part_number?: string | undefined;
|
|
4936
4972
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4937
4973
|
display_value?: string | undefined;
|
|
@@ -4963,6 +4999,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4963
4999
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4964
5000
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4965
5001
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5002
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
4966
5003
|
}, {
|
|
4967
5004
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
4968
5005
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4973,6 +5010,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4973
5010
|
source_component_id: string;
|
|
4974
5011
|
ftype: "simple_resistor";
|
|
4975
5012
|
resistance: number;
|
|
5013
|
+
source_group_id?: string | undefined;
|
|
4976
5014
|
manufacturer_part_number?: string | undefined;
|
|
4977
5015
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4978
5016
|
display_value?: string | undefined;
|
|
@@ -4985,6 +5023,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4985
5023
|
source_component_id: string;
|
|
4986
5024
|
ftype: "simple_resistor";
|
|
4987
5025
|
resistance: string | number;
|
|
5026
|
+
source_group_id?: string | undefined;
|
|
4988
5027
|
manufacturer_part_number?: string | undefined;
|
|
4989
5028
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4990
5029
|
display_value?: string | undefined;
|
|
@@ -5012,6 +5051,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5012
5051
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5013
5052
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5014
5053
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5054
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5015
5055
|
}, {
|
|
5016
5056
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5017
5057
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5019,6 +5059,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5019
5059
|
name: string;
|
|
5020
5060
|
source_component_id: string;
|
|
5021
5061
|
ftype: "simple_diode";
|
|
5062
|
+
source_group_id?: string | undefined;
|
|
5022
5063
|
manufacturer_part_number?: string | undefined;
|
|
5023
5064
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5024
5065
|
display_value?: string | undefined;
|
|
@@ -5029,6 +5070,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5029
5070
|
name: string;
|
|
5030
5071
|
source_component_id: string;
|
|
5031
5072
|
ftype: "simple_diode";
|
|
5073
|
+
source_group_id?: string | undefined;
|
|
5032
5074
|
manufacturer_part_number?: string | undefined;
|
|
5033
5075
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5034
5076
|
display_value?: string | undefined;
|
|
@@ -5053,6 +5095,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5053
5095
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5054
5096
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5055
5097
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5098
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5056
5099
|
}, {
|
|
5057
5100
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5058
5101
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5060,6 +5103,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5060
5103
|
name: string;
|
|
5061
5104
|
source_component_id: string;
|
|
5062
5105
|
ftype: "simple_ground";
|
|
5106
|
+
source_group_id?: string | undefined;
|
|
5063
5107
|
manufacturer_part_number?: string | undefined;
|
|
5064
5108
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5065
5109
|
display_value?: string | undefined;
|
|
@@ -5070,6 +5114,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5070
5114
|
name: string;
|
|
5071
5115
|
source_component_id: string;
|
|
5072
5116
|
ftype: "simple_ground";
|
|
5117
|
+
source_group_id?: string | undefined;
|
|
5073
5118
|
manufacturer_part_number?: string | undefined;
|
|
5074
5119
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5075
5120
|
display_value?: string | undefined;
|
|
@@ -5097,6 +5142,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5097
5142
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5098
5143
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5099
5144
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5145
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5100
5146
|
}, {
|
|
5101
5147
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
5102
5148
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5104,6 +5150,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5104
5150
|
name: string;
|
|
5105
5151
|
source_component_id: string;
|
|
5106
5152
|
ftype: "simple_bug";
|
|
5153
|
+
source_group_id?: string | undefined;
|
|
5107
5154
|
manufacturer_part_number?: string | undefined;
|
|
5108
5155
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5109
5156
|
display_value?: string | undefined;
|
|
@@ -5114,6 +5161,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5114
5161
|
name: string;
|
|
5115
5162
|
source_component_id: string;
|
|
5116
5163
|
ftype: "simple_bug";
|
|
5164
|
+
source_group_id?: string | undefined;
|
|
5117
5165
|
manufacturer_part_number?: string | undefined;
|
|
5118
5166
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5119
5167
|
display_value?: string | undefined;
|
|
@@ -5133,6 +5181,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5133
5181
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5134
5182
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5135
5183
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5184
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5136
5185
|
}, {
|
|
5137
5186
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
5138
5187
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5140,6 +5189,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5140
5189
|
name: string;
|
|
5141
5190
|
source_component_id: string;
|
|
5142
5191
|
ftype: "simple_chip";
|
|
5192
|
+
source_group_id?: string | undefined;
|
|
5143
5193
|
manufacturer_part_number?: string | undefined;
|
|
5144
5194
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5145
5195
|
display_value?: string | undefined;
|
|
@@ -5150,6 +5200,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5150
5200
|
name: string;
|
|
5151
5201
|
source_component_id: string;
|
|
5152
5202
|
ftype: "simple_chip";
|
|
5203
|
+
source_group_id?: string | undefined;
|
|
5153
5204
|
manufacturer_part_number?: string | undefined;
|
|
5154
5205
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5155
5206
|
display_value?: string | undefined;
|
|
@@ -5174,6 +5225,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5174
5225
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5175
5226
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5176
5227
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5228
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5177
5229
|
}, {
|
|
5178
5230
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5179
5231
|
}>, {
|
|
@@ -5183,6 +5235,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5183
5235
|
name: string;
|
|
5184
5236
|
source_component_id: string;
|
|
5185
5237
|
ftype: "led";
|
|
5238
|
+
source_group_id?: string | undefined;
|
|
5186
5239
|
manufacturer_part_number?: string | undefined;
|
|
5187
5240
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5188
5241
|
display_value?: string | undefined;
|
|
@@ -5193,6 +5246,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5193
5246
|
name: string;
|
|
5194
5247
|
source_component_id: string;
|
|
5195
5248
|
ftype: "led";
|
|
5249
|
+
source_group_id?: string | undefined;
|
|
5196
5250
|
manufacturer_part_number?: string | undefined;
|
|
5197
5251
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5198
5252
|
display_value?: string | undefined;
|
|
@@ -5217,6 +5271,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5217
5271
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5218
5272
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5219
5273
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5274
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5220
5275
|
}, {
|
|
5221
5276
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
5222
5277
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5226,6 +5281,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5226
5281
|
source_component_id: string;
|
|
5227
5282
|
voltage: number;
|
|
5228
5283
|
ftype: "simple_power_source";
|
|
5284
|
+
source_group_id?: string | undefined;
|
|
5229
5285
|
manufacturer_part_number?: string | undefined;
|
|
5230
5286
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5231
5287
|
display_value?: string | undefined;
|
|
@@ -5237,6 +5293,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5237
5293
|
source_component_id: string;
|
|
5238
5294
|
voltage: string | number;
|
|
5239
5295
|
ftype: "simple_power_source";
|
|
5296
|
+
source_group_id?: string | undefined;
|
|
5240
5297
|
manufacturer_part_number?: string | undefined;
|
|
5241
5298
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5242
5299
|
display_value?: string | undefined;
|
|
@@ -5262,6 +5319,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5262
5319
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5263
5320
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5264
5321
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5322
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5265
5323
|
}, {
|
|
5266
5324
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
5267
5325
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -5271,6 +5329,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5271
5329
|
source_component_id: string;
|
|
5272
5330
|
ftype: "simple_battery";
|
|
5273
5331
|
capacity: number;
|
|
5332
|
+
source_group_id?: string | undefined;
|
|
5274
5333
|
manufacturer_part_number?: string | undefined;
|
|
5275
5334
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5276
5335
|
display_value?: string | undefined;
|
|
@@ -5282,6 +5341,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5282
5341
|
source_component_id: string;
|
|
5283
5342
|
ftype: "simple_battery";
|
|
5284
5343
|
capacity: string | number;
|
|
5344
|
+
source_group_id?: string | undefined;
|
|
5285
5345
|
manufacturer_part_number?: string | undefined;
|
|
5286
5346
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5287
5347
|
display_value?: string | undefined;
|
|
@@ -5307,6 +5367,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5307
5367
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5308
5368
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5309
5369
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5370
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5310
5371
|
}, {
|
|
5311
5372
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
5312
5373
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5316,6 +5377,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5316
5377
|
source_component_id: string;
|
|
5317
5378
|
ftype: "simple_inductor";
|
|
5318
5379
|
inductance: number;
|
|
5380
|
+
source_group_id?: string | undefined;
|
|
5319
5381
|
manufacturer_part_number?: string | undefined;
|
|
5320
5382
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5321
5383
|
display_value?: string | undefined;
|
|
@@ -5327,6 +5389,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5327
5389
|
source_component_id: string;
|
|
5328
5390
|
ftype: "simple_inductor";
|
|
5329
5391
|
inductance: string | number;
|
|
5392
|
+
source_group_id?: string | undefined;
|
|
5330
5393
|
manufacturer_part_number?: string | undefined;
|
|
5331
5394
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5332
5395
|
display_value?: string | undefined;
|
|
@@ -5352,6 +5415,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5352
5415
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5353
5416
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5354
5417
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5418
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5355
5419
|
}, {
|
|
5356
5420
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
5357
5421
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5359,6 +5423,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5359
5423
|
name: string;
|
|
5360
5424
|
source_component_id: string;
|
|
5361
5425
|
ftype: "simple_push_button";
|
|
5426
|
+
source_group_id?: string | undefined;
|
|
5362
5427
|
manufacturer_part_number?: string | undefined;
|
|
5363
5428
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5364
5429
|
display_value?: string | undefined;
|
|
@@ -5369,6 +5434,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5369
5434
|
name: string;
|
|
5370
5435
|
source_component_id: string;
|
|
5371
5436
|
ftype: "simple_push_button";
|
|
5437
|
+
source_group_id?: string | undefined;
|
|
5372
5438
|
manufacturer_part_number?: string | undefined;
|
|
5373
5439
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5374
5440
|
display_value?: string | undefined;
|
|
@@ -5393,6 +5459,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5393
5459
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5394
5460
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5395
5461
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5462
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5396
5463
|
}, {
|
|
5397
5464
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5398
5465
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5402,6 +5469,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5402
5469
|
source_component_id: string;
|
|
5403
5470
|
ftype: "simple_potentiometer";
|
|
5404
5471
|
max_resistance: number;
|
|
5472
|
+
source_group_id?: string | undefined;
|
|
5405
5473
|
manufacturer_part_number?: string | undefined;
|
|
5406
5474
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5407
5475
|
display_value?: string | undefined;
|
|
@@ -5413,6 +5481,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5413
5481
|
source_component_id: string;
|
|
5414
5482
|
ftype: "simple_potentiometer";
|
|
5415
5483
|
max_resistance: string | number;
|
|
5484
|
+
source_group_id?: string | undefined;
|
|
5416
5485
|
manufacturer_part_number?: string | undefined;
|
|
5417
5486
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5418
5487
|
display_value?: string | undefined;
|
|
@@ -5432,6 +5501,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5432
5501
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5433
5502
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5434
5503
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5504
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5435
5505
|
}, {
|
|
5436
5506
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
5437
5507
|
frequency: z.ZodNumber;
|
|
@@ -5442,6 +5512,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5442
5512
|
source_component_id: string;
|
|
5443
5513
|
ftype: "simple_crystal";
|
|
5444
5514
|
frequency: number;
|
|
5515
|
+
source_group_id?: string | undefined;
|
|
5445
5516
|
manufacturer_part_number?: string | undefined;
|
|
5446
5517
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5447
5518
|
display_value?: string | undefined;
|
|
@@ -5454,6 +5525,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5454
5525
|
source_component_id: string;
|
|
5455
5526
|
ftype: "simple_crystal";
|
|
5456
5527
|
frequency: number;
|
|
5528
|
+
source_group_id?: string | undefined;
|
|
5457
5529
|
manufacturer_part_number?: string | undefined;
|
|
5458
5530
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5459
5531
|
display_value?: string | undefined;
|
|
@@ -5481,6 +5553,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5481
5553
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5482
5554
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5483
5555
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5556
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5484
5557
|
}, {
|
|
5485
5558
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5486
5559
|
pin_count: z.ZodNumber;
|
|
@@ -5492,6 +5565,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5492
5565
|
ftype: "simple_pin_header";
|
|
5493
5566
|
pin_count: number;
|
|
5494
5567
|
gender: "male" | "female";
|
|
5568
|
+
source_group_id?: string | undefined;
|
|
5495
5569
|
manufacturer_part_number?: string | undefined;
|
|
5496
5570
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5497
5571
|
display_value?: string | undefined;
|
|
@@ -5503,6 +5577,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5503
5577
|
source_component_id: string;
|
|
5504
5578
|
ftype: "simple_pin_header";
|
|
5505
5579
|
pin_count: number;
|
|
5580
|
+
source_group_id?: string | undefined;
|
|
5506
5581
|
manufacturer_part_number?: string | undefined;
|
|
5507
5582
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5508
5583
|
display_value?: string | undefined;
|
|
@@ -5523,6 +5598,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5523
5598
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5524
5599
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5525
5600
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5601
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5526
5602
|
}, {
|
|
5527
5603
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
5528
5604
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5535,6 +5611,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5535
5611
|
ftype: "simple_resonator";
|
|
5536
5612
|
frequency: number;
|
|
5537
5613
|
load_capacitance: number;
|
|
5614
|
+
source_group_id?: string | undefined;
|
|
5538
5615
|
manufacturer_part_number?: string | undefined;
|
|
5539
5616
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5540
5617
|
display_value?: string | undefined;
|
|
@@ -5548,6 +5625,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5548
5625
|
ftype: "simple_resonator";
|
|
5549
5626
|
frequency: string | number;
|
|
5550
5627
|
load_capacitance: string | number;
|
|
5628
|
+
source_group_id?: string | undefined;
|
|
5551
5629
|
manufacturer_part_number?: string | undefined;
|
|
5552
5630
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5553
5631
|
display_value?: string | undefined;
|
|
@@ -5576,6 +5654,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5576
5654
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5577
5655
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5578
5656
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5657
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5579
5658
|
}, {
|
|
5580
5659
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5581
5660
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5585,6 +5664,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5585
5664
|
source_component_id: string;
|
|
5586
5665
|
ftype: "simple_transistor";
|
|
5587
5666
|
transistor_type: "npn" | "pnp";
|
|
5667
|
+
source_group_id?: string | undefined;
|
|
5588
5668
|
manufacturer_part_number?: string | undefined;
|
|
5589
5669
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5590
5670
|
display_value?: string | undefined;
|
|
@@ -5596,6 +5676,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5596
5676
|
source_component_id: string;
|
|
5597
5677
|
ftype: "simple_transistor";
|
|
5598
5678
|
transistor_type: "npn" | "pnp";
|
|
5679
|
+
source_group_id?: string | undefined;
|
|
5599
5680
|
manufacturer_part_number?: string | undefined;
|
|
5600
5681
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5601
5682
|
display_value?: string | undefined;
|
|
@@ -5623,6 +5704,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5623
5704
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5624
5705
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5625
5706
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5707
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5626
5708
|
}, {
|
|
5627
5709
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5628
5710
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5634,6 +5716,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5634
5716
|
ftype: "simple_mosfet";
|
|
5635
5717
|
channel_type: "n" | "p";
|
|
5636
5718
|
mosfet_mode: "enhancement" | "depletion";
|
|
5719
|
+
source_group_id?: string | undefined;
|
|
5637
5720
|
manufacturer_part_number?: string | undefined;
|
|
5638
5721
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5639
5722
|
display_value?: string | undefined;
|
|
@@ -5646,6 +5729,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5646
5729
|
ftype: "simple_mosfet";
|
|
5647
5730
|
channel_type: "n" | "p";
|
|
5648
5731
|
mosfet_mode: "enhancement" | "depletion";
|
|
5732
|
+
source_group_id?: string | undefined;
|
|
5649
5733
|
manufacturer_part_number?: string | undefined;
|
|
5650
5734
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5651
5735
|
display_value?: string | undefined;
|
|
@@ -5674,6 +5758,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5674
5758
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5675
5759
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5676
5760
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5761
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5677
5762
|
}, {
|
|
5678
5763
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5679
5764
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5681,6 +5766,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5681
5766
|
name: string;
|
|
5682
5767
|
source_component_id: string;
|
|
5683
5768
|
ftype: "simple_switch";
|
|
5769
|
+
source_group_id?: string | undefined;
|
|
5684
5770
|
manufacturer_part_number?: string | undefined;
|
|
5685
5771
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5686
5772
|
display_value?: string | undefined;
|
|
@@ -5691,6 +5777,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5691
5777
|
name: string;
|
|
5692
5778
|
source_component_id: string;
|
|
5693
5779
|
ftype: "simple_switch";
|
|
5780
|
+
source_group_id?: string | undefined;
|
|
5694
5781
|
manufacturer_part_number?: string | undefined;
|
|
5695
5782
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5696
5783
|
display_value?: string | undefined;
|
|
@@ -5854,6 +5941,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5854
5941
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5855
5942
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5856
5943
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5944
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5857
5945
|
}, {
|
|
5858
5946
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
5859
5947
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5864,6 +5952,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5864
5952
|
source_component_id: string;
|
|
5865
5953
|
ftype: "simple_resistor";
|
|
5866
5954
|
resistance: number;
|
|
5955
|
+
source_group_id?: string | undefined;
|
|
5867
5956
|
manufacturer_part_number?: string | undefined;
|
|
5868
5957
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5869
5958
|
display_value?: string | undefined;
|
|
@@ -5876,6 +5965,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5876
5965
|
source_component_id: string;
|
|
5877
5966
|
ftype: "simple_resistor";
|
|
5878
5967
|
resistance: string | number;
|
|
5968
|
+
source_group_id?: string | undefined;
|
|
5879
5969
|
manufacturer_part_number?: string | undefined;
|
|
5880
5970
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5881
5971
|
display_value?: string | undefined;
|
|
@@ -5892,6 +5982,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5892
5982
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5893
5983
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5894
5984
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5985
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5895
5986
|
}, {
|
|
5896
5987
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
5897
5988
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5904,6 +5995,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5904
5995
|
source_component_id: string;
|
|
5905
5996
|
ftype: "simple_capacitor";
|
|
5906
5997
|
capacitance: number;
|
|
5998
|
+
source_group_id?: string | undefined;
|
|
5907
5999
|
manufacturer_part_number?: string | undefined;
|
|
5908
6000
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5909
6001
|
display_value?: string | undefined;
|
|
@@ -5918,6 +6010,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5918
6010
|
source_component_id: string;
|
|
5919
6011
|
ftype: "simple_capacitor";
|
|
5920
6012
|
capacitance: string | number;
|
|
6013
|
+
source_group_id?: string | undefined;
|
|
5921
6014
|
manufacturer_part_number?: string | undefined;
|
|
5922
6015
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5923
6016
|
display_value?: string | undefined;
|
|
@@ -5936,6 +6029,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5936
6029
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5937
6030
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5938
6031
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6032
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5939
6033
|
}, {
|
|
5940
6034
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5941
6035
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5943,6 +6037,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5943
6037
|
name: string;
|
|
5944
6038
|
source_component_id: string;
|
|
5945
6039
|
ftype: "simple_diode";
|
|
6040
|
+
source_group_id?: string | undefined;
|
|
5946
6041
|
manufacturer_part_number?: string | undefined;
|
|
5947
6042
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5948
6043
|
display_value?: string | undefined;
|
|
@@ -5953,6 +6048,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5953
6048
|
name: string;
|
|
5954
6049
|
source_component_id: string;
|
|
5955
6050
|
ftype: "simple_diode";
|
|
6051
|
+
source_group_id?: string | undefined;
|
|
5956
6052
|
manufacturer_part_number?: string | undefined;
|
|
5957
6053
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5958
6054
|
display_value?: string | undefined;
|
|
@@ -5968,6 +6064,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5968
6064
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5969
6065
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5970
6066
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6067
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5971
6068
|
}, {
|
|
5972
6069
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5973
6070
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5975,6 +6072,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5975
6072
|
name: string;
|
|
5976
6073
|
source_component_id: string;
|
|
5977
6074
|
ftype: "simple_ground";
|
|
6075
|
+
source_group_id?: string | undefined;
|
|
5978
6076
|
manufacturer_part_number?: string | undefined;
|
|
5979
6077
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5980
6078
|
display_value?: string | undefined;
|
|
@@ -5985,6 +6083,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5985
6083
|
name: string;
|
|
5986
6084
|
source_component_id: string;
|
|
5987
6085
|
ftype: "simple_ground";
|
|
6086
|
+
source_group_id?: string | undefined;
|
|
5988
6087
|
manufacturer_part_number?: string | undefined;
|
|
5989
6088
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5990
6089
|
display_value?: string | undefined;
|
|
@@ -6000,6 +6099,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6000
6099
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6001
6100
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6002
6101
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6102
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6003
6103
|
}, {
|
|
6004
6104
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6005
6105
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6007,6 +6107,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6007
6107
|
name: string;
|
|
6008
6108
|
source_component_id: string;
|
|
6009
6109
|
ftype: "simple_chip";
|
|
6110
|
+
source_group_id?: string | undefined;
|
|
6010
6111
|
manufacturer_part_number?: string | undefined;
|
|
6011
6112
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6012
6113
|
display_value?: string | undefined;
|
|
@@ -6017,6 +6118,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6017
6118
|
name: string;
|
|
6018
6119
|
source_component_id: string;
|
|
6019
6120
|
ftype: "simple_chip";
|
|
6121
|
+
source_group_id?: string | undefined;
|
|
6020
6122
|
manufacturer_part_number?: string | undefined;
|
|
6021
6123
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6022
6124
|
display_value?: string | undefined;
|
|
@@ -6032,6 +6134,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6032
6134
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6033
6135
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6034
6136
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6137
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6035
6138
|
}, {
|
|
6036
6139
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6037
6140
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6039,6 +6142,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6039
6142
|
name: string;
|
|
6040
6143
|
source_component_id: string;
|
|
6041
6144
|
ftype: "simple_bug";
|
|
6145
|
+
source_group_id?: string | undefined;
|
|
6042
6146
|
manufacturer_part_number?: string | undefined;
|
|
6043
6147
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6044
6148
|
display_value?: string | undefined;
|
|
@@ -6049,6 +6153,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6049
6153
|
name: string;
|
|
6050
6154
|
source_component_id: string;
|
|
6051
6155
|
ftype: "simple_bug";
|
|
6156
|
+
source_group_id?: string | undefined;
|
|
6052
6157
|
manufacturer_part_number?: string | undefined;
|
|
6053
6158
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6054
6159
|
display_value?: string | undefined;
|
|
@@ -6064,6 +6169,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6064
6169
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6065
6170
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6066
6171
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6172
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6067
6173
|
}, {
|
|
6068
6174
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6069
6175
|
}>, {
|
|
@@ -6073,6 +6179,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6073
6179
|
name: string;
|
|
6074
6180
|
source_component_id: string;
|
|
6075
6181
|
ftype: "led";
|
|
6182
|
+
source_group_id?: string | undefined;
|
|
6076
6183
|
manufacturer_part_number?: string | undefined;
|
|
6077
6184
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6078
6185
|
display_value?: string | undefined;
|
|
@@ -6083,6 +6190,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6083
6190
|
name: string;
|
|
6084
6191
|
source_component_id: string;
|
|
6085
6192
|
ftype: "led";
|
|
6193
|
+
source_group_id?: string | undefined;
|
|
6086
6194
|
manufacturer_part_number?: string | undefined;
|
|
6087
6195
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6088
6196
|
display_value?: string | undefined;
|
|
@@ -6098,6 +6206,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6098
6206
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6099
6207
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6100
6208
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6209
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6101
6210
|
}, {
|
|
6102
6211
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6103
6212
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6107,6 +6216,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6107
6216
|
source_component_id: string;
|
|
6108
6217
|
voltage: number;
|
|
6109
6218
|
ftype: "simple_power_source";
|
|
6219
|
+
source_group_id?: string | undefined;
|
|
6110
6220
|
manufacturer_part_number?: string | undefined;
|
|
6111
6221
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6112
6222
|
display_value?: string | undefined;
|
|
@@ -6118,6 +6228,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6118
6228
|
source_component_id: string;
|
|
6119
6229
|
voltage: string | number;
|
|
6120
6230
|
ftype: "simple_power_source";
|
|
6231
|
+
source_group_id?: string | undefined;
|
|
6121
6232
|
manufacturer_part_number?: string | undefined;
|
|
6122
6233
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6123
6234
|
display_value?: string | undefined;
|
|
@@ -6133,6 +6244,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6133
6244
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6134
6245
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6135
6246
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6247
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6136
6248
|
}, {
|
|
6137
6249
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6138
6250
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6142,6 +6254,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6142
6254
|
source_component_id: string;
|
|
6143
6255
|
ftype: "simple_battery";
|
|
6144
6256
|
capacity: number;
|
|
6257
|
+
source_group_id?: string | undefined;
|
|
6145
6258
|
manufacturer_part_number?: string | undefined;
|
|
6146
6259
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6147
6260
|
display_value?: string | undefined;
|
|
@@ -6153,6 +6266,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6153
6266
|
source_component_id: string;
|
|
6154
6267
|
ftype: "simple_battery";
|
|
6155
6268
|
capacity: string | number;
|
|
6269
|
+
source_group_id?: string | undefined;
|
|
6156
6270
|
manufacturer_part_number?: string | undefined;
|
|
6157
6271
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6158
6272
|
display_value?: string | undefined;
|
|
@@ -6168,6 +6282,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6168
6282
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6169
6283
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6170
6284
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6285
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6171
6286
|
}, {
|
|
6172
6287
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6173
6288
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6177,6 +6292,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6177
6292
|
source_component_id: string;
|
|
6178
6293
|
ftype: "simple_inductor";
|
|
6179
6294
|
inductance: number;
|
|
6295
|
+
source_group_id?: string | undefined;
|
|
6180
6296
|
manufacturer_part_number?: string | undefined;
|
|
6181
6297
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6182
6298
|
display_value?: string | undefined;
|
|
@@ -6188,6 +6304,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6188
6304
|
source_component_id: string;
|
|
6189
6305
|
ftype: "simple_inductor";
|
|
6190
6306
|
inductance: string | number;
|
|
6307
|
+
source_group_id?: string | undefined;
|
|
6191
6308
|
manufacturer_part_number?: string | undefined;
|
|
6192
6309
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6193
6310
|
display_value?: string | undefined;
|
|
@@ -6203,6 +6320,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6203
6320
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6204
6321
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6205
6322
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6323
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6206
6324
|
}, {
|
|
6207
6325
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
6208
6326
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6210,6 +6328,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6210
6328
|
name: string;
|
|
6211
6329
|
source_component_id: string;
|
|
6212
6330
|
ftype: "simple_push_button";
|
|
6331
|
+
source_group_id?: string | undefined;
|
|
6213
6332
|
manufacturer_part_number?: string | undefined;
|
|
6214
6333
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6215
6334
|
display_value?: string | undefined;
|
|
@@ -6220,6 +6339,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6220
6339
|
name: string;
|
|
6221
6340
|
source_component_id: string;
|
|
6222
6341
|
ftype: "simple_push_button";
|
|
6342
|
+
source_group_id?: string | undefined;
|
|
6223
6343
|
manufacturer_part_number?: string | undefined;
|
|
6224
6344
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6225
6345
|
display_value?: string | undefined;
|
|
@@ -6235,6 +6355,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6235
6355
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6236
6356
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6237
6357
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6358
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6238
6359
|
}, {
|
|
6239
6360
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
6240
6361
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6244,6 +6365,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6244
6365
|
source_component_id: string;
|
|
6245
6366
|
ftype: "simple_potentiometer";
|
|
6246
6367
|
max_resistance: number;
|
|
6368
|
+
source_group_id?: string | undefined;
|
|
6247
6369
|
manufacturer_part_number?: string | undefined;
|
|
6248
6370
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6249
6371
|
display_value?: string | undefined;
|
|
@@ -6255,6 +6377,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6255
6377
|
source_component_id: string;
|
|
6256
6378
|
ftype: "simple_potentiometer";
|
|
6257
6379
|
max_resistance: string | number;
|
|
6380
|
+
source_group_id?: string | undefined;
|
|
6258
6381
|
manufacturer_part_number?: string | undefined;
|
|
6259
6382
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6260
6383
|
display_value?: string | undefined;
|
|
@@ -6270,6 +6393,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6270
6393
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6271
6394
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6272
6395
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6396
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6273
6397
|
}, {
|
|
6274
6398
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
6275
6399
|
frequency: z.ZodNumber;
|
|
@@ -6280,6 +6404,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6280
6404
|
source_component_id: string;
|
|
6281
6405
|
ftype: "simple_crystal";
|
|
6282
6406
|
frequency: number;
|
|
6407
|
+
source_group_id?: string | undefined;
|
|
6283
6408
|
manufacturer_part_number?: string | undefined;
|
|
6284
6409
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6285
6410
|
display_value?: string | undefined;
|
|
@@ -6292,6 +6417,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6292
6417
|
source_component_id: string;
|
|
6293
6418
|
ftype: "simple_crystal";
|
|
6294
6419
|
frequency: number;
|
|
6420
|
+
source_group_id?: string | undefined;
|
|
6295
6421
|
manufacturer_part_number?: string | undefined;
|
|
6296
6422
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6297
6423
|
display_value?: string | undefined;
|
|
@@ -6308,6 +6434,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6308
6434
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6309
6435
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6310
6436
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6437
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6311
6438
|
}, {
|
|
6312
6439
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6313
6440
|
pin_count: z.ZodNumber;
|
|
@@ -6319,6 +6446,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6319
6446
|
ftype: "simple_pin_header";
|
|
6320
6447
|
pin_count: number;
|
|
6321
6448
|
gender: "male" | "female";
|
|
6449
|
+
source_group_id?: string | undefined;
|
|
6322
6450
|
manufacturer_part_number?: string | undefined;
|
|
6323
6451
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6324
6452
|
display_value?: string | undefined;
|
|
@@ -6330,6 +6458,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6330
6458
|
source_component_id: string;
|
|
6331
6459
|
ftype: "simple_pin_header";
|
|
6332
6460
|
pin_count: number;
|
|
6461
|
+
source_group_id?: string | undefined;
|
|
6333
6462
|
manufacturer_part_number?: string | undefined;
|
|
6334
6463
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6335
6464
|
display_value?: string | undefined;
|
|
@@ -6346,6 +6475,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6346
6475
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6347
6476
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6348
6477
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6478
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6349
6479
|
}, {
|
|
6350
6480
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6351
6481
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6358,6 +6488,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6358
6488
|
ftype: "simple_resonator";
|
|
6359
6489
|
frequency: number;
|
|
6360
6490
|
load_capacitance: number;
|
|
6491
|
+
source_group_id?: string | undefined;
|
|
6361
6492
|
manufacturer_part_number?: string | undefined;
|
|
6362
6493
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6363
6494
|
display_value?: string | undefined;
|
|
@@ -6371,6 +6502,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6371
6502
|
ftype: "simple_resonator";
|
|
6372
6503
|
frequency: string | number;
|
|
6373
6504
|
load_capacitance: string | number;
|
|
6505
|
+
source_group_id?: string | undefined;
|
|
6374
6506
|
manufacturer_part_number?: string | undefined;
|
|
6375
6507
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6376
6508
|
display_value?: string | undefined;
|
|
@@ -6387,6 +6519,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6387
6519
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6388
6520
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6389
6521
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6522
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6390
6523
|
}, {
|
|
6391
6524
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6392
6525
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6394,6 +6527,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6394
6527
|
name: string;
|
|
6395
6528
|
source_component_id: string;
|
|
6396
6529
|
ftype: "simple_switch";
|
|
6530
|
+
source_group_id?: string | undefined;
|
|
6397
6531
|
manufacturer_part_number?: string | undefined;
|
|
6398
6532
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6399
6533
|
display_value?: string | undefined;
|
|
@@ -6404,6 +6538,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6404
6538
|
name: string;
|
|
6405
6539
|
source_component_id: string;
|
|
6406
6540
|
ftype: "simple_switch";
|
|
6541
|
+
source_group_id?: string | undefined;
|
|
6407
6542
|
manufacturer_part_number?: string | undefined;
|
|
6408
6543
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6409
6544
|
display_value?: string | undefined;
|
|
@@ -6419,6 +6554,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6419
6554
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6420
6555
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6421
6556
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6557
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6422
6558
|
}, {
|
|
6423
6559
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6424
6560
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -6428,6 +6564,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6428
6564
|
source_component_id: string;
|
|
6429
6565
|
ftype: "simple_transistor";
|
|
6430
6566
|
transistor_type: "npn" | "pnp";
|
|
6567
|
+
source_group_id?: string | undefined;
|
|
6431
6568
|
manufacturer_part_number?: string | undefined;
|
|
6432
6569
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6433
6570
|
display_value?: string | undefined;
|
|
@@ -6439,6 +6576,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6439
6576
|
source_component_id: string;
|
|
6440
6577
|
ftype: "simple_transistor";
|
|
6441
6578
|
transistor_type: "npn" | "pnp";
|
|
6579
|
+
source_group_id?: string | undefined;
|
|
6442
6580
|
manufacturer_part_number?: string | undefined;
|
|
6443
6581
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6444
6582
|
display_value?: string | undefined;
|
|
@@ -6454,6 +6592,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6454
6592
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6455
6593
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6456
6594
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6595
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6457
6596
|
}, {
|
|
6458
6597
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
6459
6598
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -6465,6 +6604,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6465
6604
|
ftype: "simple_mosfet";
|
|
6466
6605
|
channel_type: "n" | "p";
|
|
6467
6606
|
mosfet_mode: "enhancement" | "depletion";
|
|
6607
|
+
source_group_id?: string | undefined;
|
|
6468
6608
|
manufacturer_part_number?: string | undefined;
|
|
6469
6609
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6470
6610
|
display_value?: string | undefined;
|
|
@@ -6477,6 +6617,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6477
6617
|
ftype: "simple_mosfet";
|
|
6478
6618
|
channel_type: "n" | "p";
|
|
6479
6619
|
mosfet_mode: "enhancement" | "depletion";
|
|
6620
|
+
source_group_id?: string | undefined;
|
|
6480
6621
|
manufacturer_part_number?: string | undefined;
|
|
6481
6622
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6482
6623
|
display_value?: string | undefined;
|
|
@@ -6906,6 +7047,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6906
7047
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6907
7048
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6908
7049
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7050
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6909
7051
|
}, {
|
|
6910
7052
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6911
7053
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6916,6 +7058,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6916
7058
|
source_component_id: string;
|
|
6917
7059
|
ftype: "simple_resistor";
|
|
6918
7060
|
resistance: number;
|
|
7061
|
+
source_group_id?: string | undefined;
|
|
6919
7062
|
manufacturer_part_number?: string | undefined;
|
|
6920
7063
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6921
7064
|
display_value?: string | undefined;
|
|
@@ -6928,6 +7071,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6928
7071
|
source_component_id: string;
|
|
6929
7072
|
ftype: "simple_resistor";
|
|
6930
7073
|
resistance: string | number;
|
|
7074
|
+
source_group_id?: string | undefined;
|
|
6931
7075
|
manufacturer_part_number?: string | undefined;
|
|
6932
7076
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6933
7077
|
display_value?: string | undefined;
|
|
@@ -6944,6 +7088,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6944
7088
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6945
7089
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6946
7090
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7091
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6947
7092
|
}, {
|
|
6948
7093
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6949
7094
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6956,6 +7101,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6956
7101
|
source_component_id: string;
|
|
6957
7102
|
ftype: "simple_capacitor";
|
|
6958
7103
|
capacitance: number;
|
|
7104
|
+
source_group_id?: string | undefined;
|
|
6959
7105
|
manufacturer_part_number?: string | undefined;
|
|
6960
7106
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6961
7107
|
display_value?: string | undefined;
|
|
@@ -6970,6 +7116,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6970
7116
|
source_component_id: string;
|
|
6971
7117
|
ftype: "simple_capacitor";
|
|
6972
7118
|
capacitance: string | number;
|
|
7119
|
+
source_group_id?: string | undefined;
|
|
6973
7120
|
manufacturer_part_number?: string | undefined;
|
|
6974
7121
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6975
7122
|
display_value?: string | undefined;
|
|
@@ -6988,6 +7135,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6988
7135
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6989
7136
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6990
7137
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7138
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6991
7139
|
}, {
|
|
6992
7140
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6993
7141
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6995,6 +7143,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6995
7143
|
name: string;
|
|
6996
7144
|
source_component_id: string;
|
|
6997
7145
|
ftype: "simple_diode";
|
|
7146
|
+
source_group_id?: string | undefined;
|
|
6998
7147
|
manufacturer_part_number?: string | undefined;
|
|
6999
7148
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7000
7149
|
display_value?: string | undefined;
|
|
@@ -7005,6 +7154,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7005
7154
|
name: string;
|
|
7006
7155
|
source_component_id: string;
|
|
7007
7156
|
ftype: "simple_diode";
|
|
7157
|
+
source_group_id?: string | undefined;
|
|
7008
7158
|
manufacturer_part_number?: string | undefined;
|
|
7009
7159
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7010
7160
|
display_value?: string | undefined;
|
|
@@ -7020,6 +7170,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7020
7170
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7021
7171
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7022
7172
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7173
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7023
7174
|
}, {
|
|
7024
7175
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
7025
7176
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7027,6 +7178,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7027
7178
|
name: string;
|
|
7028
7179
|
source_component_id: string;
|
|
7029
7180
|
ftype: "simple_ground";
|
|
7181
|
+
source_group_id?: string | undefined;
|
|
7030
7182
|
manufacturer_part_number?: string | undefined;
|
|
7031
7183
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7032
7184
|
display_value?: string | undefined;
|
|
@@ -7037,6 +7189,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7037
7189
|
name: string;
|
|
7038
7190
|
source_component_id: string;
|
|
7039
7191
|
ftype: "simple_ground";
|
|
7192
|
+
source_group_id?: string | undefined;
|
|
7040
7193
|
manufacturer_part_number?: string | undefined;
|
|
7041
7194
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7042
7195
|
display_value?: string | undefined;
|
|
@@ -7052,6 +7205,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7052
7205
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7053
7206
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7054
7207
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7208
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7055
7209
|
}, {
|
|
7056
7210
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
7057
7211
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7059,6 +7213,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7059
7213
|
name: string;
|
|
7060
7214
|
source_component_id: string;
|
|
7061
7215
|
ftype: "simple_chip";
|
|
7216
|
+
source_group_id?: string | undefined;
|
|
7062
7217
|
manufacturer_part_number?: string | undefined;
|
|
7063
7218
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7064
7219
|
display_value?: string | undefined;
|
|
@@ -7069,6 +7224,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7069
7224
|
name: string;
|
|
7070
7225
|
source_component_id: string;
|
|
7071
7226
|
ftype: "simple_chip";
|
|
7227
|
+
source_group_id?: string | undefined;
|
|
7072
7228
|
manufacturer_part_number?: string | undefined;
|
|
7073
7229
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7074
7230
|
display_value?: string | undefined;
|
|
@@ -7084,6 +7240,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7084
7240
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7085
7241
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7086
7242
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7243
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7087
7244
|
}, {
|
|
7088
7245
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
7089
7246
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7091,6 +7248,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7091
7248
|
name: string;
|
|
7092
7249
|
source_component_id: string;
|
|
7093
7250
|
ftype: "simple_bug";
|
|
7251
|
+
source_group_id?: string | undefined;
|
|
7094
7252
|
manufacturer_part_number?: string | undefined;
|
|
7095
7253
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7096
7254
|
display_value?: string | undefined;
|
|
@@ -7101,6 +7259,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7101
7259
|
name: string;
|
|
7102
7260
|
source_component_id: string;
|
|
7103
7261
|
ftype: "simple_bug";
|
|
7262
|
+
source_group_id?: string | undefined;
|
|
7104
7263
|
manufacturer_part_number?: string | undefined;
|
|
7105
7264
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7106
7265
|
display_value?: string | undefined;
|
|
@@ -7116,6 +7275,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7116
7275
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7117
7276
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7118
7277
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7278
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7119
7279
|
}, {
|
|
7120
7280
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7121
7281
|
}>, {
|
|
@@ -7125,6 +7285,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7125
7285
|
name: string;
|
|
7126
7286
|
source_component_id: string;
|
|
7127
7287
|
ftype: "led";
|
|
7288
|
+
source_group_id?: string | undefined;
|
|
7128
7289
|
manufacturer_part_number?: string | undefined;
|
|
7129
7290
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7130
7291
|
display_value?: string | undefined;
|
|
@@ -7135,6 +7296,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7135
7296
|
name: string;
|
|
7136
7297
|
source_component_id: string;
|
|
7137
7298
|
ftype: "led";
|
|
7299
|
+
source_group_id?: string | undefined;
|
|
7138
7300
|
manufacturer_part_number?: string | undefined;
|
|
7139
7301
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7140
7302
|
display_value?: string | undefined;
|
|
@@ -7150,6 +7312,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7150
7312
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7151
7313
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7152
7314
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7315
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7153
7316
|
}, {
|
|
7154
7317
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7155
7318
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7159,6 +7322,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7159
7322
|
source_component_id: string;
|
|
7160
7323
|
voltage: number;
|
|
7161
7324
|
ftype: "simple_power_source";
|
|
7325
|
+
source_group_id?: string | undefined;
|
|
7162
7326
|
manufacturer_part_number?: string | undefined;
|
|
7163
7327
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7164
7328
|
display_value?: string | undefined;
|
|
@@ -7170,6 +7334,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7170
7334
|
source_component_id: string;
|
|
7171
7335
|
voltage: string | number;
|
|
7172
7336
|
ftype: "simple_power_source";
|
|
7337
|
+
source_group_id?: string | undefined;
|
|
7173
7338
|
manufacturer_part_number?: string | undefined;
|
|
7174
7339
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7175
7340
|
display_value?: string | undefined;
|
|
@@ -7185,6 +7350,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7185
7350
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7186
7351
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7187
7352
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7353
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7188
7354
|
}, {
|
|
7189
7355
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
7190
7356
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -7194,6 +7360,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7194
7360
|
source_component_id: string;
|
|
7195
7361
|
ftype: "simple_battery";
|
|
7196
7362
|
capacity: number;
|
|
7363
|
+
source_group_id?: string | undefined;
|
|
7197
7364
|
manufacturer_part_number?: string | undefined;
|
|
7198
7365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7199
7366
|
display_value?: string | undefined;
|
|
@@ -7205,6 +7372,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7205
7372
|
source_component_id: string;
|
|
7206
7373
|
ftype: "simple_battery";
|
|
7207
7374
|
capacity: string | number;
|
|
7375
|
+
source_group_id?: string | undefined;
|
|
7208
7376
|
manufacturer_part_number?: string | undefined;
|
|
7209
7377
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7210
7378
|
display_value?: string | undefined;
|
|
@@ -7220,6 +7388,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7220
7388
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7221
7389
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7222
7390
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7391
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7223
7392
|
}, {
|
|
7224
7393
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
7225
7394
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7229,6 +7398,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7229
7398
|
source_component_id: string;
|
|
7230
7399
|
ftype: "simple_inductor";
|
|
7231
7400
|
inductance: number;
|
|
7401
|
+
source_group_id?: string | undefined;
|
|
7232
7402
|
manufacturer_part_number?: string | undefined;
|
|
7233
7403
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7234
7404
|
display_value?: string | undefined;
|
|
@@ -7240,6 +7410,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7240
7410
|
source_component_id: string;
|
|
7241
7411
|
ftype: "simple_inductor";
|
|
7242
7412
|
inductance: string | number;
|
|
7413
|
+
source_group_id?: string | undefined;
|
|
7243
7414
|
manufacturer_part_number?: string | undefined;
|
|
7244
7415
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7245
7416
|
display_value?: string | undefined;
|
|
@@ -7255,6 +7426,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7255
7426
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7256
7427
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7257
7428
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7429
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7258
7430
|
}, {
|
|
7259
7431
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7260
7432
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7262,6 +7434,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7262
7434
|
name: string;
|
|
7263
7435
|
source_component_id: string;
|
|
7264
7436
|
ftype: "simple_push_button";
|
|
7437
|
+
source_group_id?: string | undefined;
|
|
7265
7438
|
manufacturer_part_number?: string | undefined;
|
|
7266
7439
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7267
7440
|
display_value?: string | undefined;
|
|
@@ -7272,6 +7445,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7272
7445
|
name: string;
|
|
7273
7446
|
source_component_id: string;
|
|
7274
7447
|
ftype: "simple_push_button";
|
|
7448
|
+
source_group_id?: string | undefined;
|
|
7275
7449
|
manufacturer_part_number?: string | undefined;
|
|
7276
7450
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7277
7451
|
display_value?: string | undefined;
|
|
@@ -7287,6 +7461,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7287
7461
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7288
7462
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7289
7463
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7464
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7290
7465
|
}, {
|
|
7291
7466
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7292
7467
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7296,6 +7471,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7296
7471
|
source_component_id: string;
|
|
7297
7472
|
ftype: "simple_potentiometer";
|
|
7298
7473
|
max_resistance: number;
|
|
7474
|
+
source_group_id?: string | undefined;
|
|
7299
7475
|
manufacturer_part_number?: string | undefined;
|
|
7300
7476
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7301
7477
|
display_value?: string | undefined;
|
|
@@ -7307,6 +7483,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7307
7483
|
source_component_id: string;
|
|
7308
7484
|
ftype: "simple_potentiometer";
|
|
7309
7485
|
max_resistance: string | number;
|
|
7486
|
+
source_group_id?: string | undefined;
|
|
7310
7487
|
manufacturer_part_number?: string | undefined;
|
|
7311
7488
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7312
7489
|
display_value?: string | undefined;
|
|
@@ -7322,6 +7499,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7322
7499
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7323
7500
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7324
7501
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7502
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7325
7503
|
}, {
|
|
7326
7504
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
7327
7505
|
frequency: z.ZodNumber;
|
|
@@ -7332,6 +7510,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7332
7510
|
source_component_id: string;
|
|
7333
7511
|
ftype: "simple_crystal";
|
|
7334
7512
|
frequency: number;
|
|
7513
|
+
source_group_id?: string | undefined;
|
|
7335
7514
|
manufacturer_part_number?: string | undefined;
|
|
7336
7515
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7337
7516
|
display_value?: string | undefined;
|
|
@@ -7344,6 +7523,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7344
7523
|
source_component_id: string;
|
|
7345
7524
|
ftype: "simple_crystal";
|
|
7346
7525
|
frequency: number;
|
|
7526
|
+
source_group_id?: string | undefined;
|
|
7347
7527
|
manufacturer_part_number?: string | undefined;
|
|
7348
7528
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7349
7529
|
display_value?: string | undefined;
|
|
@@ -7360,6 +7540,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7360
7540
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7361
7541
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7362
7542
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7543
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7363
7544
|
}, {
|
|
7364
7545
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
7365
7546
|
pin_count: z.ZodNumber;
|
|
@@ -7371,6 +7552,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7371
7552
|
ftype: "simple_pin_header";
|
|
7372
7553
|
pin_count: number;
|
|
7373
7554
|
gender: "male" | "female";
|
|
7555
|
+
source_group_id?: string | undefined;
|
|
7374
7556
|
manufacturer_part_number?: string | undefined;
|
|
7375
7557
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7376
7558
|
display_value?: string | undefined;
|
|
@@ -7382,6 +7564,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7382
7564
|
source_component_id: string;
|
|
7383
7565
|
ftype: "simple_pin_header";
|
|
7384
7566
|
pin_count: number;
|
|
7567
|
+
source_group_id?: string | undefined;
|
|
7385
7568
|
manufacturer_part_number?: string | undefined;
|
|
7386
7569
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7387
7570
|
display_value?: string | undefined;
|
|
@@ -7398,6 +7581,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7398
7581
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7399
7582
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7400
7583
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7584
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7401
7585
|
}, {
|
|
7402
7586
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
7403
7587
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7410,6 +7594,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7410
7594
|
ftype: "simple_resonator";
|
|
7411
7595
|
frequency: number;
|
|
7412
7596
|
load_capacitance: number;
|
|
7597
|
+
source_group_id?: string | undefined;
|
|
7413
7598
|
manufacturer_part_number?: string | undefined;
|
|
7414
7599
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7415
7600
|
display_value?: string | undefined;
|
|
@@ -7423,6 +7608,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7423
7608
|
ftype: "simple_resonator";
|
|
7424
7609
|
frequency: string | number;
|
|
7425
7610
|
load_capacitance: string | number;
|
|
7611
|
+
source_group_id?: string | undefined;
|
|
7426
7612
|
manufacturer_part_number?: string | undefined;
|
|
7427
7613
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7428
7614
|
display_value?: string | undefined;
|
|
@@ -7439,6 +7625,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7439
7625
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7440
7626
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7441
7627
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7628
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7442
7629
|
}, {
|
|
7443
7630
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
7444
7631
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7446,6 +7633,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7446
7633
|
name: string;
|
|
7447
7634
|
source_component_id: string;
|
|
7448
7635
|
ftype: "simple_switch";
|
|
7636
|
+
source_group_id?: string | undefined;
|
|
7449
7637
|
manufacturer_part_number?: string | undefined;
|
|
7450
7638
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7451
7639
|
display_value?: string | undefined;
|
|
@@ -7456,6 +7644,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7456
7644
|
name: string;
|
|
7457
7645
|
source_component_id: string;
|
|
7458
7646
|
ftype: "simple_switch";
|
|
7647
|
+
source_group_id?: string | undefined;
|
|
7459
7648
|
manufacturer_part_number?: string | undefined;
|
|
7460
7649
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7461
7650
|
display_value?: string | undefined;
|
|
@@ -7471,6 +7660,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7471
7660
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7472
7661
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7473
7662
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7663
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7474
7664
|
}, {
|
|
7475
7665
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
7476
7666
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -7480,6 +7670,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7480
7670
|
source_component_id: string;
|
|
7481
7671
|
ftype: "simple_transistor";
|
|
7482
7672
|
transistor_type: "npn" | "pnp";
|
|
7673
|
+
source_group_id?: string | undefined;
|
|
7483
7674
|
manufacturer_part_number?: string | undefined;
|
|
7484
7675
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7485
7676
|
display_value?: string | undefined;
|
|
@@ -7491,6 +7682,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7491
7682
|
source_component_id: string;
|
|
7492
7683
|
ftype: "simple_transistor";
|
|
7493
7684
|
transistor_type: "npn" | "pnp";
|
|
7685
|
+
source_group_id?: string | undefined;
|
|
7494
7686
|
manufacturer_part_number?: string | undefined;
|
|
7495
7687
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7496
7688
|
display_value?: string | undefined;
|
|
@@ -7506,6 +7698,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7506
7698
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7507
7699
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7508
7700
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7701
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7509
7702
|
}, {
|
|
7510
7703
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
7511
7704
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -7517,6 +7710,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7517
7710
|
ftype: "simple_mosfet";
|
|
7518
7711
|
channel_type: "n" | "p";
|
|
7519
7712
|
mosfet_mode: "enhancement" | "depletion";
|
|
7713
|
+
source_group_id?: string | undefined;
|
|
7520
7714
|
manufacturer_part_number?: string | undefined;
|
|
7521
7715
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7522
7716
|
display_value?: string | undefined;
|
|
@@ -7529,6 +7723,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7529
7723
|
ftype: "simple_mosfet";
|
|
7530
7724
|
channel_type: "n" | "p";
|
|
7531
7725
|
mosfet_mode: "enhancement" | "depletion";
|
|
7726
|
+
source_group_id?: string | undefined;
|
|
7532
7727
|
manufacturer_part_number?: string | undefined;
|
|
7533
7728
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7534
7729
|
display_value?: string | undefined;
|
|
@@ -7637,6 +7832,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7637
7832
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7638
7833
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7639
7834
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7835
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7640
7836
|
}, {
|
|
7641
7837
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7642
7838
|
}>, {
|
|
@@ -7646,6 +7842,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7646
7842
|
name: string;
|
|
7647
7843
|
source_component_id: string;
|
|
7648
7844
|
ftype: "led";
|
|
7845
|
+
source_group_id?: string | undefined;
|
|
7649
7846
|
manufacturer_part_number?: string | undefined;
|
|
7650
7847
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7651
7848
|
display_value?: string | undefined;
|
|
@@ -7656,6 +7853,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7656
7853
|
name: string;
|
|
7657
7854
|
source_component_id: string;
|
|
7658
7855
|
ftype: "led";
|
|
7856
|
+
source_group_id?: string | undefined;
|
|
7659
7857
|
manufacturer_part_number?: string | undefined;
|
|
7660
7858
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7661
7859
|
display_value?: string | undefined;
|
|
@@ -7725,6 +7923,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7725
7923
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7726
7924
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7727
7925
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7926
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7728
7927
|
}, {
|
|
7729
7928
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
7730
7929
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7732,6 +7931,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7732
7931
|
name: string;
|
|
7733
7932
|
source_component_id: string;
|
|
7734
7933
|
ftype: "simple_bug";
|
|
7934
|
+
source_group_id?: string | undefined;
|
|
7735
7935
|
manufacturer_part_number?: string | undefined;
|
|
7736
7936
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7737
7937
|
display_value?: string | undefined;
|
|
@@ -7742,6 +7942,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7742
7942
|
name: string;
|
|
7743
7943
|
source_component_id: string;
|
|
7744
7944
|
ftype: "simple_bug";
|
|
7945
|
+
source_group_id?: string | undefined;
|
|
7745
7946
|
manufacturer_part_number?: string | undefined;
|
|
7746
7947
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7747
7948
|
display_value?: string | undefined;
|
|
@@ -7757,6 +7958,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7757
7958
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7758
7959
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7759
7960
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7961
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7760
7962
|
}, {
|
|
7761
7963
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
7762
7964
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7764,6 +7966,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7764
7966
|
name: string;
|
|
7765
7967
|
source_component_id: string;
|
|
7766
7968
|
ftype: "simple_chip";
|
|
7969
|
+
source_group_id?: string | undefined;
|
|
7767
7970
|
manufacturer_part_number?: string | undefined;
|
|
7768
7971
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7769
7972
|
display_value?: string | undefined;
|
|
@@ -7774,6 +7977,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7774
7977
|
name: string;
|
|
7775
7978
|
source_component_id: string;
|
|
7776
7979
|
ftype: "simple_chip";
|
|
7980
|
+
source_group_id?: string | undefined;
|
|
7777
7981
|
manufacturer_part_number?: string | undefined;
|
|
7778
7982
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7779
7983
|
display_value?: string | undefined;
|
|
@@ -7789,6 +7993,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7789
7993
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7790
7994
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7791
7995
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7996
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7792
7997
|
}, {
|
|
7793
7998
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
7794
7999
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7801,6 +8006,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7801
8006
|
source_component_id: string;
|
|
7802
8007
|
ftype: "simple_capacitor";
|
|
7803
8008
|
capacitance: number;
|
|
8009
|
+
source_group_id?: string | undefined;
|
|
7804
8010
|
manufacturer_part_number?: string | undefined;
|
|
7805
8011
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7806
8012
|
display_value?: string | undefined;
|
|
@@ -7815,6 +8021,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7815
8021
|
source_component_id: string;
|
|
7816
8022
|
ftype: "simple_capacitor";
|
|
7817
8023
|
capacitance: string | number;
|
|
8024
|
+
source_group_id?: string | undefined;
|
|
7818
8025
|
manufacturer_part_number?: string | undefined;
|
|
7819
8026
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7820
8027
|
display_value?: string | undefined;
|
|
@@ -7833,6 +8040,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7833
8040
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7834
8041
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7835
8042
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8043
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7836
8044
|
}, {
|
|
7837
8045
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7838
8046
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7840,6 +8048,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7840
8048
|
name: string;
|
|
7841
8049
|
source_component_id: string;
|
|
7842
8050
|
ftype: "simple_diode";
|
|
8051
|
+
source_group_id?: string | undefined;
|
|
7843
8052
|
manufacturer_part_number?: string | undefined;
|
|
7844
8053
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7845
8054
|
display_value?: string | undefined;
|
|
@@ -7850,6 +8059,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7850
8059
|
name: string;
|
|
7851
8060
|
source_component_id: string;
|
|
7852
8061
|
ftype: "simple_diode";
|
|
8062
|
+
source_group_id?: string | undefined;
|
|
7853
8063
|
manufacturer_part_number?: string | undefined;
|
|
7854
8064
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7855
8065
|
display_value?: string | undefined;
|
|
@@ -7865,6 +8075,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7865
8075
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7866
8076
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7867
8077
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8078
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7868
8079
|
}, {
|
|
7869
8080
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
7870
8081
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7875,6 +8086,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7875
8086
|
source_component_id: string;
|
|
7876
8087
|
ftype: "simple_resistor";
|
|
7877
8088
|
resistance: number;
|
|
8089
|
+
source_group_id?: string | undefined;
|
|
7878
8090
|
manufacturer_part_number?: string | undefined;
|
|
7879
8091
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7880
8092
|
display_value?: string | undefined;
|
|
@@ -7887,6 +8099,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7887
8099
|
source_component_id: string;
|
|
7888
8100
|
ftype: "simple_resistor";
|
|
7889
8101
|
resistance: string | number;
|
|
8102
|
+
source_group_id?: string | undefined;
|
|
7890
8103
|
manufacturer_part_number?: string | undefined;
|
|
7891
8104
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7892
8105
|
display_value?: string | undefined;
|
|
@@ -7903,6 +8116,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7903
8116
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7904
8117
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7905
8118
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8119
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7906
8120
|
}, {
|
|
7907
8121
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7908
8122
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7912,6 +8126,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7912
8126
|
source_component_id: string;
|
|
7913
8127
|
voltage: number;
|
|
7914
8128
|
ftype: "simple_power_source";
|
|
8129
|
+
source_group_id?: string | undefined;
|
|
7915
8130
|
manufacturer_part_number?: string | undefined;
|
|
7916
8131
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7917
8132
|
display_value?: string | undefined;
|
|
@@ -7923,6 +8138,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7923
8138
|
source_component_id: string;
|
|
7924
8139
|
voltage: string | number;
|
|
7925
8140
|
ftype: "simple_power_source";
|
|
8141
|
+
source_group_id?: string | undefined;
|
|
7926
8142
|
manufacturer_part_number?: string | undefined;
|
|
7927
8143
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7928
8144
|
display_value?: string | undefined;
|
|
@@ -7938,6 +8154,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7938
8154
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7939
8155
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7940
8156
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8157
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7941
8158
|
}, {
|
|
7942
8159
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
7943
8160
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -7947,6 +8164,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7947
8164
|
source_component_id: string;
|
|
7948
8165
|
ftype: "simple_battery";
|
|
7949
8166
|
capacity: number;
|
|
8167
|
+
source_group_id?: string | undefined;
|
|
7950
8168
|
manufacturer_part_number?: string | undefined;
|
|
7951
8169
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7952
8170
|
display_value?: string | undefined;
|
|
@@ -7958,6 +8176,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7958
8176
|
source_component_id: string;
|
|
7959
8177
|
ftype: "simple_battery";
|
|
7960
8178
|
capacity: string | number;
|
|
8179
|
+
source_group_id?: string | undefined;
|
|
7961
8180
|
manufacturer_part_number?: string | undefined;
|
|
7962
8181
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7963
8182
|
display_value?: string | undefined;
|
|
@@ -7973,6 +8192,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7973
8192
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7974
8193
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7975
8194
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8195
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7976
8196
|
}, {
|
|
7977
8197
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
7978
8198
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7982,6 +8202,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7982
8202
|
source_component_id: string;
|
|
7983
8203
|
ftype: "simple_inductor";
|
|
7984
8204
|
inductance: number;
|
|
8205
|
+
source_group_id?: string | undefined;
|
|
7985
8206
|
manufacturer_part_number?: string | undefined;
|
|
7986
8207
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7987
8208
|
display_value?: string | undefined;
|
|
@@ -7993,6 +8214,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7993
8214
|
source_component_id: string;
|
|
7994
8215
|
ftype: "simple_inductor";
|
|
7995
8216
|
inductance: string | number;
|
|
8217
|
+
source_group_id?: string | undefined;
|
|
7996
8218
|
manufacturer_part_number?: string | undefined;
|
|
7997
8219
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7998
8220
|
display_value?: string | undefined;
|
|
@@ -8008,6 +8230,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8008
8230
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8009
8231
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8010
8232
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8233
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8011
8234
|
}, {
|
|
8012
8235
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
8013
8236
|
pin_count: z.ZodNumber;
|
|
@@ -8019,6 +8242,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8019
8242
|
ftype: "simple_pin_header";
|
|
8020
8243
|
pin_count: number;
|
|
8021
8244
|
gender: "male" | "female";
|
|
8245
|
+
source_group_id?: string | undefined;
|
|
8022
8246
|
manufacturer_part_number?: string | undefined;
|
|
8023
8247
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8024
8248
|
display_value?: string | undefined;
|
|
@@ -8030,6 +8254,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8030
8254
|
source_component_id: string;
|
|
8031
8255
|
ftype: "simple_pin_header";
|
|
8032
8256
|
pin_count: number;
|
|
8257
|
+
source_group_id?: string | undefined;
|
|
8033
8258
|
manufacturer_part_number?: string | undefined;
|
|
8034
8259
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8035
8260
|
display_value?: string | undefined;
|
|
@@ -8046,6 +8271,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8046
8271
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8047
8272
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8048
8273
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8274
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8049
8275
|
}, {
|
|
8050
8276
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
8051
8277
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -8058,6 +8284,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8058
8284
|
ftype: "simple_resonator";
|
|
8059
8285
|
frequency: number;
|
|
8060
8286
|
load_capacitance: number;
|
|
8287
|
+
source_group_id?: string | undefined;
|
|
8061
8288
|
manufacturer_part_number?: string | undefined;
|
|
8062
8289
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8063
8290
|
display_value?: string | undefined;
|
|
@@ -8071,6 +8298,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8071
8298
|
ftype: "simple_resonator";
|
|
8072
8299
|
frequency: string | number;
|
|
8073
8300
|
load_capacitance: string | number;
|
|
8301
|
+
source_group_id?: string | undefined;
|
|
8074
8302
|
manufacturer_part_number?: string | undefined;
|
|
8075
8303
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8076
8304
|
display_value?: string | undefined;
|
|
@@ -8087,6 +8315,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8087
8315
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8088
8316
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8089
8317
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8318
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8090
8319
|
}, {
|
|
8091
8320
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
8092
8321
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8094,6 +8323,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8094
8323
|
name: string;
|
|
8095
8324
|
source_component_id: string;
|
|
8096
8325
|
ftype: "simple_switch";
|
|
8326
|
+
source_group_id?: string | undefined;
|
|
8097
8327
|
manufacturer_part_number?: string | undefined;
|
|
8098
8328
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8099
8329
|
display_value?: string | undefined;
|
|
@@ -8104,6 +8334,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8104
8334
|
name: string;
|
|
8105
8335
|
source_component_id: string;
|
|
8106
8336
|
ftype: "simple_switch";
|
|
8337
|
+
source_group_id?: string | undefined;
|
|
8107
8338
|
manufacturer_part_number?: string | undefined;
|
|
8108
8339
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8109
8340
|
display_value?: string | undefined;
|
|
@@ -8119,6 +8350,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8119
8350
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8120
8351
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8121
8352
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8353
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8122
8354
|
}, {
|
|
8123
8355
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
8124
8356
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -8128,6 +8360,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8128
8360
|
source_component_id: string;
|
|
8129
8361
|
ftype: "simple_transistor";
|
|
8130
8362
|
transistor_type: "npn" | "pnp";
|
|
8363
|
+
source_group_id?: string | undefined;
|
|
8131
8364
|
manufacturer_part_number?: string | undefined;
|
|
8132
8365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8133
8366
|
display_value?: string | undefined;
|
|
@@ -8139,6 +8372,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8139
8372
|
source_component_id: string;
|
|
8140
8373
|
ftype: "simple_transistor";
|
|
8141
8374
|
transistor_type: "npn" | "pnp";
|
|
8375
|
+
source_group_id?: string | undefined;
|
|
8142
8376
|
manufacturer_part_number?: string | undefined;
|
|
8143
8377
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8144
8378
|
display_value?: string | undefined;
|
|
@@ -8154,6 +8388,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8154
8388
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8155
8389
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8156
8390
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8391
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8157
8392
|
}, {
|
|
8158
8393
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
8159
8394
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -8165,6 +8400,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8165
8400
|
ftype: "simple_mosfet";
|
|
8166
8401
|
channel_type: "n" | "p";
|
|
8167
8402
|
mosfet_mode: "enhancement" | "depletion";
|
|
8403
|
+
source_group_id?: string | undefined;
|
|
8168
8404
|
manufacturer_part_number?: string | undefined;
|
|
8169
8405
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8170
8406
|
display_value?: string | undefined;
|
|
@@ -8177,6 +8413,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8177
8413
|
ftype: "simple_mosfet";
|
|
8178
8414
|
channel_type: "n" | "p";
|
|
8179
8415
|
mosfet_mode: "enhancement" | "depletion";
|
|
8416
|
+
source_group_id?: string | undefined;
|
|
8180
8417
|
manufacturer_part_number?: string | undefined;
|
|
8181
8418
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8182
8419
|
display_value?: string | undefined;
|
|
@@ -8192,6 +8429,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8192
8429
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8193
8430
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8194
8431
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8432
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8195
8433
|
}, {
|
|
8196
8434
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
8197
8435
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8201,6 +8439,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8201
8439
|
source_component_id: string;
|
|
8202
8440
|
ftype: "simple_potentiometer";
|
|
8203
8441
|
max_resistance: number;
|
|
8442
|
+
source_group_id?: string | undefined;
|
|
8204
8443
|
manufacturer_part_number?: string | undefined;
|
|
8205
8444
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8206
8445
|
display_value?: string | undefined;
|
|
@@ -8212,6 +8451,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8212
8451
|
source_component_id: string;
|
|
8213
8452
|
ftype: "simple_potentiometer";
|
|
8214
8453
|
max_resistance: string | number;
|
|
8454
|
+
source_group_id?: string | undefined;
|
|
8215
8455
|
manufacturer_part_number?: string | undefined;
|
|
8216
8456
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8217
8457
|
display_value?: string | undefined;
|
|
@@ -8227,6 +8467,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8227
8467
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8228
8468
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8229
8469
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8470
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8230
8471
|
}, {
|
|
8231
8472
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
8232
8473
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8234,6 +8475,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8234
8475
|
name: string;
|
|
8235
8476
|
source_component_id: string;
|
|
8236
8477
|
ftype: "simple_push_button";
|
|
8478
|
+
source_group_id?: string | undefined;
|
|
8237
8479
|
manufacturer_part_number?: string | undefined;
|
|
8238
8480
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8239
8481
|
display_value?: string | undefined;
|
|
@@ -8244,6 +8486,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8244
8486
|
name: string;
|
|
8245
8487
|
source_component_id: string;
|
|
8246
8488
|
ftype: "simple_push_button";
|
|
8489
|
+
source_group_id?: string | undefined;
|
|
8247
8490
|
manufacturer_part_number?: string | undefined;
|
|
8248
8491
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8249
8492
|
display_value?: string | undefined;
|
|
@@ -8291,6 +8534,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8291
8534
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8292
8535
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8293
8536
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8537
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
8294
8538
|
}, "strip", z.ZodTypeAny, {
|
|
8295
8539
|
type: "pcb_component";
|
|
8296
8540
|
width: number;
|
|
@@ -8304,6 +8548,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8304
8548
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8305
8549
|
rotation: number;
|
|
8306
8550
|
subcircuit_id?: string | undefined;
|
|
8551
|
+
pcb_group_id?: string | undefined;
|
|
8307
8552
|
}, {
|
|
8308
8553
|
type: "pcb_component";
|
|
8309
8554
|
width: string | number;
|
|
@@ -8319,6 +8564,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8319
8564
|
rotation: string | number;
|
|
8320
8565
|
pcb_component_id?: string | undefined;
|
|
8321
8566
|
subcircuit_id?: string | undefined;
|
|
8567
|
+
pcb_group_id?: string | undefined;
|
|
8322
8568
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
8323
8569
|
type: z.ZodLiteral<"pcb_hole">;
|
|
8324
8570
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -8344,8 +8590,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8344
8590
|
hole_shape: "circle" | "square";
|
|
8345
8591
|
hole_diameter: number;
|
|
8346
8592
|
subcircuit_id?: string | undefined;
|
|
8347
|
-
pcb_hole_id?: string | undefined;
|
|
8348
8593
|
pcb_group_id?: string | undefined;
|
|
8594
|
+
pcb_hole_id?: string | undefined;
|
|
8349
8595
|
}>, z.ZodObject<{
|
|
8350
8596
|
type: z.ZodLiteral<"pcb_hole">;
|
|
8351
8597
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -8374,8 +8620,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8374
8620
|
hole_width: number;
|
|
8375
8621
|
hole_height: number;
|
|
8376
8622
|
subcircuit_id?: string | undefined;
|
|
8377
|
-
pcb_hole_id?: string | undefined;
|
|
8378
8623
|
pcb_group_id?: string | undefined;
|
|
8624
|
+
pcb_hole_id?: string | undefined;
|
|
8379
8625
|
}>]>, z.ZodObject<{
|
|
8380
8626
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
8381
8627
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -10515,6 +10761,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10515
10761
|
}>]>>;
|
|
10516
10762
|
port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10517
10763
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
10764
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10765
|
+
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
10518
10766
|
}, "strip", z.ZodTypeAny, {
|
|
10519
10767
|
type: "schematic_component";
|
|
10520
10768
|
source_component_id: string;
|
|
@@ -10527,6 +10775,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10527
10775
|
width: number;
|
|
10528
10776
|
height: number;
|
|
10529
10777
|
};
|
|
10778
|
+
subcircuit_id?: string | undefined;
|
|
10530
10779
|
pin_spacing?: number | undefined;
|
|
10531
10780
|
pin_styles?: Record<string, {
|
|
10532
10781
|
left_margin?: number | undefined;
|
|
@@ -10561,6 +10810,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10561
10810
|
} | undefined;
|
|
10562
10811
|
port_labels?: Record<string, string> | undefined;
|
|
10563
10812
|
symbol_display_value?: string | undefined;
|
|
10813
|
+
schematic_group_id?: string | undefined;
|
|
10564
10814
|
}, {
|
|
10565
10815
|
type: "schematic_component";
|
|
10566
10816
|
source_component_id: string;
|
|
@@ -10573,6 +10823,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10573
10823
|
width: number;
|
|
10574
10824
|
height: number;
|
|
10575
10825
|
};
|
|
10826
|
+
subcircuit_id?: string | undefined;
|
|
10576
10827
|
pin_spacing?: string | number | undefined;
|
|
10577
10828
|
pin_styles?: Record<string, {
|
|
10578
10829
|
left_margin?: string | number | undefined;
|
|
@@ -10607,6 +10858,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10607
10858
|
} | undefined;
|
|
10608
10859
|
port_labels?: Record<string, string> | undefined;
|
|
10609
10860
|
symbol_display_value?: string | undefined;
|
|
10861
|
+
schematic_group_id?: string | undefined;
|
|
10610
10862
|
}>, z.ZodObject<{
|
|
10611
10863
|
type: z.ZodLiteral<"schematic_port">;
|
|
10612
10864
|
schematic_port_id: z.ZodString;
|
|
@@ -10813,6 +11065,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10813
11065
|
schematic_error_id: string;
|
|
10814
11066
|
}>, z.ZodObject<{
|
|
10815
11067
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
11068
|
+
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
11069
|
+
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
10816
11070
|
source_net_id: z.ZodString;
|
|
10817
11071
|
center: z.ZodObject<{
|
|
10818
11072
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10844,6 +11098,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10844
11098
|
y: number;
|
|
10845
11099
|
};
|
|
10846
11100
|
text: string;
|
|
11101
|
+
schematic_net_label_id: string;
|
|
10847
11102
|
source_net_id: string;
|
|
10848
11103
|
anchor_side: "top" | "bottom" | "left" | "right";
|
|
10849
11104
|
anchor_position?: {
|
|
@@ -10851,6 +11106,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10851
11106
|
y: number;
|
|
10852
11107
|
} | undefined;
|
|
10853
11108
|
symbol_name?: string | undefined;
|
|
11109
|
+
schematic_trace_id?: string | undefined;
|
|
10854
11110
|
}, {
|
|
10855
11111
|
type: "schematic_net_label";
|
|
10856
11112
|
center: {
|
|
@@ -10865,6 +11121,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10865
11121
|
y: string | number;
|
|
10866
11122
|
} | undefined;
|
|
10867
11123
|
symbol_name?: string | undefined;
|
|
11124
|
+
schematic_trace_id?: string | undefined;
|
|
11125
|
+
schematic_net_label_id?: string | undefined;
|
|
10868
11126
|
}>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
|
|
10869
11127
|
type: z.ZodLiteral<"schematic_debug_object">;
|
|
10870
11128
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -11049,8 +11307,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11049
11307
|
source_component_id: string;
|
|
11050
11308
|
schematic_component_id: string;
|
|
11051
11309
|
subcircuit_id?: string | undefined;
|
|
11052
|
-
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
11053
11310
|
schematic_group_id?: string | undefined;
|
|
11311
|
+
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
11054
11312
|
}>, z.ZodObject<{
|
|
11055
11313
|
type: z.ZodLiteral<"schematic_group">;
|
|
11056
11314
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -11282,6 +11540,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11282
11540
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11283
11541
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11284
11542
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11543
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11285
11544
|
}, {
|
|
11286
11545
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
11287
11546
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11292,6 +11551,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11292
11551
|
source_component_id: string;
|
|
11293
11552
|
ftype: "simple_resistor";
|
|
11294
11553
|
resistance: number;
|
|
11554
|
+
source_group_id?: string | undefined;
|
|
11295
11555
|
manufacturer_part_number?: string | undefined;
|
|
11296
11556
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11297
11557
|
display_value?: string | undefined;
|
|
@@ -11304,6 +11564,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11304
11564
|
source_component_id: string;
|
|
11305
11565
|
ftype: "simple_resistor";
|
|
11306
11566
|
resistance: string | number;
|
|
11567
|
+
source_group_id?: string | undefined;
|
|
11307
11568
|
manufacturer_part_number?: string | undefined;
|
|
11308
11569
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11309
11570
|
display_value?: string | undefined;
|
|
@@ -11320,6 +11581,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11320
11581
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11321
11582
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11322
11583
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11584
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11323
11585
|
}, {
|
|
11324
11586
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
11325
11587
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11332,6 +11594,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11332
11594
|
source_component_id: string;
|
|
11333
11595
|
ftype: "simple_capacitor";
|
|
11334
11596
|
capacitance: number;
|
|
11597
|
+
source_group_id?: string | undefined;
|
|
11335
11598
|
manufacturer_part_number?: string | undefined;
|
|
11336
11599
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11337
11600
|
display_value?: string | undefined;
|
|
@@ -11346,6 +11609,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11346
11609
|
source_component_id: string;
|
|
11347
11610
|
ftype: "simple_capacitor";
|
|
11348
11611
|
capacitance: string | number;
|
|
11612
|
+
source_group_id?: string | undefined;
|
|
11349
11613
|
manufacturer_part_number?: string | undefined;
|
|
11350
11614
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11351
11615
|
display_value?: string | undefined;
|
|
@@ -11364,6 +11628,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11364
11628
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11365
11629
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11366
11630
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11631
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11367
11632
|
}, {
|
|
11368
11633
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11369
11634
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11371,6 +11636,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11371
11636
|
name: string;
|
|
11372
11637
|
source_component_id: string;
|
|
11373
11638
|
ftype: "simple_diode";
|
|
11639
|
+
source_group_id?: string | undefined;
|
|
11374
11640
|
manufacturer_part_number?: string | undefined;
|
|
11375
11641
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11376
11642
|
display_value?: string | undefined;
|
|
@@ -11381,6 +11647,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11381
11647
|
name: string;
|
|
11382
11648
|
source_component_id: string;
|
|
11383
11649
|
ftype: "simple_diode";
|
|
11650
|
+
source_group_id?: string | undefined;
|
|
11384
11651
|
manufacturer_part_number?: string | undefined;
|
|
11385
11652
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11386
11653
|
display_value?: string | undefined;
|
|
@@ -11396,6 +11663,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11396
11663
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11397
11664
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11398
11665
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11666
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11399
11667
|
}, {
|
|
11400
11668
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
11401
11669
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11403,6 +11671,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11403
11671
|
name: string;
|
|
11404
11672
|
source_component_id: string;
|
|
11405
11673
|
ftype: "simple_ground";
|
|
11674
|
+
source_group_id?: string | undefined;
|
|
11406
11675
|
manufacturer_part_number?: string | undefined;
|
|
11407
11676
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11408
11677
|
display_value?: string | undefined;
|
|
@@ -11413,6 +11682,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11413
11682
|
name: string;
|
|
11414
11683
|
source_component_id: string;
|
|
11415
11684
|
ftype: "simple_ground";
|
|
11685
|
+
source_group_id?: string | undefined;
|
|
11416
11686
|
manufacturer_part_number?: string | undefined;
|
|
11417
11687
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11418
11688
|
display_value?: string | undefined;
|
|
@@ -11428,6 +11698,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11428
11698
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11429
11699
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11430
11700
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11701
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11431
11702
|
}, {
|
|
11432
11703
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
11433
11704
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11435,6 +11706,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11435
11706
|
name: string;
|
|
11436
11707
|
source_component_id: string;
|
|
11437
11708
|
ftype: "simple_chip";
|
|
11709
|
+
source_group_id?: string | undefined;
|
|
11438
11710
|
manufacturer_part_number?: string | undefined;
|
|
11439
11711
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11440
11712
|
display_value?: string | undefined;
|
|
@@ -11445,6 +11717,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11445
11717
|
name: string;
|
|
11446
11718
|
source_component_id: string;
|
|
11447
11719
|
ftype: "simple_chip";
|
|
11720
|
+
source_group_id?: string | undefined;
|
|
11448
11721
|
manufacturer_part_number?: string | undefined;
|
|
11449
11722
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11450
11723
|
display_value?: string | undefined;
|
|
@@ -11460,6 +11733,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11460
11733
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11461
11734
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11462
11735
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11736
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11463
11737
|
}, {
|
|
11464
11738
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
11465
11739
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11467,6 +11741,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11467
11741
|
name: string;
|
|
11468
11742
|
source_component_id: string;
|
|
11469
11743
|
ftype: "simple_bug";
|
|
11744
|
+
source_group_id?: string | undefined;
|
|
11470
11745
|
manufacturer_part_number?: string | undefined;
|
|
11471
11746
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11472
11747
|
display_value?: string | undefined;
|
|
@@ -11477,6 +11752,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11477
11752
|
name: string;
|
|
11478
11753
|
source_component_id: string;
|
|
11479
11754
|
ftype: "simple_bug";
|
|
11755
|
+
source_group_id?: string | undefined;
|
|
11480
11756
|
manufacturer_part_number?: string | undefined;
|
|
11481
11757
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11482
11758
|
display_value?: string | undefined;
|
|
@@ -11492,6 +11768,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11492
11768
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11493
11769
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11494
11770
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11771
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11495
11772
|
}, {
|
|
11496
11773
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11497
11774
|
}>, {
|
|
@@ -11501,6 +11778,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11501
11778
|
name: string;
|
|
11502
11779
|
source_component_id: string;
|
|
11503
11780
|
ftype: "led";
|
|
11781
|
+
source_group_id?: string | undefined;
|
|
11504
11782
|
manufacturer_part_number?: string | undefined;
|
|
11505
11783
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11506
11784
|
display_value?: string | undefined;
|
|
@@ -11511,6 +11789,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11511
11789
|
name: string;
|
|
11512
11790
|
source_component_id: string;
|
|
11513
11791
|
ftype: "led";
|
|
11792
|
+
source_group_id?: string | undefined;
|
|
11514
11793
|
manufacturer_part_number?: string | undefined;
|
|
11515
11794
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11516
11795
|
display_value?: string | undefined;
|
|
@@ -11526,6 +11805,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11526
11805
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11527
11806
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11528
11807
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11808
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11529
11809
|
}, {
|
|
11530
11810
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
11531
11811
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11535,6 +11815,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11535
11815
|
source_component_id: string;
|
|
11536
11816
|
voltage: number;
|
|
11537
11817
|
ftype: "simple_power_source";
|
|
11818
|
+
source_group_id?: string | undefined;
|
|
11538
11819
|
manufacturer_part_number?: string | undefined;
|
|
11539
11820
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11540
11821
|
display_value?: string | undefined;
|
|
@@ -11546,6 +11827,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11546
11827
|
source_component_id: string;
|
|
11547
11828
|
voltage: string | number;
|
|
11548
11829
|
ftype: "simple_power_source";
|
|
11830
|
+
source_group_id?: string | undefined;
|
|
11549
11831
|
manufacturer_part_number?: string | undefined;
|
|
11550
11832
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11551
11833
|
display_value?: string | undefined;
|
|
@@ -11561,6 +11843,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11561
11843
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11562
11844
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11563
11845
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11846
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11564
11847
|
}, {
|
|
11565
11848
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
11566
11849
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -11570,6 +11853,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11570
11853
|
source_component_id: string;
|
|
11571
11854
|
ftype: "simple_battery";
|
|
11572
11855
|
capacity: number;
|
|
11856
|
+
source_group_id?: string | undefined;
|
|
11573
11857
|
manufacturer_part_number?: string | undefined;
|
|
11574
11858
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11575
11859
|
display_value?: string | undefined;
|
|
@@ -11581,6 +11865,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11581
11865
|
source_component_id: string;
|
|
11582
11866
|
ftype: "simple_battery";
|
|
11583
11867
|
capacity: string | number;
|
|
11868
|
+
source_group_id?: string | undefined;
|
|
11584
11869
|
manufacturer_part_number?: string | undefined;
|
|
11585
11870
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11586
11871
|
display_value?: string | undefined;
|
|
@@ -11596,6 +11881,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11596
11881
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11597
11882
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11598
11883
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11884
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11599
11885
|
}, {
|
|
11600
11886
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
11601
11887
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11605,6 +11891,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11605
11891
|
source_component_id: string;
|
|
11606
11892
|
ftype: "simple_inductor";
|
|
11607
11893
|
inductance: number;
|
|
11894
|
+
source_group_id?: string | undefined;
|
|
11608
11895
|
manufacturer_part_number?: string | undefined;
|
|
11609
11896
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11610
11897
|
display_value?: string | undefined;
|
|
@@ -11616,6 +11903,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11616
11903
|
source_component_id: string;
|
|
11617
11904
|
ftype: "simple_inductor";
|
|
11618
11905
|
inductance: string | number;
|
|
11906
|
+
source_group_id?: string | undefined;
|
|
11619
11907
|
manufacturer_part_number?: string | undefined;
|
|
11620
11908
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11621
11909
|
display_value?: string | undefined;
|
|
@@ -11631,6 +11919,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11631
11919
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11632
11920
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11633
11921
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11922
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11634
11923
|
}, {
|
|
11635
11924
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
11636
11925
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11638,6 +11927,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11638
11927
|
name: string;
|
|
11639
11928
|
source_component_id: string;
|
|
11640
11929
|
ftype: "simple_push_button";
|
|
11930
|
+
source_group_id?: string | undefined;
|
|
11641
11931
|
manufacturer_part_number?: string | undefined;
|
|
11642
11932
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11643
11933
|
display_value?: string | undefined;
|
|
@@ -11648,6 +11938,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11648
11938
|
name: string;
|
|
11649
11939
|
source_component_id: string;
|
|
11650
11940
|
ftype: "simple_push_button";
|
|
11941
|
+
source_group_id?: string | undefined;
|
|
11651
11942
|
manufacturer_part_number?: string | undefined;
|
|
11652
11943
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11653
11944
|
display_value?: string | undefined;
|
|
@@ -11663,6 +11954,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11663
11954
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11664
11955
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11665
11956
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11957
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11666
11958
|
}, {
|
|
11667
11959
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
11668
11960
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11672,6 +11964,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11672
11964
|
source_component_id: string;
|
|
11673
11965
|
ftype: "simple_potentiometer";
|
|
11674
11966
|
max_resistance: number;
|
|
11967
|
+
source_group_id?: string | undefined;
|
|
11675
11968
|
manufacturer_part_number?: string | undefined;
|
|
11676
11969
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11677
11970
|
display_value?: string | undefined;
|
|
@@ -11683,6 +11976,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11683
11976
|
source_component_id: string;
|
|
11684
11977
|
ftype: "simple_potentiometer";
|
|
11685
11978
|
max_resistance: string | number;
|
|
11979
|
+
source_group_id?: string | undefined;
|
|
11686
11980
|
manufacturer_part_number?: string | undefined;
|
|
11687
11981
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11688
11982
|
display_value?: string | undefined;
|
|
@@ -11698,6 +11992,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11698
11992
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11699
11993
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11700
11994
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11995
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11701
11996
|
}, {
|
|
11702
11997
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
11703
11998
|
frequency: z.ZodNumber;
|
|
@@ -11708,6 +12003,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11708
12003
|
source_component_id: string;
|
|
11709
12004
|
ftype: "simple_crystal";
|
|
11710
12005
|
frequency: number;
|
|
12006
|
+
source_group_id?: string | undefined;
|
|
11711
12007
|
manufacturer_part_number?: string | undefined;
|
|
11712
12008
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11713
12009
|
display_value?: string | undefined;
|
|
@@ -11720,6 +12016,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11720
12016
|
source_component_id: string;
|
|
11721
12017
|
ftype: "simple_crystal";
|
|
11722
12018
|
frequency: number;
|
|
12019
|
+
source_group_id?: string | undefined;
|
|
11723
12020
|
manufacturer_part_number?: string | undefined;
|
|
11724
12021
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11725
12022
|
display_value?: string | undefined;
|
|
@@ -11736,6 +12033,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11736
12033
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11737
12034
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11738
12035
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12036
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11739
12037
|
}, {
|
|
11740
12038
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
11741
12039
|
pin_count: z.ZodNumber;
|
|
@@ -11747,6 +12045,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11747
12045
|
ftype: "simple_pin_header";
|
|
11748
12046
|
pin_count: number;
|
|
11749
12047
|
gender: "male" | "female";
|
|
12048
|
+
source_group_id?: string | undefined;
|
|
11750
12049
|
manufacturer_part_number?: string | undefined;
|
|
11751
12050
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11752
12051
|
display_value?: string | undefined;
|
|
@@ -11758,6 +12057,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11758
12057
|
source_component_id: string;
|
|
11759
12058
|
ftype: "simple_pin_header";
|
|
11760
12059
|
pin_count: number;
|
|
12060
|
+
source_group_id?: string | undefined;
|
|
11761
12061
|
manufacturer_part_number?: string | undefined;
|
|
11762
12062
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11763
12063
|
display_value?: string | undefined;
|
|
@@ -11774,6 +12074,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11774
12074
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11775
12075
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11776
12076
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12077
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11777
12078
|
}, {
|
|
11778
12079
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
11779
12080
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11786,6 +12087,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11786
12087
|
ftype: "simple_resonator";
|
|
11787
12088
|
frequency: number;
|
|
11788
12089
|
load_capacitance: number;
|
|
12090
|
+
source_group_id?: string | undefined;
|
|
11789
12091
|
manufacturer_part_number?: string | undefined;
|
|
11790
12092
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11791
12093
|
display_value?: string | undefined;
|
|
@@ -11799,6 +12101,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11799
12101
|
ftype: "simple_resonator";
|
|
11800
12102
|
frequency: string | number;
|
|
11801
12103
|
load_capacitance: string | number;
|
|
12104
|
+
source_group_id?: string | undefined;
|
|
11802
12105
|
manufacturer_part_number?: string | undefined;
|
|
11803
12106
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11804
12107
|
display_value?: string | undefined;
|
|
@@ -11815,6 +12118,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11815
12118
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11816
12119
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11817
12120
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12121
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11818
12122
|
}, {
|
|
11819
12123
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
11820
12124
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11822,6 +12126,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11822
12126
|
name: string;
|
|
11823
12127
|
source_component_id: string;
|
|
11824
12128
|
ftype: "simple_switch";
|
|
12129
|
+
source_group_id?: string | undefined;
|
|
11825
12130
|
manufacturer_part_number?: string | undefined;
|
|
11826
12131
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11827
12132
|
display_value?: string | undefined;
|
|
@@ -11832,6 +12137,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11832
12137
|
name: string;
|
|
11833
12138
|
source_component_id: string;
|
|
11834
12139
|
ftype: "simple_switch";
|
|
12140
|
+
source_group_id?: string | undefined;
|
|
11835
12141
|
manufacturer_part_number?: string | undefined;
|
|
11836
12142
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11837
12143
|
display_value?: string | undefined;
|
|
@@ -11847,6 +12153,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11847
12153
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11848
12154
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11849
12155
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12156
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11850
12157
|
}, {
|
|
11851
12158
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
11852
12159
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -11856,6 +12163,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11856
12163
|
source_component_id: string;
|
|
11857
12164
|
ftype: "simple_transistor";
|
|
11858
12165
|
transistor_type: "npn" | "pnp";
|
|
12166
|
+
source_group_id?: string | undefined;
|
|
11859
12167
|
manufacturer_part_number?: string | undefined;
|
|
11860
12168
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11861
12169
|
display_value?: string | undefined;
|
|
@@ -11867,6 +12175,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11867
12175
|
source_component_id: string;
|
|
11868
12176
|
ftype: "simple_transistor";
|
|
11869
12177
|
transistor_type: "npn" | "pnp";
|
|
12178
|
+
source_group_id?: string | undefined;
|
|
11870
12179
|
manufacturer_part_number?: string | undefined;
|
|
11871
12180
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11872
12181
|
display_value?: string | undefined;
|
|
@@ -11882,6 +12191,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11882
12191
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11883
12192
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11884
12193
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12194
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11885
12195
|
}, {
|
|
11886
12196
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
11887
12197
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -11893,6 +12203,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11893
12203
|
ftype: "simple_mosfet";
|
|
11894
12204
|
channel_type: "n" | "p";
|
|
11895
12205
|
mosfet_mode: "enhancement" | "depletion";
|
|
12206
|
+
source_group_id?: string | undefined;
|
|
11896
12207
|
manufacturer_part_number?: string | undefined;
|
|
11897
12208
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11898
12209
|
display_value?: string | undefined;
|
|
@@ -11905,6 +12216,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11905
12216
|
ftype: "simple_mosfet";
|
|
11906
12217
|
channel_type: "n" | "p";
|
|
11907
12218
|
mosfet_mode: "enhancement" | "depletion";
|
|
12219
|
+
source_group_id?: string | undefined;
|
|
11908
12220
|
manufacturer_part_number?: string | undefined;
|
|
11909
12221
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11910
12222
|
display_value?: string | undefined;
|
|
@@ -12013,6 +12325,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12013
12325
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12014
12326
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12015
12327
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12328
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12016
12329
|
}, {
|
|
12017
12330
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
12018
12331
|
}>, {
|
|
@@ -12022,6 +12335,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12022
12335
|
name: string;
|
|
12023
12336
|
source_component_id: string;
|
|
12024
12337
|
ftype: "led";
|
|
12338
|
+
source_group_id?: string | undefined;
|
|
12025
12339
|
manufacturer_part_number?: string | undefined;
|
|
12026
12340
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12027
12341
|
display_value?: string | undefined;
|
|
@@ -12032,6 +12346,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12032
12346
|
name: string;
|
|
12033
12347
|
source_component_id: string;
|
|
12034
12348
|
ftype: "led";
|
|
12349
|
+
source_group_id?: string | undefined;
|
|
12035
12350
|
manufacturer_part_number?: string | undefined;
|
|
12036
12351
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12037
12352
|
display_value?: string | undefined;
|
|
@@ -12101,6 +12416,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12101
12416
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12102
12417
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12103
12418
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12419
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12104
12420
|
}, {
|
|
12105
12421
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
12106
12422
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12108,6 +12424,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12108
12424
|
name: string;
|
|
12109
12425
|
source_component_id: string;
|
|
12110
12426
|
ftype: "simple_bug";
|
|
12427
|
+
source_group_id?: string | undefined;
|
|
12111
12428
|
manufacturer_part_number?: string | undefined;
|
|
12112
12429
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12113
12430
|
display_value?: string | undefined;
|
|
@@ -12118,6 +12435,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12118
12435
|
name: string;
|
|
12119
12436
|
source_component_id: string;
|
|
12120
12437
|
ftype: "simple_bug";
|
|
12438
|
+
source_group_id?: string | undefined;
|
|
12121
12439
|
manufacturer_part_number?: string | undefined;
|
|
12122
12440
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12123
12441
|
display_value?: string | undefined;
|
|
@@ -12133,6 +12451,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12133
12451
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12134
12452
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12135
12453
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12454
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12136
12455
|
}, {
|
|
12137
12456
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
12138
12457
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12140,6 +12459,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12140
12459
|
name: string;
|
|
12141
12460
|
source_component_id: string;
|
|
12142
12461
|
ftype: "simple_chip";
|
|
12462
|
+
source_group_id?: string | undefined;
|
|
12143
12463
|
manufacturer_part_number?: string | undefined;
|
|
12144
12464
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12145
12465
|
display_value?: string | undefined;
|
|
@@ -12150,6 +12470,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12150
12470
|
name: string;
|
|
12151
12471
|
source_component_id: string;
|
|
12152
12472
|
ftype: "simple_chip";
|
|
12473
|
+
source_group_id?: string | undefined;
|
|
12153
12474
|
manufacturer_part_number?: string | undefined;
|
|
12154
12475
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12155
12476
|
display_value?: string | undefined;
|
|
@@ -12165,6 +12486,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12165
12486
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12166
12487
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12167
12488
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12489
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12168
12490
|
}, {
|
|
12169
12491
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
12170
12492
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -12177,6 +12499,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12177
12499
|
source_component_id: string;
|
|
12178
12500
|
ftype: "simple_capacitor";
|
|
12179
12501
|
capacitance: number;
|
|
12502
|
+
source_group_id?: string | undefined;
|
|
12180
12503
|
manufacturer_part_number?: string | undefined;
|
|
12181
12504
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12182
12505
|
display_value?: string | undefined;
|
|
@@ -12191,6 +12514,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12191
12514
|
source_component_id: string;
|
|
12192
12515
|
ftype: "simple_capacitor";
|
|
12193
12516
|
capacitance: string | number;
|
|
12517
|
+
source_group_id?: string | undefined;
|
|
12194
12518
|
manufacturer_part_number?: string | undefined;
|
|
12195
12519
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12196
12520
|
display_value?: string | undefined;
|
|
@@ -12209,6 +12533,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12209
12533
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12210
12534
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12211
12535
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12536
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12212
12537
|
}, {
|
|
12213
12538
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
12214
12539
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12216,6 +12541,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12216
12541
|
name: string;
|
|
12217
12542
|
source_component_id: string;
|
|
12218
12543
|
ftype: "simple_diode";
|
|
12544
|
+
source_group_id?: string | undefined;
|
|
12219
12545
|
manufacturer_part_number?: string | undefined;
|
|
12220
12546
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12221
12547
|
display_value?: string | undefined;
|
|
@@ -12226,6 +12552,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12226
12552
|
name: string;
|
|
12227
12553
|
source_component_id: string;
|
|
12228
12554
|
ftype: "simple_diode";
|
|
12555
|
+
source_group_id?: string | undefined;
|
|
12229
12556
|
manufacturer_part_number?: string | undefined;
|
|
12230
12557
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12231
12558
|
display_value?: string | undefined;
|
|
@@ -12241,6 +12568,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12241
12568
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12242
12569
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12243
12570
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12571
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12244
12572
|
}, {
|
|
12245
12573
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
12246
12574
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12251,6 +12579,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12251
12579
|
source_component_id: string;
|
|
12252
12580
|
ftype: "simple_resistor";
|
|
12253
12581
|
resistance: number;
|
|
12582
|
+
source_group_id?: string | undefined;
|
|
12254
12583
|
manufacturer_part_number?: string | undefined;
|
|
12255
12584
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12256
12585
|
display_value?: string | undefined;
|
|
@@ -12263,6 +12592,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12263
12592
|
source_component_id: string;
|
|
12264
12593
|
ftype: "simple_resistor";
|
|
12265
12594
|
resistance: string | number;
|
|
12595
|
+
source_group_id?: string | undefined;
|
|
12266
12596
|
manufacturer_part_number?: string | undefined;
|
|
12267
12597
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12268
12598
|
display_value?: string | undefined;
|
|
@@ -12279,6 +12609,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12279
12609
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12280
12610
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12281
12611
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12612
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12282
12613
|
}, {
|
|
12283
12614
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
12284
12615
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12288,6 +12619,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12288
12619
|
source_component_id: string;
|
|
12289
12620
|
voltage: number;
|
|
12290
12621
|
ftype: "simple_power_source";
|
|
12622
|
+
source_group_id?: string | undefined;
|
|
12291
12623
|
manufacturer_part_number?: string | undefined;
|
|
12292
12624
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12293
12625
|
display_value?: string | undefined;
|
|
@@ -12299,6 +12631,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12299
12631
|
source_component_id: string;
|
|
12300
12632
|
voltage: string | number;
|
|
12301
12633
|
ftype: "simple_power_source";
|
|
12634
|
+
source_group_id?: string | undefined;
|
|
12302
12635
|
manufacturer_part_number?: string | undefined;
|
|
12303
12636
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12304
12637
|
display_value?: string | undefined;
|
|
@@ -12314,6 +12647,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12314
12647
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12315
12648
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12316
12649
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12650
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12317
12651
|
}, {
|
|
12318
12652
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
12319
12653
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -12323,6 +12657,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12323
12657
|
source_component_id: string;
|
|
12324
12658
|
ftype: "simple_battery";
|
|
12325
12659
|
capacity: number;
|
|
12660
|
+
source_group_id?: string | undefined;
|
|
12326
12661
|
manufacturer_part_number?: string | undefined;
|
|
12327
12662
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12328
12663
|
display_value?: string | undefined;
|
|
@@ -12334,6 +12669,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12334
12669
|
source_component_id: string;
|
|
12335
12670
|
ftype: "simple_battery";
|
|
12336
12671
|
capacity: string | number;
|
|
12672
|
+
source_group_id?: string | undefined;
|
|
12337
12673
|
manufacturer_part_number?: string | undefined;
|
|
12338
12674
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12339
12675
|
display_value?: string | undefined;
|
|
@@ -12349,6 +12685,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12349
12685
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12350
12686
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12351
12687
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12688
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12352
12689
|
}, {
|
|
12353
12690
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
12354
12691
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12358,6 +12695,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12358
12695
|
source_component_id: string;
|
|
12359
12696
|
ftype: "simple_inductor";
|
|
12360
12697
|
inductance: number;
|
|
12698
|
+
source_group_id?: string | undefined;
|
|
12361
12699
|
manufacturer_part_number?: string | undefined;
|
|
12362
12700
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12363
12701
|
display_value?: string | undefined;
|
|
@@ -12369,6 +12707,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12369
12707
|
source_component_id: string;
|
|
12370
12708
|
ftype: "simple_inductor";
|
|
12371
12709
|
inductance: string | number;
|
|
12710
|
+
source_group_id?: string | undefined;
|
|
12372
12711
|
manufacturer_part_number?: string | undefined;
|
|
12373
12712
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12374
12713
|
display_value?: string | undefined;
|
|
@@ -12384,6 +12723,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12384
12723
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12385
12724
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12386
12725
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12726
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12387
12727
|
}, {
|
|
12388
12728
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
12389
12729
|
pin_count: z.ZodNumber;
|
|
@@ -12395,6 +12735,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12395
12735
|
ftype: "simple_pin_header";
|
|
12396
12736
|
pin_count: number;
|
|
12397
12737
|
gender: "male" | "female";
|
|
12738
|
+
source_group_id?: string | undefined;
|
|
12398
12739
|
manufacturer_part_number?: string | undefined;
|
|
12399
12740
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12400
12741
|
display_value?: string | undefined;
|
|
@@ -12406,6 +12747,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12406
12747
|
source_component_id: string;
|
|
12407
12748
|
ftype: "simple_pin_header";
|
|
12408
12749
|
pin_count: number;
|
|
12750
|
+
source_group_id?: string | undefined;
|
|
12409
12751
|
manufacturer_part_number?: string | undefined;
|
|
12410
12752
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12411
12753
|
display_value?: string | undefined;
|
|
@@ -12422,6 +12764,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12422
12764
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12423
12765
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12424
12766
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12767
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12425
12768
|
}, {
|
|
12426
12769
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
12427
12770
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -12434,6 +12777,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12434
12777
|
ftype: "simple_resonator";
|
|
12435
12778
|
frequency: number;
|
|
12436
12779
|
load_capacitance: number;
|
|
12780
|
+
source_group_id?: string | undefined;
|
|
12437
12781
|
manufacturer_part_number?: string | undefined;
|
|
12438
12782
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12439
12783
|
display_value?: string | undefined;
|
|
@@ -12447,6 +12791,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12447
12791
|
ftype: "simple_resonator";
|
|
12448
12792
|
frequency: string | number;
|
|
12449
12793
|
load_capacitance: string | number;
|
|
12794
|
+
source_group_id?: string | undefined;
|
|
12450
12795
|
manufacturer_part_number?: string | undefined;
|
|
12451
12796
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12452
12797
|
display_value?: string | undefined;
|
|
@@ -12463,6 +12808,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12463
12808
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12464
12809
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12465
12810
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12811
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12466
12812
|
}, {
|
|
12467
12813
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
12468
12814
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12470,6 +12816,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12470
12816
|
name: string;
|
|
12471
12817
|
source_component_id: string;
|
|
12472
12818
|
ftype: "simple_switch";
|
|
12819
|
+
source_group_id?: string | undefined;
|
|
12473
12820
|
manufacturer_part_number?: string | undefined;
|
|
12474
12821
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12475
12822
|
display_value?: string | undefined;
|
|
@@ -12480,6 +12827,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12480
12827
|
name: string;
|
|
12481
12828
|
source_component_id: string;
|
|
12482
12829
|
ftype: "simple_switch";
|
|
12830
|
+
source_group_id?: string | undefined;
|
|
12483
12831
|
manufacturer_part_number?: string | undefined;
|
|
12484
12832
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12485
12833
|
display_value?: string | undefined;
|
|
@@ -12495,6 +12843,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12495
12843
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12496
12844
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12497
12845
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12846
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12498
12847
|
}, {
|
|
12499
12848
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
12500
12849
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -12504,6 +12853,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12504
12853
|
source_component_id: string;
|
|
12505
12854
|
ftype: "simple_transistor";
|
|
12506
12855
|
transistor_type: "npn" | "pnp";
|
|
12856
|
+
source_group_id?: string | undefined;
|
|
12507
12857
|
manufacturer_part_number?: string | undefined;
|
|
12508
12858
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12509
12859
|
display_value?: string | undefined;
|
|
@@ -12515,6 +12865,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12515
12865
|
source_component_id: string;
|
|
12516
12866
|
ftype: "simple_transistor";
|
|
12517
12867
|
transistor_type: "npn" | "pnp";
|
|
12868
|
+
source_group_id?: string | undefined;
|
|
12518
12869
|
manufacturer_part_number?: string | undefined;
|
|
12519
12870
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12520
12871
|
display_value?: string | undefined;
|
|
@@ -12530,6 +12881,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12530
12881
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12531
12882
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12532
12883
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12884
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12533
12885
|
}, {
|
|
12534
12886
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
12535
12887
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -12541,6 +12893,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12541
12893
|
ftype: "simple_mosfet";
|
|
12542
12894
|
channel_type: "n" | "p";
|
|
12543
12895
|
mosfet_mode: "enhancement" | "depletion";
|
|
12896
|
+
source_group_id?: string | undefined;
|
|
12544
12897
|
manufacturer_part_number?: string | undefined;
|
|
12545
12898
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12546
12899
|
display_value?: string | undefined;
|
|
@@ -12553,6 +12906,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12553
12906
|
ftype: "simple_mosfet";
|
|
12554
12907
|
channel_type: "n" | "p";
|
|
12555
12908
|
mosfet_mode: "enhancement" | "depletion";
|
|
12909
|
+
source_group_id?: string | undefined;
|
|
12556
12910
|
manufacturer_part_number?: string | undefined;
|
|
12557
12911
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12558
12912
|
display_value?: string | undefined;
|
|
@@ -12568,6 +12922,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12568
12922
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12569
12923
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12570
12924
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12925
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12571
12926
|
}, {
|
|
12572
12927
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
12573
12928
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12577,6 +12932,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12577
12932
|
source_component_id: string;
|
|
12578
12933
|
ftype: "simple_potentiometer";
|
|
12579
12934
|
max_resistance: number;
|
|
12935
|
+
source_group_id?: string | undefined;
|
|
12580
12936
|
manufacturer_part_number?: string | undefined;
|
|
12581
12937
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12582
12938
|
display_value?: string | undefined;
|
|
@@ -12588,6 +12944,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12588
12944
|
source_component_id: string;
|
|
12589
12945
|
ftype: "simple_potentiometer";
|
|
12590
12946
|
max_resistance: string | number;
|
|
12947
|
+
source_group_id?: string | undefined;
|
|
12591
12948
|
manufacturer_part_number?: string | undefined;
|
|
12592
12949
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12593
12950
|
display_value?: string | undefined;
|
|
@@ -12603,6 +12960,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12603
12960
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12604
12961
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12605
12962
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12963
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12606
12964
|
}, {
|
|
12607
12965
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
12608
12966
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12610,6 +12968,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12610
12968
|
name: string;
|
|
12611
12969
|
source_component_id: string;
|
|
12612
12970
|
ftype: "simple_push_button";
|
|
12971
|
+
source_group_id?: string | undefined;
|
|
12613
12972
|
manufacturer_part_number?: string | undefined;
|
|
12614
12973
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12615
12974
|
display_value?: string | undefined;
|
|
@@ -12620,6 +12979,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12620
12979
|
name: string;
|
|
12621
12980
|
source_component_id: string;
|
|
12622
12981
|
ftype: "simple_push_button";
|
|
12982
|
+
source_group_id?: string | undefined;
|
|
12623
12983
|
manufacturer_part_number?: string | undefined;
|
|
12624
12984
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12625
12985
|
display_value?: string | undefined;
|
|
@@ -12667,6 +13027,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12667
13027
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12668
13028
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12669
13029
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13030
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
12670
13031
|
}, "strip", z.ZodTypeAny, {
|
|
12671
13032
|
type: "pcb_component";
|
|
12672
13033
|
width: number;
|
|
@@ -12680,6 +13041,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12680
13041
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12681
13042
|
rotation: number;
|
|
12682
13043
|
subcircuit_id?: string | undefined;
|
|
13044
|
+
pcb_group_id?: string | undefined;
|
|
12683
13045
|
}, {
|
|
12684
13046
|
type: "pcb_component";
|
|
12685
13047
|
width: string | number;
|
|
@@ -12695,6 +13057,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12695
13057
|
rotation: string | number;
|
|
12696
13058
|
pcb_component_id?: string | undefined;
|
|
12697
13059
|
subcircuit_id?: string | undefined;
|
|
13060
|
+
pcb_group_id?: string | undefined;
|
|
12698
13061
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
12699
13062
|
type: z.ZodLiteral<"pcb_hole">;
|
|
12700
13063
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12720,8 +13083,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12720
13083
|
hole_shape: "circle" | "square";
|
|
12721
13084
|
hole_diameter: number;
|
|
12722
13085
|
subcircuit_id?: string | undefined;
|
|
12723
|
-
pcb_hole_id?: string | undefined;
|
|
12724
13086
|
pcb_group_id?: string | undefined;
|
|
13087
|
+
pcb_hole_id?: string | undefined;
|
|
12725
13088
|
}>, z.ZodObject<{
|
|
12726
13089
|
type: z.ZodLiteral<"pcb_hole">;
|
|
12727
13090
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12750,8 +13113,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12750
13113
|
hole_width: number;
|
|
12751
13114
|
hole_height: number;
|
|
12752
13115
|
subcircuit_id?: string | undefined;
|
|
12753
|
-
pcb_hole_id?: string | undefined;
|
|
12754
13116
|
pcb_group_id?: string | undefined;
|
|
13117
|
+
pcb_hole_id?: string | undefined;
|
|
12755
13118
|
}>]>, z.ZodObject<{
|
|
12756
13119
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
12757
13120
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14891,6 +15254,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14891
15254
|
}>]>>;
|
|
14892
15255
|
port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14893
15256
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
15257
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15258
|
+
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
14894
15259
|
}, "strip", z.ZodTypeAny, {
|
|
14895
15260
|
type: "schematic_component";
|
|
14896
15261
|
source_component_id: string;
|
|
@@ -14903,6 +15268,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14903
15268
|
width: number;
|
|
14904
15269
|
height: number;
|
|
14905
15270
|
};
|
|
15271
|
+
subcircuit_id?: string | undefined;
|
|
14906
15272
|
pin_spacing?: number | undefined;
|
|
14907
15273
|
pin_styles?: Record<string, {
|
|
14908
15274
|
left_margin?: number | undefined;
|
|
@@ -14937,6 +15303,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14937
15303
|
} | undefined;
|
|
14938
15304
|
port_labels?: Record<string, string> | undefined;
|
|
14939
15305
|
symbol_display_value?: string | undefined;
|
|
15306
|
+
schematic_group_id?: string | undefined;
|
|
14940
15307
|
}, {
|
|
14941
15308
|
type: "schematic_component";
|
|
14942
15309
|
source_component_id: string;
|
|
@@ -14949,6 +15316,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14949
15316
|
width: number;
|
|
14950
15317
|
height: number;
|
|
14951
15318
|
};
|
|
15319
|
+
subcircuit_id?: string | undefined;
|
|
14952
15320
|
pin_spacing?: string | number | undefined;
|
|
14953
15321
|
pin_styles?: Record<string, {
|
|
14954
15322
|
left_margin?: string | number | undefined;
|
|
@@ -14983,6 +15351,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14983
15351
|
} | undefined;
|
|
14984
15352
|
port_labels?: Record<string, string> | undefined;
|
|
14985
15353
|
symbol_display_value?: string | undefined;
|
|
15354
|
+
schematic_group_id?: string | undefined;
|
|
14986
15355
|
}>, z.ZodObject<{
|
|
14987
15356
|
type: z.ZodLiteral<"schematic_port">;
|
|
14988
15357
|
schematic_port_id: z.ZodString;
|
|
@@ -15189,6 +15558,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15189
15558
|
schematic_error_id: string;
|
|
15190
15559
|
}>, z.ZodObject<{
|
|
15191
15560
|
type: z.ZodLiteral<"schematic_net_label">;
|
|
15561
|
+
schematic_net_label_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
15562
|
+
schematic_trace_id: z.ZodOptional<z.ZodString>;
|
|
15192
15563
|
source_net_id: z.ZodString;
|
|
15193
15564
|
center: z.ZodObject<{
|
|
15194
15565
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15220,6 +15591,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15220
15591
|
y: number;
|
|
15221
15592
|
};
|
|
15222
15593
|
text: string;
|
|
15594
|
+
schematic_net_label_id: string;
|
|
15223
15595
|
source_net_id: string;
|
|
15224
15596
|
anchor_side: "top" | "bottom" | "left" | "right";
|
|
15225
15597
|
anchor_position?: {
|
|
@@ -15227,6 +15599,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15227
15599
|
y: number;
|
|
15228
15600
|
} | undefined;
|
|
15229
15601
|
symbol_name?: string | undefined;
|
|
15602
|
+
schematic_trace_id?: string | undefined;
|
|
15230
15603
|
}, {
|
|
15231
15604
|
type: "schematic_net_label";
|
|
15232
15605
|
center: {
|
|
@@ -15241,6 +15614,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15241
15614
|
y: string | number;
|
|
15242
15615
|
} | undefined;
|
|
15243
15616
|
symbol_name?: string | undefined;
|
|
15617
|
+
schematic_trace_id?: string | undefined;
|
|
15618
|
+
schematic_net_label_id?: string | undefined;
|
|
15244
15619
|
}>, z.ZodDiscriminatedUnion<"shape", [z.ZodObject<z.objectUtil.extendShape<{
|
|
15245
15620
|
type: z.ZodLiteral<"schematic_debug_object">;
|
|
15246
15621
|
label: z.ZodOptional<z.ZodString>;
|
|
@@ -15425,8 +15800,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15425
15800
|
source_component_id: string;
|
|
15426
15801
|
schematic_component_id: string;
|
|
15427
15802
|
subcircuit_id?: string | undefined;
|
|
15428
|
-
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
15429
15803
|
schematic_group_id?: string | undefined;
|
|
15804
|
+
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
15430
15805
|
}>, z.ZodObject<{
|
|
15431
15806
|
type: z.ZodLiteral<"schematic_group">;
|
|
15432
15807
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -15607,4 +15982,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
15607
15982
|
*/
|
|
15608
15983
|
type CircuitJson = AnyCircuitElement[];
|
|
15609
15984
|
|
|
15610
|
-
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 InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, 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 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 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, 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 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 SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, 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 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 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, pcb_autorouting_error, pcb_board, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, 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_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_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_led, source_missing_property_error, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, 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_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
15985
|
+
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 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 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 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 PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, 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 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 SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, 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 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 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, pcb_autorouting_error, pcb_board, pcb_component, pcb_cutout, pcb_cutout_circle, pcb_cutout_polygon, pcb_cutout_rect, pcb_fabrication_note_path, pcb_fabrication_note_text, 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_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_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_led, source_missing_property_error, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, 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_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|