circuit-json 0.0.168 → 0.0.170
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 +326 -0
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3840,6 +3840,7 @@ interface SchematicText {
|
|
|
3840
3840
|
schematic_component_id?: string;
|
|
3841
3841
|
schematic_text_id: string;
|
|
3842
3842
|
text: string;
|
|
3843
|
+
font_size: number;
|
|
3843
3844
|
position: {
|
|
3844
3845
|
x: number;
|
|
3845
3846
|
y: number;
|
|
@@ -3853,6 +3854,7 @@ declare const schematic_text: z.ZodObject<{
|
|
|
3853
3854
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
3854
3855
|
schematic_text_id: z.ZodString;
|
|
3855
3856
|
text: z.ZodString;
|
|
3857
|
+
font_size: z.ZodDefault<z.ZodNumber>;
|
|
3856
3858
|
position: z.ZodObject<{
|
|
3857
3859
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
3858
3860
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -3871,6 +3873,7 @@ declare const schematic_text: z.ZodObject<{
|
|
|
3871
3873
|
type: "schematic_text";
|
|
3872
3874
|
rotation: number;
|
|
3873
3875
|
text: string;
|
|
3876
|
+
font_size: number;
|
|
3874
3877
|
color: string;
|
|
3875
3878
|
schematic_text_id: string;
|
|
3876
3879
|
position: {
|
|
@@ -3888,6 +3891,7 @@ declare const schematic_text: z.ZodObject<{
|
|
|
3888
3891
|
};
|
|
3889
3892
|
anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
|
|
3890
3893
|
rotation?: number | undefined;
|
|
3894
|
+
font_size?: number | undefined;
|
|
3891
3895
|
color?: string | undefined;
|
|
3892
3896
|
schematic_component_id?: string | undefined;
|
|
3893
3897
|
}>;
|
|
@@ -4430,6 +4434,7 @@ interface SourceComponentBase {
|
|
|
4430
4434
|
supplier_part_numbers?: Partial<Record<SupplierName, string[]>>;
|
|
4431
4435
|
display_value?: string;
|
|
4432
4436
|
are_pins_interchangeable?: boolean;
|
|
4437
|
+
internally_connected_source_port_ids?: string[][];
|
|
4433
4438
|
}
|
|
4434
4439
|
declare const source_component_base: z.ZodObject<{
|
|
4435
4440
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -4440,6 +4445,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4440
4445
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4441
4446
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4442
4447
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4448
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4443
4449
|
}, "strip", z.ZodTypeAny, {
|
|
4444
4450
|
type: "source_component";
|
|
4445
4451
|
name: string;
|
|
@@ -4449,6 +4455,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4449
4455
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4450
4456
|
display_value?: string | undefined;
|
|
4451
4457
|
are_pins_interchangeable?: boolean | undefined;
|
|
4458
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4452
4459
|
}, {
|
|
4453
4460
|
type: "source_component";
|
|
4454
4461
|
name: string;
|
|
@@ -4458,6 +4465,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4458
4465
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4459
4466
|
display_value?: string | undefined;
|
|
4460
4467
|
are_pins_interchangeable?: boolean | undefined;
|
|
4468
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4461
4469
|
}>;
|
|
4462
4470
|
|
|
4463
4471
|
declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -4469,6 +4477,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4469
4477
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4470
4478
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4471
4479
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4480
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4472
4481
|
}, {
|
|
4473
4482
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
4474
4483
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4485,6 +4494,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4485
4494
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4486
4495
|
display_value?: string | undefined;
|
|
4487
4496
|
are_pins_interchangeable?: boolean | undefined;
|
|
4497
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4488
4498
|
max_voltage_rating?: number | undefined;
|
|
4489
4499
|
display_capacitance?: string | undefined;
|
|
4490
4500
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -4498,6 +4508,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4498
4508
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4499
4509
|
display_value?: string | undefined;
|
|
4500
4510
|
are_pins_interchangeable?: boolean | undefined;
|
|
4511
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4501
4512
|
max_voltage_rating?: string | number | undefined;
|
|
4502
4513
|
display_capacitance?: string | undefined;
|
|
4503
4514
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -4523,6 +4534,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4523
4534
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4524
4535
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4525
4536
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4537
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4526
4538
|
}, {
|
|
4527
4539
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
4528
4540
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4537,6 +4549,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4537
4549
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4538
4550
|
display_value?: string | undefined;
|
|
4539
4551
|
are_pins_interchangeable?: boolean | undefined;
|
|
4552
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4540
4553
|
display_resistance?: string | undefined;
|
|
4541
4554
|
}, {
|
|
4542
4555
|
type: "source_component";
|
|
@@ -4548,6 +4561,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4548
4561
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4549
4562
|
display_value?: string | undefined;
|
|
4550
4563
|
are_pins_interchangeable?: boolean | undefined;
|
|
4564
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4551
4565
|
display_resistance?: string | undefined;
|
|
4552
4566
|
}>;
|
|
4553
4567
|
type SourceSimpleResistorInput = z.input<typeof source_simple_resistor>;
|
|
@@ -4569,6 +4583,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4569
4583
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4570
4584
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4571
4585
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4586
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4572
4587
|
}, {
|
|
4573
4588
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
4574
4589
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4580,6 +4595,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4580
4595
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4581
4596
|
display_value?: string | undefined;
|
|
4582
4597
|
are_pins_interchangeable?: boolean | undefined;
|
|
4598
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4583
4599
|
}, {
|
|
4584
4600
|
type: "source_component";
|
|
4585
4601
|
name: string;
|
|
@@ -4589,6 +4605,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4589
4605
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4590
4606
|
display_value?: string | undefined;
|
|
4591
4607
|
are_pins_interchangeable?: boolean | undefined;
|
|
4608
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4592
4609
|
}>;
|
|
4593
4610
|
type SourceSimpleDiodeInput = z.input<typeof source_simple_diode>;
|
|
4594
4611
|
/**
|
|
@@ -4607,6 +4624,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4607
4624
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4608
4625
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4609
4626
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4627
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4610
4628
|
}, {
|
|
4611
4629
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
4612
4630
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4618,6 +4636,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4618
4636
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4619
4637
|
display_value?: string | undefined;
|
|
4620
4638
|
are_pins_interchangeable?: boolean | undefined;
|
|
4639
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4621
4640
|
}, {
|
|
4622
4641
|
type: "source_component";
|
|
4623
4642
|
name: string;
|
|
@@ -4627,6 +4646,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4627
4646
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4628
4647
|
display_value?: string | undefined;
|
|
4629
4648
|
are_pins_interchangeable?: boolean | undefined;
|
|
4649
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4630
4650
|
}>;
|
|
4631
4651
|
type SourceSimpleGroundInput = z.input<typeof source_simple_ground>;
|
|
4632
4652
|
/**
|
|
@@ -4648,6 +4668,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4648
4668
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4649
4669
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4650
4670
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4671
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4651
4672
|
}, {
|
|
4652
4673
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
4653
4674
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4659,6 +4680,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4659
4680
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4660
4681
|
display_value?: string | undefined;
|
|
4661
4682
|
are_pins_interchangeable?: boolean | undefined;
|
|
4683
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4662
4684
|
}, {
|
|
4663
4685
|
type: "source_component";
|
|
4664
4686
|
name: string;
|
|
@@ -4668,6 +4690,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4668
4690
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4669
4691
|
display_value?: string | undefined;
|
|
4670
4692
|
are_pins_interchangeable?: boolean | undefined;
|
|
4693
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4671
4694
|
}>;
|
|
4672
4695
|
type source_simple_bug = z.infer<typeof source_simple_bug>;
|
|
4673
4696
|
type SourceSimpleBugInput = z.input<typeof source_simple_bug>;
|
|
@@ -4681,6 +4704,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4681
4704
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4682
4705
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4683
4706
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4707
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4684
4708
|
}, {
|
|
4685
4709
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
4686
4710
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4692,6 +4716,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4692
4716
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4693
4717
|
display_value?: string | undefined;
|
|
4694
4718
|
are_pins_interchangeable?: boolean | undefined;
|
|
4719
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4695
4720
|
}, {
|
|
4696
4721
|
type: "source_component";
|
|
4697
4722
|
name: string;
|
|
@@ -4701,6 +4726,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4701
4726
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4702
4727
|
display_value?: string | undefined;
|
|
4703
4728
|
are_pins_interchangeable?: boolean | undefined;
|
|
4729
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4704
4730
|
}>;
|
|
4705
4731
|
type SourceSimpleChipInput = z.input<typeof source_simple_chip>;
|
|
4706
4732
|
/**
|
|
@@ -4719,6 +4745,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
4719
4745
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4720
4746
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4721
4747
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4748
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4722
4749
|
}, {
|
|
4723
4750
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
4724
4751
|
}>, {
|
|
@@ -4732,6 +4759,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
4732
4759
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4733
4760
|
display_value?: string | undefined;
|
|
4734
4761
|
are_pins_interchangeable?: boolean | undefined;
|
|
4762
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4735
4763
|
}, {
|
|
4736
4764
|
type: "source_component";
|
|
4737
4765
|
name: string;
|
|
@@ -4741,6 +4769,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
4741
4769
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4742
4770
|
display_value?: string | undefined;
|
|
4743
4771
|
are_pins_interchangeable?: boolean | undefined;
|
|
4772
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4744
4773
|
}>;
|
|
4745
4774
|
type SourceLedInput = z.input<typeof source_led>;
|
|
4746
4775
|
/**
|
|
@@ -4759,6 +4788,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4759
4788
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4760
4789
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4761
4790
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4791
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4762
4792
|
}, {
|
|
4763
4793
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
4764
4794
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4772,6 +4802,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4772
4802
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4773
4803
|
display_value?: string | undefined;
|
|
4774
4804
|
are_pins_interchangeable?: boolean | undefined;
|
|
4805
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4775
4806
|
}, {
|
|
4776
4807
|
type: "source_component";
|
|
4777
4808
|
name: string;
|
|
@@ -4782,6 +4813,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4782
4813
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4783
4814
|
display_value?: string | undefined;
|
|
4784
4815
|
are_pins_interchangeable?: boolean | undefined;
|
|
4816
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4785
4817
|
}>;
|
|
4786
4818
|
type SourceSimplePowerSourceInput = z.input<typeof source_simple_power_source>;
|
|
4787
4819
|
/**
|
|
@@ -4801,6 +4833,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4801
4833
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4802
4834
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4803
4835
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4836
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4804
4837
|
}, {
|
|
4805
4838
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
4806
4839
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -4814,6 +4847,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4814
4847
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4815
4848
|
display_value?: string | undefined;
|
|
4816
4849
|
are_pins_interchangeable?: boolean | undefined;
|
|
4850
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4817
4851
|
}, {
|
|
4818
4852
|
type: "source_component";
|
|
4819
4853
|
name: string;
|
|
@@ -4824,6 +4858,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4824
4858
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4825
4859
|
display_value?: string | undefined;
|
|
4826
4860
|
are_pins_interchangeable?: boolean | undefined;
|
|
4861
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4827
4862
|
}>;
|
|
4828
4863
|
type SourceSimpleBatteryInput = z.input<typeof source_simple_battery>;
|
|
4829
4864
|
/**
|
|
@@ -4843,6 +4878,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4843
4878
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4844
4879
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4845
4880
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4881
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4846
4882
|
}, {
|
|
4847
4883
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
4848
4884
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4856,6 +4892,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4856
4892
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4857
4893
|
display_value?: string | undefined;
|
|
4858
4894
|
are_pins_interchangeable?: boolean | undefined;
|
|
4895
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4859
4896
|
}, {
|
|
4860
4897
|
type: "source_component";
|
|
4861
4898
|
name: string;
|
|
@@ -4866,6 +4903,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4866
4903
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4867
4904
|
display_value?: string | undefined;
|
|
4868
4905
|
are_pins_interchangeable?: boolean | undefined;
|
|
4906
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4869
4907
|
}>;
|
|
4870
4908
|
type SourceSimpleInductorInput = z.input<typeof source_simple_inductor>;
|
|
4871
4909
|
/**
|
|
@@ -4885,6 +4923,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4885
4923
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4886
4924
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4887
4925
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4926
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4888
4927
|
}, {
|
|
4889
4928
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
4890
4929
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4896,6 +4935,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4896
4935
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4897
4936
|
display_value?: string | undefined;
|
|
4898
4937
|
are_pins_interchangeable?: boolean | undefined;
|
|
4938
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4899
4939
|
}, {
|
|
4900
4940
|
type: "source_component";
|
|
4901
4941
|
name: string;
|
|
@@ -4905,6 +4945,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4905
4945
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4906
4946
|
display_value?: string | undefined;
|
|
4907
4947
|
are_pins_interchangeable?: boolean | undefined;
|
|
4948
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4908
4949
|
}>;
|
|
4909
4950
|
type SourceSimplePushButtonInput = z.input<typeof source_simple_push_button>;
|
|
4910
4951
|
/**
|
|
@@ -4923,6 +4964,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4923
4964
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4924
4965
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4925
4966
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4967
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4926
4968
|
}, {
|
|
4927
4969
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
4928
4970
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4936,6 +4978,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4936
4978
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4937
4979
|
display_value?: string | undefined;
|
|
4938
4980
|
are_pins_interchangeable?: boolean | undefined;
|
|
4981
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4939
4982
|
}, {
|
|
4940
4983
|
type: "source_component";
|
|
4941
4984
|
name: string;
|
|
@@ -4946,6 +4989,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4946
4989
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4947
4990
|
display_value?: string | undefined;
|
|
4948
4991
|
are_pins_interchangeable?: boolean | undefined;
|
|
4992
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4949
4993
|
}>;
|
|
4950
4994
|
type SourceSimplePotentiometer = z.infer<typeof source_simple_potentiometer>;
|
|
4951
4995
|
type SourceSimplePotentiometerInput = z.input<typeof source_simple_potentiometer>;
|
|
@@ -4959,6 +5003,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4959
5003
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4960
5004
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4961
5005
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5006
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
4962
5007
|
}, {
|
|
4963
5008
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
4964
5009
|
frequency: z.ZodNumber;
|
|
@@ -4973,6 +5018,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4973
5018
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4974
5019
|
display_value?: string | undefined;
|
|
4975
5020
|
are_pins_interchangeable?: boolean | undefined;
|
|
5021
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4976
5022
|
load_capacitance?: number | undefined;
|
|
4977
5023
|
}, {
|
|
4978
5024
|
type: "source_component";
|
|
@@ -4984,6 +5030,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4984
5030
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4985
5031
|
display_value?: string | undefined;
|
|
4986
5032
|
are_pins_interchangeable?: boolean | undefined;
|
|
5033
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
4987
5034
|
load_capacitance?: number | undefined;
|
|
4988
5035
|
}>;
|
|
4989
5036
|
type SourceSimpleCrystalInput = z.input<typeof source_simple_crystal>;
|
|
@@ -5005,6 +5052,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5005
5052
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5006
5053
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5007
5054
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5055
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5008
5056
|
}, {
|
|
5009
5057
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5010
5058
|
pin_count: z.ZodNumber;
|
|
@@ -5020,6 +5068,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5020
5068
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5021
5069
|
display_value?: string | undefined;
|
|
5022
5070
|
are_pins_interchangeable?: boolean | undefined;
|
|
5071
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5023
5072
|
}, {
|
|
5024
5073
|
type: "source_component";
|
|
5025
5074
|
name: string;
|
|
@@ -5030,6 +5079,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5030
5079
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5031
5080
|
display_value?: string | undefined;
|
|
5032
5081
|
are_pins_interchangeable?: boolean | undefined;
|
|
5082
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5033
5083
|
gender?: "male" | "female" | undefined;
|
|
5034
5084
|
}>;
|
|
5035
5085
|
type SourceSimplePinHeader = z.infer<typeof source_simple_pin_header>;
|
|
@@ -5044,6 +5094,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5044
5094
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5045
5095
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5046
5096
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5097
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5047
5098
|
}, {
|
|
5048
5099
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
5049
5100
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5060,6 +5111,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5060
5111
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5061
5112
|
display_value?: string | undefined;
|
|
5062
5113
|
are_pins_interchangeable?: boolean | undefined;
|
|
5114
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5063
5115
|
equivalent_series_resistance?: number | undefined;
|
|
5064
5116
|
}, {
|
|
5065
5117
|
type: "source_component";
|
|
@@ -5072,6 +5124,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5072
5124
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5073
5125
|
display_value?: string | undefined;
|
|
5074
5126
|
are_pins_interchangeable?: boolean | undefined;
|
|
5127
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5075
5128
|
equivalent_series_resistance?: string | number | undefined;
|
|
5076
5129
|
}>;
|
|
5077
5130
|
type SourceSimpleResonatorInput = z.input<typeof source_simple_resonator>;
|
|
@@ -5094,6 +5147,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5094
5147
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5095
5148
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5096
5149
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5150
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5097
5151
|
}, {
|
|
5098
5152
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5099
5153
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5107,6 +5161,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5107
5161
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5108
5162
|
display_value?: string | undefined;
|
|
5109
5163
|
are_pins_interchangeable?: boolean | undefined;
|
|
5164
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5110
5165
|
}, {
|
|
5111
5166
|
type: "source_component";
|
|
5112
5167
|
name: string;
|
|
@@ -5117,6 +5172,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5117
5172
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5118
5173
|
display_value?: string | undefined;
|
|
5119
5174
|
are_pins_interchangeable?: boolean | undefined;
|
|
5175
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5120
5176
|
}>;
|
|
5121
5177
|
type SourceSimpleTransistorInput = z.input<typeof source_simple_transistor>;
|
|
5122
5178
|
/**
|
|
@@ -5138,6 +5194,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5138
5194
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5139
5195
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5140
5196
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5197
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5141
5198
|
}, {
|
|
5142
5199
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5143
5200
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5153,6 +5210,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5153
5210
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5154
5211
|
display_value?: string | undefined;
|
|
5155
5212
|
are_pins_interchangeable?: boolean | undefined;
|
|
5213
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5156
5214
|
}, {
|
|
5157
5215
|
type: "source_component";
|
|
5158
5216
|
name: string;
|
|
@@ -5164,6 +5222,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5164
5222
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5165
5223
|
display_value?: string | undefined;
|
|
5166
5224
|
are_pins_interchangeable?: boolean | undefined;
|
|
5225
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5167
5226
|
}>;
|
|
5168
5227
|
type SourceSimpleMosfetInput = z.input<typeof source_simple_mosfet>;
|
|
5169
5228
|
/**
|
|
@@ -5186,6 +5245,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5186
5245
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5187
5246
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5188
5247
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5248
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5189
5249
|
}, {
|
|
5190
5250
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5191
5251
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5197,6 +5257,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5197
5257
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5198
5258
|
display_value?: string | undefined;
|
|
5199
5259
|
are_pins_interchangeable?: boolean | undefined;
|
|
5260
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5200
5261
|
}, {
|
|
5201
5262
|
type: "source_component";
|
|
5202
5263
|
name: string;
|
|
@@ -5206,6 +5267,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5206
5267
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5207
5268
|
display_value?: string | undefined;
|
|
5208
5269
|
are_pins_interchangeable?: boolean | undefined;
|
|
5270
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5209
5271
|
}>;
|
|
5210
5272
|
type SourceSimpleSwitchInput = z.input<typeof source_simple_switch>;
|
|
5211
5273
|
/**
|
|
@@ -5363,6 +5425,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5363
5425
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5364
5426
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5365
5427
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5428
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5366
5429
|
}, {
|
|
5367
5430
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
5368
5431
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5377,6 +5440,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5377
5440
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5378
5441
|
display_value?: string | undefined;
|
|
5379
5442
|
are_pins_interchangeable?: boolean | undefined;
|
|
5443
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5380
5444
|
display_resistance?: string | undefined;
|
|
5381
5445
|
}, {
|
|
5382
5446
|
type: "source_component";
|
|
@@ -5388,6 +5452,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5388
5452
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5389
5453
|
display_value?: string | undefined;
|
|
5390
5454
|
are_pins_interchangeable?: boolean | undefined;
|
|
5455
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5391
5456
|
display_resistance?: string | undefined;
|
|
5392
5457
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5393
5458
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5398,6 +5463,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5398
5463
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5399
5464
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5400
5465
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5466
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5401
5467
|
}, {
|
|
5402
5468
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
5403
5469
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5414,6 +5480,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5414
5480
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5415
5481
|
display_value?: string | undefined;
|
|
5416
5482
|
are_pins_interchangeable?: boolean | undefined;
|
|
5483
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5417
5484
|
max_voltage_rating?: number | undefined;
|
|
5418
5485
|
display_capacitance?: string | undefined;
|
|
5419
5486
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -5427,6 +5494,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5427
5494
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5428
5495
|
display_value?: string | undefined;
|
|
5429
5496
|
are_pins_interchangeable?: boolean | undefined;
|
|
5497
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5430
5498
|
max_voltage_rating?: string | number | undefined;
|
|
5431
5499
|
display_capacitance?: string | undefined;
|
|
5432
5500
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -5439,6 +5507,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5439
5507
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5440
5508
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5441
5509
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5510
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5442
5511
|
}, {
|
|
5443
5512
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5444
5513
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5450,6 +5519,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5450
5519
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5451
5520
|
display_value?: string | undefined;
|
|
5452
5521
|
are_pins_interchangeable?: boolean | undefined;
|
|
5522
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5453
5523
|
}, {
|
|
5454
5524
|
type: "source_component";
|
|
5455
5525
|
name: string;
|
|
@@ -5459,6 +5529,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5459
5529
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5460
5530
|
display_value?: string | undefined;
|
|
5461
5531
|
are_pins_interchangeable?: boolean | undefined;
|
|
5532
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5462
5533
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5463
5534
|
type: z.ZodLiteral<"source_component">;
|
|
5464
5535
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5468,6 +5539,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5468
5539
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5469
5540
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5470
5541
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5542
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5471
5543
|
}, {
|
|
5472
5544
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5473
5545
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5479,6 +5551,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5479
5551
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5480
5552
|
display_value?: string | undefined;
|
|
5481
5553
|
are_pins_interchangeable?: boolean | undefined;
|
|
5554
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5482
5555
|
}, {
|
|
5483
5556
|
type: "source_component";
|
|
5484
5557
|
name: string;
|
|
@@ -5488,6 +5561,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5488
5561
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5489
5562
|
display_value?: string | undefined;
|
|
5490
5563
|
are_pins_interchangeable?: boolean | undefined;
|
|
5564
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5491
5565
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5492
5566
|
type: z.ZodLiteral<"source_component">;
|
|
5493
5567
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5497,6 +5571,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5497
5571
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5498
5572
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5499
5573
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5574
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5500
5575
|
}, {
|
|
5501
5576
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
5502
5577
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5508,6 +5583,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5508
5583
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5509
5584
|
display_value?: string | undefined;
|
|
5510
5585
|
are_pins_interchangeable?: boolean | undefined;
|
|
5586
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5511
5587
|
}, {
|
|
5512
5588
|
type: "source_component";
|
|
5513
5589
|
name: string;
|
|
@@ -5517,6 +5593,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5517
5593
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5518
5594
|
display_value?: string | undefined;
|
|
5519
5595
|
are_pins_interchangeable?: boolean | undefined;
|
|
5596
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5520
5597
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5521
5598
|
type: z.ZodLiteral<"source_component">;
|
|
5522
5599
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5526,6 +5603,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5526
5603
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5527
5604
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5528
5605
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5606
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5529
5607
|
}, {
|
|
5530
5608
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
5531
5609
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5537,6 +5615,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5537
5615
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5538
5616
|
display_value?: string | undefined;
|
|
5539
5617
|
are_pins_interchangeable?: boolean | undefined;
|
|
5618
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5540
5619
|
}, {
|
|
5541
5620
|
type: "source_component";
|
|
5542
5621
|
name: string;
|
|
@@ -5546,6 +5625,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5546
5625
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5547
5626
|
display_value?: string | undefined;
|
|
5548
5627
|
are_pins_interchangeable?: boolean | undefined;
|
|
5628
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5549
5629
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5550
5630
|
type: z.ZodLiteral<"source_component">;
|
|
5551
5631
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5555,6 +5635,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5555
5635
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5556
5636
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5557
5637
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5638
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5558
5639
|
}, {
|
|
5559
5640
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5560
5641
|
}>, {
|
|
@@ -5568,6 +5649,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5568
5649
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5569
5650
|
display_value?: string | undefined;
|
|
5570
5651
|
are_pins_interchangeable?: boolean | undefined;
|
|
5652
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5571
5653
|
}, {
|
|
5572
5654
|
type: "source_component";
|
|
5573
5655
|
name: string;
|
|
@@ -5577,6 +5659,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5577
5659
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5578
5660
|
display_value?: string | undefined;
|
|
5579
5661
|
are_pins_interchangeable?: boolean | undefined;
|
|
5662
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5580
5663
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5581
5664
|
type: z.ZodLiteral<"source_component">;
|
|
5582
5665
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5586,6 +5669,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5586
5669
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5587
5670
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5588
5671
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5672
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5589
5673
|
}, {
|
|
5590
5674
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
5591
5675
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5599,6 +5683,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5599
5683
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5600
5684
|
display_value?: string | undefined;
|
|
5601
5685
|
are_pins_interchangeable?: boolean | undefined;
|
|
5686
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5602
5687
|
}, {
|
|
5603
5688
|
type: "source_component";
|
|
5604
5689
|
name: string;
|
|
@@ -5609,6 +5694,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5609
5694
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5610
5695
|
display_value?: string | undefined;
|
|
5611
5696
|
are_pins_interchangeable?: boolean | undefined;
|
|
5697
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5612
5698
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5613
5699
|
type: z.ZodLiteral<"source_component">;
|
|
5614
5700
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5618,6 +5704,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5618
5704
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5619
5705
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5620
5706
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5707
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5621
5708
|
}, {
|
|
5622
5709
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
5623
5710
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -5631,6 +5718,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5631
5718
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5632
5719
|
display_value?: string | undefined;
|
|
5633
5720
|
are_pins_interchangeable?: boolean | undefined;
|
|
5721
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5634
5722
|
}, {
|
|
5635
5723
|
type: "source_component";
|
|
5636
5724
|
name: string;
|
|
@@ -5641,6 +5729,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5641
5729
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5642
5730
|
display_value?: string | undefined;
|
|
5643
5731
|
are_pins_interchangeable?: boolean | undefined;
|
|
5732
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5644
5733
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5645
5734
|
type: z.ZodLiteral<"source_component">;
|
|
5646
5735
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5650,6 +5739,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5650
5739
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5651
5740
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5652
5741
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5742
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5653
5743
|
}, {
|
|
5654
5744
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
5655
5745
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5663,6 +5753,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5663
5753
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5664
5754
|
display_value?: string | undefined;
|
|
5665
5755
|
are_pins_interchangeable?: boolean | undefined;
|
|
5756
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5666
5757
|
}, {
|
|
5667
5758
|
type: "source_component";
|
|
5668
5759
|
name: string;
|
|
@@ -5673,6 +5764,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5673
5764
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5674
5765
|
display_value?: string | undefined;
|
|
5675
5766
|
are_pins_interchangeable?: boolean | undefined;
|
|
5767
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5676
5768
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5677
5769
|
type: z.ZodLiteral<"source_component">;
|
|
5678
5770
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5682,6 +5774,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5682
5774
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5683
5775
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5684
5776
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5777
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5685
5778
|
}, {
|
|
5686
5779
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
5687
5780
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5693,6 +5786,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5693
5786
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5694
5787
|
display_value?: string | undefined;
|
|
5695
5788
|
are_pins_interchangeable?: boolean | undefined;
|
|
5789
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5696
5790
|
}, {
|
|
5697
5791
|
type: "source_component";
|
|
5698
5792
|
name: string;
|
|
@@ -5702,6 +5796,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5702
5796
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5703
5797
|
display_value?: string | undefined;
|
|
5704
5798
|
are_pins_interchangeable?: boolean | undefined;
|
|
5799
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5705
5800
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5706
5801
|
type: z.ZodLiteral<"source_component">;
|
|
5707
5802
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5711,6 +5806,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5711
5806
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5712
5807
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5713
5808
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5809
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5714
5810
|
}, {
|
|
5715
5811
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5716
5812
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5724,6 +5820,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5724
5820
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5725
5821
|
display_value?: string | undefined;
|
|
5726
5822
|
are_pins_interchangeable?: boolean | undefined;
|
|
5823
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5727
5824
|
}, {
|
|
5728
5825
|
type: "source_component";
|
|
5729
5826
|
name: string;
|
|
@@ -5734,6 +5831,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5734
5831
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5735
5832
|
display_value?: string | undefined;
|
|
5736
5833
|
are_pins_interchangeable?: boolean | undefined;
|
|
5834
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5737
5835
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5738
5836
|
type: z.ZodLiteral<"source_component">;
|
|
5739
5837
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5743,6 +5841,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5743
5841
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5744
5842
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5745
5843
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5844
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5746
5845
|
}, {
|
|
5747
5846
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
5748
5847
|
frequency: z.ZodNumber;
|
|
@@ -5757,6 +5856,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5757
5856
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5758
5857
|
display_value?: string | undefined;
|
|
5759
5858
|
are_pins_interchangeable?: boolean | undefined;
|
|
5859
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5760
5860
|
load_capacitance?: number | undefined;
|
|
5761
5861
|
}, {
|
|
5762
5862
|
type: "source_component";
|
|
@@ -5768,6 +5868,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5768
5868
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5769
5869
|
display_value?: string | undefined;
|
|
5770
5870
|
are_pins_interchangeable?: boolean | undefined;
|
|
5871
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5771
5872
|
load_capacitance?: number | undefined;
|
|
5772
5873
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5773
5874
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5778,6 +5879,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5778
5879
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5779
5880
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5780
5881
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5882
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5781
5883
|
}, {
|
|
5782
5884
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5783
5885
|
pin_count: z.ZodNumber;
|
|
@@ -5793,6 +5895,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5793
5895
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5794
5896
|
display_value?: string | undefined;
|
|
5795
5897
|
are_pins_interchangeable?: boolean | undefined;
|
|
5898
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5796
5899
|
}, {
|
|
5797
5900
|
type: "source_component";
|
|
5798
5901
|
name: string;
|
|
@@ -5803,6 +5906,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5803
5906
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5804
5907
|
display_value?: string | undefined;
|
|
5805
5908
|
are_pins_interchangeable?: boolean | undefined;
|
|
5909
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5806
5910
|
gender?: "male" | "female" | undefined;
|
|
5807
5911
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5808
5912
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5813,6 +5917,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5813
5917
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5814
5918
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5815
5919
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5920
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5816
5921
|
}, {
|
|
5817
5922
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
5818
5923
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5829,6 +5934,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5829
5934
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5830
5935
|
display_value?: string | undefined;
|
|
5831
5936
|
are_pins_interchangeable?: boolean | undefined;
|
|
5937
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5832
5938
|
equivalent_series_resistance?: number | undefined;
|
|
5833
5939
|
}, {
|
|
5834
5940
|
type: "source_component";
|
|
@@ -5841,6 +5947,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5841
5947
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5842
5948
|
display_value?: string | undefined;
|
|
5843
5949
|
are_pins_interchangeable?: boolean | undefined;
|
|
5950
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5844
5951
|
equivalent_series_resistance?: string | number | undefined;
|
|
5845
5952
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5846
5953
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5851,6 +5958,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5851
5958
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5852
5959
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5853
5960
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5961
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5854
5962
|
}, {
|
|
5855
5963
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5856
5964
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5862,6 +5970,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5862
5970
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5863
5971
|
display_value?: string | undefined;
|
|
5864
5972
|
are_pins_interchangeable?: boolean | undefined;
|
|
5973
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5865
5974
|
}, {
|
|
5866
5975
|
type: "source_component";
|
|
5867
5976
|
name: string;
|
|
@@ -5871,6 +5980,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5871
5980
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5872
5981
|
display_value?: string | undefined;
|
|
5873
5982
|
are_pins_interchangeable?: boolean | undefined;
|
|
5983
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5874
5984
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5875
5985
|
type: z.ZodLiteral<"source_component">;
|
|
5876
5986
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5880,6 +5990,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5880
5990
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5881
5991
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5882
5992
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5993
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5883
5994
|
}, {
|
|
5884
5995
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5885
5996
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5893,6 +6004,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5893
6004
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5894
6005
|
display_value?: string | undefined;
|
|
5895
6006
|
are_pins_interchangeable?: boolean | undefined;
|
|
6007
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5896
6008
|
}, {
|
|
5897
6009
|
type: "source_component";
|
|
5898
6010
|
name: string;
|
|
@@ -5903,6 +6015,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5903
6015
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5904
6016
|
display_value?: string | undefined;
|
|
5905
6017
|
are_pins_interchangeable?: boolean | undefined;
|
|
6018
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5906
6019
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5907
6020
|
type: z.ZodLiteral<"source_component">;
|
|
5908
6021
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5912,6 +6025,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5912
6025
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5913
6026
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5914
6027
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6028
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
5915
6029
|
}, {
|
|
5916
6030
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5917
6031
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5927,6 +6041,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5927
6041
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5928
6042
|
display_value?: string | undefined;
|
|
5929
6043
|
are_pins_interchangeable?: boolean | undefined;
|
|
6044
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5930
6045
|
}, {
|
|
5931
6046
|
type: "source_component";
|
|
5932
6047
|
name: string;
|
|
@@ -5938,6 +6053,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5938
6053
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5939
6054
|
display_value?: string | undefined;
|
|
5940
6055
|
are_pins_interchangeable?: boolean | undefined;
|
|
6056
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
5941
6057
|
}>, z.ZodObject<{
|
|
5942
6058
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
5943
6059
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6361,6 +6477,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6361
6477
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6362
6478
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6363
6479
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6480
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6364
6481
|
}, {
|
|
6365
6482
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6366
6483
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6375,6 +6492,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6375
6492
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6376
6493
|
display_value?: string | undefined;
|
|
6377
6494
|
are_pins_interchangeable?: boolean | undefined;
|
|
6495
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6378
6496
|
display_resistance?: string | undefined;
|
|
6379
6497
|
}, {
|
|
6380
6498
|
type: "source_component";
|
|
@@ -6386,6 +6504,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6386
6504
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6387
6505
|
display_value?: string | undefined;
|
|
6388
6506
|
are_pins_interchangeable?: boolean | undefined;
|
|
6507
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6389
6508
|
display_resistance?: string | undefined;
|
|
6390
6509
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6391
6510
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6396,6 +6515,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6396
6515
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6397
6516
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6398
6517
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6518
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6399
6519
|
}, {
|
|
6400
6520
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6401
6521
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6412,6 +6532,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6412
6532
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6413
6533
|
display_value?: string | undefined;
|
|
6414
6534
|
are_pins_interchangeable?: boolean | undefined;
|
|
6535
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6415
6536
|
max_voltage_rating?: number | undefined;
|
|
6416
6537
|
display_capacitance?: string | undefined;
|
|
6417
6538
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -6425,6 +6546,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6425
6546
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6426
6547
|
display_value?: string | undefined;
|
|
6427
6548
|
are_pins_interchangeable?: boolean | undefined;
|
|
6549
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6428
6550
|
max_voltage_rating?: string | number | undefined;
|
|
6429
6551
|
display_capacitance?: string | undefined;
|
|
6430
6552
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -6437,6 +6559,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6437
6559
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6438
6560
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6439
6561
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6562
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6440
6563
|
}, {
|
|
6441
6564
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6442
6565
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6448,6 +6571,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6448
6571
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6449
6572
|
display_value?: string | undefined;
|
|
6450
6573
|
are_pins_interchangeable?: boolean | undefined;
|
|
6574
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6451
6575
|
}, {
|
|
6452
6576
|
type: "source_component";
|
|
6453
6577
|
name: string;
|
|
@@ -6457,6 +6581,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6457
6581
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6458
6582
|
display_value?: string | undefined;
|
|
6459
6583
|
are_pins_interchangeable?: boolean | undefined;
|
|
6584
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6460
6585
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6461
6586
|
type: z.ZodLiteral<"source_component">;
|
|
6462
6587
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6466,6 +6591,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6466
6591
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6467
6592
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6468
6593
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6594
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6469
6595
|
}, {
|
|
6470
6596
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
6471
6597
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6477,6 +6603,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6477
6603
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6478
6604
|
display_value?: string | undefined;
|
|
6479
6605
|
are_pins_interchangeable?: boolean | undefined;
|
|
6606
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6480
6607
|
}, {
|
|
6481
6608
|
type: "source_component";
|
|
6482
6609
|
name: string;
|
|
@@ -6486,6 +6613,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6486
6613
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6487
6614
|
display_value?: string | undefined;
|
|
6488
6615
|
are_pins_interchangeable?: boolean | undefined;
|
|
6616
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6489
6617
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6490
6618
|
type: z.ZodLiteral<"source_component">;
|
|
6491
6619
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6495,6 +6623,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6495
6623
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6496
6624
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6497
6625
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6626
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6498
6627
|
}, {
|
|
6499
6628
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6500
6629
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6506,6 +6635,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6506
6635
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6507
6636
|
display_value?: string | undefined;
|
|
6508
6637
|
are_pins_interchangeable?: boolean | undefined;
|
|
6638
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6509
6639
|
}, {
|
|
6510
6640
|
type: "source_component";
|
|
6511
6641
|
name: string;
|
|
@@ -6515,6 +6645,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6515
6645
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6516
6646
|
display_value?: string | undefined;
|
|
6517
6647
|
are_pins_interchangeable?: boolean | undefined;
|
|
6648
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6518
6649
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6519
6650
|
type: z.ZodLiteral<"source_component">;
|
|
6520
6651
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6524,6 +6655,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6524
6655
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6525
6656
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6526
6657
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6658
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6527
6659
|
}, {
|
|
6528
6660
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6529
6661
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6535,6 +6667,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6535
6667
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6536
6668
|
display_value?: string | undefined;
|
|
6537
6669
|
are_pins_interchangeable?: boolean | undefined;
|
|
6670
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6538
6671
|
}, {
|
|
6539
6672
|
type: "source_component";
|
|
6540
6673
|
name: string;
|
|
@@ -6544,6 +6677,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6544
6677
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6545
6678
|
display_value?: string | undefined;
|
|
6546
6679
|
are_pins_interchangeable?: boolean | undefined;
|
|
6680
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6547
6681
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6548
6682
|
type: z.ZodLiteral<"source_component">;
|
|
6549
6683
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6553,6 +6687,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6553
6687
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6554
6688
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6555
6689
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6690
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6556
6691
|
}, {
|
|
6557
6692
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6558
6693
|
}>, {
|
|
@@ -6566,6 +6701,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6566
6701
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6567
6702
|
display_value?: string | undefined;
|
|
6568
6703
|
are_pins_interchangeable?: boolean | undefined;
|
|
6704
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6569
6705
|
}, {
|
|
6570
6706
|
type: "source_component";
|
|
6571
6707
|
name: string;
|
|
@@ -6575,6 +6711,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6575
6711
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6576
6712
|
display_value?: string | undefined;
|
|
6577
6713
|
are_pins_interchangeable?: boolean | undefined;
|
|
6714
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6578
6715
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6579
6716
|
type: z.ZodLiteral<"source_component">;
|
|
6580
6717
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6584,6 +6721,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6584
6721
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6585
6722
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6586
6723
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6724
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6587
6725
|
}, {
|
|
6588
6726
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6589
6727
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6597,6 +6735,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6597
6735
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6598
6736
|
display_value?: string | undefined;
|
|
6599
6737
|
are_pins_interchangeable?: boolean | undefined;
|
|
6738
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6600
6739
|
}, {
|
|
6601
6740
|
type: "source_component";
|
|
6602
6741
|
name: string;
|
|
@@ -6607,6 +6746,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6607
6746
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6608
6747
|
display_value?: string | undefined;
|
|
6609
6748
|
are_pins_interchangeable?: boolean | undefined;
|
|
6749
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6610
6750
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6611
6751
|
type: z.ZodLiteral<"source_component">;
|
|
6612
6752
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6616,6 +6756,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6616
6756
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6617
6757
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6618
6758
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6759
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6619
6760
|
}, {
|
|
6620
6761
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6621
6762
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6629,6 +6770,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6629
6770
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6630
6771
|
display_value?: string | undefined;
|
|
6631
6772
|
are_pins_interchangeable?: boolean | undefined;
|
|
6773
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6632
6774
|
}, {
|
|
6633
6775
|
type: "source_component";
|
|
6634
6776
|
name: string;
|
|
@@ -6639,6 +6781,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6639
6781
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6640
6782
|
display_value?: string | undefined;
|
|
6641
6783
|
are_pins_interchangeable?: boolean | undefined;
|
|
6784
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6642
6785
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6643
6786
|
type: z.ZodLiteral<"source_component">;
|
|
6644
6787
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6648,6 +6791,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6648
6791
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6649
6792
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6650
6793
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6794
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6651
6795
|
}, {
|
|
6652
6796
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6653
6797
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6661,6 +6805,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6661
6805
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6662
6806
|
display_value?: string | undefined;
|
|
6663
6807
|
are_pins_interchangeable?: boolean | undefined;
|
|
6808
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6664
6809
|
}, {
|
|
6665
6810
|
type: "source_component";
|
|
6666
6811
|
name: string;
|
|
@@ -6671,6 +6816,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6671
6816
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6672
6817
|
display_value?: string | undefined;
|
|
6673
6818
|
are_pins_interchangeable?: boolean | undefined;
|
|
6819
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6674
6820
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6675
6821
|
type: z.ZodLiteral<"source_component">;
|
|
6676
6822
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6680,6 +6826,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6680
6826
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6681
6827
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6682
6828
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6829
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6683
6830
|
}, {
|
|
6684
6831
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
6685
6832
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6691,6 +6838,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6691
6838
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6692
6839
|
display_value?: string | undefined;
|
|
6693
6840
|
are_pins_interchangeable?: boolean | undefined;
|
|
6841
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6694
6842
|
}, {
|
|
6695
6843
|
type: "source_component";
|
|
6696
6844
|
name: string;
|
|
@@ -6700,6 +6848,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6700
6848
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6701
6849
|
display_value?: string | undefined;
|
|
6702
6850
|
are_pins_interchangeable?: boolean | undefined;
|
|
6851
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6703
6852
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6704
6853
|
type: z.ZodLiteral<"source_component">;
|
|
6705
6854
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6709,6 +6858,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6709
6858
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6710
6859
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6711
6860
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6861
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6712
6862
|
}, {
|
|
6713
6863
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
6714
6864
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6722,6 +6872,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6722
6872
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6723
6873
|
display_value?: string | undefined;
|
|
6724
6874
|
are_pins_interchangeable?: boolean | undefined;
|
|
6875
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6725
6876
|
}, {
|
|
6726
6877
|
type: "source_component";
|
|
6727
6878
|
name: string;
|
|
@@ -6732,6 +6883,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6732
6883
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6733
6884
|
display_value?: string | undefined;
|
|
6734
6885
|
are_pins_interchangeable?: boolean | undefined;
|
|
6886
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6735
6887
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6736
6888
|
type: z.ZodLiteral<"source_component">;
|
|
6737
6889
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6741,6 +6893,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6741
6893
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6742
6894
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6743
6895
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6896
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6744
6897
|
}, {
|
|
6745
6898
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
6746
6899
|
frequency: z.ZodNumber;
|
|
@@ -6755,6 +6908,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6755
6908
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6756
6909
|
display_value?: string | undefined;
|
|
6757
6910
|
are_pins_interchangeable?: boolean | undefined;
|
|
6911
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6758
6912
|
load_capacitance?: number | undefined;
|
|
6759
6913
|
}, {
|
|
6760
6914
|
type: "source_component";
|
|
@@ -6766,6 +6920,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6766
6920
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6767
6921
|
display_value?: string | undefined;
|
|
6768
6922
|
are_pins_interchangeable?: boolean | undefined;
|
|
6923
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6769
6924
|
load_capacitance?: number | undefined;
|
|
6770
6925
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6771
6926
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6776,6 +6931,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6776
6931
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6777
6932
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6778
6933
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6934
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6779
6935
|
}, {
|
|
6780
6936
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6781
6937
|
pin_count: z.ZodNumber;
|
|
@@ -6791,6 +6947,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6791
6947
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6792
6948
|
display_value?: string | undefined;
|
|
6793
6949
|
are_pins_interchangeable?: boolean | undefined;
|
|
6950
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6794
6951
|
}, {
|
|
6795
6952
|
type: "source_component";
|
|
6796
6953
|
name: string;
|
|
@@ -6801,6 +6958,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6801
6958
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6802
6959
|
display_value?: string | undefined;
|
|
6803
6960
|
are_pins_interchangeable?: boolean | undefined;
|
|
6961
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6804
6962
|
gender?: "male" | "female" | undefined;
|
|
6805
6963
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6806
6964
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6811,6 +6969,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6811
6969
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6812
6970
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6813
6971
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6972
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6814
6973
|
}, {
|
|
6815
6974
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6816
6975
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6827,6 +6986,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6827
6986
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6828
6987
|
display_value?: string | undefined;
|
|
6829
6988
|
are_pins_interchangeable?: boolean | undefined;
|
|
6989
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6830
6990
|
equivalent_series_resistance?: number | undefined;
|
|
6831
6991
|
}, {
|
|
6832
6992
|
type: "source_component";
|
|
@@ -6839,6 +6999,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6839
6999
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6840
7000
|
display_value?: string | undefined;
|
|
6841
7001
|
are_pins_interchangeable?: boolean | undefined;
|
|
7002
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6842
7003
|
equivalent_series_resistance?: string | number | undefined;
|
|
6843
7004
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6844
7005
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6849,6 +7010,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6849
7010
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6850
7011
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6851
7012
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7013
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6852
7014
|
}, {
|
|
6853
7015
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6854
7016
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6860,6 +7022,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6860
7022
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6861
7023
|
display_value?: string | undefined;
|
|
6862
7024
|
are_pins_interchangeable?: boolean | undefined;
|
|
7025
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6863
7026
|
}, {
|
|
6864
7027
|
type: "source_component";
|
|
6865
7028
|
name: string;
|
|
@@ -6869,6 +7032,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6869
7032
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6870
7033
|
display_value?: string | undefined;
|
|
6871
7034
|
are_pins_interchangeable?: boolean | undefined;
|
|
7035
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6872
7036
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6873
7037
|
type: z.ZodLiteral<"source_component">;
|
|
6874
7038
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6878,6 +7042,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6878
7042
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6879
7043
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6880
7044
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7045
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6881
7046
|
}, {
|
|
6882
7047
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6883
7048
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -6891,6 +7056,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6891
7056
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6892
7057
|
display_value?: string | undefined;
|
|
6893
7058
|
are_pins_interchangeable?: boolean | undefined;
|
|
7059
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6894
7060
|
}, {
|
|
6895
7061
|
type: "source_component";
|
|
6896
7062
|
name: string;
|
|
@@ -6901,6 +7067,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6901
7067
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6902
7068
|
display_value?: string | undefined;
|
|
6903
7069
|
are_pins_interchangeable?: boolean | undefined;
|
|
7070
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6904
7071
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6905
7072
|
type: z.ZodLiteral<"source_component">;
|
|
6906
7073
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6910,6 +7077,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6910
7077
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6911
7078
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6912
7079
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7080
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
6913
7081
|
}, {
|
|
6914
7082
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
6915
7083
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -6925,6 +7093,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6925
7093
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6926
7094
|
display_value?: string | undefined;
|
|
6927
7095
|
are_pins_interchangeable?: boolean | undefined;
|
|
7096
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6928
7097
|
}, {
|
|
6929
7098
|
type: "source_component";
|
|
6930
7099
|
name: string;
|
|
@@ -6936,6 +7105,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6936
7105
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6937
7106
|
display_value?: string | undefined;
|
|
6938
7107
|
are_pins_interchangeable?: boolean | undefined;
|
|
7108
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
6939
7109
|
}>, z.ZodObject<{
|
|
6940
7110
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
6941
7111
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -7038,6 +7208,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7038
7208
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7039
7209
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7040
7210
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7211
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7041
7212
|
}, {
|
|
7042
7213
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7043
7214
|
}>, {
|
|
@@ -7051,6 +7222,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7051
7222
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7052
7223
|
display_value?: string | undefined;
|
|
7053
7224
|
are_pins_interchangeable?: boolean | undefined;
|
|
7225
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7054
7226
|
}, {
|
|
7055
7227
|
type: "source_component";
|
|
7056
7228
|
name: string;
|
|
@@ -7060,6 +7232,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7060
7232
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7061
7233
|
display_value?: string | undefined;
|
|
7062
7234
|
are_pins_interchangeable?: boolean | undefined;
|
|
7235
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7063
7236
|
}>, z.ZodObject<{
|
|
7064
7237
|
type: z.ZodLiteral<"source_net">;
|
|
7065
7238
|
source_net_id: z.ZodString;
|
|
@@ -7123,6 +7296,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7123
7296
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7124
7297
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7125
7298
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7299
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7126
7300
|
}, {
|
|
7127
7301
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
7128
7302
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7134,6 +7308,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7134
7308
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7135
7309
|
display_value?: string | undefined;
|
|
7136
7310
|
are_pins_interchangeable?: boolean | undefined;
|
|
7311
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7137
7312
|
}, {
|
|
7138
7313
|
type: "source_component";
|
|
7139
7314
|
name: string;
|
|
@@ -7143,6 +7318,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7143
7318
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7144
7319
|
display_value?: string | undefined;
|
|
7145
7320
|
are_pins_interchangeable?: boolean | undefined;
|
|
7321
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7146
7322
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7147
7323
|
type: z.ZodLiteral<"source_component">;
|
|
7148
7324
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7152,6 +7328,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7152
7328
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7153
7329
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7154
7330
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7331
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7155
7332
|
}, {
|
|
7156
7333
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
7157
7334
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7163,6 +7340,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7163
7340
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7164
7341
|
display_value?: string | undefined;
|
|
7165
7342
|
are_pins_interchangeable?: boolean | undefined;
|
|
7343
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7166
7344
|
}, {
|
|
7167
7345
|
type: "source_component";
|
|
7168
7346
|
name: string;
|
|
@@ -7172,6 +7350,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7172
7350
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7173
7351
|
display_value?: string | undefined;
|
|
7174
7352
|
are_pins_interchangeable?: boolean | undefined;
|
|
7353
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7175
7354
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7176
7355
|
type: z.ZodLiteral<"source_component">;
|
|
7177
7356
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7181,6 +7360,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7181
7360
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7182
7361
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7183
7362
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7363
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7184
7364
|
}, {
|
|
7185
7365
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
7186
7366
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7197,6 +7377,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7197
7377
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7198
7378
|
display_value?: string | undefined;
|
|
7199
7379
|
are_pins_interchangeable?: boolean | undefined;
|
|
7380
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7200
7381
|
max_voltage_rating?: number | undefined;
|
|
7201
7382
|
display_capacitance?: string | undefined;
|
|
7202
7383
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -7210,6 +7391,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7210
7391
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7211
7392
|
display_value?: string | undefined;
|
|
7212
7393
|
are_pins_interchangeable?: boolean | undefined;
|
|
7394
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7213
7395
|
max_voltage_rating?: string | number | undefined;
|
|
7214
7396
|
display_capacitance?: string | undefined;
|
|
7215
7397
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -7222,6 +7404,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7222
7404
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7223
7405
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7224
7406
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7407
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7225
7408
|
}, {
|
|
7226
7409
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
7227
7410
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7233,6 +7416,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7233
7416
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7234
7417
|
display_value?: string | undefined;
|
|
7235
7418
|
are_pins_interchangeable?: boolean | undefined;
|
|
7419
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7236
7420
|
}, {
|
|
7237
7421
|
type: "source_component";
|
|
7238
7422
|
name: string;
|
|
@@ -7242,6 +7426,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7242
7426
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7243
7427
|
display_value?: string | undefined;
|
|
7244
7428
|
are_pins_interchangeable?: boolean | undefined;
|
|
7429
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7245
7430
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7246
7431
|
type: z.ZodLiteral<"source_component">;
|
|
7247
7432
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7251,6 +7436,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7251
7436
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7252
7437
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7253
7438
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7439
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7254
7440
|
}, {
|
|
7255
7441
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
7256
7442
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7265,6 +7451,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7265
7451
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7266
7452
|
display_value?: string | undefined;
|
|
7267
7453
|
are_pins_interchangeable?: boolean | undefined;
|
|
7454
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7268
7455
|
display_resistance?: string | undefined;
|
|
7269
7456
|
}, {
|
|
7270
7457
|
type: "source_component";
|
|
@@ -7276,6 +7463,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7276
7463
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7277
7464
|
display_value?: string | undefined;
|
|
7278
7465
|
are_pins_interchangeable?: boolean | undefined;
|
|
7466
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7279
7467
|
display_resistance?: string | undefined;
|
|
7280
7468
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7281
7469
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -7286,6 +7474,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7286
7474
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7287
7475
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7288
7476
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7477
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7289
7478
|
}, {
|
|
7290
7479
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
7291
7480
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7299,6 +7488,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7299
7488
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7300
7489
|
display_value?: string | undefined;
|
|
7301
7490
|
are_pins_interchangeable?: boolean | undefined;
|
|
7491
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7302
7492
|
}, {
|
|
7303
7493
|
type: "source_component";
|
|
7304
7494
|
name: string;
|
|
@@ -7309,6 +7499,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7309
7499
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7310
7500
|
display_value?: string | undefined;
|
|
7311
7501
|
are_pins_interchangeable?: boolean | undefined;
|
|
7502
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7312
7503
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7313
7504
|
type: z.ZodLiteral<"source_component">;
|
|
7314
7505
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7318,6 +7509,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7318
7509
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7319
7510
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7320
7511
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7512
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7321
7513
|
}, {
|
|
7322
7514
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
7323
7515
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -7331,6 +7523,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7331
7523
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7332
7524
|
display_value?: string | undefined;
|
|
7333
7525
|
are_pins_interchangeable?: boolean | undefined;
|
|
7526
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7334
7527
|
}, {
|
|
7335
7528
|
type: "source_component";
|
|
7336
7529
|
name: string;
|
|
@@ -7341,6 +7534,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7341
7534
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7342
7535
|
display_value?: string | undefined;
|
|
7343
7536
|
are_pins_interchangeable?: boolean | undefined;
|
|
7537
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7344
7538
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7345
7539
|
type: z.ZodLiteral<"source_component">;
|
|
7346
7540
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7350,6 +7544,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7350
7544
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7351
7545
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7352
7546
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7547
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7353
7548
|
}, {
|
|
7354
7549
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
7355
7550
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7363,6 +7558,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7363
7558
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7364
7559
|
display_value?: string | undefined;
|
|
7365
7560
|
are_pins_interchangeable?: boolean | undefined;
|
|
7561
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7366
7562
|
}, {
|
|
7367
7563
|
type: "source_component";
|
|
7368
7564
|
name: string;
|
|
@@ -7373,6 +7569,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7373
7569
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7374
7570
|
display_value?: string | undefined;
|
|
7375
7571
|
are_pins_interchangeable?: boolean | undefined;
|
|
7572
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7376
7573
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7377
7574
|
type: z.ZodLiteral<"source_component">;
|
|
7378
7575
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7382,6 +7579,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7382
7579
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7383
7580
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7384
7581
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7582
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7385
7583
|
}, {
|
|
7386
7584
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
7387
7585
|
pin_count: z.ZodNumber;
|
|
@@ -7397,6 +7595,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7397
7595
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7398
7596
|
display_value?: string | undefined;
|
|
7399
7597
|
are_pins_interchangeable?: boolean | undefined;
|
|
7598
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7400
7599
|
}, {
|
|
7401
7600
|
type: "source_component";
|
|
7402
7601
|
name: string;
|
|
@@ -7407,6 +7606,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7407
7606
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7408
7607
|
display_value?: string | undefined;
|
|
7409
7608
|
are_pins_interchangeable?: boolean | undefined;
|
|
7609
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7410
7610
|
gender?: "male" | "female" | undefined;
|
|
7411
7611
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7412
7612
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -7417,6 +7617,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7417
7617
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7418
7618
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7419
7619
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7620
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7420
7621
|
}, {
|
|
7421
7622
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
7422
7623
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -7433,6 +7634,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7433
7634
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7434
7635
|
display_value?: string | undefined;
|
|
7435
7636
|
are_pins_interchangeable?: boolean | undefined;
|
|
7637
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7436
7638
|
equivalent_series_resistance?: number | undefined;
|
|
7437
7639
|
}, {
|
|
7438
7640
|
type: "source_component";
|
|
@@ -7445,6 +7647,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7445
7647
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7446
7648
|
display_value?: string | undefined;
|
|
7447
7649
|
are_pins_interchangeable?: boolean | undefined;
|
|
7650
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7448
7651
|
equivalent_series_resistance?: string | number | undefined;
|
|
7449
7652
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7450
7653
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -7455,6 +7658,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7455
7658
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7456
7659
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7457
7660
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7661
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7458
7662
|
}, {
|
|
7459
7663
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
7460
7664
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7466,6 +7670,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7466
7670
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7467
7671
|
display_value?: string | undefined;
|
|
7468
7672
|
are_pins_interchangeable?: boolean | undefined;
|
|
7673
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7469
7674
|
}, {
|
|
7470
7675
|
type: "source_component";
|
|
7471
7676
|
name: string;
|
|
@@ -7475,6 +7680,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7475
7680
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7476
7681
|
display_value?: string | undefined;
|
|
7477
7682
|
are_pins_interchangeable?: boolean | undefined;
|
|
7683
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7478
7684
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7479
7685
|
type: z.ZodLiteral<"source_component">;
|
|
7480
7686
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7484,6 +7690,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7484
7690
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7485
7691
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7486
7692
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7693
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7487
7694
|
}, {
|
|
7488
7695
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
7489
7696
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -7497,6 +7704,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7497
7704
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7498
7705
|
display_value?: string | undefined;
|
|
7499
7706
|
are_pins_interchangeable?: boolean | undefined;
|
|
7707
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7500
7708
|
}, {
|
|
7501
7709
|
type: "source_component";
|
|
7502
7710
|
name: string;
|
|
@@ -7507,6 +7715,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7507
7715
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7508
7716
|
display_value?: string | undefined;
|
|
7509
7717
|
are_pins_interchangeable?: boolean | undefined;
|
|
7718
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7510
7719
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7511
7720
|
type: z.ZodLiteral<"source_component">;
|
|
7512
7721
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7516,6 +7725,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7516
7725
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7517
7726
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7518
7727
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7728
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7519
7729
|
}, {
|
|
7520
7730
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
7521
7731
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -7531,6 +7741,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7531
7741
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7532
7742
|
display_value?: string | undefined;
|
|
7533
7743
|
are_pins_interchangeable?: boolean | undefined;
|
|
7744
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7534
7745
|
}, {
|
|
7535
7746
|
type: "source_component";
|
|
7536
7747
|
name: string;
|
|
@@ -7542,6 +7753,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7542
7753
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7543
7754
|
display_value?: string | undefined;
|
|
7544
7755
|
are_pins_interchangeable?: boolean | undefined;
|
|
7756
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7545
7757
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7546
7758
|
type: z.ZodLiteral<"source_component">;
|
|
7547
7759
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7551,6 +7763,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7551
7763
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7552
7764
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7553
7765
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7766
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7554
7767
|
}, {
|
|
7555
7768
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7556
7769
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7564,6 +7777,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7564
7777
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7565
7778
|
display_value?: string | undefined;
|
|
7566
7779
|
are_pins_interchangeable?: boolean | undefined;
|
|
7780
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7567
7781
|
}, {
|
|
7568
7782
|
type: "source_component";
|
|
7569
7783
|
name: string;
|
|
@@ -7574,6 +7788,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7574
7788
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7575
7789
|
display_value?: string | undefined;
|
|
7576
7790
|
are_pins_interchangeable?: boolean | undefined;
|
|
7791
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7577
7792
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7578
7793
|
type: z.ZodLiteral<"source_component">;
|
|
7579
7794
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7583,6 +7798,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7583
7798
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7584
7799
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7585
7800
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7801
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
7586
7802
|
}, {
|
|
7587
7803
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7588
7804
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7594,6 +7810,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7594
7810
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7595
7811
|
display_value?: string | undefined;
|
|
7596
7812
|
are_pins_interchangeable?: boolean | undefined;
|
|
7813
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7597
7814
|
}, {
|
|
7598
7815
|
type: "source_component";
|
|
7599
7816
|
name: string;
|
|
@@ -7603,6 +7820,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7603
7820
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7604
7821
|
display_value?: string | undefined;
|
|
7605
7822
|
are_pins_interchangeable?: boolean | undefined;
|
|
7823
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
7606
7824
|
}>, z.ZodObject<{
|
|
7607
7825
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
7608
7826
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -9485,6 +9703,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9485
9703
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
9486
9704
|
schematic_text_id: z.ZodString;
|
|
9487
9705
|
text: z.ZodString;
|
|
9706
|
+
font_size: z.ZodDefault<z.ZodNumber>;
|
|
9488
9707
|
position: z.ZodObject<{
|
|
9489
9708
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
9490
9709
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -9503,6 +9722,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9503
9722
|
type: "schematic_text";
|
|
9504
9723
|
rotation: number;
|
|
9505
9724
|
text: string;
|
|
9725
|
+
font_size: number;
|
|
9506
9726
|
color: string;
|
|
9507
9727
|
schematic_text_id: string;
|
|
9508
9728
|
position: {
|
|
@@ -9520,6 +9740,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9520
9740
|
};
|
|
9521
9741
|
anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
|
|
9522
9742
|
rotation?: number | undefined;
|
|
9743
|
+
font_size?: number | undefined;
|
|
9523
9744
|
color?: string | undefined;
|
|
9524
9745
|
schematic_component_id?: string | undefined;
|
|
9525
9746
|
}>, z.ZodObject<{
|
|
@@ -10394,6 +10615,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10394
10615
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10395
10616
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10396
10617
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10618
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10397
10619
|
}, {
|
|
10398
10620
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
10399
10621
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10408,6 +10630,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10408
10630
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10409
10631
|
display_value?: string | undefined;
|
|
10410
10632
|
are_pins_interchangeable?: boolean | undefined;
|
|
10633
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10411
10634
|
display_resistance?: string | undefined;
|
|
10412
10635
|
}, {
|
|
10413
10636
|
type: "source_component";
|
|
@@ -10419,6 +10642,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10419
10642
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10420
10643
|
display_value?: string | undefined;
|
|
10421
10644
|
are_pins_interchangeable?: boolean | undefined;
|
|
10645
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10422
10646
|
display_resistance?: string | undefined;
|
|
10423
10647
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10424
10648
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10429,6 +10653,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10429
10653
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10430
10654
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10431
10655
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10656
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10432
10657
|
}, {
|
|
10433
10658
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
10434
10659
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10445,6 +10670,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10445
10670
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10446
10671
|
display_value?: string | undefined;
|
|
10447
10672
|
are_pins_interchangeable?: boolean | undefined;
|
|
10673
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10448
10674
|
max_voltage_rating?: number | undefined;
|
|
10449
10675
|
display_capacitance?: string | undefined;
|
|
10450
10676
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -10458,6 +10684,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10458
10684
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10459
10685
|
display_value?: string | undefined;
|
|
10460
10686
|
are_pins_interchangeable?: boolean | undefined;
|
|
10687
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10461
10688
|
max_voltage_rating?: string | number | undefined;
|
|
10462
10689
|
display_capacitance?: string | undefined;
|
|
10463
10690
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -10470,6 +10697,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10470
10697
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10471
10698
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10472
10699
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10700
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10473
10701
|
}, {
|
|
10474
10702
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10475
10703
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10481,6 +10709,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10481
10709
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10482
10710
|
display_value?: string | undefined;
|
|
10483
10711
|
are_pins_interchangeable?: boolean | undefined;
|
|
10712
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10484
10713
|
}, {
|
|
10485
10714
|
type: "source_component";
|
|
10486
10715
|
name: string;
|
|
@@ -10490,6 +10719,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10490
10719
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10491
10720
|
display_value?: string | undefined;
|
|
10492
10721
|
are_pins_interchangeable?: boolean | undefined;
|
|
10722
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10493
10723
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10494
10724
|
type: z.ZodLiteral<"source_component">;
|
|
10495
10725
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10499,6 +10729,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10499
10729
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10500
10730
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10501
10731
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10732
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10502
10733
|
}, {
|
|
10503
10734
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
10504
10735
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10510,6 +10741,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10510
10741
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10511
10742
|
display_value?: string | undefined;
|
|
10512
10743
|
are_pins_interchangeable?: boolean | undefined;
|
|
10744
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10513
10745
|
}, {
|
|
10514
10746
|
type: "source_component";
|
|
10515
10747
|
name: string;
|
|
@@ -10519,6 +10751,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10519
10751
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10520
10752
|
display_value?: string | undefined;
|
|
10521
10753
|
are_pins_interchangeable?: boolean | undefined;
|
|
10754
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10522
10755
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10523
10756
|
type: z.ZodLiteral<"source_component">;
|
|
10524
10757
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10528,6 +10761,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10528
10761
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10529
10762
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10530
10763
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10764
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10531
10765
|
}, {
|
|
10532
10766
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
10533
10767
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10539,6 +10773,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10539
10773
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10540
10774
|
display_value?: string | undefined;
|
|
10541
10775
|
are_pins_interchangeable?: boolean | undefined;
|
|
10776
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10542
10777
|
}, {
|
|
10543
10778
|
type: "source_component";
|
|
10544
10779
|
name: string;
|
|
@@ -10548,6 +10783,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10548
10783
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10549
10784
|
display_value?: string | undefined;
|
|
10550
10785
|
are_pins_interchangeable?: boolean | undefined;
|
|
10786
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10551
10787
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10552
10788
|
type: z.ZodLiteral<"source_component">;
|
|
10553
10789
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10557,6 +10793,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10557
10793
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10558
10794
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10559
10795
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10796
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10560
10797
|
}, {
|
|
10561
10798
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
10562
10799
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10568,6 +10805,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10568
10805
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10569
10806
|
display_value?: string | undefined;
|
|
10570
10807
|
are_pins_interchangeable?: boolean | undefined;
|
|
10808
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10571
10809
|
}, {
|
|
10572
10810
|
type: "source_component";
|
|
10573
10811
|
name: string;
|
|
@@ -10577,6 +10815,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10577
10815
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10578
10816
|
display_value?: string | undefined;
|
|
10579
10817
|
are_pins_interchangeable?: boolean | undefined;
|
|
10818
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10580
10819
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10581
10820
|
type: z.ZodLiteral<"source_component">;
|
|
10582
10821
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10586,6 +10825,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10586
10825
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10587
10826
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10588
10827
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10828
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10589
10829
|
}, {
|
|
10590
10830
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10591
10831
|
}>, {
|
|
@@ -10599,6 +10839,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10599
10839
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10600
10840
|
display_value?: string | undefined;
|
|
10601
10841
|
are_pins_interchangeable?: boolean | undefined;
|
|
10842
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10602
10843
|
}, {
|
|
10603
10844
|
type: "source_component";
|
|
10604
10845
|
name: string;
|
|
@@ -10608,6 +10849,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10608
10849
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10609
10850
|
display_value?: string | undefined;
|
|
10610
10851
|
are_pins_interchangeable?: boolean | undefined;
|
|
10852
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10611
10853
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10612
10854
|
type: z.ZodLiteral<"source_component">;
|
|
10613
10855
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10617,6 +10859,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10617
10859
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10618
10860
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10619
10861
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10862
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10620
10863
|
}, {
|
|
10621
10864
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
10622
10865
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10630,6 +10873,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10630
10873
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10631
10874
|
display_value?: string | undefined;
|
|
10632
10875
|
are_pins_interchangeable?: boolean | undefined;
|
|
10876
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10633
10877
|
}, {
|
|
10634
10878
|
type: "source_component";
|
|
10635
10879
|
name: string;
|
|
@@ -10640,6 +10884,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10640
10884
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10641
10885
|
display_value?: string | undefined;
|
|
10642
10886
|
are_pins_interchangeable?: boolean | undefined;
|
|
10887
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10643
10888
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10644
10889
|
type: z.ZodLiteral<"source_component">;
|
|
10645
10890
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10649,6 +10894,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10649
10894
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10650
10895
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10651
10896
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10897
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10652
10898
|
}, {
|
|
10653
10899
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
10654
10900
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -10662,6 +10908,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10662
10908
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10663
10909
|
display_value?: string | undefined;
|
|
10664
10910
|
are_pins_interchangeable?: boolean | undefined;
|
|
10911
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10665
10912
|
}, {
|
|
10666
10913
|
type: "source_component";
|
|
10667
10914
|
name: string;
|
|
@@ -10672,6 +10919,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10672
10919
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10673
10920
|
display_value?: string | undefined;
|
|
10674
10921
|
are_pins_interchangeable?: boolean | undefined;
|
|
10922
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10675
10923
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10676
10924
|
type: z.ZodLiteral<"source_component">;
|
|
10677
10925
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10681,6 +10929,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10681
10929
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10682
10930
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10683
10931
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10932
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10684
10933
|
}, {
|
|
10685
10934
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
10686
10935
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10694,6 +10943,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10694
10943
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10695
10944
|
display_value?: string | undefined;
|
|
10696
10945
|
are_pins_interchangeable?: boolean | undefined;
|
|
10946
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10697
10947
|
}, {
|
|
10698
10948
|
type: "source_component";
|
|
10699
10949
|
name: string;
|
|
@@ -10704,6 +10954,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10704
10954
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10705
10955
|
display_value?: string | undefined;
|
|
10706
10956
|
are_pins_interchangeable?: boolean | undefined;
|
|
10957
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10707
10958
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10708
10959
|
type: z.ZodLiteral<"source_component">;
|
|
10709
10960
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10713,6 +10964,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10713
10964
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10714
10965
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10715
10966
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10967
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10716
10968
|
}, {
|
|
10717
10969
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
10718
10970
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10724,6 +10976,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10724
10976
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10725
10977
|
display_value?: string | undefined;
|
|
10726
10978
|
are_pins_interchangeable?: boolean | undefined;
|
|
10979
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10727
10980
|
}, {
|
|
10728
10981
|
type: "source_component";
|
|
10729
10982
|
name: string;
|
|
@@ -10733,6 +10986,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10733
10986
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10734
10987
|
display_value?: string | undefined;
|
|
10735
10988
|
are_pins_interchangeable?: boolean | undefined;
|
|
10989
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10736
10990
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10737
10991
|
type: z.ZodLiteral<"source_component">;
|
|
10738
10992
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10742,6 +10996,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10742
10996
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10743
10997
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10744
10998
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10999
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10745
11000
|
}, {
|
|
10746
11001
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
10747
11002
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10755,6 +11010,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10755
11010
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10756
11011
|
display_value?: string | undefined;
|
|
10757
11012
|
are_pins_interchangeable?: boolean | undefined;
|
|
11013
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10758
11014
|
}, {
|
|
10759
11015
|
type: "source_component";
|
|
10760
11016
|
name: string;
|
|
@@ -10765,6 +11021,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10765
11021
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10766
11022
|
display_value?: string | undefined;
|
|
10767
11023
|
are_pins_interchangeable?: boolean | undefined;
|
|
11024
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10768
11025
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10769
11026
|
type: z.ZodLiteral<"source_component">;
|
|
10770
11027
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10774,6 +11031,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10774
11031
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10775
11032
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10776
11033
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11034
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10777
11035
|
}, {
|
|
10778
11036
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
10779
11037
|
frequency: z.ZodNumber;
|
|
@@ -10788,6 +11046,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10788
11046
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10789
11047
|
display_value?: string | undefined;
|
|
10790
11048
|
are_pins_interchangeable?: boolean | undefined;
|
|
11049
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10791
11050
|
load_capacitance?: number | undefined;
|
|
10792
11051
|
}, {
|
|
10793
11052
|
type: "source_component";
|
|
@@ -10799,6 +11058,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10799
11058
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10800
11059
|
display_value?: string | undefined;
|
|
10801
11060
|
are_pins_interchangeable?: boolean | undefined;
|
|
11061
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10802
11062
|
load_capacitance?: number | undefined;
|
|
10803
11063
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10804
11064
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10809,6 +11069,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10809
11069
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10810
11070
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10811
11071
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11072
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10812
11073
|
}, {
|
|
10813
11074
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
10814
11075
|
pin_count: z.ZodNumber;
|
|
@@ -10824,6 +11085,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10824
11085
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10825
11086
|
display_value?: string | undefined;
|
|
10826
11087
|
are_pins_interchangeable?: boolean | undefined;
|
|
11088
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10827
11089
|
}, {
|
|
10828
11090
|
type: "source_component";
|
|
10829
11091
|
name: string;
|
|
@@ -10834,6 +11096,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10834
11096
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10835
11097
|
display_value?: string | undefined;
|
|
10836
11098
|
are_pins_interchangeable?: boolean | undefined;
|
|
11099
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10837
11100
|
gender?: "male" | "female" | undefined;
|
|
10838
11101
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10839
11102
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10844,6 +11107,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10844
11107
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10845
11108
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10846
11109
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11110
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10847
11111
|
}, {
|
|
10848
11112
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10849
11113
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10860,6 +11124,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10860
11124
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10861
11125
|
display_value?: string | undefined;
|
|
10862
11126
|
are_pins_interchangeable?: boolean | undefined;
|
|
11127
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10863
11128
|
equivalent_series_resistance?: number | undefined;
|
|
10864
11129
|
}, {
|
|
10865
11130
|
type: "source_component";
|
|
@@ -10872,6 +11137,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10872
11137
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10873
11138
|
display_value?: string | undefined;
|
|
10874
11139
|
are_pins_interchangeable?: boolean | undefined;
|
|
11140
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10875
11141
|
equivalent_series_resistance?: string | number | undefined;
|
|
10876
11142
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10877
11143
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10882,6 +11148,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10882
11148
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10883
11149
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10884
11150
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11151
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10885
11152
|
}, {
|
|
10886
11153
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
10887
11154
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10893,6 +11160,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10893
11160
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10894
11161
|
display_value?: string | undefined;
|
|
10895
11162
|
are_pins_interchangeable?: boolean | undefined;
|
|
11163
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10896
11164
|
}, {
|
|
10897
11165
|
type: "source_component";
|
|
10898
11166
|
name: string;
|
|
@@ -10902,6 +11170,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10902
11170
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10903
11171
|
display_value?: string | undefined;
|
|
10904
11172
|
are_pins_interchangeable?: boolean | undefined;
|
|
11173
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10905
11174
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10906
11175
|
type: z.ZodLiteral<"source_component">;
|
|
10907
11176
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10911,6 +11180,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10911
11180
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10912
11181
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10913
11182
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11183
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10914
11184
|
}, {
|
|
10915
11185
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
10916
11186
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -10924,6 +11194,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10924
11194
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10925
11195
|
display_value?: string | undefined;
|
|
10926
11196
|
are_pins_interchangeable?: boolean | undefined;
|
|
11197
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10927
11198
|
}, {
|
|
10928
11199
|
type: "source_component";
|
|
10929
11200
|
name: string;
|
|
@@ -10934,6 +11205,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10934
11205
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10935
11206
|
display_value?: string | undefined;
|
|
10936
11207
|
are_pins_interchangeable?: boolean | undefined;
|
|
11208
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10937
11209
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10938
11210
|
type: z.ZodLiteral<"source_component">;
|
|
10939
11211
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10943,6 +11215,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10943
11215
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10944
11216
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10945
11217
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11218
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
10946
11219
|
}, {
|
|
10947
11220
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
10948
11221
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -10958,6 +11231,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10958
11231
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10959
11232
|
display_value?: string | undefined;
|
|
10960
11233
|
are_pins_interchangeable?: boolean | undefined;
|
|
11234
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10961
11235
|
}, {
|
|
10962
11236
|
type: "source_component";
|
|
10963
11237
|
name: string;
|
|
@@ -10969,6 +11243,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10969
11243
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10970
11244
|
display_value?: string | undefined;
|
|
10971
11245
|
are_pins_interchangeable?: boolean | undefined;
|
|
11246
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
10972
11247
|
}>, z.ZodObject<{
|
|
10973
11248
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
10974
11249
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -11071,6 +11346,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11071
11346
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11072
11347
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11073
11348
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11349
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11074
11350
|
}, {
|
|
11075
11351
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11076
11352
|
}>, {
|
|
@@ -11084,6 +11360,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11084
11360
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11085
11361
|
display_value?: string | undefined;
|
|
11086
11362
|
are_pins_interchangeable?: boolean | undefined;
|
|
11363
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11087
11364
|
}, {
|
|
11088
11365
|
type: "source_component";
|
|
11089
11366
|
name: string;
|
|
@@ -11093,6 +11370,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11093
11370
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11094
11371
|
display_value?: string | undefined;
|
|
11095
11372
|
are_pins_interchangeable?: boolean | undefined;
|
|
11373
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11096
11374
|
}>, z.ZodObject<{
|
|
11097
11375
|
type: z.ZodLiteral<"source_net">;
|
|
11098
11376
|
source_net_id: z.ZodString;
|
|
@@ -11156,6 +11434,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11156
11434
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11157
11435
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11158
11436
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11437
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11159
11438
|
}, {
|
|
11160
11439
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
11161
11440
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11167,6 +11446,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11167
11446
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11168
11447
|
display_value?: string | undefined;
|
|
11169
11448
|
are_pins_interchangeable?: boolean | undefined;
|
|
11449
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11170
11450
|
}, {
|
|
11171
11451
|
type: "source_component";
|
|
11172
11452
|
name: string;
|
|
@@ -11176,6 +11456,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11176
11456
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11177
11457
|
display_value?: string | undefined;
|
|
11178
11458
|
are_pins_interchangeable?: boolean | undefined;
|
|
11459
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11179
11460
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11180
11461
|
type: z.ZodLiteral<"source_component">;
|
|
11181
11462
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11185,6 +11466,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11185
11466
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11186
11467
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11187
11468
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11469
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11188
11470
|
}, {
|
|
11189
11471
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
11190
11472
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11196,6 +11478,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11196
11478
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11197
11479
|
display_value?: string | undefined;
|
|
11198
11480
|
are_pins_interchangeable?: boolean | undefined;
|
|
11481
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11199
11482
|
}, {
|
|
11200
11483
|
type: "source_component";
|
|
11201
11484
|
name: string;
|
|
@@ -11205,6 +11488,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11205
11488
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11206
11489
|
display_value?: string | undefined;
|
|
11207
11490
|
are_pins_interchangeable?: boolean | undefined;
|
|
11491
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11208
11492
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11209
11493
|
type: z.ZodLiteral<"source_component">;
|
|
11210
11494
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11214,6 +11498,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11214
11498
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11215
11499
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11216
11500
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11501
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11217
11502
|
}, {
|
|
11218
11503
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
11219
11504
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11230,6 +11515,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11230
11515
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11231
11516
|
display_value?: string | undefined;
|
|
11232
11517
|
are_pins_interchangeable?: boolean | undefined;
|
|
11518
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11233
11519
|
max_voltage_rating?: number | undefined;
|
|
11234
11520
|
display_capacitance?: string | undefined;
|
|
11235
11521
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -11243,6 +11529,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11243
11529
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11244
11530
|
display_value?: string | undefined;
|
|
11245
11531
|
are_pins_interchangeable?: boolean | undefined;
|
|
11532
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11246
11533
|
max_voltage_rating?: string | number | undefined;
|
|
11247
11534
|
display_capacitance?: string | undefined;
|
|
11248
11535
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -11255,6 +11542,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11255
11542
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11256
11543
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11257
11544
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11545
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11258
11546
|
}, {
|
|
11259
11547
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
11260
11548
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11266,6 +11554,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11266
11554
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11267
11555
|
display_value?: string | undefined;
|
|
11268
11556
|
are_pins_interchangeable?: boolean | undefined;
|
|
11557
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11269
11558
|
}, {
|
|
11270
11559
|
type: "source_component";
|
|
11271
11560
|
name: string;
|
|
@@ -11275,6 +11564,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11275
11564
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11276
11565
|
display_value?: string | undefined;
|
|
11277
11566
|
are_pins_interchangeable?: boolean | undefined;
|
|
11567
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11278
11568
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11279
11569
|
type: z.ZodLiteral<"source_component">;
|
|
11280
11570
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11284,6 +11574,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11284
11574
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11285
11575
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11286
11576
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11577
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11287
11578
|
}, {
|
|
11288
11579
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
11289
11580
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11298,6 +11589,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11298
11589
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11299
11590
|
display_value?: string | undefined;
|
|
11300
11591
|
are_pins_interchangeable?: boolean | undefined;
|
|
11592
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11301
11593
|
display_resistance?: string | undefined;
|
|
11302
11594
|
}, {
|
|
11303
11595
|
type: "source_component";
|
|
@@ -11309,6 +11601,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11309
11601
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11310
11602
|
display_value?: string | undefined;
|
|
11311
11603
|
are_pins_interchangeable?: boolean | undefined;
|
|
11604
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11312
11605
|
display_resistance?: string | undefined;
|
|
11313
11606
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11314
11607
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11319,6 +11612,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11319
11612
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11320
11613
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11321
11614
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11615
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11322
11616
|
}, {
|
|
11323
11617
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
11324
11618
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11332,6 +11626,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11332
11626
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11333
11627
|
display_value?: string | undefined;
|
|
11334
11628
|
are_pins_interchangeable?: boolean | undefined;
|
|
11629
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11335
11630
|
}, {
|
|
11336
11631
|
type: "source_component";
|
|
11337
11632
|
name: string;
|
|
@@ -11342,6 +11637,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11342
11637
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11343
11638
|
display_value?: string | undefined;
|
|
11344
11639
|
are_pins_interchangeable?: boolean | undefined;
|
|
11640
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11345
11641
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11346
11642
|
type: z.ZodLiteral<"source_component">;
|
|
11347
11643
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11351,6 +11647,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11351
11647
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11352
11648
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11353
11649
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11650
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11354
11651
|
}, {
|
|
11355
11652
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
11356
11653
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -11364,6 +11661,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11364
11661
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11365
11662
|
display_value?: string | undefined;
|
|
11366
11663
|
are_pins_interchangeable?: boolean | undefined;
|
|
11664
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11367
11665
|
}, {
|
|
11368
11666
|
type: "source_component";
|
|
11369
11667
|
name: string;
|
|
@@ -11374,6 +11672,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11374
11672
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11375
11673
|
display_value?: string | undefined;
|
|
11376
11674
|
are_pins_interchangeable?: boolean | undefined;
|
|
11675
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11377
11676
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11378
11677
|
type: z.ZodLiteral<"source_component">;
|
|
11379
11678
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11383,6 +11682,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11383
11682
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11384
11683
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11385
11684
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11685
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11386
11686
|
}, {
|
|
11387
11687
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
11388
11688
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11396,6 +11696,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11396
11696
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11397
11697
|
display_value?: string | undefined;
|
|
11398
11698
|
are_pins_interchangeable?: boolean | undefined;
|
|
11699
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11399
11700
|
}, {
|
|
11400
11701
|
type: "source_component";
|
|
11401
11702
|
name: string;
|
|
@@ -11406,6 +11707,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11406
11707
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11407
11708
|
display_value?: string | undefined;
|
|
11408
11709
|
are_pins_interchangeable?: boolean | undefined;
|
|
11710
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11409
11711
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11410
11712
|
type: z.ZodLiteral<"source_component">;
|
|
11411
11713
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11415,6 +11717,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11415
11717
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11416
11718
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11417
11719
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11720
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11418
11721
|
}, {
|
|
11419
11722
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
11420
11723
|
pin_count: z.ZodNumber;
|
|
@@ -11430,6 +11733,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11430
11733
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11431
11734
|
display_value?: string | undefined;
|
|
11432
11735
|
are_pins_interchangeable?: boolean | undefined;
|
|
11736
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11433
11737
|
}, {
|
|
11434
11738
|
type: "source_component";
|
|
11435
11739
|
name: string;
|
|
@@ -11440,6 +11744,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11440
11744
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11441
11745
|
display_value?: string | undefined;
|
|
11442
11746
|
are_pins_interchangeable?: boolean | undefined;
|
|
11747
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11443
11748
|
gender?: "male" | "female" | undefined;
|
|
11444
11749
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11445
11750
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11450,6 +11755,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11450
11755
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11451
11756
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11452
11757
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11758
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11453
11759
|
}, {
|
|
11454
11760
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
11455
11761
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -11466,6 +11772,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11466
11772
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11467
11773
|
display_value?: string | undefined;
|
|
11468
11774
|
are_pins_interchangeable?: boolean | undefined;
|
|
11775
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11469
11776
|
equivalent_series_resistance?: number | undefined;
|
|
11470
11777
|
}, {
|
|
11471
11778
|
type: "source_component";
|
|
@@ -11478,6 +11785,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11478
11785
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11479
11786
|
display_value?: string | undefined;
|
|
11480
11787
|
are_pins_interchangeable?: boolean | undefined;
|
|
11788
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11481
11789
|
equivalent_series_resistance?: string | number | undefined;
|
|
11482
11790
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11483
11791
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -11488,6 +11796,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11488
11796
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11489
11797
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11490
11798
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11799
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11491
11800
|
}, {
|
|
11492
11801
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
11493
11802
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11499,6 +11808,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11499
11808
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11500
11809
|
display_value?: string | undefined;
|
|
11501
11810
|
are_pins_interchangeable?: boolean | undefined;
|
|
11811
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11502
11812
|
}, {
|
|
11503
11813
|
type: "source_component";
|
|
11504
11814
|
name: string;
|
|
@@ -11508,6 +11818,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11508
11818
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11509
11819
|
display_value?: string | undefined;
|
|
11510
11820
|
are_pins_interchangeable?: boolean | undefined;
|
|
11821
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11511
11822
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11512
11823
|
type: z.ZodLiteral<"source_component">;
|
|
11513
11824
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11517,6 +11828,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11517
11828
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11518
11829
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11519
11830
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11831
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11520
11832
|
}, {
|
|
11521
11833
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
11522
11834
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -11530,6 +11842,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11530
11842
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11531
11843
|
display_value?: string | undefined;
|
|
11532
11844
|
are_pins_interchangeable?: boolean | undefined;
|
|
11845
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11533
11846
|
}, {
|
|
11534
11847
|
type: "source_component";
|
|
11535
11848
|
name: string;
|
|
@@ -11540,6 +11853,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11540
11853
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11541
11854
|
display_value?: string | undefined;
|
|
11542
11855
|
are_pins_interchangeable?: boolean | undefined;
|
|
11856
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11543
11857
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11544
11858
|
type: z.ZodLiteral<"source_component">;
|
|
11545
11859
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11549,6 +11863,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11549
11863
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11550
11864
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11551
11865
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11866
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11552
11867
|
}, {
|
|
11553
11868
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
11554
11869
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -11564,6 +11879,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11564
11879
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11565
11880
|
display_value?: string | undefined;
|
|
11566
11881
|
are_pins_interchangeable?: boolean | undefined;
|
|
11882
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11567
11883
|
}, {
|
|
11568
11884
|
type: "source_component";
|
|
11569
11885
|
name: string;
|
|
@@ -11575,6 +11891,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11575
11891
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11576
11892
|
display_value?: string | undefined;
|
|
11577
11893
|
are_pins_interchangeable?: boolean | undefined;
|
|
11894
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11578
11895
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11579
11896
|
type: z.ZodLiteral<"source_component">;
|
|
11580
11897
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11584,6 +11901,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11584
11901
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11585
11902
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11586
11903
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11904
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11587
11905
|
}, {
|
|
11588
11906
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
11589
11907
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -11597,6 +11915,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11597
11915
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11598
11916
|
display_value?: string | undefined;
|
|
11599
11917
|
are_pins_interchangeable?: boolean | undefined;
|
|
11918
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11600
11919
|
}, {
|
|
11601
11920
|
type: "source_component";
|
|
11602
11921
|
name: string;
|
|
@@ -11607,6 +11926,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11607
11926
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11608
11927
|
display_value?: string | undefined;
|
|
11609
11928
|
are_pins_interchangeable?: boolean | undefined;
|
|
11929
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11610
11930
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
11611
11931
|
type: z.ZodLiteral<"source_component">;
|
|
11612
11932
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -11616,6 +11936,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11616
11936
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11617
11937
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11618
11938
|
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
11939
|
+
internally_connected_source_port_ids: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11619
11940
|
}, {
|
|
11620
11941
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
11621
11942
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -11627,6 +11948,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11627
11948
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11628
11949
|
display_value?: string | undefined;
|
|
11629
11950
|
are_pins_interchangeable?: boolean | undefined;
|
|
11951
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11630
11952
|
}, {
|
|
11631
11953
|
type: "source_component";
|
|
11632
11954
|
name: string;
|
|
@@ -11636,6 +11958,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
11636
11958
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11637
11959
|
display_value?: string | undefined;
|
|
11638
11960
|
are_pins_interchangeable?: boolean | undefined;
|
|
11961
|
+
internally_connected_source_port_ids?: string[][] | undefined;
|
|
11639
11962
|
}>, z.ZodObject<{
|
|
11640
11963
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
11641
11964
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -13518,6 +13841,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13518
13841
|
schematic_component_id: z.ZodOptional<z.ZodString>;
|
|
13519
13842
|
schematic_text_id: z.ZodString;
|
|
13520
13843
|
text: z.ZodString;
|
|
13844
|
+
font_size: z.ZodDefault<z.ZodNumber>;
|
|
13521
13845
|
position: z.ZodObject<{
|
|
13522
13846
|
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13523
13847
|
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -13536,6 +13860,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13536
13860
|
type: "schematic_text";
|
|
13537
13861
|
rotation: number;
|
|
13538
13862
|
text: string;
|
|
13863
|
+
font_size: number;
|
|
13539
13864
|
color: string;
|
|
13540
13865
|
schematic_text_id: string;
|
|
13541
13866
|
position: {
|
|
@@ -13553,6 +13878,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
13553
13878
|
};
|
|
13554
13879
|
anchor?: "top" | "bottom" | "center" | "top_left" | "top_right" | "bottom_left" | "bottom_right" | "top_center" | "center_left" | "center_right" | "bottom_center" | "left" | "right" | undefined;
|
|
13555
13880
|
rotation?: number | undefined;
|
|
13881
|
+
font_size?: number | undefined;
|
|
13556
13882
|
color?: string | undefined;
|
|
13557
13883
|
schematic_component_id?: string | undefined;
|
|
13558
13884
|
}>, z.ZodObject<{
|