circuit-json 0.0.180 → 0.0.181
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 +2 -0
- package/dist/index.d.mts +359 -13
- package/dist/index.mjs +7 -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
|
|
|
@@ -4764,8 +4776,8 @@ declare const schematic_manual_edit_conflict_warning: z.ZodObject<{
|
|
|
4764
4776
|
source_component_id: string;
|
|
4765
4777
|
schematic_component_id: string;
|
|
4766
4778
|
subcircuit_id?: string | undefined;
|
|
4767
|
-
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
4768
4779
|
schematic_group_id?: string | undefined;
|
|
4780
|
+
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
4769
4781
|
}>;
|
|
4770
4782
|
type SchematicManualEditConflictWarningInput = z.input<typeof schematic_manual_edit_conflict_warning>;
|
|
4771
4783
|
/**
|
|
@@ -4863,6 +4875,7 @@ interface SourceComponentBase {
|
|
|
4863
4875
|
display_value?: string;
|
|
4864
4876
|
are_pins_interchangeable?: boolean;
|
|
4865
4877
|
internally_connected_source_port_ids?: string[][];
|
|
4878
|
+
source_group_id?: string;
|
|
4866
4879
|
}
|
|
4867
4880
|
declare const source_component_base: z.ZodObject<{
|
|
4868
4881
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -4874,10 +4887,12 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4874
4887
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4875
4888
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4876
4889
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4890
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
4877
4891
|
}, "strip", z.ZodTypeAny, {
|
|
4878
4892
|
type: "source_component";
|
|
4879
4893
|
name: string;
|
|
4880
4894
|
source_component_id: string;
|
|
4895
|
+
source_group_id?: string | undefined;
|
|
4881
4896
|
ftype?: string | undefined;
|
|
4882
4897
|
manufacturer_part_number?: string | undefined;
|
|
4883
4898
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
@@ -4888,6 +4903,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4888
4903
|
type: "source_component";
|
|
4889
4904
|
name: string;
|
|
4890
4905
|
source_component_id: string;
|
|
4906
|
+
source_group_id?: string | undefined;
|
|
4891
4907
|
ftype?: string | undefined;
|
|
4892
4908
|
manufacturer_part_number?: string | undefined;
|
|
4893
4909
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
@@ -4906,6 +4922,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4906
4922
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4907
4923
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4908
4924
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4925
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
4909
4926
|
}, {
|
|
4910
4927
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
4911
4928
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4918,6 +4935,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4918
4935
|
source_component_id: string;
|
|
4919
4936
|
ftype: "simple_capacitor";
|
|
4920
4937
|
capacitance: number;
|
|
4938
|
+
source_group_id?: string | undefined;
|
|
4921
4939
|
manufacturer_part_number?: string | undefined;
|
|
4922
4940
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4923
4941
|
display_value?: string | undefined;
|
|
@@ -4932,6 +4950,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4932
4950
|
source_component_id: string;
|
|
4933
4951
|
ftype: "simple_capacitor";
|
|
4934
4952
|
capacitance: string | number;
|
|
4953
|
+
source_group_id?: string | undefined;
|
|
4935
4954
|
manufacturer_part_number?: string | undefined;
|
|
4936
4955
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4937
4956
|
display_value?: string | undefined;
|
|
@@ -4963,6 +4982,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4963
4982
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4964
4983
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4965
4984
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4985
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
4966
4986
|
}, {
|
|
4967
4987
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
4968
4988
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4973,6 +4993,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4973
4993
|
source_component_id: string;
|
|
4974
4994
|
ftype: "simple_resistor";
|
|
4975
4995
|
resistance: number;
|
|
4996
|
+
source_group_id?: string | undefined;
|
|
4976
4997
|
manufacturer_part_number?: string | undefined;
|
|
4977
4998
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4978
4999
|
display_value?: string | undefined;
|
|
@@ -4985,6 +5006,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4985
5006
|
source_component_id: string;
|
|
4986
5007
|
ftype: "simple_resistor";
|
|
4987
5008
|
resistance: string | number;
|
|
5009
|
+
source_group_id?: string | undefined;
|
|
4988
5010
|
manufacturer_part_number?: string | undefined;
|
|
4989
5011
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4990
5012
|
display_value?: string | undefined;
|
|
@@ -5012,6 +5034,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5012
5034
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5013
5035
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5014
5036
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5037
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5015
5038
|
}, {
|
|
5016
5039
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5017
5040
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5019,6 +5042,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5019
5042
|
name: string;
|
|
5020
5043
|
source_component_id: string;
|
|
5021
5044
|
ftype: "simple_diode";
|
|
5045
|
+
source_group_id?: string | undefined;
|
|
5022
5046
|
manufacturer_part_number?: string | undefined;
|
|
5023
5047
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5024
5048
|
display_value?: string | undefined;
|
|
@@ -5029,6 +5053,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5029
5053
|
name: string;
|
|
5030
5054
|
source_component_id: string;
|
|
5031
5055
|
ftype: "simple_diode";
|
|
5056
|
+
source_group_id?: string | undefined;
|
|
5032
5057
|
manufacturer_part_number?: string | undefined;
|
|
5033
5058
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5034
5059
|
display_value?: string | undefined;
|
|
@@ -5053,6 +5078,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5053
5078
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5054
5079
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5055
5080
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5081
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5056
5082
|
}, {
|
|
5057
5083
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5058
5084
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5060,6 +5086,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5060
5086
|
name: string;
|
|
5061
5087
|
source_component_id: string;
|
|
5062
5088
|
ftype: "simple_ground";
|
|
5089
|
+
source_group_id?: string | undefined;
|
|
5063
5090
|
manufacturer_part_number?: string | undefined;
|
|
5064
5091
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5065
5092
|
display_value?: string | undefined;
|
|
@@ -5070,6 +5097,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5070
5097
|
name: string;
|
|
5071
5098
|
source_component_id: string;
|
|
5072
5099
|
ftype: "simple_ground";
|
|
5100
|
+
source_group_id?: string | undefined;
|
|
5073
5101
|
manufacturer_part_number?: string | undefined;
|
|
5074
5102
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5075
5103
|
display_value?: string | undefined;
|
|
@@ -5097,6 +5125,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5097
5125
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5098
5126
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5099
5127
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5128
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5100
5129
|
}, {
|
|
5101
5130
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
5102
5131
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5104,6 +5133,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5104
5133
|
name: string;
|
|
5105
5134
|
source_component_id: string;
|
|
5106
5135
|
ftype: "simple_bug";
|
|
5136
|
+
source_group_id?: string | undefined;
|
|
5107
5137
|
manufacturer_part_number?: string | undefined;
|
|
5108
5138
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5109
5139
|
display_value?: string | undefined;
|
|
@@ -5114,6 +5144,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5114
5144
|
name: string;
|
|
5115
5145
|
source_component_id: string;
|
|
5116
5146
|
ftype: "simple_bug";
|
|
5147
|
+
source_group_id?: string | undefined;
|
|
5117
5148
|
manufacturer_part_number?: string | undefined;
|
|
5118
5149
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5119
5150
|
display_value?: string | undefined;
|
|
@@ -5133,6 +5164,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5133
5164
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5134
5165
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5135
5166
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5167
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5136
5168
|
}, {
|
|
5137
5169
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
5138
5170
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5140,6 +5172,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5140
5172
|
name: string;
|
|
5141
5173
|
source_component_id: string;
|
|
5142
5174
|
ftype: "simple_chip";
|
|
5175
|
+
source_group_id?: string | undefined;
|
|
5143
5176
|
manufacturer_part_number?: string | undefined;
|
|
5144
5177
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5145
5178
|
display_value?: string | undefined;
|
|
@@ -5150,6 +5183,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5150
5183
|
name: string;
|
|
5151
5184
|
source_component_id: string;
|
|
5152
5185
|
ftype: "simple_chip";
|
|
5186
|
+
source_group_id?: string | undefined;
|
|
5153
5187
|
manufacturer_part_number?: string | undefined;
|
|
5154
5188
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5155
5189
|
display_value?: string | undefined;
|
|
@@ -5174,6 +5208,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5174
5208
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5175
5209
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5176
5210
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5211
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5177
5212
|
}, {
|
|
5178
5213
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5179
5214
|
}>, {
|
|
@@ -5183,6 +5218,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5183
5218
|
name: string;
|
|
5184
5219
|
source_component_id: string;
|
|
5185
5220
|
ftype: "led";
|
|
5221
|
+
source_group_id?: string | undefined;
|
|
5186
5222
|
manufacturer_part_number?: string | undefined;
|
|
5187
5223
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5188
5224
|
display_value?: string | undefined;
|
|
@@ -5193,6 +5229,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
5193
5229
|
name: string;
|
|
5194
5230
|
source_component_id: string;
|
|
5195
5231
|
ftype: "led";
|
|
5232
|
+
source_group_id?: string | undefined;
|
|
5196
5233
|
manufacturer_part_number?: string | undefined;
|
|
5197
5234
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5198
5235
|
display_value?: string | undefined;
|
|
@@ -5217,6 +5254,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5217
5254
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5218
5255
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5219
5256
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5257
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5220
5258
|
}, {
|
|
5221
5259
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
5222
5260
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5226,6 +5264,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5226
5264
|
source_component_id: string;
|
|
5227
5265
|
voltage: number;
|
|
5228
5266
|
ftype: "simple_power_source";
|
|
5267
|
+
source_group_id?: string | undefined;
|
|
5229
5268
|
manufacturer_part_number?: string | undefined;
|
|
5230
5269
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5231
5270
|
display_value?: string | undefined;
|
|
@@ -5237,6 +5276,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5237
5276
|
source_component_id: string;
|
|
5238
5277
|
voltage: string | number;
|
|
5239
5278
|
ftype: "simple_power_source";
|
|
5279
|
+
source_group_id?: string | undefined;
|
|
5240
5280
|
manufacturer_part_number?: string | undefined;
|
|
5241
5281
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5242
5282
|
display_value?: string | undefined;
|
|
@@ -5262,6 +5302,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5262
5302
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5263
5303
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5264
5304
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5305
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5265
5306
|
}, {
|
|
5266
5307
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
5267
5308
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -5271,6 +5312,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5271
5312
|
source_component_id: string;
|
|
5272
5313
|
ftype: "simple_battery";
|
|
5273
5314
|
capacity: number;
|
|
5315
|
+
source_group_id?: string | undefined;
|
|
5274
5316
|
manufacturer_part_number?: string | undefined;
|
|
5275
5317
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5276
5318
|
display_value?: string | undefined;
|
|
@@ -5282,6 +5324,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5282
5324
|
source_component_id: string;
|
|
5283
5325
|
ftype: "simple_battery";
|
|
5284
5326
|
capacity: string | number;
|
|
5327
|
+
source_group_id?: string | undefined;
|
|
5285
5328
|
manufacturer_part_number?: string | undefined;
|
|
5286
5329
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5287
5330
|
display_value?: string | undefined;
|
|
@@ -5307,6 +5350,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5307
5350
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5308
5351
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5309
5352
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5353
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5310
5354
|
}, {
|
|
5311
5355
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
5312
5356
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5316,6 +5360,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5316
5360
|
source_component_id: string;
|
|
5317
5361
|
ftype: "simple_inductor";
|
|
5318
5362
|
inductance: number;
|
|
5363
|
+
source_group_id?: string | undefined;
|
|
5319
5364
|
manufacturer_part_number?: string | undefined;
|
|
5320
5365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5321
5366
|
display_value?: string | undefined;
|
|
@@ -5327,6 +5372,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5327
5372
|
source_component_id: string;
|
|
5328
5373
|
ftype: "simple_inductor";
|
|
5329
5374
|
inductance: string | number;
|
|
5375
|
+
source_group_id?: string | undefined;
|
|
5330
5376
|
manufacturer_part_number?: string | undefined;
|
|
5331
5377
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5332
5378
|
display_value?: string | undefined;
|
|
@@ -5352,6 +5398,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5352
5398
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5353
5399
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5354
5400
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5401
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5355
5402
|
}, {
|
|
5356
5403
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
5357
5404
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5359,6 +5406,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5359
5406
|
name: string;
|
|
5360
5407
|
source_component_id: string;
|
|
5361
5408
|
ftype: "simple_push_button";
|
|
5409
|
+
source_group_id?: string | undefined;
|
|
5362
5410
|
manufacturer_part_number?: string | undefined;
|
|
5363
5411
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5364
5412
|
display_value?: string | undefined;
|
|
@@ -5369,6 +5417,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5369
5417
|
name: string;
|
|
5370
5418
|
source_component_id: string;
|
|
5371
5419
|
ftype: "simple_push_button";
|
|
5420
|
+
source_group_id?: string | undefined;
|
|
5372
5421
|
manufacturer_part_number?: string | undefined;
|
|
5373
5422
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5374
5423
|
display_value?: string | undefined;
|
|
@@ -5393,6 +5442,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5393
5442
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5394
5443
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5395
5444
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5445
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5396
5446
|
}, {
|
|
5397
5447
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5398
5448
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5402,6 +5452,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5402
5452
|
source_component_id: string;
|
|
5403
5453
|
ftype: "simple_potentiometer";
|
|
5404
5454
|
max_resistance: number;
|
|
5455
|
+
source_group_id?: string | undefined;
|
|
5405
5456
|
manufacturer_part_number?: string | undefined;
|
|
5406
5457
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5407
5458
|
display_value?: string | undefined;
|
|
@@ -5413,6 +5464,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
5413
5464
|
source_component_id: string;
|
|
5414
5465
|
ftype: "simple_potentiometer";
|
|
5415
5466
|
max_resistance: string | number;
|
|
5467
|
+
source_group_id?: string | undefined;
|
|
5416
5468
|
manufacturer_part_number?: string | undefined;
|
|
5417
5469
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5418
5470
|
display_value?: string | undefined;
|
|
@@ -5432,6 +5484,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5432
5484
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5433
5485
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5434
5486
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5487
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5435
5488
|
}, {
|
|
5436
5489
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
5437
5490
|
frequency: z.ZodNumber;
|
|
@@ -5442,6 +5495,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5442
5495
|
source_component_id: string;
|
|
5443
5496
|
ftype: "simple_crystal";
|
|
5444
5497
|
frequency: number;
|
|
5498
|
+
source_group_id?: string | undefined;
|
|
5445
5499
|
manufacturer_part_number?: string | undefined;
|
|
5446
5500
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5447
5501
|
display_value?: string | undefined;
|
|
@@ -5454,6 +5508,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5454
5508
|
source_component_id: string;
|
|
5455
5509
|
ftype: "simple_crystal";
|
|
5456
5510
|
frequency: number;
|
|
5511
|
+
source_group_id?: string | undefined;
|
|
5457
5512
|
manufacturer_part_number?: string | undefined;
|
|
5458
5513
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5459
5514
|
display_value?: string | undefined;
|
|
@@ -5481,6 +5536,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5481
5536
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5482
5537
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5483
5538
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5539
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5484
5540
|
}, {
|
|
5485
5541
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5486
5542
|
pin_count: z.ZodNumber;
|
|
@@ -5492,6 +5548,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5492
5548
|
ftype: "simple_pin_header";
|
|
5493
5549
|
pin_count: number;
|
|
5494
5550
|
gender: "male" | "female";
|
|
5551
|
+
source_group_id?: string | undefined;
|
|
5495
5552
|
manufacturer_part_number?: string | undefined;
|
|
5496
5553
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5497
5554
|
display_value?: string | undefined;
|
|
@@ -5503,6 +5560,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5503
5560
|
source_component_id: string;
|
|
5504
5561
|
ftype: "simple_pin_header";
|
|
5505
5562
|
pin_count: number;
|
|
5563
|
+
source_group_id?: string | undefined;
|
|
5506
5564
|
manufacturer_part_number?: string | undefined;
|
|
5507
5565
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5508
5566
|
display_value?: string | undefined;
|
|
@@ -5523,6 +5581,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5523
5581
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5524
5582
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5525
5583
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5584
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5526
5585
|
}, {
|
|
5527
5586
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
5528
5587
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5535,6 +5594,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5535
5594
|
ftype: "simple_resonator";
|
|
5536
5595
|
frequency: number;
|
|
5537
5596
|
load_capacitance: number;
|
|
5597
|
+
source_group_id?: string | undefined;
|
|
5538
5598
|
manufacturer_part_number?: string | undefined;
|
|
5539
5599
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5540
5600
|
display_value?: string | undefined;
|
|
@@ -5548,6 +5608,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5548
5608
|
ftype: "simple_resonator";
|
|
5549
5609
|
frequency: string | number;
|
|
5550
5610
|
load_capacitance: string | number;
|
|
5611
|
+
source_group_id?: string | undefined;
|
|
5551
5612
|
manufacturer_part_number?: string | undefined;
|
|
5552
5613
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5553
5614
|
display_value?: string | undefined;
|
|
@@ -5576,6 +5637,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5576
5637
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5577
5638
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5578
5639
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5640
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5579
5641
|
}, {
|
|
5580
5642
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5581
5643
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5585,6 +5647,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5585
5647
|
source_component_id: string;
|
|
5586
5648
|
ftype: "simple_transistor";
|
|
5587
5649
|
transistor_type: "npn" | "pnp";
|
|
5650
|
+
source_group_id?: string | undefined;
|
|
5588
5651
|
manufacturer_part_number?: string | undefined;
|
|
5589
5652
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5590
5653
|
display_value?: string | undefined;
|
|
@@ -5596,6 +5659,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5596
5659
|
source_component_id: string;
|
|
5597
5660
|
ftype: "simple_transistor";
|
|
5598
5661
|
transistor_type: "npn" | "pnp";
|
|
5662
|
+
source_group_id?: string | undefined;
|
|
5599
5663
|
manufacturer_part_number?: string | undefined;
|
|
5600
5664
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5601
5665
|
display_value?: string | undefined;
|
|
@@ -5623,6 +5687,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5623
5687
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5624
5688
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5625
5689
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5690
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5626
5691
|
}, {
|
|
5627
5692
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5628
5693
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5634,6 +5699,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5634
5699
|
ftype: "simple_mosfet";
|
|
5635
5700
|
channel_type: "n" | "p";
|
|
5636
5701
|
mosfet_mode: "enhancement" | "depletion";
|
|
5702
|
+
source_group_id?: string | undefined;
|
|
5637
5703
|
manufacturer_part_number?: string | undefined;
|
|
5638
5704
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5639
5705
|
display_value?: string | undefined;
|
|
@@ -5646,6 +5712,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5646
5712
|
ftype: "simple_mosfet";
|
|
5647
5713
|
channel_type: "n" | "p";
|
|
5648
5714
|
mosfet_mode: "enhancement" | "depletion";
|
|
5715
|
+
source_group_id?: string | undefined;
|
|
5649
5716
|
manufacturer_part_number?: string | undefined;
|
|
5650
5717
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5651
5718
|
display_value?: string | undefined;
|
|
@@ -5674,6 +5741,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5674
5741
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5675
5742
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5676
5743
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5744
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5677
5745
|
}, {
|
|
5678
5746
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5679
5747
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5681,6 +5749,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5681
5749
|
name: string;
|
|
5682
5750
|
source_component_id: string;
|
|
5683
5751
|
ftype: "simple_switch";
|
|
5752
|
+
source_group_id?: string | undefined;
|
|
5684
5753
|
manufacturer_part_number?: string | undefined;
|
|
5685
5754
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5686
5755
|
display_value?: string | undefined;
|
|
@@ -5691,6 +5760,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5691
5760
|
name: string;
|
|
5692
5761
|
source_component_id: string;
|
|
5693
5762
|
ftype: "simple_switch";
|
|
5763
|
+
source_group_id?: string | undefined;
|
|
5694
5764
|
manufacturer_part_number?: string | undefined;
|
|
5695
5765
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5696
5766
|
display_value?: string | undefined;
|
|
@@ -5854,6 +5924,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5854
5924
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5855
5925
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5856
5926
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5927
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5857
5928
|
}, {
|
|
5858
5929
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
5859
5930
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5864,6 +5935,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5864
5935
|
source_component_id: string;
|
|
5865
5936
|
ftype: "simple_resistor";
|
|
5866
5937
|
resistance: number;
|
|
5938
|
+
source_group_id?: string | undefined;
|
|
5867
5939
|
manufacturer_part_number?: string | undefined;
|
|
5868
5940
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5869
5941
|
display_value?: string | undefined;
|
|
@@ -5876,6 +5948,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5876
5948
|
source_component_id: string;
|
|
5877
5949
|
ftype: "simple_resistor";
|
|
5878
5950
|
resistance: string | number;
|
|
5951
|
+
source_group_id?: string | undefined;
|
|
5879
5952
|
manufacturer_part_number?: string | undefined;
|
|
5880
5953
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5881
5954
|
display_value?: string | undefined;
|
|
@@ -5892,6 +5965,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5892
5965
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5893
5966
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5894
5967
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5968
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5895
5969
|
}, {
|
|
5896
5970
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
5897
5971
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5904,6 +5978,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5904
5978
|
source_component_id: string;
|
|
5905
5979
|
ftype: "simple_capacitor";
|
|
5906
5980
|
capacitance: number;
|
|
5981
|
+
source_group_id?: string | undefined;
|
|
5907
5982
|
manufacturer_part_number?: string | undefined;
|
|
5908
5983
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5909
5984
|
display_value?: string | undefined;
|
|
@@ -5918,6 +5993,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5918
5993
|
source_component_id: string;
|
|
5919
5994
|
ftype: "simple_capacitor";
|
|
5920
5995
|
capacitance: string | number;
|
|
5996
|
+
source_group_id?: string | undefined;
|
|
5921
5997
|
manufacturer_part_number?: string | undefined;
|
|
5922
5998
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5923
5999
|
display_value?: string | undefined;
|
|
@@ -5936,6 +6012,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5936
6012
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5937
6013
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5938
6014
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6015
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5939
6016
|
}, {
|
|
5940
6017
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5941
6018
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5943,6 +6020,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5943
6020
|
name: string;
|
|
5944
6021
|
source_component_id: string;
|
|
5945
6022
|
ftype: "simple_diode";
|
|
6023
|
+
source_group_id?: string | undefined;
|
|
5946
6024
|
manufacturer_part_number?: string | undefined;
|
|
5947
6025
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5948
6026
|
display_value?: string | undefined;
|
|
@@ -5953,6 +6031,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5953
6031
|
name: string;
|
|
5954
6032
|
source_component_id: string;
|
|
5955
6033
|
ftype: "simple_diode";
|
|
6034
|
+
source_group_id?: string | undefined;
|
|
5956
6035
|
manufacturer_part_number?: string | undefined;
|
|
5957
6036
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5958
6037
|
display_value?: string | undefined;
|
|
@@ -5968,6 +6047,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5968
6047
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5969
6048
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5970
6049
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6050
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
5971
6051
|
}, {
|
|
5972
6052
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5973
6053
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5975,6 +6055,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5975
6055
|
name: string;
|
|
5976
6056
|
source_component_id: string;
|
|
5977
6057
|
ftype: "simple_ground";
|
|
6058
|
+
source_group_id?: string | undefined;
|
|
5978
6059
|
manufacturer_part_number?: string | undefined;
|
|
5979
6060
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5980
6061
|
display_value?: string | undefined;
|
|
@@ -5985,6 +6066,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5985
6066
|
name: string;
|
|
5986
6067
|
source_component_id: string;
|
|
5987
6068
|
ftype: "simple_ground";
|
|
6069
|
+
source_group_id?: string | undefined;
|
|
5988
6070
|
manufacturer_part_number?: string | undefined;
|
|
5989
6071
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5990
6072
|
display_value?: string | undefined;
|
|
@@ -6000,6 +6082,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6000
6082
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6001
6083
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6002
6084
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6085
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6003
6086
|
}, {
|
|
6004
6087
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6005
6088
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6007,6 +6090,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6007
6090
|
name: string;
|
|
6008
6091
|
source_component_id: string;
|
|
6009
6092
|
ftype: "simple_chip";
|
|
6093
|
+
source_group_id?: string | undefined;
|
|
6010
6094
|
manufacturer_part_number?: string | undefined;
|
|
6011
6095
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6012
6096
|
display_value?: string | undefined;
|
|
@@ -6017,6 +6101,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6017
6101
|
name: string;
|
|
6018
6102
|
source_component_id: string;
|
|
6019
6103
|
ftype: "simple_chip";
|
|
6104
|
+
source_group_id?: string | undefined;
|
|
6020
6105
|
manufacturer_part_number?: string | undefined;
|
|
6021
6106
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6022
6107
|
display_value?: string | undefined;
|
|
@@ -6032,6 +6117,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6032
6117
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6033
6118
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6034
6119
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6120
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6035
6121
|
}, {
|
|
6036
6122
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6037
6123
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6039,6 +6125,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6039
6125
|
name: string;
|
|
6040
6126
|
source_component_id: string;
|
|
6041
6127
|
ftype: "simple_bug";
|
|
6128
|
+
source_group_id?: string | undefined;
|
|
6042
6129
|
manufacturer_part_number?: string | undefined;
|
|
6043
6130
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6044
6131
|
display_value?: string | undefined;
|
|
@@ -6049,6 +6136,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6049
6136
|
name: string;
|
|
6050
6137
|
source_component_id: string;
|
|
6051
6138
|
ftype: "simple_bug";
|
|
6139
|
+
source_group_id?: string | undefined;
|
|
6052
6140
|
manufacturer_part_number?: string | undefined;
|
|
6053
6141
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6054
6142
|
display_value?: string | undefined;
|
|
@@ -6064,6 +6152,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6064
6152
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6065
6153
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6066
6154
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6155
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6067
6156
|
}, {
|
|
6068
6157
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6069
6158
|
}>, {
|
|
@@ -6073,6 +6162,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6073
6162
|
name: string;
|
|
6074
6163
|
source_component_id: string;
|
|
6075
6164
|
ftype: "led";
|
|
6165
|
+
source_group_id?: string | undefined;
|
|
6076
6166
|
manufacturer_part_number?: string | undefined;
|
|
6077
6167
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6078
6168
|
display_value?: string | undefined;
|
|
@@ -6083,6 +6173,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6083
6173
|
name: string;
|
|
6084
6174
|
source_component_id: string;
|
|
6085
6175
|
ftype: "led";
|
|
6176
|
+
source_group_id?: string | undefined;
|
|
6086
6177
|
manufacturer_part_number?: string | undefined;
|
|
6087
6178
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6088
6179
|
display_value?: string | undefined;
|
|
@@ -6098,6 +6189,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6098
6189
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6099
6190
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6100
6191
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6192
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6101
6193
|
}, {
|
|
6102
6194
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6103
6195
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6107,6 +6199,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6107
6199
|
source_component_id: string;
|
|
6108
6200
|
voltage: number;
|
|
6109
6201
|
ftype: "simple_power_source";
|
|
6202
|
+
source_group_id?: string | undefined;
|
|
6110
6203
|
manufacturer_part_number?: string | undefined;
|
|
6111
6204
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6112
6205
|
display_value?: string | undefined;
|
|
@@ -6118,6 +6211,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6118
6211
|
source_component_id: string;
|
|
6119
6212
|
voltage: string | number;
|
|
6120
6213
|
ftype: "simple_power_source";
|
|
6214
|
+
source_group_id?: string | undefined;
|
|
6121
6215
|
manufacturer_part_number?: string | undefined;
|
|
6122
6216
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6123
6217
|
display_value?: string | undefined;
|
|
@@ -6133,6 +6227,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6133
6227
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6134
6228
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6135
6229
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6230
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6136
6231
|
}, {
|
|
6137
6232
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6138
6233
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6142,6 +6237,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6142
6237
|
source_component_id: string;
|
|
6143
6238
|
ftype: "simple_battery";
|
|
6144
6239
|
capacity: number;
|
|
6240
|
+
source_group_id?: string | undefined;
|
|
6145
6241
|
manufacturer_part_number?: string | undefined;
|
|
6146
6242
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6147
6243
|
display_value?: string | undefined;
|
|
@@ -6153,6 +6249,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6153
6249
|
source_component_id: string;
|
|
6154
6250
|
ftype: "simple_battery";
|
|
6155
6251
|
capacity: string | number;
|
|
6252
|
+
source_group_id?: string | undefined;
|
|
6156
6253
|
manufacturer_part_number?: string | undefined;
|
|
6157
6254
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6158
6255
|
display_value?: string | undefined;
|
|
@@ -6168,6 +6265,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6168
6265
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6169
6266
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6170
6267
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6268
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6171
6269
|
}, {
|
|
6172
6270
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6173
6271
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6177,6 +6275,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6177
6275
|
source_component_id: string;
|
|
6178
6276
|
ftype: "simple_inductor";
|
|
6179
6277
|
inductance: number;
|
|
6278
|
+
source_group_id?: string | undefined;
|
|
6180
6279
|
manufacturer_part_number?: string | undefined;
|
|
6181
6280
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6182
6281
|
display_value?: string | undefined;
|
|
@@ -6188,6 +6287,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6188
6287
|
source_component_id: string;
|
|
6189
6288
|
ftype: "simple_inductor";
|
|
6190
6289
|
inductance: string | number;
|
|
6290
|
+
source_group_id?: string | undefined;
|
|
6191
6291
|
manufacturer_part_number?: string | undefined;
|
|
6192
6292
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6193
6293
|
display_value?: string | undefined;
|
|
@@ -6203,6 +6303,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6203
6303
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6204
6304
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6205
6305
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6306
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6206
6307
|
}, {
|
|
6207
6308
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
6208
6309
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6210,6 +6311,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6210
6311
|
name: string;
|
|
6211
6312
|
source_component_id: string;
|
|
6212
6313
|
ftype: "simple_push_button";
|
|
6314
|
+
source_group_id?: string | undefined;
|
|
6213
6315
|
manufacturer_part_number?: string | undefined;
|
|
6214
6316
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6215
6317
|
display_value?: string | undefined;
|
|
@@ -6220,6 +6322,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6220
6322
|
name: string;
|
|
6221
6323
|
source_component_id: string;
|
|
6222
6324
|
ftype: "simple_push_button";
|
|
6325
|
+
source_group_id?: string | undefined;
|
|
6223
6326
|
manufacturer_part_number?: string | undefined;
|
|
6224
6327
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6225
6328
|
display_value?: string | undefined;
|
|
@@ -6235,6 +6338,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6235
6338
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6236
6339
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6237
6340
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6341
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6238
6342
|
}, {
|
|
6239
6343
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
6240
6344
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6244,6 +6348,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6244
6348
|
source_component_id: string;
|
|
6245
6349
|
ftype: "simple_potentiometer";
|
|
6246
6350
|
max_resistance: number;
|
|
6351
|
+
source_group_id?: string | undefined;
|
|
6247
6352
|
manufacturer_part_number?: string | undefined;
|
|
6248
6353
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6249
6354
|
display_value?: string | undefined;
|
|
@@ -6255,6 +6360,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6255
6360
|
source_component_id: string;
|
|
6256
6361
|
ftype: "simple_potentiometer";
|
|
6257
6362
|
max_resistance: string | number;
|
|
6363
|
+
source_group_id?: string | undefined;
|
|
6258
6364
|
manufacturer_part_number?: string | undefined;
|
|
6259
6365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6260
6366
|
display_value?: string | undefined;
|
|
@@ -6270,6 +6376,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6270
6376
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6271
6377
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6272
6378
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6379
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6273
6380
|
}, {
|
|
6274
6381
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
6275
6382
|
frequency: z.ZodNumber;
|
|
@@ -6280,6 +6387,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6280
6387
|
source_component_id: string;
|
|
6281
6388
|
ftype: "simple_crystal";
|
|
6282
6389
|
frequency: number;
|
|
6390
|
+
source_group_id?: string | undefined;
|
|
6283
6391
|
manufacturer_part_number?: string | undefined;
|
|
6284
6392
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6285
6393
|
display_value?: string | undefined;
|
|
@@ -6292,6 +6400,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6292
6400
|
source_component_id: string;
|
|
6293
6401
|
ftype: "simple_crystal";
|
|
6294
6402
|
frequency: number;
|
|
6403
|
+
source_group_id?: string | undefined;
|
|
6295
6404
|
manufacturer_part_number?: string | undefined;
|
|
6296
6405
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6297
6406
|
display_value?: string | undefined;
|
|
@@ -6308,6 +6417,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6308
6417
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6309
6418
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6310
6419
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6420
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6311
6421
|
}, {
|
|
6312
6422
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6313
6423
|
pin_count: z.ZodNumber;
|
|
@@ -6319,6 +6429,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6319
6429
|
ftype: "simple_pin_header";
|
|
6320
6430
|
pin_count: number;
|
|
6321
6431
|
gender: "male" | "female";
|
|
6432
|
+
source_group_id?: string | undefined;
|
|
6322
6433
|
manufacturer_part_number?: string | undefined;
|
|
6323
6434
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6324
6435
|
display_value?: string | undefined;
|
|
@@ -6330,6 +6441,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6330
6441
|
source_component_id: string;
|
|
6331
6442
|
ftype: "simple_pin_header";
|
|
6332
6443
|
pin_count: number;
|
|
6444
|
+
source_group_id?: string | undefined;
|
|
6333
6445
|
manufacturer_part_number?: string | undefined;
|
|
6334
6446
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6335
6447
|
display_value?: string | undefined;
|
|
@@ -6346,6 +6458,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6346
6458
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6347
6459
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6348
6460
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6461
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6349
6462
|
}, {
|
|
6350
6463
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6351
6464
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6358,6 +6471,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6358
6471
|
ftype: "simple_resonator";
|
|
6359
6472
|
frequency: number;
|
|
6360
6473
|
load_capacitance: number;
|
|
6474
|
+
source_group_id?: string | undefined;
|
|
6361
6475
|
manufacturer_part_number?: string | undefined;
|
|
6362
6476
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6363
6477
|
display_value?: string | undefined;
|
|
@@ -6371,6 +6485,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6371
6485
|
ftype: "simple_resonator";
|
|
6372
6486
|
frequency: string | number;
|
|
6373
6487
|
load_capacitance: string | number;
|
|
6488
|
+
source_group_id?: string | undefined;
|
|
6374
6489
|
manufacturer_part_number?: string | undefined;
|
|
6375
6490
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6376
6491
|
display_value?: string | undefined;
|
|
@@ -6387,6 +6502,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6387
6502
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6388
6503
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6389
6504
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6505
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6390
6506
|
}, {
|
|
6391
6507
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6392
6508
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6394,6 +6510,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6394
6510
|
name: string;
|
|
6395
6511
|
source_component_id: string;
|
|
6396
6512
|
ftype: "simple_switch";
|
|
6513
|
+
source_group_id?: string | undefined;
|
|
6397
6514
|
manufacturer_part_number?: string | undefined;
|
|
6398
6515
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6399
6516
|
display_value?: string | undefined;
|
|
@@ -6404,6 +6521,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6404
6521
|
name: string;
|
|
6405
6522
|
source_component_id: string;
|
|
6406
6523
|
ftype: "simple_switch";
|
|
6524
|
+
source_group_id?: string | undefined;
|
|
6407
6525
|
manufacturer_part_number?: string | undefined;
|
|
6408
6526
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6409
6527
|
display_value?: string | undefined;
|
|
@@ -6419,6 +6537,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6419
6537
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6420
6538
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6421
6539
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6540
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6422
6541
|
}, {
|
|
6423
6542
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6424
6543
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -6428,6 +6547,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6428
6547
|
source_component_id: string;
|
|
6429
6548
|
ftype: "simple_transistor";
|
|
6430
6549
|
transistor_type: "npn" | "pnp";
|
|
6550
|
+
source_group_id?: string | undefined;
|
|
6431
6551
|
manufacturer_part_number?: string | undefined;
|
|
6432
6552
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6433
6553
|
display_value?: string | undefined;
|
|
@@ -6439,6 +6559,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6439
6559
|
source_component_id: string;
|
|
6440
6560
|
ftype: "simple_transistor";
|
|
6441
6561
|
transistor_type: "npn" | "pnp";
|
|
6562
|
+
source_group_id?: string | undefined;
|
|
6442
6563
|
manufacturer_part_number?: string | undefined;
|
|
6443
6564
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6444
6565
|
display_value?: string | undefined;
|
|
@@ -6454,6 +6575,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6454
6575
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6455
6576
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6456
6577
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6578
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6457
6579
|
}, {
|
|
6458
6580
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
6459
6581
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -6465,6 +6587,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6465
6587
|
ftype: "simple_mosfet";
|
|
6466
6588
|
channel_type: "n" | "p";
|
|
6467
6589
|
mosfet_mode: "enhancement" | "depletion";
|
|
6590
|
+
source_group_id?: string | undefined;
|
|
6468
6591
|
manufacturer_part_number?: string | undefined;
|
|
6469
6592
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6470
6593
|
display_value?: string | undefined;
|
|
@@ -6477,6 +6600,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
6477
6600
|
ftype: "simple_mosfet";
|
|
6478
6601
|
channel_type: "n" | "p";
|
|
6479
6602
|
mosfet_mode: "enhancement" | "depletion";
|
|
6603
|
+
source_group_id?: string | undefined;
|
|
6480
6604
|
manufacturer_part_number?: string | undefined;
|
|
6481
6605
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6482
6606
|
display_value?: string | undefined;
|
|
@@ -6906,6 +7030,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6906
7030
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6907
7031
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6908
7032
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7033
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6909
7034
|
}, {
|
|
6910
7035
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6911
7036
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6916,6 +7041,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6916
7041
|
source_component_id: string;
|
|
6917
7042
|
ftype: "simple_resistor";
|
|
6918
7043
|
resistance: number;
|
|
7044
|
+
source_group_id?: string | undefined;
|
|
6919
7045
|
manufacturer_part_number?: string | undefined;
|
|
6920
7046
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6921
7047
|
display_value?: string | undefined;
|
|
@@ -6928,6 +7054,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6928
7054
|
source_component_id: string;
|
|
6929
7055
|
ftype: "simple_resistor";
|
|
6930
7056
|
resistance: string | number;
|
|
7057
|
+
source_group_id?: string | undefined;
|
|
6931
7058
|
manufacturer_part_number?: string | undefined;
|
|
6932
7059
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6933
7060
|
display_value?: string | undefined;
|
|
@@ -6944,6 +7071,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6944
7071
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6945
7072
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6946
7073
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7074
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6947
7075
|
}, {
|
|
6948
7076
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6949
7077
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6956,6 +7084,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6956
7084
|
source_component_id: string;
|
|
6957
7085
|
ftype: "simple_capacitor";
|
|
6958
7086
|
capacitance: number;
|
|
7087
|
+
source_group_id?: string | undefined;
|
|
6959
7088
|
manufacturer_part_number?: string | undefined;
|
|
6960
7089
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6961
7090
|
display_value?: string | undefined;
|
|
@@ -6970,6 +7099,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6970
7099
|
source_component_id: string;
|
|
6971
7100
|
ftype: "simple_capacitor";
|
|
6972
7101
|
capacitance: string | number;
|
|
7102
|
+
source_group_id?: string | undefined;
|
|
6973
7103
|
manufacturer_part_number?: string | undefined;
|
|
6974
7104
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6975
7105
|
display_value?: string | undefined;
|
|
@@ -6988,6 +7118,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6988
7118
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6989
7119
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6990
7120
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7121
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
6991
7122
|
}, {
|
|
6992
7123
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6993
7124
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6995,6 +7126,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6995
7126
|
name: string;
|
|
6996
7127
|
source_component_id: string;
|
|
6997
7128
|
ftype: "simple_diode";
|
|
7129
|
+
source_group_id?: string | undefined;
|
|
6998
7130
|
manufacturer_part_number?: string | undefined;
|
|
6999
7131
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7000
7132
|
display_value?: string | undefined;
|
|
@@ -7005,6 +7137,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7005
7137
|
name: string;
|
|
7006
7138
|
source_component_id: string;
|
|
7007
7139
|
ftype: "simple_diode";
|
|
7140
|
+
source_group_id?: string | undefined;
|
|
7008
7141
|
manufacturer_part_number?: string | undefined;
|
|
7009
7142
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7010
7143
|
display_value?: string | undefined;
|
|
@@ -7020,6 +7153,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7020
7153
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7021
7154
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7022
7155
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7156
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7023
7157
|
}, {
|
|
7024
7158
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
7025
7159
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7027,6 +7161,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7027
7161
|
name: string;
|
|
7028
7162
|
source_component_id: string;
|
|
7029
7163
|
ftype: "simple_ground";
|
|
7164
|
+
source_group_id?: string | undefined;
|
|
7030
7165
|
manufacturer_part_number?: string | undefined;
|
|
7031
7166
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7032
7167
|
display_value?: string | undefined;
|
|
@@ -7037,6 +7172,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7037
7172
|
name: string;
|
|
7038
7173
|
source_component_id: string;
|
|
7039
7174
|
ftype: "simple_ground";
|
|
7175
|
+
source_group_id?: string | undefined;
|
|
7040
7176
|
manufacturer_part_number?: string | undefined;
|
|
7041
7177
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7042
7178
|
display_value?: string | undefined;
|
|
@@ -7052,6 +7188,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7052
7188
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7053
7189
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7054
7190
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7191
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7055
7192
|
}, {
|
|
7056
7193
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
7057
7194
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7059,6 +7196,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7059
7196
|
name: string;
|
|
7060
7197
|
source_component_id: string;
|
|
7061
7198
|
ftype: "simple_chip";
|
|
7199
|
+
source_group_id?: string | undefined;
|
|
7062
7200
|
manufacturer_part_number?: string | undefined;
|
|
7063
7201
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7064
7202
|
display_value?: string | undefined;
|
|
@@ -7069,6 +7207,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7069
7207
|
name: string;
|
|
7070
7208
|
source_component_id: string;
|
|
7071
7209
|
ftype: "simple_chip";
|
|
7210
|
+
source_group_id?: string | undefined;
|
|
7072
7211
|
manufacturer_part_number?: string | undefined;
|
|
7073
7212
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7074
7213
|
display_value?: string | undefined;
|
|
@@ -7084,6 +7223,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7084
7223
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7085
7224
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7086
7225
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7226
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7087
7227
|
}, {
|
|
7088
7228
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
7089
7229
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7091,6 +7231,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7091
7231
|
name: string;
|
|
7092
7232
|
source_component_id: string;
|
|
7093
7233
|
ftype: "simple_bug";
|
|
7234
|
+
source_group_id?: string | undefined;
|
|
7094
7235
|
manufacturer_part_number?: string | undefined;
|
|
7095
7236
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7096
7237
|
display_value?: string | undefined;
|
|
@@ -7101,6 +7242,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7101
7242
|
name: string;
|
|
7102
7243
|
source_component_id: string;
|
|
7103
7244
|
ftype: "simple_bug";
|
|
7245
|
+
source_group_id?: string | undefined;
|
|
7104
7246
|
manufacturer_part_number?: string | undefined;
|
|
7105
7247
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7106
7248
|
display_value?: string | undefined;
|
|
@@ -7116,6 +7258,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7116
7258
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7117
7259
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7118
7260
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7261
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7119
7262
|
}, {
|
|
7120
7263
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7121
7264
|
}>, {
|
|
@@ -7125,6 +7268,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7125
7268
|
name: string;
|
|
7126
7269
|
source_component_id: string;
|
|
7127
7270
|
ftype: "led";
|
|
7271
|
+
source_group_id?: string | undefined;
|
|
7128
7272
|
manufacturer_part_number?: string | undefined;
|
|
7129
7273
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7130
7274
|
display_value?: string | undefined;
|
|
@@ -7135,6 +7279,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7135
7279
|
name: string;
|
|
7136
7280
|
source_component_id: string;
|
|
7137
7281
|
ftype: "led";
|
|
7282
|
+
source_group_id?: string | undefined;
|
|
7138
7283
|
manufacturer_part_number?: string | undefined;
|
|
7139
7284
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7140
7285
|
display_value?: string | undefined;
|
|
@@ -7150,6 +7295,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7150
7295
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7151
7296
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7152
7297
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7298
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7153
7299
|
}, {
|
|
7154
7300
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7155
7301
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7159,6 +7305,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7159
7305
|
source_component_id: string;
|
|
7160
7306
|
voltage: number;
|
|
7161
7307
|
ftype: "simple_power_source";
|
|
7308
|
+
source_group_id?: string | undefined;
|
|
7162
7309
|
manufacturer_part_number?: string | undefined;
|
|
7163
7310
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7164
7311
|
display_value?: string | undefined;
|
|
@@ -7170,6 +7317,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7170
7317
|
source_component_id: string;
|
|
7171
7318
|
voltage: string | number;
|
|
7172
7319
|
ftype: "simple_power_source";
|
|
7320
|
+
source_group_id?: string | undefined;
|
|
7173
7321
|
manufacturer_part_number?: string | undefined;
|
|
7174
7322
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7175
7323
|
display_value?: string | undefined;
|
|
@@ -7185,6 +7333,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7185
7333
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7186
7334
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7187
7335
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7336
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7188
7337
|
}, {
|
|
7189
7338
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
7190
7339
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -7194,6 +7343,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7194
7343
|
source_component_id: string;
|
|
7195
7344
|
ftype: "simple_battery";
|
|
7196
7345
|
capacity: number;
|
|
7346
|
+
source_group_id?: string | undefined;
|
|
7197
7347
|
manufacturer_part_number?: string | undefined;
|
|
7198
7348
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7199
7349
|
display_value?: string | undefined;
|
|
@@ -7205,6 +7355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7205
7355
|
source_component_id: string;
|
|
7206
7356
|
ftype: "simple_battery";
|
|
7207
7357
|
capacity: string | number;
|
|
7358
|
+
source_group_id?: string | undefined;
|
|
7208
7359
|
manufacturer_part_number?: string | undefined;
|
|
7209
7360
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7210
7361
|
display_value?: string | undefined;
|
|
@@ -7220,6 +7371,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7220
7371
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7221
7372
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7222
7373
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7374
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7223
7375
|
}, {
|
|
7224
7376
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
7225
7377
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7229,6 +7381,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7229
7381
|
source_component_id: string;
|
|
7230
7382
|
ftype: "simple_inductor";
|
|
7231
7383
|
inductance: number;
|
|
7384
|
+
source_group_id?: string | undefined;
|
|
7232
7385
|
manufacturer_part_number?: string | undefined;
|
|
7233
7386
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7234
7387
|
display_value?: string | undefined;
|
|
@@ -7240,6 +7393,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7240
7393
|
source_component_id: string;
|
|
7241
7394
|
ftype: "simple_inductor";
|
|
7242
7395
|
inductance: string | number;
|
|
7396
|
+
source_group_id?: string | undefined;
|
|
7243
7397
|
manufacturer_part_number?: string | undefined;
|
|
7244
7398
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7245
7399
|
display_value?: string | undefined;
|
|
@@ -7255,6 +7409,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7255
7409
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7256
7410
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7257
7411
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7412
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7258
7413
|
}, {
|
|
7259
7414
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7260
7415
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7262,6 +7417,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7262
7417
|
name: string;
|
|
7263
7418
|
source_component_id: string;
|
|
7264
7419
|
ftype: "simple_push_button";
|
|
7420
|
+
source_group_id?: string | undefined;
|
|
7265
7421
|
manufacturer_part_number?: string | undefined;
|
|
7266
7422
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7267
7423
|
display_value?: string | undefined;
|
|
@@ -7272,6 +7428,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7272
7428
|
name: string;
|
|
7273
7429
|
source_component_id: string;
|
|
7274
7430
|
ftype: "simple_push_button";
|
|
7431
|
+
source_group_id?: string | undefined;
|
|
7275
7432
|
manufacturer_part_number?: string | undefined;
|
|
7276
7433
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7277
7434
|
display_value?: string | undefined;
|
|
@@ -7287,6 +7444,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7287
7444
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7288
7445
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7289
7446
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7447
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7290
7448
|
}, {
|
|
7291
7449
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7292
7450
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7296,6 +7454,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7296
7454
|
source_component_id: string;
|
|
7297
7455
|
ftype: "simple_potentiometer";
|
|
7298
7456
|
max_resistance: number;
|
|
7457
|
+
source_group_id?: string | undefined;
|
|
7299
7458
|
manufacturer_part_number?: string | undefined;
|
|
7300
7459
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7301
7460
|
display_value?: string | undefined;
|
|
@@ -7307,6 +7466,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7307
7466
|
source_component_id: string;
|
|
7308
7467
|
ftype: "simple_potentiometer";
|
|
7309
7468
|
max_resistance: string | number;
|
|
7469
|
+
source_group_id?: string | undefined;
|
|
7310
7470
|
manufacturer_part_number?: string | undefined;
|
|
7311
7471
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7312
7472
|
display_value?: string | undefined;
|
|
@@ -7322,6 +7482,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7322
7482
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7323
7483
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7324
7484
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7485
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7325
7486
|
}, {
|
|
7326
7487
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
7327
7488
|
frequency: z.ZodNumber;
|
|
@@ -7332,6 +7493,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7332
7493
|
source_component_id: string;
|
|
7333
7494
|
ftype: "simple_crystal";
|
|
7334
7495
|
frequency: number;
|
|
7496
|
+
source_group_id?: string | undefined;
|
|
7335
7497
|
manufacturer_part_number?: string | undefined;
|
|
7336
7498
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7337
7499
|
display_value?: string | undefined;
|
|
@@ -7344,6 +7506,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7344
7506
|
source_component_id: string;
|
|
7345
7507
|
ftype: "simple_crystal";
|
|
7346
7508
|
frequency: number;
|
|
7509
|
+
source_group_id?: string | undefined;
|
|
7347
7510
|
manufacturer_part_number?: string | undefined;
|
|
7348
7511
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7349
7512
|
display_value?: string | undefined;
|
|
@@ -7360,6 +7523,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7360
7523
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7361
7524
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7362
7525
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7526
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7363
7527
|
}, {
|
|
7364
7528
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
7365
7529
|
pin_count: z.ZodNumber;
|
|
@@ -7371,6 +7535,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7371
7535
|
ftype: "simple_pin_header";
|
|
7372
7536
|
pin_count: number;
|
|
7373
7537
|
gender: "male" | "female";
|
|
7538
|
+
source_group_id?: string | undefined;
|
|
7374
7539
|
manufacturer_part_number?: string | undefined;
|
|
7375
7540
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7376
7541
|
display_value?: string | undefined;
|
|
@@ -7382,6 +7547,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7382
7547
|
source_component_id: string;
|
|
7383
7548
|
ftype: "simple_pin_header";
|
|
7384
7549
|
pin_count: number;
|
|
7550
|
+
source_group_id?: string | undefined;
|
|
7385
7551
|
manufacturer_part_number?: string | undefined;
|
|
7386
7552
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7387
7553
|
display_value?: string | undefined;
|
|
@@ -7398,6 +7564,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7398
7564
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7399
7565
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7400
7566
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7567
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7401
7568
|
}, {
|
|
7402
7569
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
7403
7570
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7410,6 +7577,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7410
7577
|
ftype: "simple_resonator";
|
|
7411
7578
|
frequency: number;
|
|
7412
7579
|
load_capacitance: number;
|
|
7580
|
+
source_group_id?: string | undefined;
|
|
7413
7581
|
manufacturer_part_number?: string | undefined;
|
|
7414
7582
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7415
7583
|
display_value?: string | undefined;
|
|
@@ -7423,6 +7591,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7423
7591
|
ftype: "simple_resonator";
|
|
7424
7592
|
frequency: string | number;
|
|
7425
7593
|
load_capacitance: string | number;
|
|
7594
|
+
source_group_id?: string | undefined;
|
|
7426
7595
|
manufacturer_part_number?: string | undefined;
|
|
7427
7596
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7428
7597
|
display_value?: string | undefined;
|
|
@@ -7439,6 +7608,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7439
7608
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7440
7609
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7441
7610
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7611
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7442
7612
|
}, {
|
|
7443
7613
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
7444
7614
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7446,6 +7616,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7446
7616
|
name: string;
|
|
7447
7617
|
source_component_id: string;
|
|
7448
7618
|
ftype: "simple_switch";
|
|
7619
|
+
source_group_id?: string | undefined;
|
|
7449
7620
|
manufacturer_part_number?: string | undefined;
|
|
7450
7621
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7451
7622
|
display_value?: string | undefined;
|
|
@@ -7456,6 +7627,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7456
7627
|
name: string;
|
|
7457
7628
|
source_component_id: string;
|
|
7458
7629
|
ftype: "simple_switch";
|
|
7630
|
+
source_group_id?: string | undefined;
|
|
7459
7631
|
manufacturer_part_number?: string | undefined;
|
|
7460
7632
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7461
7633
|
display_value?: string | undefined;
|
|
@@ -7471,6 +7643,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7471
7643
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7472
7644
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7473
7645
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7646
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7474
7647
|
}, {
|
|
7475
7648
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
7476
7649
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -7480,6 +7653,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7480
7653
|
source_component_id: string;
|
|
7481
7654
|
ftype: "simple_transistor";
|
|
7482
7655
|
transistor_type: "npn" | "pnp";
|
|
7656
|
+
source_group_id?: string | undefined;
|
|
7483
7657
|
manufacturer_part_number?: string | undefined;
|
|
7484
7658
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7485
7659
|
display_value?: string | undefined;
|
|
@@ -7491,6 +7665,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7491
7665
|
source_component_id: string;
|
|
7492
7666
|
ftype: "simple_transistor";
|
|
7493
7667
|
transistor_type: "npn" | "pnp";
|
|
7668
|
+
source_group_id?: string | undefined;
|
|
7494
7669
|
manufacturer_part_number?: string | undefined;
|
|
7495
7670
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7496
7671
|
display_value?: string | undefined;
|
|
@@ -7506,6 +7681,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7506
7681
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7507
7682
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7508
7683
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7684
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7509
7685
|
}, {
|
|
7510
7686
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
7511
7687
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -7517,6 +7693,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7517
7693
|
ftype: "simple_mosfet";
|
|
7518
7694
|
channel_type: "n" | "p";
|
|
7519
7695
|
mosfet_mode: "enhancement" | "depletion";
|
|
7696
|
+
source_group_id?: string | undefined;
|
|
7520
7697
|
manufacturer_part_number?: string | undefined;
|
|
7521
7698
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7522
7699
|
display_value?: string | undefined;
|
|
@@ -7529,6 +7706,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7529
7706
|
ftype: "simple_mosfet";
|
|
7530
7707
|
channel_type: "n" | "p";
|
|
7531
7708
|
mosfet_mode: "enhancement" | "depletion";
|
|
7709
|
+
source_group_id?: string | undefined;
|
|
7532
7710
|
manufacturer_part_number?: string | undefined;
|
|
7533
7711
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7534
7712
|
display_value?: string | undefined;
|
|
@@ -7637,6 +7815,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7637
7815
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7638
7816
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7639
7817
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7818
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7640
7819
|
}, {
|
|
7641
7820
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7642
7821
|
}>, {
|
|
@@ -7646,6 +7825,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7646
7825
|
name: string;
|
|
7647
7826
|
source_component_id: string;
|
|
7648
7827
|
ftype: "led";
|
|
7828
|
+
source_group_id?: string | undefined;
|
|
7649
7829
|
manufacturer_part_number?: string | undefined;
|
|
7650
7830
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7651
7831
|
display_value?: string | undefined;
|
|
@@ -7656,6 +7836,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7656
7836
|
name: string;
|
|
7657
7837
|
source_component_id: string;
|
|
7658
7838
|
ftype: "led";
|
|
7839
|
+
source_group_id?: string | undefined;
|
|
7659
7840
|
manufacturer_part_number?: string | undefined;
|
|
7660
7841
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7661
7842
|
display_value?: string | undefined;
|
|
@@ -7725,6 +7906,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7725
7906
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7726
7907
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7727
7908
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7909
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7728
7910
|
}, {
|
|
7729
7911
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
7730
7912
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7732,6 +7914,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7732
7914
|
name: string;
|
|
7733
7915
|
source_component_id: string;
|
|
7734
7916
|
ftype: "simple_bug";
|
|
7917
|
+
source_group_id?: string | undefined;
|
|
7735
7918
|
manufacturer_part_number?: string | undefined;
|
|
7736
7919
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7737
7920
|
display_value?: string | undefined;
|
|
@@ -7742,6 +7925,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7742
7925
|
name: string;
|
|
7743
7926
|
source_component_id: string;
|
|
7744
7927
|
ftype: "simple_bug";
|
|
7928
|
+
source_group_id?: string | undefined;
|
|
7745
7929
|
manufacturer_part_number?: string | undefined;
|
|
7746
7930
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7747
7931
|
display_value?: string | undefined;
|
|
@@ -7757,6 +7941,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7757
7941
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7758
7942
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7759
7943
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7944
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7760
7945
|
}, {
|
|
7761
7946
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
7762
7947
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7764,6 +7949,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7764
7949
|
name: string;
|
|
7765
7950
|
source_component_id: string;
|
|
7766
7951
|
ftype: "simple_chip";
|
|
7952
|
+
source_group_id?: string | undefined;
|
|
7767
7953
|
manufacturer_part_number?: string | undefined;
|
|
7768
7954
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7769
7955
|
display_value?: string | undefined;
|
|
@@ -7774,6 +7960,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7774
7960
|
name: string;
|
|
7775
7961
|
source_component_id: string;
|
|
7776
7962
|
ftype: "simple_chip";
|
|
7963
|
+
source_group_id?: string | undefined;
|
|
7777
7964
|
manufacturer_part_number?: string | undefined;
|
|
7778
7965
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7779
7966
|
display_value?: string | undefined;
|
|
@@ -7789,6 +7976,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7789
7976
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7790
7977
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7791
7978
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7979
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7792
7980
|
}, {
|
|
7793
7981
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
7794
7982
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7801,6 +7989,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7801
7989
|
source_component_id: string;
|
|
7802
7990
|
ftype: "simple_capacitor";
|
|
7803
7991
|
capacitance: number;
|
|
7992
|
+
source_group_id?: string | undefined;
|
|
7804
7993
|
manufacturer_part_number?: string | undefined;
|
|
7805
7994
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7806
7995
|
display_value?: string | undefined;
|
|
@@ -7815,6 +8004,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7815
8004
|
source_component_id: string;
|
|
7816
8005
|
ftype: "simple_capacitor";
|
|
7817
8006
|
capacitance: string | number;
|
|
8007
|
+
source_group_id?: string | undefined;
|
|
7818
8008
|
manufacturer_part_number?: string | undefined;
|
|
7819
8009
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7820
8010
|
display_value?: string | undefined;
|
|
@@ -7833,6 +8023,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7833
8023
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7834
8024
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7835
8025
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8026
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7836
8027
|
}, {
|
|
7837
8028
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7838
8029
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7840,6 +8031,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7840
8031
|
name: string;
|
|
7841
8032
|
source_component_id: string;
|
|
7842
8033
|
ftype: "simple_diode";
|
|
8034
|
+
source_group_id?: string | undefined;
|
|
7843
8035
|
manufacturer_part_number?: string | undefined;
|
|
7844
8036
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7845
8037
|
display_value?: string | undefined;
|
|
@@ -7850,6 +8042,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7850
8042
|
name: string;
|
|
7851
8043
|
source_component_id: string;
|
|
7852
8044
|
ftype: "simple_diode";
|
|
8045
|
+
source_group_id?: string | undefined;
|
|
7853
8046
|
manufacturer_part_number?: string | undefined;
|
|
7854
8047
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7855
8048
|
display_value?: string | undefined;
|
|
@@ -7865,6 +8058,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7865
8058
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7866
8059
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7867
8060
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8061
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7868
8062
|
}, {
|
|
7869
8063
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
7870
8064
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7875,6 +8069,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7875
8069
|
source_component_id: string;
|
|
7876
8070
|
ftype: "simple_resistor";
|
|
7877
8071
|
resistance: number;
|
|
8072
|
+
source_group_id?: string | undefined;
|
|
7878
8073
|
manufacturer_part_number?: string | undefined;
|
|
7879
8074
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7880
8075
|
display_value?: string | undefined;
|
|
@@ -7887,6 +8082,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7887
8082
|
source_component_id: string;
|
|
7888
8083
|
ftype: "simple_resistor";
|
|
7889
8084
|
resistance: string | number;
|
|
8085
|
+
source_group_id?: string | undefined;
|
|
7890
8086
|
manufacturer_part_number?: string | undefined;
|
|
7891
8087
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7892
8088
|
display_value?: string | undefined;
|
|
@@ -7903,6 +8099,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7903
8099
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7904
8100
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7905
8101
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8102
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7906
8103
|
}, {
|
|
7907
8104
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7908
8105
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7912,6 +8109,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7912
8109
|
source_component_id: string;
|
|
7913
8110
|
voltage: number;
|
|
7914
8111
|
ftype: "simple_power_source";
|
|
8112
|
+
source_group_id?: string | undefined;
|
|
7915
8113
|
manufacturer_part_number?: string | undefined;
|
|
7916
8114
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7917
8115
|
display_value?: string | undefined;
|
|
@@ -7923,6 +8121,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7923
8121
|
source_component_id: string;
|
|
7924
8122
|
voltage: string | number;
|
|
7925
8123
|
ftype: "simple_power_source";
|
|
8124
|
+
source_group_id?: string | undefined;
|
|
7926
8125
|
manufacturer_part_number?: string | undefined;
|
|
7927
8126
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7928
8127
|
display_value?: string | undefined;
|
|
@@ -7938,6 +8137,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7938
8137
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7939
8138
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7940
8139
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8140
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7941
8141
|
}, {
|
|
7942
8142
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
7943
8143
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -7947,6 +8147,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7947
8147
|
source_component_id: string;
|
|
7948
8148
|
ftype: "simple_battery";
|
|
7949
8149
|
capacity: number;
|
|
8150
|
+
source_group_id?: string | undefined;
|
|
7950
8151
|
manufacturer_part_number?: string | undefined;
|
|
7951
8152
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7952
8153
|
display_value?: string | undefined;
|
|
@@ -7958,6 +8159,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7958
8159
|
source_component_id: string;
|
|
7959
8160
|
ftype: "simple_battery";
|
|
7960
8161
|
capacity: string | number;
|
|
8162
|
+
source_group_id?: string | undefined;
|
|
7961
8163
|
manufacturer_part_number?: string | undefined;
|
|
7962
8164
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7963
8165
|
display_value?: string | undefined;
|
|
@@ -7973,6 +8175,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7973
8175
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7974
8176
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7975
8177
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8178
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
7976
8179
|
}, {
|
|
7977
8180
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
7978
8181
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7982,6 +8185,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7982
8185
|
source_component_id: string;
|
|
7983
8186
|
ftype: "simple_inductor";
|
|
7984
8187
|
inductance: number;
|
|
8188
|
+
source_group_id?: string | undefined;
|
|
7985
8189
|
manufacturer_part_number?: string | undefined;
|
|
7986
8190
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7987
8191
|
display_value?: string | undefined;
|
|
@@ -7993,6 +8197,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7993
8197
|
source_component_id: string;
|
|
7994
8198
|
ftype: "simple_inductor";
|
|
7995
8199
|
inductance: string | number;
|
|
8200
|
+
source_group_id?: string | undefined;
|
|
7996
8201
|
manufacturer_part_number?: string | undefined;
|
|
7997
8202
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7998
8203
|
display_value?: string | undefined;
|
|
@@ -8008,6 +8213,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8008
8213
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8009
8214
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8010
8215
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8216
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8011
8217
|
}, {
|
|
8012
8218
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
8013
8219
|
pin_count: z.ZodNumber;
|
|
@@ -8019,6 +8225,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8019
8225
|
ftype: "simple_pin_header";
|
|
8020
8226
|
pin_count: number;
|
|
8021
8227
|
gender: "male" | "female";
|
|
8228
|
+
source_group_id?: string | undefined;
|
|
8022
8229
|
manufacturer_part_number?: string | undefined;
|
|
8023
8230
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8024
8231
|
display_value?: string | undefined;
|
|
@@ -8030,6 +8237,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8030
8237
|
source_component_id: string;
|
|
8031
8238
|
ftype: "simple_pin_header";
|
|
8032
8239
|
pin_count: number;
|
|
8240
|
+
source_group_id?: string | undefined;
|
|
8033
8241
|
manufacturer_part_number?: string | undefined;
|
|
8034
8242
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8035
8243
|
display_value?: string | undefined;
|
|
@@ -8046,6 +8254,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8046
8254
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8047
8255
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8048
8256
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8257
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8049
8258
|
}, {
|
|
8050
8259
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
8051
8260
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -8058,6 +8267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8058
8267
|
ftype: "simple_resonator";
|
|
8059
8268
|
frequency: number;
|
|
8060
8269
|
load_capacitance: number;
|
|
8270
|
+
source_group_id?: string | undefined;
|
|
8061
8271
|
manufacturer_part_number?: string | undefined;
|
|
8062
8272
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8063
8273
|
display_value?: string | undefined;
|
|
@@ -8071,6 +8281,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8071
8281
|
ftype: "simple_resonator";
|
|
8072
8282
|
frequency: string | number;
|
|
8073
8283
|
load_capacitance: string | number;
|
|
8284
|
+
source_group_id?: string | undefined;
|
|
8074
8285
|
manufacturer_part_number?: string | undefined;
|
|
8075
8286
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8076
8287
|
display_value?: string | undefined;
|
|
@@ -8087,6 +8298,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8087
8298
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8088
8299
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8089
8300
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8301
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8090
8302
|
}, {
|
|
8091
8303
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
8092
8304
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8094,6 +8306,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8094
8306
|
name: string;
|
|
8095
8307
|
source_component_id: string;
|
|
8096
8308
|
ftype: "simple_switch";
|
|
8309
|
+
source_group_id?: string | undefined;
|
|
8097
8310
|
manufacturer_part_number?: string | undefined;
|
|
8098
8311
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8099
8312
|
display_value?: string | undefined;
|
|
@@ -8104,6 +8317,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8104
8317
|
name: string;
|
|
8105
8318
|
source_component_id: string;
|
|
8106
8319
|
ftype: "simple_switch";
|
|
8320
|
+
source_group_id?: string | undefined;
|
|
8107
8321
|
manufacturer_part_number?: string | undefined;
|
|
8108
8322
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8109
8323
|
display_value?: string | undefined;
|
|
@@ -8119,6 +8333,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8119
8333
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8120
8334
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8121
8335
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8336
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8122
8337
|
}, {
|
|
8123
8338
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
8124
8339
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -8128,6 +8343,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8128
8343
|
source_component_id: string;
|
|
8129
8344
|
ftype: "simple_transistor";
|
|
8130
8345
|
transistor_type: "npn" | "pnp";
|
|
8346
|
+
source_group_id?: string | undefined;
|
|
8131
8347
|
manufacturer_part_number?: string | undefined;
|
|
8132
8348
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8133
8349
|
display_value?: string | undefined;
|
|
@@ -8139,6 +8355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8139
8355
|
source_component_id: string;
|
|
8140
8356
|
ftype: "simple_transistor";
|
|
8141
8357
|
transistor_type: "npn" | "pnp";
|
|
8358
|
+
source_group_id?: string | undefined;
|
|
8142
8359
|
manufacturer_part_number?: string | undefined;
|
|
8143
8360
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8144
8361
|
display_value?: string | undefined;
|
|
@@ -8154,6 +8371,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8154
8371
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8155
8372
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8156
8373
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8374
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8157
8375
|
}, {
|
|
8158
8376
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
8159
8377
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -8165,6 +8383,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8165
8383
|
ftype: "simple_mosfet";
|
|
8166
8384
|
channel_type: "n" | "p";
|
|
8167
8385
|
mosfet_mode: "enhancement" | "depletion";
|
|
8386
|
+
source_group_id?: string | undefined;
|
|
8168
8387
|
manufacturer_part_number?: string | undefined;
|
|
8169
8388
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8170
8389
|
display_value?: string | undefined;
|
|
@@ -8177,6 +8396,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8177
8396
|
ftype: "simple_mosfet";
|
|
8178
8397
|
channel_type: "n" | "p";
|
|
8179
8398
|
mosfet_mode: "enhancement" | "depletion";
|
|
8399
|
+
source_group_id?: string | undefined;
|
|
8180
8400
|
manufacturer_part_number?: string | undefined;
|
|
8181
8401
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8182
8402
|
display_value?: string | undefined;
|
|
@@ -8192,6 +8412,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8192
8412
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8193
8413
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8194
8414
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8415
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8195
8416
|
}, {
|
|
8196
8417
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
8197
8418
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -8201,6 +8422,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8201
8422
|
source_component_id: string;
|
|
8202
8423
|
ftype: "simple_potentiometer";
|
|
8203
8424
|
max_resistance: number;
|
|
8425
|
+
source_group_id?: string | undefined;
|
|
8204
8426
|
manufacturer_part_number?: string | undefined;
|
|
8205
8427
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8206
8428
|
display_value?: string | undefined;
|
|
@@ -8212,6 +8434,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8212
8434
|
source_component_id: string;
|
|
8213
8435
|
ftype: "simple_potentiometer";
|
|
8214
8436
|
max_resistance: string | number;
|
|
8437
|
+
source_group_id?: string | undefined;
|
|
8215
8438
|
manufacturer_part_number?: string | undefined;
|
|
8216
8439
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8217
8440
|
display_value?: string | undefined;
|
|
@@ -8227,6 +8450,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8227
8450
|
display_value: z.ZodOptional<z.ZodString>;
|
|
8228
8451
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
8229
8452
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
8453
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
8230
8454
|
}, {
|
|
8231
8455
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
8232
8456
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -8234,6 +8458,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8234
8458
|
name: string;
|
|
8235
8459
|
source_component_id: string;
|
|
8236
8460
|
ftype: "simple_push_button";
|
|
8461
|
+
source_group_id?: string | undefined;
|
|
8237
8462
|
manufacturer_part_number?: string | undefined;
|
|
8238
8463
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8239
8464
|
display_value?: string | undefined;
|
|
@@ -8244,6 +8469,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8244
8469
|
name: string;
|
|
8245
8470
|
source_component_id: string;
|
|
8246
8471
|
ftype: "simple_push_button";
|
|
8472
|
+
source_group_id?: string | undefined;
|
|
8247
8473
|
manufacturer_part_number?: string | undefined;
|
|
8248
8474
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8249
8475
|
display_value?: string | undefined;
|
|
@@ -8291,6 +8517,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8291
8517
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8292
8518
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
8293
8519
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
8520
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
8294
8521
|
}, "strip", z.ZodTypeAny, {
|
|
8295
8522
|
type: "pcb_component";
|
|
8296
8523
|
width: number;
|
|
@@ -8304,6 +8531,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8304
8531
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
8305
8532
|
rotation: number;
|
|
8306
8533
|
subcircuit_id?: string | undefined;
|
|
8534
|
+
pcb_group_id?: string | undefined;
|
|
8307
8535
|
}, {
|
|
8308
8536
|
type: "pcb_component";
|
|
8309
8537
|
width: string | number;
|
|
@@ -8319,6 +8547,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8319
8547
|
rotation: string | number;
|
|
8320
8548
|
pcb_component_id?: string | undefined;
|
|
8321
8549
|
subcircuit_id?: string | undefined;
|
|
8550
|
+
pcb_group_id?: string | undefined;
|
|
8322
8551
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
8323
8552
|
type: z.ZodLiteral<"pcb_hole">;
|
|
8324
8553
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -8344,8 +8573,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8344
8573
|
hole_shape: "circle" | "square";
|
|
8345
8574
|
hole_diameter: number;
|
|
8346
8575
|
subcircuit_id?: string | undefined;
|
|
8347
|
-
pcb_hole_id?: string | undefined;
|
|
8348
8576
|
pcb_group_id?: string | undefined;
|
|
8577
|
+
pcb_hole_id?: string | undefined;
|
|
8349
8578
|
}>, z.ZodObject<{
|
|
8350
8579
|
type: z.ZodLiteral<"pcb_hole">;
|
|
8351
8580
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -8374,8 +8603,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
8374
8603
|
hole_width: number;
|
|
8375
8604
|
hole_height: number;
|
|
8376
8605
|
subcircuit_id?: string | undefined;
|
|
8377
|
-
pcb_hole_id?: string | undefined;
|
|
8378
8606
|
pcb_group_id?: string | undefined;
|
|
8607
|
+
pcb_hole_id?: string | undefined;
|
|
8379
8608
|
}>]>, z.ZodObject<{
|
|
8380
8609
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
8381
8610
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -10515,6 +10744,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10515
10744
|
}>]>>;
|
|
10516
10745
|
port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
10517
10746
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
10747
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
10748
|
+
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
10518
10749
|
}, "strip", z.ZodTypeAny, {
|
|
10519
10750
|
type: "schematic_component";
|
|
10520
10751
|
source_component_id: string;
|
|
@@ -10527,6 +10758,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10527
10758
|
width: number;
|
|
10528
10759
|
height: number;
|
|
10529
10760
|
};
|
|
10761
|
+
subcircuit_id?: string | undefined;
|
|
10530
10762
|
pin_spacing?: number | undefined;
|
|
10531
10763
|
pin_styles?: Record<string, {
|
|
10532
10764
|
left_margin?: number | undefined;
|
|
@@ -10561,6 +10793,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10561
10793
|
} | undefined;
|
|
10562
10794
|
port_labels?: Record<string, string> | undefined;
|
|
10563
10795
|
symbol_display_value?: string | undefined;
|
|
10796
|
+
schematic_group_id?: string | undefined;
|
|
10564
10797
|
}, {
|
|
10565
10798
|
type: "schematic_component";
|
|
10566
10799
|
source_component_id: string;
|
|
@@ -10573,6 +10806,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10573
10806
|
width: number;
|
|
10574
10807
|
height: number;
|
|
10575
10808
|
};
|
|
10809
|
+
subcircuit_id?: string | undefined;
|
|
10576
10810
|
pin_spacing?: string | number | undefined;
|
|
10577
10811
|
pin_styles?: Record<string, {
|
|
10578
10812
|
left_margin?: string | number | undefined;
|
|
@@ -10607,6 +10841,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10607
10841
|
} | undefined;
|
|
10608
10842
|
port_labels?: Record<string, string> | undefined;
|
|
10609
10843
|
symbol_display_value?: string | undefined;
|
|
10844
|
+
schematic_group_id?: string | undefined;
|
|
10610
10845
|
}>, z.ZodObject<{
|
|
10611
10846
|
type: z.ZodLiteral<"schematic_port">;
|
|
10612
10847
|
schematic_port_id: z.ZodString;
|
|
@@ -11049,8 +11284,8 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11049
11284
|
source_component_id: string;
|
|
11050
11285
|
schematic_component_id: string;
|
|
11051
11286
|
subcircuit_id?: string | undefined;
|
|
11052
|
-
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
11053
11287
|
schematic_group_id?: string | undefined;
|
|
11288
|
+
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
11054
11289
|
}>, z.ZodObject<{
|
|
11055
11290
|
type: z.ZodLiteral<"schematic_group">;
|
|
11056
11291
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -11282,6 +11517,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11282
11517
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11283
11518
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11284
11519
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11520
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11285
11521
|
}, {
|
|
11286
11522
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
11287
11523
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11292,6 +11528,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11292
11528
|
source_component_id: string;
|
|
11293
11529
|
ftype: "simple_resistor";
|
|
11294
11530
|
resistance: number;
|
|
11531
|
+
source_group_id?: string | undefined;
|
|
11295
11532
|
manufacturer_part_number?: string | undefined;
|
|
11296
11533
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11297
11534
|
display_value?: string | undefined;
|
|
@@ -11304,6 +11541,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11304
11541
|
source_component_id: string;
|
|
11305
11542
|
ftype: "simple_resistor";
|
|
11306
11543
|
resistance: string | number;
|
|
11544
|
+
source_group_id?: string | undefined;
|
|
11307
11545
|
manufacturer_part_number?: string | undefined;
|
|
11308
11546
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11309
11547
|
display_value?: string | undefined;
|
|
@@ -11320,6 +11558,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11320
11558
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11321
11559
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11322
11560
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11561
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11323
11562
|
}, {
|
|
11324
11563
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
11325
11564
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11332,6 +11571,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11332
11571
|
source_component_id: string;
|
|
11333
11572
|
ftype: "simple_capacitor";
|
|
11334
11573
|
capacitance: number;
|
|
11574
|
+
source_group_id?: string | undefined;
|
|
11335
11575
|
manufacturer_part_number?: string | undefined;
|
|
11336
11576
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11337
11577
|
display_value?: string | undefined;
|
|
@@ -11346,6 +11586,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11346
11586
|
source_component_id: string;
|
|
11347
11587
|
ftype: "simple_capacitor";
|
|
11348
11588
|
capacitance: string | number;
|
|
11589
|
+
source_group_id?: string | undefined;
|
|
11349
11590
|
manufacturer_part_number?: string | undefined;
|
|
11350
11591
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11351
11592
|
display_value?: string | undefined;
|
|
@@ -11364,6 +11605,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11364
11605
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11365
11606
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11366
11607
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11608
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11367
11609
|
}, {
|
|
11368
11610
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11369
11611
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11371,6 +11613,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11371
11613
|
name: string;
|
|
11372
11614
|
source_component_id: string;
|
|
11373
11615
|
ftype: "simple_diode";
|
|
11616
|
+
source_group_id?: string | undefined;
|
|
11374
11617
|
manufacturer_part_number?: string | undefined;
|
|
11375
11618
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11376
11619
|
display_value?: string | undefined;
|
|
@@ -11381,6 +11624,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11381
11624
|
name: string;
|
|
11382
11625
|
source_component_id: string;
|
|
11383
11626
|
ftype: "simple_diode";
|
|
11627
|
+
source_group_id?: string | undefined;
|
|
11384
11628
|
manufacturer_part_number?: string | undefined;
|
|
11385
11629
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11386
11630
|
display_value?: string | undefined;
|
|
@@ -11396,6 +11640,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11396
11640
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11397
11641
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11398
11642
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11643
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11399
11644
|
}, {
|
|
11400
11645
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
11401
11646
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11403,6 +11648,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11403
11648
|
name: string;
|
|
11404
11649
|
source_component_id: string;
|
|
11405
11650
|
ftype: "simple_ground";
|
|
11651
|
+
source_group_id?: string | undefined;
|
|
11406
11652
|
manufacturer_part_number?: string | undefined;
|
|
11407
11653
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11408
11654
|
display_value?: string | undefined;
|
|
@@ -11413,6 +11659,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11413
11659
|
name: string;
|
|
11414
11660
|
source_component_id: string;
|
|
11415
11661
|
ftype: "simple_ground";
|
|
11662
|
+
source_group_id?: string | undefined;
|
|
11416
11663
|
manufacturer_part_number?: string | undefined;
|
|
11417
11664
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11418
11665
|
display_value?: string | undefined;
|
|
@@ -11428,6 +11675,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11428
11675
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11429
11676
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11430
11677
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11678
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11431
11679
|
}, {
|
|
11432
11680
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
11433
11681
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11435,6 +11683,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11435
11683
|
name: string;
|
|
11436
11684
|
source_component_id: string;
|
|
11437
11685
|
ftype: "simple_chip";
|
|
11686
|
+
source_group_id?: string | undefined;
|
|
11438
11687
|
manufacturer_part_number?: string | undefined;
|
|
11439
11688
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11440
11689
|
display_value?: string | undefined;
|
|
@@ -11445,6 +11694,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11445
11694
|
name: string;
|
|
11446
11695
|
source_component_id: string;
|
|
11447
11696
|
ftype: "simple_chip";
|
|
11697
|
+
source_group_id?: string | undefined;
|
|
11448
11698
|
manufacturer_part_number?: string | undefined;
|
|
11449
11699
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11450
11700
|
display_value?: string | undefined;
|
|
@@ -11460,6 +11710,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11460
11710
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11461
11711
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11462
11712
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11713
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11463
11714
|
}, {
|
|
11464
11715
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
11465
11716
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11467,6 +11718,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11467
11718
|
name: string;
|
|
11468
11719
|
source_component_id: string;
|
|
11469
11720
|
ftype: "simple_bug";
|
|
11721
|
+
source_group_id?: string | undefined;
|
|
11470
11722
|
manufacturer_part_number?: string | undefined;
|
|
11471
11723
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11472
11724
|
display_value?: string | undefined;
|
|
@@ -11477,6 +11729,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11477
11729
|
name: string;
|
|
11478
11730
|
source_component_id: string;
|
|
11479
11731
|
ftype: "simple_bug";
|
|
11732
|
+
source_group_id?: string | undefined;
|
|
11480
11733
|
manufacturer_part_number?: string | undefined;
|
|
11481
11734
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11482
11735
|
display_value?: string | undefined;
|
|
@@ -11492,6 +11745,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11492
11745
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11493
11746
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11494
11747
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11748
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11495
11749
|
}, {
|
|
11496
11750
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11497
11751
|
}>, {
|
|
@@ -11501,6 +11755,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11501
11755
|
name: string;
|
|
11502
11756
|
source_component_id: string;
|
|
11503
11757
|
ftype: "led";
|
|
11758
|
+
source_group_id?: string | undefined;
|
|
11504
11759
|
manufacturer_part_number?: string | undefined;
|
|
11505
11760
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11506
11761
|
display_value?: string | undefined;
|
|
@@ -11511,6 +11766,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11511
11766
|
name: string;
|
|
11512
11767
|
source_component_id: string;
|
|
11513
11768
|
ftype: "led";
|
|
11769
|
+
source_group_id?: string | undefined;
|
|
11514
11770
|
manufacturer_part_number?: string | undefined;
|
|
11515
11771
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11516
11772
|
display_value?: string | undefined;
|
|
@@ -11526,6 +11782,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11526
11782
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11527
11783
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11528
11784
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11785
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11529
11786
|
}, {
|
|
11530
11787
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
11531
11788
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11535,6 +11792,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11535
11792
|
source_component_id: string;
|
|
11536
11793
|
voltage: number;
|
|
11537
11794
|
ftype: "simple_power_source";
|
|
11795
|
+
source_group_id?: string | undefined;
|
|
11538
11796
|
manufacturer_part_number?: string | undefined;
|
|
11539
11797
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11540
11798
|
display_value?: string | undefined;
|
|
@@ -11546,6 +11804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11546
11804
|
source_component_id: string;
|
|
11547
11805
|
voltage: string | number;
|
|
11548
11806
|
ftype: "simple_power_source";
|
|
11807
|
+
source_group_id?: string | undefined;
|
|
11549
11808
|
manufacturer_part_number?: string | undefined;
|
|
11550
11809
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11551
11810
|
display_value?: string | undefined;
|
|
@@ -11561,6 +11820,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11561
11820
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11562
11821
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11563
11822
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11823
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11564
11824
|
}, {
|
|
11565
11825
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
11566
11826
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -11570,6 +11830,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11570
11830
|
source_component_id: string;
|
|
11571
11831
|
ftype: "simple_battery";
|
|
11572
11832
|
capacity: number;
|
|
11833
|
+
source_group_id?: string | undefined;
|
|
11573
11834
|
manufacturer_part_number?: string | undefined;
|
|
11574
11835
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11575
11836
|
display_value?: string | undefined;
|
|
@@ -11581,6 +11842,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11581
11842
|
source_component_id: string;
|
|
11582
11843
|
ftype: "simple_battery";
|
|
11583
11844
|
capacity: string | number;
|
|
11845
|
+
source_group_id?: string | undefined;
|
|
11584
11846
|
manufacturer_part_number?: string | undefined;
|
|
11585
11847
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11586
11848
|
display_value?: string | undefined;
|
|
@@ -11596,6 +11858,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11596
11858
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11597
11859
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11598
11860
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11861
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11599
11862
|
}, {
|
|
11600
11863
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
11601
11864
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11605,6 +11868,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11605
11868
|
source_component_id: string;
|
|
11606
11869
|
ftype: "simple_inductor";
|
|
11607
11870
|
inductance: number;
|
|
11871
|
+
source_group_id?: string | undefined;
|
|
11608
11872
|
manufacturer_part_number?: string | undefined;
|
|
11609
11873
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11610
11874
|
display_value?: string | undefined;
|
|
@@ -11616,6 +11880,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11616
11880
|
source_component_id: string;
|
|
11617
11881
|
ftype: "simple_inductor";
|
|
11618
11882
|
inductance: string | number;
|
|
11883
|
+
source_group_id?: string | undefined;
|
|
11619
11884
|
manufacturer_part_number?: string | undefined;
|
|
11620
11885
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11621
11886
|
display_value?: string | undefined;
|
|
@@ -11631,6 +11896,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11631
11896
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11632
11897
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11633
11898
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11899
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11634
11900
|
}, {
|
|
11635
11901
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
11636
11902
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11638,6 +11904,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11638
11904
|
name: string;
|
|
11639
11905
|
source_component_id: string;
|
|
11640
11906
|
ftype: "simple_push_button";
|
|
11907
|
+
source_group_id?: string | undefined;
|
|
11641
11908
|
manufacturer_part_number?: string | undefined;
|
|
11642
11909
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11643
11910
|
display_value?: string | undefined;
|
|
@@ -11648,6 +11915,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11648
11915
|
name: string;
|
|
11649
11916
|
source_component_id: string;
|
|
11650
11917
|
ftype: "simple_push_button";
|
|
11918
|
+
source_group_id?: string | undefined;
|
|
11651
11919
|
manufacturer_part_number?: string | undefined;
|
|
11652
11920
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11653
11921
|
display_value?: string | undefined;
|
|
@@ -11663,6 +11931,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11663
11931
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11664
11932
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11665
11933
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11934
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11666
11935
|
}, {
|
|
11667
11936
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
11668
11937
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11672,6 +11941,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11672
11941
|
source_component_id: string;
|
|
11673
11942
|
ftype: "simple_potentiometer";
|
|
11674
11943
|
max_resistance: number;
|
|
11944
|
+
source_group_id?: string | undefined;
|
|
11675
11945
|
manufacturer_part_number?: string | undefined;
|
|
11676
11946
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11677
11947
|
display_value?: string | undefined;
|
|
@@ -11683,6 +11953,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11683
11953
|
source_component_id: string;
|
|
11684
11954
|
ftype: "simple_potentiometer";
|
|
11685
11955
|
max_resistance: string | number;
|
|
11956
|
+
source_group_id?: string | undefined;
|
|
11686
11957
|
manufacturer_part_number?: string | undefined;
|
|
11687
11958
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11688
11959
|
display_value?: string | undefined;
|
|
@@ -11698,6 +11969,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11698
11969
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11699
11970
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11700
11971
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11972
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11701
11973
|
}, {
|
|
11702
11974
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
11703
11975
|
frequency: z.ZodNumber;
|
|
@@ -11708,6 +11980,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11708
11980
|
source_component_id: string;
|
|
11709
11981
|
ftype: "simple_crystal";
|
|
11710
11982
|
frequency: number;
|
|
11983
|
+
source_group_id?: string | undefined;
|
|
11711
11984
|
manufacturer_part_number?: string | undefined;
|
|
11712
11985
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11713
11986
|
display_value?: string | undefined;
|
|
@@ -11720,6 +11993,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11720
11993
|
source_component_id: string;
|
|
11721
11994
|
ftype: "simple_crystal";
|
|
11722
11995
|
frequency: number;
|
|
11996
|
+
source_group_id?: string | undefined;
|
|
11723
11997
|
manufacturer_part_number?: string | undefined;
|
|
11724
11998
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11725
11999
|
display_value?: string | undefined;
|
|
@@ -11736,6 +12010,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11736
12010
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11737
12011
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11738
12012
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12013
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11739
12014
|
}, {
|
|
11740
12015
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
11741
12016
|
pin_count: z.ZodNumber;
|
|
@@ -11747,6 +12022,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11747
12022
|
ftype: "simple_pin_header";
|
|
11748
12023
|
pin_count: number;
|
|
11749
12024
|
gender: "male" | "female";
|
|
12025
|
+
source_group_id?: string | undefined;
|
|
11750
12026
|
manufacturer_part_number?: string | undefined;
|
|
11751
12027
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11752
12028
|
display_value?: string | undefined;
|
|
@@ -11758,6 +12034,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11758
12034
|
source_component_id: string;
|
|
11759
12035
|
ftype: "simple_pin_header";
|
|
11760
12036
|
pin_count: number;
|
|
12037
|
+
source_group_id?: string | undefined;
|
|
11761
12038
|
manufacturer_part_number?: string | undefined;
|
|
11762
12039
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11763
12040
|
display_value?: string | undefined;
|
|
@@ -11774,6 +12051,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11774
12051
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11775
12052
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11776
12053
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12054
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11777
12055
|
}, {
|
|
11778
12056
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
11779
12057
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11786,6 +12064,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11786
12064
|
ftype: "simple_resonator";
|
|
11787
12065
|
frequency: number;
|
|
11788
12066
|
load_capacitance: number;
|
|
12067
|
+
source_group_id?: string | undefined;
|
|
11789
12068
|
manufacturer_part_number?: string | undefined;
|
|
11790
12069
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11791
12070
|
display_value?: string | undefined;
|
|
@@ -11799,6 +12078,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11799
12078
|
ftype: "simple_resonator";
|
|
11800
12079
|
frequency: string | number;
|
|
11801
12080
|
load_capacitance: string | number;
|
|
12081
|
+
source_group_id?: string | undefined;
|
|
11802
12082
|
manufacturer_part_number?: string | undefined;
|
|
11803
12083
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11804
12084
|
display_value?: string | undefined;
|
|
@@ -11815,6 +12095,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11815
12095
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11816
12096
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11817
12097
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12098
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11818
12099
|
}, {
|
|
11819
12100
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
11820
12101
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11822,6 +12103,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11822
12103
|
name: string;
|
|
11823
12104
|
source_component_id: string;
|
|
11824
12105
|
ftype: "simple_switch";
|
|
12106
|
+
source_group_id?: string | undefined;
|
|
11825
12107
|
manufacturer_part_number?: string | undefined;
|
|
11826
12108
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11827
12109
|
display_value?: string | undefined;
|
|
@@ -11832,6 +12114,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11832
12114
|
name: string;
|
|
11833
12115
|
source_component_id: string;
|
|
11834
12116
|
ftype: "simple_switch";
|
|
12117
|
+
source_group_id?: string | undefined;
|
|
11835
12118
|
manufacturer_part_number?: string | undefined;
|
|
11836
12119
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11837
12120
|
display_value?: string | undefined;
|
|
@@ -11847,6 +12130,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11847
12130
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11848
12131
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11849
12132
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12133
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11850
12134
|
}, {
|
|
11851
12135
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
11852
12136
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -11856,6 +12140,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11856
12140
|
source_component_id: string;
|
|
11857
12141
|
ftype: "simple_transistor";
|
|
11858
12142
|
transistor_type: "npn" | "pnp";
|
|
12143
|
+
source_group_id?: string | undefined;
|
|
11859
12144
|
manufacturer_part_number?: string | undefined;
|
|
11860
12145
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11861
12146
|
display_value?: string | undefined;
|
|
@@ -11867,6 +12152,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11867
12152
|
source_component_id: string;
|
|
11868
12153
|
ftype: "simple_transistor";
|
|
11869
12154
|
transistor_type: "npn" | "pnp";
|
|
12155
|
+
source_group_id?: string | undefined;
|
|
11870
12156
|
manufacturer_part_number?: string | undefined;
|
|
11871
12157
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11872
12158
|
display_value?: string | undefined;
|
|
@@ -11882,6 +12168,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11882
12168
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11883
12169
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11884
12170
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12171
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
11885
12172
|
}, {
|
|
11886
12173
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
11887
12174
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -11893,6 +12180,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11893
12180
|
ftype: "simple_mosfet";
|
|
11894
12181
|
channel_type: "n" | "p";
|
|
11895
12182
|
mosfet_mode: "enhancement" | "depletion";
|
|
12183
|
+
source_group_id?: string | undefined;
|
|
11896
12184
|
manufacturer_part_number?: string | undefined;
|
|
11897
12185
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11898
12186
|
display_value?: string | undefined;
|
|
@@ -11905,6 +12193,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11905
12193
|
ftype: "simple_mosfet";
|
|
11906
12194
|
channel_type: "n" | "p";
|
|
11907
12195
|
mosfet_mode: "enhancement" | "depletion";
|
|
12196
|
+
source_group_id?: string | undefined;
|
|
11908
12197
|
manufacturer_part_number?: string | undefined;
|
|
11909
12198
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11910
12199
|
display_value?: string | undefined;
|
|
@@ -12013,6 +12302,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12013
12302
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12014
12303
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12015
12304
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12305
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12016
12306
|
}, {
|
|
12017
12307
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
12018
12308
|
}>, {
|
|
@@ -12022,6 +12312,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12022
12312
|
name: string;
|
|
12023
12313
|
source_component_id: string;
|
|
12024
12314
|
ftype: "led";
|
|
12315
|
+
source_group_id?: string | undefined;
|
|
12025
12316
|
manufacturer_part_number?: string | undefined;
|
|
12026
12317
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12027
12318
|
display_value?: string | undefined;
|
|
@@ -12032,6 +12323,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12032
12323
|
name: string;
|
|
12033
12324
|
source_component_id: string;
|
|
12034
12325
|
ftype: "led";
|
|
12326
|
+
source_group_id?: string | undefined;
|
|
12035
12327
|
manufacturer_part_number?: string | undefined;
|
|
12036
12328
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12037
12329
|
display_value?: string | undefined;
|
|
@@ -12101,6 +12393,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12101
12393
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12102
12394
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12103
12395
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12396
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12104
12397
|
}, {
|
|
12105
12398
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
12106
12399
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12108,6 +12401,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12108
12401
|
name: string;
|
|
12109
12402
|
source_component_id: string;
|
|
12110
12403
|
ftype: "simple_bug";
|
|
12404
|
+
source_group_id?: string | undefined;
|
|
12111
12405
|
manufacturer_part_number?: string | undefined;
|
|
12112
12406
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12113
12407
|
display_value?: string | undefined;
|
|
@@ -12118,6 +12412,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12118
12412
|
name: string;
|
|
12119
12413
|
source_component_id: string;
|
|
12120
12414
|
ftype: "simple_bug";
|
|
12415
|
+
source_group_id?: string | undefined;
|
|
12121
12416
|
manufacturer_part_number?: string | undefined;
|
|
12122
12417
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12123
12418
|
display_value?: string | undefined;
|
|
@@ -12133,6 +12428,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12133
12428
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12134
12429
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12135
12430
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12431
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12136
12432
|
}, {
|
|
12137
12433
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
12138
12434
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12140,6 +12436,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12140
12436
|
name: string;
|
|
12141
12437
|
source_component_id: string;
|
|
12142
12438
|
ftype: "simple_chip";
|
|
12439
|
+
source_group_id?: string | undefined;
|
|
12143
12440
|
manufacturer_part_number?: string | undefined;
|
|
12144
12441
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12145
12442
|
display_value?: string | undefined;
|
|
@@ -12150,6 +12447,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12150
12447
|
name: string;
|
|
12151
12448
|
source_component_id: string;
|
|
12152
12449
|
ftype: "simple_chip";
|
|
12450
|
+
source_group_id?: string | undefined;
|
|
12153
12451
|
manufacturer_part_number?: string | undefined;
|
|
12154
12452
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12155
12453
|
display_value?: string | undefined;
|
|
@@ -12165,6 +12463,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12165
12463
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12166
12464
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12167
12465
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12466
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12168
12467
|
}, {
|
|
12169
12468
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
12170
12469
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -12177,6 +12476,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12177
12476
|
source_component_id: string;
|
|
12178
12477
|
ftype: "simple_capacitor";
|
|
12179
12478
|
capacitance: number;
|
|
12479
|
+
source_group_id?: string | undefined;
|
|
12180
12480
|
manufacturer_part_number?: string | undefined;
|
|
12181
12481
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12182
12482
|
display_value?: string | undefined;
|
|
@@ -12191,6 +12491,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12191
12491
|
source_component_id: string;
|
|
12192
12492
|
ftype: "simple_capacitor";
|
|
12193
12493
|
capacitance: string | number;
|
|
12494
|
+
source_group_id?: string | undefined;
|
|
12194
12495
|
manufacturer_part_number?: string | undefined;
|
|
12195
12496
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12196
12497
|
display_value?: string | undefined;
|
|
@@ -12209,6 +12510,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12209
12510
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12210
12511
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12211
12512
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12513
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12212
12514
|
}, {
|
|
12213
12515
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
12214
12516
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12216,6 +12518,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12216
12518
|
name: string;
|
|
12217
12519
|
source_component_id: string;
|
|
12218
12520
|
ftype: "simple_diode";
|
|
12521
|
+
source_group_id?: string | undefined;
|
|
12219
12522
|
manufacturer_part_number?: string | undefined;
|
|
12220
12523
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12221
12524
|
display_value?: string | undefined;
|
|
@@ -12226,6 +12529,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12226
12529
|
name: string;
|
|
12227
12530
|
source_component_id: string;
|
|
12228
12531
|
ftype: "simple_diode";
|
|
12532
|
+
source_group_id?: string | undefined;
|
|
12229
12533
|
manufacturer_part_number?: string | undefined;
|
|
12230
12534
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12231
12535
|
display_value?: string | undefined;
|
|
@@ -12241,6 +12545,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12241
12545
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12242
12546
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12243
12547
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12548
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12244
12549
|
}, {
|
|
12245
12550
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
12246
12551
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12251,6 +12556,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12251
12556
|
source_component_id: string;
|
|
12252
12557
|
ftype: "simple_resistor";
|
|
12253
12558
|
resistance: number;
|
|
12559
|
+
source_group_id?: string | undefined;
|
|
12254
12560
|
manufacturer_part_number?: string | undefined;
|
|
12255
12561
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12256
12562
|
display_value?: string | undefined;
|
|
@@ -12263,6 +12569,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12263
12569
|
source_component_id: string;
|
|
12264
12570
|
ftype: "simple_resistor";
|
|
12265
12571
|
resistance: string | number;
|
|
12572
|
+
source_group_id?: string | undefined;
|
|
12266
12573
|
manufacturer_part_number?: string | undefined;
|
|
12267
12574
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12268
12575
|
display_value?: string | undefined;
|
|
@@ -12279,6 +12586,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12279
12586
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12280
12587
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12281
12588
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12589
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12282
12590
|
}, {
|
|
12283
12591
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
12284
12592
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12288,6 +12596,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12288
12596
|
source_component_id: string;
|
|
12289
12597
|
voltage: number;
|
|
12290
12598
|
ftype: "simple_power_source";
|
|
12599
|
+
source_group_id?: string | undefined;
|
|
12291
12600
|
manufacturer_part_number?: string | undefined;
|
|
12292
12601
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12293
12602
|
display_value?: string | undefined;
|
|
@@ -12299,6 +12608,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12299
12608
|
source_component_id: string;
|
|
12300
12609
|
voltage: string | number;
|
|
12301
12610
|
ftype: "simple_power_source";
|
|
12611
|
+
source_group_id?: string | undefined;
|
|
12302
12612
|
manufacturer_part_number?: string | undefined;
|
|
12303
12613
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12304
12614
|
display_value?: string | undefined;
|
|
@@ -12314,6 +12624,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12314
12624
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12315
12625
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12316
12626
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12627
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12317
12628
|
}, {
|
|
12318
12629
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
12319
12630
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -12323,6 +12634,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12323
12634
|
source_component_id: string;
|
|
12324
12635
|
ftype: "simple_battery";
|
|
12325
12636
|
capacity: number;
|
|
12637
|
+
source_group_id?: string | undefined;
|
|
12326
12638
|
manufacturer_part_number?: string | undefined;
|
|
12327
12639
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12328
12640
|
display_value?: string | undefined;
|
|
@@ -12334,6 +12646,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12334
12646
|
source_component_id: string;
|
|
12335
12647
|
ftype: "simple_battery";
|
|
12336
12648
|
capacity: string | number;
|
|
12649
|
+
source_group_id?: string | undefined;
|
|
12337
12650
|
manufacturer_part_number?: string | undefined;
|
|
12338
12651
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12339
12652
|
display_value?: string | undefined;
|
|
@@ -12349,6 +12662,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12349
12662
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12350
12663
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12351
12664
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12665
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12352
12666
|
}, {
|
|
12353
12667
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
12354
12668
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12358,6 +12672,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12358
12672
|
source_component_id: string;
|
|
12359
12673
|
ftype: "simple_inductor";
|
|
12360
12674
|
inductance: number;
|
|
12675
|
+
source_group_id?: string | undefined;
|
|
12361
12676
|
manufacturer_part_number?: string | undefined;
|
|
12362
12677
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12363
12678
|
display_value?: string | undefined;
|
|
@@ -12369,6 +12684,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12369
12684
|
source_component_id: string;
|
|
12370
12685
|
ftype: "simple_inductor";
|
|
12371
12686
|
inductance: string | number;
|
|
12687
|
+
source_group_id?: string | undefined;
|
|
12372
12688
|
manufacturer_part_number?: string | undefined;
|
|
12373
12689
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12374
12690
|
display_value?: string | undefined;
|
|
@@ -12384,6 +12700,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12384
12700
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12385
12701
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12386
12702
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12703
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12387
12704
|
}, {
|
|
12388
12705
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
12389
12706
|
pin_count: z.ZodNumber;
|
|
@@ -12395,6 +12712,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12395
12712
|
ftype: "simple_pin_header";
|
|
12396
12713
|
pin_count: number;
|
|
12397
12714
|
gender: "male" | "female";
|
|
12715
|
+
source_group_id?: string | undefined;
|
|
12398
12716
|
manufacturer_part_number?: string | undefined;
|
|
12399
12717
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12400
12718
|
display_value?: string | undefined;
|
|
@@ -12406,6 +12724,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12406
12724
|
source_component_id: string;
|
|
12407
12725
|
ftype: "simple_pin_header";
|
|
12408
12726
|
pin_count: number;
|
|
12727
|
+
source_group_id?: string | undefined;
|
|
12409
12728
|
manufacturer_part_number?: string | undefined;
|
|
12410
12729
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12411
12730
|
display_value?: string | undefined;
|
|
@@ -12422,6 +12741,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12422
12741
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12423
12742
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12424
12743
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12744
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12425
12745
|
}, {
|
|
12426
12746
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
12427
12747
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -12434,6 +12754,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12434
12754
|
ftype: "simple_resonator";
|
|
12435
12755
|
frequency: number;
|
|
12436
12756
|
load_capacitance: number;
|
|
12757
|
+
source_group_id?: string | undefined;
|
|
12437
12758
|
manufacturer_part_number?: string | undefined;
|
|
12438
12759
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12439
12760
|
display_value?: string | undefined;
|
|
@@ -12447,6 +12768,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12447
12768
|
ftype: "simple_resonator";
|
|
12448
12769
|
frequency: string | number;
|
|
12449
12770
|
load_capacitance: string | number;
|
|
12771
|
+
source_group_id?: string | undefined;
|
|
12450
12772
|
manufacturer_part_number?: string | undefined;
|
|
12451
12773
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12452
12774
|
display_value?: string | undefined;
|
|
@@ -12463,6 +12785,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12463
12785
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12464
12786
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12465
12787
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12788
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12466
12789
|
}, {
|
|
12467
12790
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
12468
12791
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12470,6 +12793,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12470
12793
|
name: string;
|
|
12471
12794
|
source_component_id: string;
|
|
12472
12795
|
ftype: "simple_switch";
|
|
12796
|
+
source_group_id?: string | undefined;
|
|
12473
12797
|
manufacturer_part_number?: string | undefined;
|
|
12474
12798
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12475
12799
|
display_value?: string | undefined;
|
|
@@ -12480,6 +12804,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12480
12804
|
name: string;
|
|
12481
12805
|
source_component_id: string;
|
|
12482
12806
|
ftype: "simple_switch";
|
|
12807
|
+
source_group_id?: string | undefined;
|
|
12483
12808
|
manufacturer_part_number?: string | undefined;
|
|
12484
12809
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12485
12810
|
display_value?: string | undefined;
|
|
@@ -12495,6 +12820,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12495
12820
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12496
12821
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12497
12822
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12823
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12498
12824
|
}, {
|
|
12499
12825
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
12500
12826
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -12504,6 +12830,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12504
12830
|
source_component_id: string;
|
|
12505
12831
|
ftype: "simple_transistor";
|
|
12506
12832
|
transistor_type: "npn" | "pnp";
|
|
12833
|
+
source_group_id?: string | undefined;
|
|
12507
12834
|
manufacturer_part_number?: string | undefined;
|
|
12508
12835
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12509
12836
|
display_value?: string | undefined;
|
|
@@ -12515,6 +12842,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12515
12842
|
source_component_id: string;
|
|
12516
12843
|
ftype: "simple_transistor";
|
|
12517
12844
|
transistor_type: "npn" | "pnp";
|
|
12845
|
+
source_group_id?: string | undefined;
|
|
12518
12846
|
manufacturer_part_number?: string | undefined;
|
|
12519
12847
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12520
12848
|
display_value?: string | undefined;
|
|
@@ -12530,6 +12858,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12530
12858
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12531
12859
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12532
12860
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12861
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12533
12862
|
}, {
|
|
12534
12863
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
12535
12864
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -12541,6 +12870,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12541
12870
|
ftype: "simple_mosfet";
|
|
12542
12871
|
channel_type: "n" | "p";
|
|
12543
12872
|
mosfet_mode: "enhancement" | "depletion";
|
|
12873
|
+
source_group_id?: string | undefined;
|
|
12544
12874
|
manufacturer_part_number?: string | undefined;
|
|
12545
12875
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12546
12876
|
display_value?: string | undefined;
|
|
@@ -12553,6 +12883,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12553
12883
|
ftype: "simple_mosfet";
|
|
12554
12884
|
channel_type: "n" | "p";
|
|
12555
12885
|
mosfet_mode: "enhancement" | "depletion";
|
|
12886
|
+
source_group_id?: string | undefined;
|
|
12556
12887
|
manufacturer_part_number?: string | undefined;
|
|
12557
12888
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12558
12889
|
display_value?: string | undefined;
|
|
@@ -12568,6 +12899,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12568
12899
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12569
12900
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12570
12901
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12902
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12571
12903
|
}, {
|
|
12572
12904
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
12573
12905
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -12577,6 +12909,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12577
12909
|
source_component_id: string;
|
|
12578
12910
|
ftype: "simple_potentiometer";
|
|
12579
12911
|
max_resistance: number;
|
|
12912
|
+
source_group_id?: string | undefined;
|
|
12580
12913
|
manufacturer_part_number?: string | undefined;
|
|
12581
12914
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12582
12915
|
display_value?: string | undefined;
|
|
@@ -12588,6 +12921,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12588
12921
|
source_component_id: string;
|
|
12589
12922
|
ftype: "simple_potentiometer";
|
|
12590
12923
|
max_resistance: string | number;
|
|
12924
|
+
source_group_id?: string | undefined;
|
|
12591
12925
|
manufacturer_part_number?: string | undefined;
|
|
12592
12926
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12593
12927
|
display_value?: string | undefined;
|
|
@@ -12603,6 +12937,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12603
12937
|
display_value: z.ZodOptional<z.ZodString>;
|
|
12604
12938
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
12605
12939
|
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
12940
|
+
source_group_id: z.ZodOptional<z.ZodString>;
|
|
12606
12941
|
}, {
|
|
12607
12942
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
12608
12943
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -12610,6 +12945,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12610
12945
|
name: string;
|
|
12611
12946
|
source_component_id: string;
|
|
12612
12947
|
ftype: "simple_push_button";
|
|
12948
|
+
source_group_id?: string | undefined;
|
|
12613
12949
|
manufacturer_part_number?: string | undefined;
|
|
12614
12950
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12615
12951
|
display_value?: string | undefined;
|
|
@@ -12620,6 +12956,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12620
12956
|
name: string;
|
|
12621
12957
|
source_component_id: string;
|
|
12622
12958
|
ftype: "simple_push_button";
|
|
12959
|
+
source_group_id?: string | undefined;
|
|
12623
12960
|
manufacturer_part_number?: string | undefined;
|
|
12624
12961
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12625
12962
|
display_value?: string | undefined;
|
|
@@ -12667,6 +13004,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12667
13004
|
width: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12668
13005
|
height: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12669
13006
|
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
13007
|
+
pcb_group_id: z.ZodOptional<z.ZodString>;
|
|
12670
13008
|
}, "strip", z.ZodTypeAny, {
|
|
12671
13009
|
type: "pcb_component";
|
|
12672
13010
|
width: number;
|
|
@@ -12680,6 +13018,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12680
13018
|
layer: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12681
13019
|
rotation: number;
|
|
12682
13020
|
subcircuit_id?: string | undefined;
|
|
13021
|
+
pcb_group_id?: string | undefined;
|
|
12683
13022
|
}, {
|
|
12684
13023
|
type: "pcb_component";
|
|
12685
13024
|
width: string | number;
|
|
@@ -12695,6 +13034,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12695
13034
|
rotation: string | number;
|
|
12696
13035
|
pcb_component_id?: string | undefined;
|
|
12697
13036
|
subcircuit_id?: string | undefined;
|
|
13037
|
+
pcb_group_id?: string | undefined;
|
|
12698
13038
|
}>, z.ZodUnion<[z.ZodObject<{
|
|
12699
13039
|
type: z.ZodLiteral<"pcb_hole">;
|
|
12700
13040
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12720,8 +13060,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12720
13060
|
hole_shape: "circle" | "square";
|
|
12721
13061
|
hole_diameter: number;
|
|
12722
13062
|
subcircuit_id?: string | undefined;
|
|
12723
|
-
pcb_hole_id?: string | undefined;
|
|
12724
13063
|
pcb_group_id?: string | undefined;
|
|
13064
|
+
pcb_hole_id?: string | undefined;
|
|
12725
13065
|
}>, z.ZodObject<{
|
|
12726
13066
|
type: z.ZodLiteral<"pcb_hole">;
|
|
12727
13067
|
pcb_hole_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -12750,8 +13090,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
12750
13090
|
hole_width: number;
|
|
12751
13091
|
hole_height: number;
|
|
12752
13092
|
subcircuit_id?: string | undefined;
|
|
12753
|
-
pcb_hole_id?: string | undefined;
|
|
12754
13093
|
pcb_group_id?: string | undefined;
|
|
13094
|
+
pcb_hole_id?: string | undefined;
|
|
12755
13095
|
}>]>, z.ZodObject<{
|
|
12756
13096
|
type: z.ZodLiteral<"pcb_missing_footprint_error">;
|
|
12757
13097
|
pcb_missing_footprint_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
@@ -14891,6 +15231,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14891
15231
|
}>]>>;
|
|
14892
15232
|
port_labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
14893
15233
|
symbol_display_value: z.ZodOptional<z.ZodString>;
|
|
15234
|
+
subcircuit_id: z.ZodOptional<z.ZodString>;
|
|
15235
|
+
schematic_group_id: z.ZodOptional<z.ZodString>;
|
|
14894
15236
|
}, "strip", z.ZodTypeAny, {
|
|
14895
15237
|
type: "schematic_component";
|
|
14896
15238
|
source_component_id: string;
|
|
@@ -14903,6 +15245,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14903
15245
|
width: number;
|
|
14904
15246
|
height: number;
|
|
14905
15247
|
};
|
|
15248
|
+
subcircuit_id?: string | undefined;
|
|
14906
15249
|
pin_spacing?: number | undefined;
|
|
14907
15250
|
pin_styles?: Record<string, {
|
|
14908
15251
|
left_margin?: number | undefined;
|
|
@@ -14937,6 +15280,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14937
15280
|
} | undefined;
|
|
14938
15281
|
port_labels?: Record<string, string> | undefined;
|
|
14939
15282
|
symbol_display_value?: string | undefined;
|
|
15283
|
+
schematic_group_id?: string | undefined;
|
|
14940
15284
|
}, {
|
|
14941
15285
|
type: "schematic_component";
|
|
14942
15286
|
source_component_id: string;
|
|
@@ -14949,6 +15293,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14949
15293
|
width: number;
|
|
14950
15294
|
height: number;
|
|
14951
15295
|
};
|
|
15296
|
+
subcircuit_id?: string | undefined;
|
|
14952
15297
|
pin_spacing?: string | number | undefined;
|
|
14953
15298
|
pin_styles?: Record<string, {
|
|
14954
15299
|
left_margin?: string | number | undefined;
|
|
@@ -14983,6 +15328,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
14983
15328
|
} | undefined;
|
|
14984
15329
|
port_labels?: Record<string, string> | undefined;
|
|
14985
15330
|
symbol_display_value?: string | undefined;
|
|
15331
|
+
schematic_group_id?: string | undefined;
|
|
14986
15332
|
}>, z.ZodObject<{
|
|
14987
15333
|
type: z.ZodLiteral<"schematic_port">;
|
|
14988
15334
|
schematic_port_id: z.ZodString;
|
|
@@ -15425,8 +15771,8 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
15425
15771
|
source_component_id: string;
|
|
15426
15772
|
schematic_component_id: string;
|
|
15427
15773
|
subcircuit_id?: string | undefined;
|
|
15428
|
-
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
15429
15774
|
schematic_group_id?: string | undefined;
|
|
15775
|
+
schematic_manual_edit_conflict_warning_id?: string | undefined;
|
|
15430
15776
|
}>, z.ZodObject<{
|
|
15431
15777
|
type: z.ZodLiteral<"schematic_group">;
|
|
15432
15778
|
schematic_group_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|