circuit-json 0.0.162 → 0.0.163
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 +1 -0
- package/dist/index.d.mts +316 -0
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -4425,6 +4425,7 @@ interface SourceComponentBase {
|
|
|
4425
4425
|
manufacturer_part_number?: string;
|
|
4426
4426
|
supplier_part_numbers?: Partial<Record<SupplierName, string[]>>;
|
|
4427
4427
|
display_value?: string;
|
|
4428
|
+
are_pins_interchangeable?: boolean;
|
|
4428
4429
|
}
|
|
4429
4430
|
declare const source_component_base: z.ZodObject<{
|
|
4430
4431
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -4434,6 +4435,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4434
4435
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4435
4436
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4436
4437
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4438
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4437
4439
|
}, "strip", z.ZodTypeAny, {
|
|
4438
4440
|
type: "source_component";
|
|
4439
4441
|
name: string;
|
|
@@ -4442,6 +4444,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4442
4444
|
manufacturer_part_number?: string | undefined;
|
|
4443
4445
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4444
4446
|
display_value?: string | undefined;
|
|
4447
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4445
4448
|
}, {
|
|
4446
4449
|
type: "source_component";
|
|
4447
4450
|
name: string;
|
|
@@ -4450,6 +4453,7 @@ declare const source_component_base: z.ZodObject<{
|
|
|
4450
4453
|
manufacturer_part_number?: string | undefined;
|
|
4451
4454
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4452
4455
|
display_value?: string | undefined;
|
|
4456
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4453
4457
|
}>;
|
|
4454
4458
|
|
|
4455
4459
|
declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -4460,6 +4464,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4460
4464
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4461
4465
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4462
4466
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4467
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4463
4468
|
}, {
|
|
4464
4469
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
4465
4470
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -4475,6 +4480,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4475
4480
|
manufacturer_part_number?: string | undefined;
|
|
4476
4481
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4477
4482
|
display_value?: string | undefined;
|
|
4483
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4478
4484
|
max_voltage_rating?: number | undefined;
|
|
4479
4485
|
display_capacitance?: string | undefined;
|
|
4480
4486
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -4487,6 +4493,7 @@ declare const source_simple_capacitor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4487
4493
|
manufacturer_part_number?: string | undefined;
|
|
4488
4494
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4489
4495
|
display_value?: string | undefined;
|
|
4496
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4490
4497
|
max_voltage_rating?: string | number | undefined;
|
|
4491
4498
|
display_capacitance?: string | undefined;
|
|
4492
4499
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -4511,6 +4518,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4511
4518
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4512
4519
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4513
4520
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4521
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4514
4522
|
}, {
|
|
4515
4523
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
4516
4524
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4524,6 +4532,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4524
4532
|
manufacturer_part_number?: string | undefined;
|
|
4525
4533
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4526
4534
|
display_value?: string | undefined;
|
|
4535
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4527
4536
|
display_resistance?: string | undefined;
|
|
4528
4537
|
}, {
|
|
4529
4538
|
type: "source_component";
|
|
@@ -4534,6 +4543,7 @@ declare const source_simple_resistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4534
4543
|
manufacturer_part_number?: string | undefined;
|
|
4535
4544
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4536
4545
|
display_value?: string | undefined;
|
|
4546
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4537
4547
|
display_resistance?: string | undefined;
|
|
4538
4548
|
}>;
|
|
4539
4549
|
type SourceSimpleResistorInput = z.input<typeof source_simple_resistor>;
|
|
@@ -4554,6 +4564,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4554
4564
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4555
4565
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4556
4566
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4567
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4557
4568
|
}, {
|
|
4558
4569
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
4559
4570
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4564,6 +4575,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4564
4575
|
manufacturer_part_number?: string | undefined;
|
|
4565
4576
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4566
4577
|
display_value?: string | undefined;
|
|
4578
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4567
4579
|
}, {
|
|
4568
4580
|
type: "source_component";
|
|
4569
4581
|
name: string;
|
|
@@ -4572,6 +4584,7 @@ declare const source_simple_diode: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4572
4584
|
manufacturer_part_number?: string | undefined;
|
|
4573
4585
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4574
4586
|
display_value?: string | undefined;
|
|
4587
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4575
4588
|
}>;
|
|
4576
4589
|
type SourceSimpleDiodeInput = z.input<typeof source_simple_diode>;
|
|
4577
4590
|
/**
|
|
@@ -4589,6 +4602,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4589
4602
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4590
4603
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4591
4604
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4605
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4592
4606
|
}, {
|
|
4593
4607
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
4594
4608
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4599,6 +4613,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4599
4613
|
manufacturer_part_number?: string | undefined;
|
|
4600
4614
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4601
4615
|
display_value?: string | undefined;
|
|
4616
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4602
4617
|
}, {
|
|
4603
4618
|
type: "source_component";
|
|
4604
4619
|
name: string;
|
|
@@ -4607,6 +4622,7 @@ declare const source_simple_ground: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4607
4622
|
manufacturer_part_number?: string | undefined;
|
|
4608
4623
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4609
4624
|
display_value?: string | undefined;
|
|
4625
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4610
4626
|
}>;
|
|
4611
4627
|
type SourceSimpleGroundInput = z.input<typeof source_simple_ground>;
|
|
4612
4628
|
/**
|
|
@@ -4627,6 +4643,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4627
4643
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4628
4644
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4629
4645
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4646
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4630
4647
|
}, {
|
|
4631
4648
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
4632
4649
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4637,6 +4654,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4637
4654
|
manufacturer_part_number?: string | undefined;
|
|
4638
4655
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4639
4656
|
display_value?: string | undefined;
|
|
4657
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4640
4658
|
}, {
|
|
4641
4659
|
type: "source_component";
|
|
4642
4660
|
name: string;
|
|
@@ -4645,6 +4663,7 @@ declare const source_simple_bug: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4645
4663
|
manufacturer_part_number?: string | undefined;
|
|
4646
4664
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4647
4665
|
display_value?: string | undefined;
|
|
4666
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4648
4667
|
}>;
|
|
4649
4668
|
type source_simple_bug = z.infer<typeof source_simple_bug>;
|
|
4650
4669
|
type SourceSimpleBugInput = z.input<typeof source_simple_bug>;
|
|
@@ -4657,6 +4676,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4657
4676
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4658
4677
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4659
4678
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4679
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4660
4680
|
}, {
|
|
4661
4681
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
4662
4682
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4667,6 +4687,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4667
4687
|
manufacturer_part_number?: string | undefined;
|
|
4668
4688
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4669
4689
|
display_value?: string | undefined;
|
|
4690
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4670
4691
|
}, {
|
|
4671
4692
|
type: "source_component";
|
|
4672
4693
|
name: string;
|
|
@@ -4675,6 +4696,7 @@ declare const source_simple_chip: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4675
4696
|
manufacturer_part_number?: string | undefined;
|
|
4676
4697
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4677
4698
|
display_value?: string | undefined;
|
|
4699
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4678
4700
|
}>;
|
|
4679
4701
|
type SourceSimpleChipInput = z.input<typeof source_simple_chip>;
|
|
4680
4702
|
/**
|
|
@@ -4692,6 +4714,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
4692
4714
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4693
4715
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4694
4716
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4717
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4695
4718
|
}, {
|
|
4696
4719
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
4697
4720
|
}>, {
|
|
@@ -4704,6 +4727,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
4704
4727
|
manufacturer_part_number?: string | undefined;
|
|
4705
4728
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4706
4729
|
display_value?: string | undefined;
|
|
4730
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4707
4731
|
}, {
|
|
4708
4732
|
type: "source_component";
|
|
4709
4733
|
name: string;
|
|
@@ -4712,6 +4736,7 @@ declare const source_led: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.exte
|
|
|
4712
4736
|
manufacturer_part_number?: string | undefined;
|
|
4713
4737
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4714
4738
|
display_value?: string | undefined;
|
|
4739
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4715
4740
|
}>;
|
|
4716
4741
|
type SourceLedInput = z.input<typeof source_led>;
|
|
4717
4742
|
/**
|
|
@@ -4729,6 +4754,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4729
4754
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4730
4755
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4731
4756
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4757
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4732
4758
|
}, {
|
|
4733
4759
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
4734
4760
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4741,6 +4767,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4741
4767
|
manufacturer_part_number?: string | undefined;
|
|
4742
4768
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4743
4769
|
display_value?: string | undefined;
|
|
4770
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4744
4771
|
}, {
|
|
4745
4772
|
type: "source_component";
|
|
4746
4773
|
name: string;
|
|
@@ -4750,6 +4777,7 @@ declare const source_simple_power_source: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4750
4777
|
manufacturer_part_number?: string | undefined;
|
|
4751
4778
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4752
4779
|
display_value?: string | undefined;
|
|
4780
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4753
4781
|
}>;
|
|
4754
4782
|
type SourceSimplePowerSourceInput = z.input<typeof source_simple_power_source>;
|
|
4755
4783
|
/**
|
|
@@ -4768,6 +4796,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4768
4796
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4769
4797
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4770
4798
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4799
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4771
4800
|
}, {
|
|
4772
4801
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
4773
4802
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -4780,6 +4809,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4780
4809
|
manufacturer_part_number?: string | undefined;
|
|
4781
4810
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4782
4811
|
display_value?: string | undefined;
|
|
4812
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4783
4813
|
}, {
|
|
4784
4814
|
type: "source_component";
|
|
4785
4815
|
name: string;
|
|
@@ -4789,6 +4819,7 @@ declare const source_simple_battery: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4789
4819
|
manufacturer_part_number?: string | undefined;
|
|
4790
4820
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4791
4821
|
display_value?: string | undefined;
|
|
4822
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4792
4823
|
}>;
|
|
4793
4824
|
type SourceSimpleBatteryInput = z.input<typeof source_simple_battery>;
|
|
4794
4825
|
/**
|
|
@@ -4807,6 +4838,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4807
4838
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4808
4839
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4809
4840
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4841
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4810
4842
|
}, {
|
|
4811
4843
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
4812
4844
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4819,6 +4851,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4819
4851
|
manufacturer_part_number?: string | undefined;
|
|
4820
4852
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4821
4853
|
display_value?: string | undefined;
|
|
4854
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4822
4855
|
}, {
|
|
4823
4856
|
type: "source_component";
|
|
4824
4857
|
name: string;
|
|
@@ -4828,6 +4861,7 @@ declare const source_simple_inductor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4828
4861
|
manufacturer_part_number?: string | undefined;
|
|
4829
4862
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4830
4863
|
display_value?: string | undefined;
|
|
4864
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4831
4865
|
}>;
|
|
4832
4866
|
type SourceSimpleInductorInput = z.input<typeof source_simple_inductor>;
|
|
4833
4867
|
/**
|
|
@@ -4846,6 +4880,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4846
4880
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4847
4881
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4848
4882
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4883
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4849
4884
|
}, {
|
|
4850
4885
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
4851
4886
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4856,6 +4891,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4856
4891
|
manufacturer_part_number?: string | undefined;
|
|
4857
4892
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4858
4893
|
display_value?: string | undefined;
|
|
4894
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4859
4895
|
}, {
|
|
4860
4896
|
type: "source_component";
|
|
4861
4897
|
name: string;
|
|
@@ -4864,6 +4900,7 @@ declare const source_simple_push_button: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4864
4900
|
manufacturer_part_number?: string | undefined;
|
|
4865
4901
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4866
4902
|
display_value?: string | undefined;
|
|
4903
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4867
4904
|
}>;
|
|
4868
4905
|
type SourceSimplePushButtonInput = z.input<typeof source_simple_push_button>;
|
|
4869
4906
|
/**
|
|
@@ -4881,6 +4918,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4881
4918
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4882
4919
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4883
4920
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4921
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4884
4922
|
}, {
|
|
4885
4923
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
4886
4924
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -4893,6 +4931,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4893
4931
|
manufacturer_part_number?: string | undefined;
|
|
4894
4932
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4895
4933
|
display_value?: string | undefined;
|
|
4934
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4896
4935
|
}, {
|
|
4897
4936
|
type: "source_component";
|
|
4898
4937
|
name: string;
|
|
@@ -4902,6 +4941,7 @@ declare const source_simple_potentiometer: z.ZodObject<z.objectUtil.extendShape<
|
|
|
4902
4941
|
manufacturer_part_number?: string | undefined;
|
|
4903
4942
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4904
4943
|
display_value?: string | undefined;
|
|
4944
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4905
4945
|
}>;
|
|
4906
4946
|
type SourceSimplePotentiometer = z.infer<typeof source_simple_potentiometer>;
|
|
4907
4947
|
type SourceSimplePotentiometerInput = z.input<typeof source_simple_potentiometer>;
|
|
@@ -4914,6 +4954,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4914
4954
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4915
4955
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4916
4956
|
display_value: z.ZodOptional<z.ZodString>;
|
|
4957
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4917
4958
|
}, {
|
|
4918
4959
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
4919
4960
|
frequency: z.ZodNumber;
|
|
@@ -4927,6 +4968,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4927
4968
|
manufacturer_part_number?: string | undefined;
|
|
4928
4969
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4929
4970
|
display_value?: string | undefined;
|
|
4971
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4930
4972
|
load_capacitance?: number | undefined;
|
|
4931
4973
|
}, {
|
|
4932
4974
|
type: "source_component";
|
|
@@ -4937,6 +4979,7 @@ declare const source_simple_crystal: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4937
4979
|
manufacturer_part_number?: string | undefined;
|
|
4938
4980
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4939
4981
|
display_value?: string | undefined;
|
|
4982
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4940
4983
|
load_capacitance?: number | undefined;
|
|
4941
4984
|
}>;
|
|
4942
4985
|
type SourceSimpleCrystalInput = z.input<typeof source_simple_crystal>;
|
|
@@ -4957,6 +5000,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4957
5000
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4958
5001
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4959
5002
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5003
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4960
5004
|
}, {
|
|
4961
5005
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
4962
5006
|
pin_count: z.ZodNumber;
|
|
@@ -4971,6 +5015,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4971
5015
|
manufacturer_part_number?: string | undefined;
|
|
4972
5016
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4973
5017
|
display_value?: string | undefined;
|
|
5018
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4974
5019
|
}, {
|
|
4975
5020
|
type: "source_component";
|
|
4976
5021
|
name: string;
|
|
@@ -4980,6 +5025,7 @@ declare const source_simple_pin_header: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4980
5025
|
manufacturer_part_number?: string | undefined;
|
|
4981
5026
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
4982
5027
|
display_value?: string | undefined;
|
|
5028
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
4983
5029
|
gender?: "male" | "female" | undefined;
|
|
4984
5030
|
}>;
|
|
4985
5031
|
type SourceSimplePinHeader = z.infer<typeof source_simple_pin_header>;
|
|
@@ -4993,6 +5039,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4993
5039
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
4994
5040
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
4995
5041
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5042
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
4996
5043
|
}, {
|
|
4997
5044
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
4998
5045
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5008,6 +5055,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5008
5055
|
manufacturer_part_number?: string | undefined;
|
|
5009
5056
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5010
5057
|
display_value?: string | undefined;
|
|
5058
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5011
5059
|
equivalent_series_resistance?: number | undefined;
|
|
5012
5060
|
}, {
|
|
5013
5061
|
type: "source_component";
|
|
@@ -5019,6 +5067,7 @@ declare const source_simple_resonator: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5019
5067
|
manufacturer_part_number?: string | undefined;
|
|
5020
5068
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5021
5069
|
display_value?: string | undefined;
|
|
5070
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5022
5071
|
equivalent_series_resistance?: string | number | undefined;
|
|
5023
5072
|
}>;
|
|
5024
5073
|
type SourceSimpleResonatorInput = z.input<typeof source_simple_resonator>;
|
|
@@ -5040,6 +5089,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5040
5089
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5041
5090
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5042
5091
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5092
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5043
5093
|
}, {
|
|
5044
5094
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5045
5095
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5052,6 +5102,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5052
5102
|
manufacturer_part_number?: string | undefined;
|
|
5053
5103
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5054
5104
|
display_value?: string | undefined;
|
|
5105
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5055
5106
|
}, {
|
|
5056
5107
|
type: "source_component";
|
|
5057
5108
|
name: string;
|
|
@@ -5061,6 +5112,7 @@ declare const source_simple_transistor: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5061
5112
|
manufacturer_part_number?: string | undefined;
|
|
5062
5113
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5063
5114
|
display_value?: string | undefined;
|
|
5115
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5064
5116
|
}>;
|
|
5065
5117
|
type SourceSimpleTransistorInput = z.input<typeof source_simple_transistor>;
|
|
5066
5118
|
/**
|
|
@@ -5081,6 +5133,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5081
5133
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5082
5134
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5083
5135
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5136
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5084
5137
|
}, {
|
|
5085
5138
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5086
5139
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5095,6 +5148,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5095
5148
|
manufacturer_part_number?: string | undefined;
|
|
5096
5149
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5097
5150
|
display_value?: string | undefined;
|
|
5151
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5098
5152
|
}, {
|
|
5099
5153
|
type: "source_component";
|
|
5100
5154
|
name: string;
|
|
@@ -5105,6 +5159,7 @@ declare const source_simple_mosfet: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5105
5159
|
manufacturer_part_number?: string | undefined;
|
|
5106
5160
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5107
5161
|
display_value?: string | undefined;
|
|
5162
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5108
5163
|
}>;
|
|
5109
5164
|
type SourceSimpleMosfetInput = z.input<typeof source_simple_mosfet>;
|
|
5110
5165
|
/**
|
|
@@ -5126,6 +5181,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5126
5181
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5127
5182
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5128
5183
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5184
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5129
5185
|
}, {
|
|
5130
5186
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5131
5187
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5136,6 +5192,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5136
5192
|
manufacturer_part_number?: string | undefined;
|
|
5137
5193
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5138
5194
|
display_value?: string | undefined;
|
|
5195
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5139
5196
|
}, {
|
|
5140
5197
|
type: "source_component";
|
|
5141
5198
|
name: string;
|
|
@@ -5144,6 +5201,7 @@ declare const source_simple_switch: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5144
5201
|
manufacturer_part_number?: string | undefined;
|
|
5145
5202
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5146
5203
|
display_value?: string | undefined;
|
|
5204
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5147
5205
|
}>;
|
|
5148
5206
|
type SourceSimpleSwitchInput = z.input<typeof source_simple_switch>;
|
|
5149
5207
|
/**
|
|
@@ -5185,6 +5243,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5185
5243
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5186
5244
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5187
5245
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5246
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5188
5247
|
}, {
|
|
5189
5248
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
5190
5249
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5198,6 +5257,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5198
5257
|
manufacturer_part_number?: string | undefined;
|
|
5199
5258
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5200
5259
|
display_value?: string | undefined;
|
|
5260
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5201
5261
|
display_resistance?: string | undefined;
|
|
5202
5262
|
}, {
|
|
5203
5263
|
type: "source_component";
|
|
@@ -5208,6 +5268,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5208
5268
|
manufacturer_part_number?: string | undefined;
|
|
5209
5269
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5210
5270
|
display_value?: string | undefined;
|
|
5271
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5211
5272
|
display_resistance?: string | undefined;
|
|
5212
5273
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5213
5274
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5217,6 +5278,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5217
5278
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5218
5279
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5219
5280
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5281
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5220
5282
|
}, {
|
|
5221
5283
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
5222
5284
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5232,6 +5294,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5232
5294
|
manufacturer_part_number?: string | undefined;
|
|
5233
5295
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5234
5296
|
display_value?: string | undefined;
|
|
5297
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5235
5298
|
max_voltage_rating?: number | undefined;
|
|
5236
5299
|
display_capacitance?: string | undefined;
|
|
5237
5300
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -5244,6 +5307,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5244
5307
|
manufacturer_part_number?: string | undefined;
|
|
5245
5308
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5246
5309
|
display_value?: string | undefined;
|
|
5310
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5247
5311
|
max_voltage_rating?: string | number | undefined;
|
|
5248
5312
|
display_capacitance?: string | undefined;
|
|
5249
5313
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -5255,6 +5319,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5255
5319
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5256
5320
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5257
5321
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5322
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5258
5323
|
}, {
|
|
5259
5324
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5260
5325
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5265,6 +5330,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5265
5330
|
manufacturer_part_number?: string | undefined;
|
|
5266
5331
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5267
5332
|
display_value?: string | undefined;
|
|
5333
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5268
5334
|
}, {
|
|
5269
5335
|
type: "source_component";
|
|
5270
5336
|
name: string;
|
|
@@ -5273,6 +5339,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5273
5339
|
manufacturer_part_number?: string | undefined;
|
|
5274
5340
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5275
5341
|
display_value?: string | undefined;
|
|
5342
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5276
5343
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5277
5344
|
type: z.ZodLiteral<"source_component">;
|
|
5278
5345
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5281,6 +5348,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5281
5348
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5282
5349
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5283
5350
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5351
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5284
5352
|
}, {
|
|
5285
5353
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5286
5354
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5291,6 +5359,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5291
5359
|
manufacturer_part_number?: string | undefined;
|
|
5292
5360
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5293
5361
|
display_value?: string | undefined;
|
|
5362
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5294
5363
|
}, {
|
|
5295
5364
|
type: "source_component";
|
|
5296
5365
|
name: string;
|
|
@@ -5299,6 +5368,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5299
5368
|
manufacturer_part_number?: string | undefined;
|
|
5300
5369
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5301
5370
|
display_value?: string | undefined;
|
|
5371
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5302
5372
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5303
5373
|
type: z.ZodLiteral<"source_component">;
|
|
5304
5374
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5307,6 +5377,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5307
5377
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5308
5378
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5309
5379
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5380
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5310
5381
|
}, {
|
|
5311
5382
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
5312
5383
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5317,6 +5388,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5317
5388
|
manufacturer_part_number?: string | undefined;
|
|
5318
5389
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5319
5390
|
display_value?: string | undefined;
|
|
5391
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5320
5392
|
}, {
|
|
5321
5393
|
type: "source_component";
|
|
5322
5394
|
name: string;
|
|
@@ -5325,6 +5397,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5325
5397
|
manufacturer_part_number?: string | undefined;
|
|
5326
5398
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5327
5399
|
display_value?: string | undefined;
|
|
5400
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5328
5401
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5329
5402
|
type: z.ZodLiteral<"source_component">;
|
|
5330
5403
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5333,6 +5406,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5333
5406
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5334
5407
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5335
5408
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5409
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5336
5410
|
}, {
|
|
5337
5411
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
5338
5412
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5343,6 +5417,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5343
5417
|
manufacturer_part_number?: string | undefined;
|
|
5344
5418
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5345
5419
|
display_value?: string | undefined;
|
|
5420
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5346
5421
|
}, {
|
|
5347
5422
|
type: "source_component";
|
|
5348
5423
|
name: string;
|
|
@@ -5351,6 +5426,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5351
5426
|
manufacturer_part_number?: string | undefined;
|
|
5352
5427
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5353
5428
|
display_value?: string | undefined;
|
|
5429
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5354
5430
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5355
5431
|
type: z.ZodLiteral<"source_component">;
|
|
5356
5432
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5359,6 +5435,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5359
5435
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5360
5436
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5361
5437
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5438
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5362
5439
|
}, {
|
|
5363
5440
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5364
5441
|
}>, {
|
|
@@ -5371,6 +5448,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5371
5448
|
manufacturer_part_number?: string | undefined;
|
|
5372
5449
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5373
5450
|
display_value?: string | undefined;
|
|
5451
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5374
5452
|
}, {
|
|
5375
5453
|
type: "source_component";
|
|
5376
5454
|
name: string;
|
|
@@ -5379,6 +5457,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5379
5457
|
manufacturer_part_number?: string | undefined;
|
|
5380
5458
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5381
5459
|
display_value?: string | undefined;
|
|
5460
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5382
5461
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5383
5462
|
type: z.ZodLiteral<"source_component">;
|
|
5384
5463
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5387,6 +5466,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5387
5466
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5388
5467
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5389
5468
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5469
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5390
5470
|
}, {
|
|
5391
5471
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
5392
5472
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5399,6 +5479,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5399
5479
|
manufacturer_part_number?: string | undefined;
|
|
5400
5480
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5401
5481
|
display_value?: string | undefined;
|
|
5482
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5402
5483
|
}, {
|
|
5403
5484
|
type: "source_component";
|
|
5404
5485
|
name: string;
|
|
@@ -5408,6 +5489,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5408
5489
|
manufacturer_part_number?: string | undefined;
|
|
5409
5490
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5410
5491
|
display_value?: string | undefined;
|
|
5492
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5411
5493
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5412
5494
|
type: z.ZodLiteral<"source_component">;
|
|
5413
5495
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5416,6 +5498,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5416
5498
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5417
5499
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5418
5500
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5501
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5419
5502
|
}, {
|
|
5420
5503
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
5421
5504
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -5428,6 +5511,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5428
5511
|
manufacturer_part_number?: string | undefined;
|
|
5429
5512
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5430
5513
|
display_value?: string | undefined;
|
|
5514
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5431
5515
|
}, {
|
|
5432
5516
|
type: "source_component";
|
|
5433
5517
|
name: string;
|
|
@@ -5437,6 +5521,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5437
5521
|
manufacturer_part_number?: string | undefined;
|
|
5438
5522
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5439
5523
|
display_value?: string | undefined;
|
|
5524
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5440
5525
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5441
5526
|
type: z.ZodLiteral<"source_component">;
|
|
5442
5527
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5445,6 +5530,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5445
5530
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5446
5531
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5447
5532
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5533
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5448
5534
|
}, {
|
|
5449
5535
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
5450
5536
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5457,6 +5543,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5457
5543
|
manufacturer_part_number?: string | undefined;
|
|
5458
5544
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5459
5545
|
display_value?: string | undefined;
|
|
5546
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5460
5547
|
}, {
|
|
5461
5548
|
type: "source_component";
|
|
5462
5549
|
name: string;
|
|
@@ -5466,6 +5553,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5466
5553
|
manufacturer_part_number?: string | undefined;
|
|
5467
5554
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5468
5555
|
display_value?: string | undefined;
|
|
5556
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5469
5557
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5470
5558
|
type: z.ZodLiteral<"source_component">;
|
|
5471
5559
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5474,6 +5562,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5474
5562
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5475
5563
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5476
5564
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5565
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5477
5566
|
}, {
|
|
5478
5567
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
5479
5568
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5484,6 +5573,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5484
5573
|
manufacturer_part_number?: string | undefined;
|
|
5485
5574
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5486
5575
|
display_value?: string | undefined;
|
|
5576
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5487
5577
|
}, {
|
|
5488
5578
|
type: "source_component";
|
|
5489
5579
|
name: string;
|
|
@@ -5492,6 +5582,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5492
5582
|
manufacturer_part_number?: string | undefined;
|
|
5493
5583
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5494
5584
|
display_value?: string | undefined;
|
|
5585
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5495
5586
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5496
5587
|
type: z.ZodLiteral<"source_component">;
|
|
5497
5588
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5500,6 +5591,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5500
5591
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5501
5592
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5502
5593
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5594
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5503
5595
|
}, {
|
|
5504
5596
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5505
5597
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5512,6 +5604,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5512
5604
|
manufacturer_part_number?: string | undefined;
|
|
5513
5605
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5514
5606
|
display_value?: string | undefined;
|
|
5607
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5515
5608
|
}, {
|
|
5516
5609
|
type: "source_component";
|
|
5517
5610
|
name: string;
|
|
@@ -5521,6 +5614,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5521
5614
|
manufacturer_part_number?: string | undefined;
|
|
5522
5615
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5523
5616
|
display_value?: string | undefined;
|
|
5617
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5524
5618
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5525
5619
|
type: z.ZodLiteral<"source_component">;
|
|
5526
5620
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5529,6 +5623,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5529
5623
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5530
5624
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5531
5625
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5626
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5532
5627
|
}, {
|
|
5533
5628
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
5534
5629
|
frequency: z.ZodNumber;
|
|
@@ -5542,6 +5637,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5542
5637
|
manufacturer_part_number?: string | undefined;
|
|
5543
5638
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5544
5639
|
display_value?: string | undefined;
|
|
5640
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5545
5641
|
load_capacitance?: number | undefined;
|
|
5546
5642
|
}, {
|
|
5547
5643
|
type: "source_component";
|
|
@@ -5552,6 +5648,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5552
5648
|
manufacturer_part_number?: string | undefined;
|
|
5553
5649
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5554
5650
|
display_value?: string | undefined;
|
|
5651
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5555
5652
|
load_capacitance?: number | undefined;
|
|
5556
5653
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5557
5654
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5561,6 +5658,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5561
5658
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5562
5659
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5563
5660
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5661
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5564
5662
|
}, {
|
|
5565
5663
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5566
5664
|
pin_count: z.ZodNumber;
|
|
@@ -5575,6 +5673,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5575
5673
|
manufacturer_part_number?: string | undefined;
|
|
5576
5674
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5577
5675
|
display_value?: string | undefined;
|
|
5676
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5578
5677
|
}, {
|
|
5579
5678
|
type: "source_component";
|
|
5580
5679
|
name: string;
|
|
@@ -5584,6 +5683,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5584
5683
|
manufacturer_part_number?: string | undefined;
|
|
5585
5684
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5586
5685
|
display_value?: string | undefined;
|
|
5686
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5587
5687
|
gender?: "male" | "female" | undefined;
|
|
5588
5688
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5589
5689
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5593,6 +5693,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5593
5693
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5594
5694
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5595
5695
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5696
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5596
5697
|
}, {
|
|
5597
5698
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
5598
5699
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5608,6 +5709,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5608
5709
|
manufacturer_part_number?: string | undefined;
|
|
5609
5710
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5610
5711
|
display_value?: string | undefined;
|
|
5712
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5611
5713
|
equivalent_series_resistance?: number | undefined;
|
|
5612
5714
|
}, {
|
|
5613
5715
|
type: "source_component";
|
|
@@ -5619,6 +5721,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5619
5721
|
manufacturer_part_number?: string | undefined;
|
|
5620
5722
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5621
5723
|
display_value?: string | undefined;
|
|
5724
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5622
5725
|
equivalent_series_resistance?: string | number | undefined;
|
|
5623
5726
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5624
5727
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5628,6 +5731,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5628
5731
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5629
5732
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5630
5733
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5734
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5631
5735
|
}, {
|
|
5632
5736
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5633
5737
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5638,6 +5742,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5638
5742
|
manufacturer_part_number?: string | undefined;
|
|
5639
5743
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5640
5744
|
display_value?: string | undefined;
|
|
5745
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5641
5746
|
}, {
|
|
5642
5747
|
type: "source_component";
|
|
5643
5748
|
name: string;
|
|
@@ -5646,6 +5751,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5646
5751
|
manufacturer_part_number?: string | undefined;
|
|
5647
5752
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5648
5753
|
display_value?: string | undefined;
|
|
5754
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5649
5755
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5650
5756
|
type: z.ZodLiteral<"source_component">;
|
|
5651
5757
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5654,6 +5760,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5654
5760
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5655
5761
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5656
5762
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5763
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5657
5764
|
}, {
|
|
5658
5765
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5659
5766
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5666,6 +5773,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5666
5773
|
manufacturer_part_number?: string | undefined;
|
|
5667
5774
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5668
5775
|
display_value?: string | undefined;
|
|
5776
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5669
5777
|
}, {
|
|
5670
5778
|
type: "source_component";
|
|
5671
5779
|
name: string;
|
|
@@ -5675,6 +5783,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5675
5783
|
manufacturer_part_number?: string | undefined;
|
|
5676
5784
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5677
5785
|
display_value?: string | undefined;
|
|
5786
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5678
5787
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5679
5788
|
type: z.ZodLiteral<"source_component">;
|
|
5680
5789
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5683,6 +5792,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5683
5792
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5684
5793
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5685
5794
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5795
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5686
5796
|
}, {
|
|
5687
5797
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5688
5798
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5697,6 +5807,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5697
5807
|
manufacturer_part_number?: string | undefined;
|
|
5698
5808
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5699
5809
|
display_value?: string | undefined;
|
|
5810
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5700
5811
|
}, {
|
|
5701
5812
|
type: "source_component";
|
|
5702
5813
|
name: string;
|
|
@@ -5707,6 +5818,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5707
5818
|
manufacturer_part_number?: string | undefined;
|
|
5708
5819
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5709
5820
|
display_value?: string | undefined;
|
|
5821
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5710
5822
|
}>, z.ZodObject<{
|
|
5711
5823
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
5712
5824
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6051,6 +6163,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6051
6163
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6052
6164
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6053
6165
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6166
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6054
6167
|
}, {
|
|
6055
6168
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6056
6169
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6064,6 +6177,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6064
6177
|
manufacturer_part_number?: string | undefined;
|
|
6065
6178
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6066
6179
|
display_value?: string | undefined;
|
|
6180
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6067
6181
|
display_resistance?: string | undefined;
|
|
6068
6182
|
}, {
|
|
6069
6183
|
type: "source_component";
|
|
@@ -6074,6 +6188,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6074
6188
|
manufacturer_part_number?: string | undefined;
|
|
6075
6189
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6076
6190
|
display_value?: string | undefined;
|
|
6191
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6077
6192
|
display_resistance?: string | undefined;
|
|
6078
6193
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6079
6194
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6083,6 +6198,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6083
6198
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6084
6199
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6085
6200
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6201
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6086
6202
|
}, {
|
|
6087
6203
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6088
6204
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6098,6 +6214,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6098
6214
|
manufacturer_part_number?: string | undefined;
|
|
6099
6215
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6100
6216
|
display_value?: string | undefined;
|
|
6217
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6101
6218
|
max_voltage_rating?: number | undefined;
|
|
6102
6219
|
display_capacitance?: string | undefined;
|
|
6103
6220
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -6110,6 +6227,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6110
6227
|
manufacturer_part_number?: string | undefined;
|
|
6111
6228
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6112
6229
|
display_value?: string | undefined;
|
|
6230
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6113
6231
|
max_voltage_rating?: string | number | undefined;
|
|
6114
6232
|
display_capacitance?: string | undefined;
|
|
6115
6233
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -6121,6 +6239,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6121
6239
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6122
6240
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6123
6241
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6242
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6124
6243
|
}, {
|
|
6125
6244
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6126
6245
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6131,6 +6250,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6131
6250
|
manufacturer_part_number?: string | undefined;
|
|
6132
6251
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6133
6252
|
display_value?: string | undefined;
|
|
6253
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6134
6254
|
}, {
|
|
6135
6255
|
type: "source_component";
|
|
6136
6256
|
name: string;
|
|
@@ -6139,6 +6259,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6139
6259
|
manufacturer_part_number?: string | undefined;
|
|
6140
6260
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6141
6261
|
display_value?: string | undefined;
|
|
6262
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6142
6263
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6143
6264
|
type: z.ZodLiteral<"source_component">;
|
|
6144
6265
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6147,6 +6268,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6147
6268
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6148
6269
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6149
6270
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6271
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6150
6272
|
}, {
|
|
6151
6273
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
6152
6274
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6157,6 +6279,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6157
6279
|
manufacturer_part_number?: string | undefined;
|
|
6158
6280
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6159
6281
|
display_value?: string | undefined;
|
|
6282
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6160
6283
|
}, {
|
|
6161
6284
|
type: "source_component";
|
|
6162
6285
|
name: string;
|
|
@@ -6165,6 +6288,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6165
6288
|
manufacturer_part_number?: string | undefined;
|
|
6166
6289
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6167
6290
|
display_value?: string | undefined;
|
|
6291
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6168
6292
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6169
6293
|
type: z.ZodLiteral<"source_component">;
|
|
6170
6294
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6173,6 +6297,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6173
6297
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6174
6298
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6175
6299
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6300
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6176
6301
|
}, {
|
|
6177
6302
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6178
6303
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6183,6 +6308,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6183
6308
|
manufacturer_part_number?: string | undefined;
|
|
6184
6309
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6185
6310
|
display_value?: string | undefined;
|
|
6311
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6186
6312
|
}, {
|
|
6187
6313
|
type: "source_component";
|
|
6188
6314
|
name: string;
|
|
@@ -6191,6 +6317,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6191
6317
|
manufacturer_part_number?: string | undefined;
|
|
6192
6318
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6193
6319
|
display_value?: string | undefined;
|
|
6320
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6194
6321
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6195
6322
|
type: z.ZodLiteral<"source_component">;
|
|
6196
6323
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6199,6 +6326,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6199
6326
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6200
6327
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6201
6328
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6329
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6202
6330
|
}, {
|
|
6203
6331
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6204
6332
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6209,6 +6337,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6209
6337
|
manufacturer_part_number?: string | undefined;
|
|
6210
6338
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6211
6339
|
display_value?: string | undefined;
|
|
6340
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6212
6341
|
}, {
|
|
6213
6342
|
type: "source_component";
|
|
6214
6343
|
name: string;
|
|
@@ -6217,6 +6346,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6217
6346
|
manufacturer_part_number?: string | undefined;
|
|
6218
6347
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6219
6348
|
display_value?: string | undefined;
|
|
6349
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6220
6350
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6221
6351
|
type: z.ZodLiteral<"source_component">;
|
|
6222
6352
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6225,6 +6355,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6225
6355
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6226
6356
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6227
6357
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6358
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6228
6359
|
}, {
|
|
6229
6360
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6230
6361
|
}>, {
|
|
@@ -6237,6 +6368,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6237
6368
|
manufacturer_part_number?: string | undefined;
|
|
6238
6369
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6239
6370
|
display_value?: string | undefined;
|
|
6371
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6240
6372
|
}, {
|
|
6241
6373
|
type: "source_component";
|
|
6242
6374
|
name: string;
|
|
@@ -6245,6 +6377,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6245
6377
|
manufacturer_part_number?: string | undefined;
|
|
6246
6378
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6247
6379
|
display_value?: string | undefined;
|
|
6380
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6248
6381
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6249
6382
|
type: z.ZodLiteral<"source_component">;
|
|
6250
6383
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6253,6 +6386,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6253
6386
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6254
6387
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6255
6388
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6389
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6256
6390
|
}, {
|
|
6257
6391
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6258
6392
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6265,6 +6399,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6265
6399
|
manufacturer_part_number?: string | undefined;
|
|
6266
6400
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6267
6401
|
display_value?: string | undefined;
|
|
6402
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6268
6403
|
}, {
|
|
6269
6404
|
type: "source_component";
|
|
6270
6405
|
name: string;
|
|
@@ -6274,6 +6409,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6274
6409
|
manufacturer_part_number?: string | undefined;
|
|
6275
6410
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6276
6411
|
display_value?: string | undefined;
|
|
6412
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6277
6413
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6278
6414
|
type: z.ZodLiteral<"source_component">;
|
|
6279
6415
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6282,6 +6418,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6282
6418
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6283
6419
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6284
6420
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6421
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6285
6422
|
}, {
|
|
6286
6423
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6287
6424
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6294,6 +6431,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6294
6431
|
manufacturer_part_number?: string | undefined;
|
|
6295
6432
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6296
6433
|
display_value?: string | undefined;
|
|
6434
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6297
6435
|
}, {
|
|
6298
6436
|
type: "source_component";
|
|
6299
6437
|
name: string;
|
|
@@ -6303,6 +6441,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6303
6441
|
manufacturer_part_number?: string | undefined;
|
|
6304
6442
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6305
6443
|
display_value?: string | undefined;
|
|
6444
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6306
6445
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6307
6446
|
type: z.ZodLiteral<"source_component">;
|
|
6308
6447
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6311,6 +6450,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6311
6450
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6312
6451
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6313
6452
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6453
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6314
6454
|
}, {
|
|
6315
6455
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6316
6456
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6323,6 +6463,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6323
6463
|
manufacturer_part_number?: string | undefined;
|
|
6324
6464
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6325
6465
|
display_value?: string | undefined;
|
|
6466
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6326
6467
|
}, {
|
|
6327
6468
|
type: "source_component";
|
|
6328
6469
|
name: string;
|
|
@@ -6332,6 +6473,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6332
6473
|
manufacturer_part_number?: string | undefined;
|
|
6333
6474
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6334
6475
|
display_value?: string | undefined;
|
|
6476
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6335
6477
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6336
6478
|
type: z.ZodLiteral<"source_component">;
|
|
6337
6479
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6340,6 +6482,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6340
6482
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6341
6483
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6342
6484
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6485
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6343
6486
|
}, {
|
|
6344
6487
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
6345
6488
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6350,6 +6493,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6350
6493
|
manufacturer_part_number?: string | undefined;
|
|
6351
6494
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6352
6495
|
display_value?: string | undefined;
|
|
6496
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6353
6497
|
}, {
|
|
6354
6498
|
type: "source_component";
|
|
6355
6499
|
name: string;
|
|
@@ -6358,6 +6502,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6358
6502
|
manufacturer_part_number?: string | undefined;
|
|
6359
6503
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6360
6504
|
display_value?: string | undefined;
|
|
6505
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6361
6506
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6362
6507
|
type: z.ZodLiteral<"source_component">;
|
|
6363
6508
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6366,6 +6511,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6366
6511
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6367
6512
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6368
6513
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6514
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6369
6515
|
}, {
|
|
6370
6516
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
6371
6517
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6378,6 +6524,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6378
6524
|
manufacturer_part_number?: string | undefined;
|
|
6379
6525
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6380
6526
|
display_value?: string | undefined;
|
|
6527
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6381
6528
|
}, {
|
|
6382
6529
|
type: "source_component";
|
|
6383
6530
|
name: string;
|
|
@@ -6387,6 +6534,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6387
6534
|
manufacturer_part_number?: string | undefined;
|
|
6388
6535
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6389
6536
|
display_value?: string | undefined;
|
|
6537
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6390
6538
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6391
6539
|
type: z.ZodLiteral<"source_component">;
|
|
6392
6540
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6395,6 +6543,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6395
6543
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6396
6544
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6397
6545
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6546
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6398
6547
|
}, {
|
|
6399
6548
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
6400
6549
|
frequency: z.ZodNumber;
|
|
@@ -6408,6 +6557,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6408
6557
|
manufacturer_part_number?: string | undefined;
|
|
6409
6558
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6410
6559
|
display_value?: string | undefined;
|
|
6560
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6411
6561
|
load_capacitance?: number | undefined;
|
|
6412
6562
|
}, {
|
|
6413
6563
|
type: "source_component";
|
|
@@ -6418,6 +6568,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6418
6568
|
manufacturer_part_number?: string | undefined;
|
|
6419
6569
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6420
6570
|
display_value?: string | undefined;
|
|
6571
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6421
6572
|
load_capacitance?: number | undefined;
|
|
6422
6573
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6423
6574
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6427,6 +6578,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6427
6578
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6428
6579
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6429
6580
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6581
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6430
6582
|
}, {
|
|
6431
6583
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6432
6584
|
pin_count: z.ZodNumber;
|
|
@@ -6441,6 +6593,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6441
6593
|
manufacturer_part_number?: string | undefined;
|
|
6442
6594
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6443
6595
|
display_value?: string | undefined;
|
|
6596
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6444
6597
|
}, {
|
|
6445
6598
|
type: "source_component";
|
|
6446
6599
|
name: string;
|
|
@@ -6450,6 +6603,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6450
6603
|
manufacturer_part_number?: string | undefined;
|
|
6451
6604
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6452
6605
|
display_value?: string | undefined;
|
|
6606
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6453
6607
|
gender?: "male" | "female" | undefined;
|
|
6454
6608
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6455
6609
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6459,6 +6613,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6459
6613
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6460
6614
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6461
6615
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6616
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6462
6617
|
}, {
|
|
6463
6618
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6464
6619
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6474,6 +6629,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6474
6629
|
manufacturer_part_number?: string | undefined;
|
|
6475
6630
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6476
6631
|
display_value?: string | undefined;
|
|
6632
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6477
6633
|
equivalent_series_resistance?: number | undefined;
|
|
6478
6634
|
}, {
|
|
6479
6635
|
type: "source_component";
|
|
@@ -6485,6 +6641,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6485
6641
|
manufacturer_part_number?: string | undefined;
|
|
6486
6642
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6487
6643
|
display_value?: string | undefined;
|
|
6644
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6488
6645
|
equivalent_series_resistance?: string | number | undefined;
|
|
6489
6646
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6490
6647
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6494,6 +6651,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6494
6651
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6495
6652
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6496
6653
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6654
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6497
6655
|
}, {
|
|
6498
6656
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6499
6657
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6504,6 +6662,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6504
6662
|
manufacturer_part_number?: string | undefined;
|
|
6505
6663
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6506
6664
|
display_value?: string | undefined;
|
|
6665
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6507
6666
|
}, {
|
|
6508
6667
|
type: "source_component";
|
|
6509
6668
|
name: string;
|
|
@@ -6512,6 +6671,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6512
6671
|
manufacturer_part_number?: string | undefined;
|
|
6513
6672
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6514
6673
|
display_value?: string | undefined;
|
|
6674
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6515
6675
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6516
6676
|
type: z.ZodLiteral<"source_component">;
|
|
6517
6677
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6520,6 +6680,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6520
6680
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6521
6681
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6522
6682
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6683
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6523
6684
|
}, {
|
|
6524
6685
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6525
6686
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -6532,6 +6693,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6532
6693
|
manufacturer_part_number?: string | undefined;
|
|
6533
6694
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6534
6695
|
display_value?: string | undefined;
|
|
6696
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6535
6697
|
}, {
|
|
6536
6698
|
type: "source_component";
|
|
6537
6699
|
name: string;
|
|
@@ -6541,6 +6703,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6541
6703
|
manufacturer_part_number?: string | undefined;
|
|
6542
6704
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6543
6705
|
display_value?: string | undefined;
|
|
6706
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6544
6707
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6545
6708
|
type: z.ZodLiteral<"source_component">;
|
|
6546
6709
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6549,6 +6712,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6549
6712
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6550
6713
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6551
6714
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6715
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6552
6716
|
}, {
|
|
6553
6717
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
6554
6718
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -6563,6 +6727,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6563
6727
|
manufacturer_part_number?: string | undefined;
|
|
6564
6728
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6565
6729
|
display_value?: string | undefined;
|
|
6730
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6566
6731
|
}, {
|
|
6567
6732
|
type: "source_component";
|
|
6568
6733
|
name: string;
|
|
@@ -6573,6 +6738,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6573
6738
|
manufacturer_part_number?: string | undefined;
|
|
6574
6739
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6575
6740
|
display_value?: string | undefined;
|
|
6741
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6576
6742
|
}>, z.ZodObject<{
|
|
6577
6743
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
6578
6744
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6596,6 +6762,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6596
6762
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6597
6763
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6598
6764
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6765
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6599
6766
|
}, {
|
|
6600
6767
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6601
6768
|
}>, {
|
|
@@ -6608,6 +6775,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6608
6775
|
manufacturer_part_number?: string | undefined;
|
|
6609
6776
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6610
6777
|
display_value?: string | undefined;
|
|
6778
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6611
6779
|
}, {
|
|
6612
6780
|
type: "source_component";
|
|
6613
6781
|
name: string;
|
|
@@ -6616,6 +6784,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6616
6784
|
manufacturer_part_number?: string | undefined;
|
|
6617
6785
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6618
6786
|
display_value?: string | undefined;
|
|
6787
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6619
6788
|
}>, z.ZodObject<{
|
|
6620
6789
|
type: z.ZodLiteral<"source_net">;
|
|
6621
6790
|
source_net_id: z.ZodString;
|
|
@@ -6678,6 +6847,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6678
6847
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6679
6848
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6680
6849
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6850
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6681
6851
|
}, {
|
|
6682
6852
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6683
6853
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6688,6 +6858,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6688
6858
|
manufacturer_part_number?: string | undefined;
|
|
6689
6859
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6690
6860
|
display_value?: string | undefined;
|
|
6861
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6691
6862
|
}, {
|
|
6692
6863
|
type: "source_component";
|
|
6693
6864
|
name: string;
|
|
@@ -6696,6 +6867,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6696
6867
|
manufacturer_part_number?: string | undefined;
|
|
6697
6868
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6698
6869
|
display_value?: string | undefined;
|
|
6870
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6699
6871
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6700
6872
|
type: z.ZodLiteral<"source_component">;
|
|
6701
6873
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6704,6 +6876,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6704
6876
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6705
6877
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6706
6878
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6879
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6707
6880
|
}, {
|
|
6708
6881
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6709
6882
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6714,6 +6887,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6714
6887
|
manufacturer_part_number?: string | undefined;
|
|
6715
6888
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6716
6889
|
display_value?: string | undefined;
|
|
6890
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6717
6891
|
}, {
|
|
6718
6892
|
type: "source_component";
|
|
6719
6893
|
name: string;
|
|
@@ -6722,6 +6896,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6722
6896
|
manufacturer_part_number?: string | undefined;
|
|
6723
6897
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6724
6898
|
display_value?: string | undefined;
|
|
6899
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6725
6900
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6726
6901
|
type: z.ZodLiteral<"source_component">;
|
|
6727
6902
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6730,6 +6905,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6730
6905
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6731
6906
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6732
6907
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6908
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6733
6909
|
}, {
|
|
6734
6910
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6735
6911
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6745,6 +6921,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6745
6921
|
manufacturer_part_number?: string | undefined;
|
|
6746
6922
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6747
6923
|
display_value?: string | undefined;
|
|
6924
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6748
6925
|
max_voltage_rating?: number | undefined;
|
|
6749
6926
|
display_capacitance?: string | undefined;
|
|
6750
6927
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -6757,6 +6934,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6757
6934
|
manufacturer_part_number?: string | undefined;
|
|
6758
6935
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6759
6936
|
display_value?: string | undefined;
|
|
6937
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6760
6938
|
max_voltage_rating?: string | number | undefined;
|
|
6761
6939
|
display_capacitance?: string | undefined;
|
|
6762
6940
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -6768,6 +6946,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6768
6946
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6769
6947
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6770
6948
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6949
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6771
6950
|
}, {
|
|
6772
6951
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6773
6952
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6778,6 +6957,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6778
6957
|
manufacturer_part_number?: string | undefined;
|
|
6779
6958
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6780
6959
|
display_value?: string | undefined;
|
|
6960
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6781
6961
|
}, {
|
|
6782
6962
|
type: "source_component";
|
|
6783
6963
|
name: string;
|
|
@@ -6786,6 +6966,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6786
6966
|
manufacturer_part_number?: string | undefined;
|
|
6787
6967
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6788
6968
|
display_value?: string | undefined;
|
|
6969
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6789
6970
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6790
6971
|
type: z.ZodLiteral<"source_component">;
|
|
6791
6972
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6794,6 +6975,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6794
6975
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6795
6976
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6796
6977
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6978
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6797
6979
|
}, {
|
|
6798
6980
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6799
6981
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6807,6 +6989,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6807
6989
|
manufacturer_part_number?: string | undefined;
|
|
6808
6990
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6809
6991
|
display_value?: string | undefined;
|
|
6992
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6810
6993
|
display_resistance?: string | undefined;
|
|
6811
6994
|
}, {
|
|
6812
6995
|
type: "source_component";
|
|
@@ -6817,6 +7000,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6817
7000
|
manufacturer_part_number?: string | undefined;
|
|
6818
7001
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6819
7002
|
display_value?: string | undefined;
|
|
7003
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6820
7004
|
display_resistance?: string | undefined;
|
|
6821
7005
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6822
7006
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6826,6 +7010,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6826
7010
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6827
7011
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6828
7012
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7013
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6829
7014
|
}, {
|
|
6830
7015
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6831
7016
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6838,6 +7023,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6838
7023
|
manufacturer_part_number?: string | undefined;
|
|
6839
7024
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6840
7025
|
display_value?: string | undefined;
|
|
7026
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6841
7027
|
}, {
|
|
6842
7028
|
type: "source_component";
|
|
6843
7029
|
name: string;
|
|
@@ -6847,6 +7033,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6847
7033
|
manufacturer_part_number?: string | undefined;
|
|
6848
7034
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6849
7035
|
display_value?: string | undefined;
|
|
7036
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6850
7037
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6851
7038
|
type: z.ZodLiteral<"source_component">;
|
|
6852
7039
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6855,6 +7042,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6855
7042
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6856
7043
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6857
7044
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7045
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6858
7046
|
}, {
|
|
6859
7047
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6860
7048
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6867,6 +7055,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6867
7055
|
manufacturer_part_number?: string | undefined;
|
|
6868
7056
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6869
7057
|
display_value?: string | undefined;
|
|
7058
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6870
7059
|
}, {
|
|
6871
7060
|
type: "source_component";
|
|
6872
7061
|
name: string;
|
|
@@ -6876,6 +7065,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6876
7065
|
manufacturer_part_number?: string | undefined;
|
|
6877
7066
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6878
7067
|
display_value?: string | undefined;
|
|
7068
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6879
7069
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6880
7070
|
type: z.ZodLiteral<"source_component">;
|
|
6881
7071
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6884,6 +7074,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6884
7074
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6885
7075
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6886
7076
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7077
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6887
7078
|
}, {
|
|
6888
7079
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6889
7080
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6896,6 +7087,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6896
7087
|
manufacturer_part_number?: string | undefined;
|
|
6897
7088
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6898
7089
|
display_value?: string | undefined;
|
|
7090
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6899
7091
|
}, {
|
|
6900
7092
|
type: "source_component";
|
|
6901
7093
|
name: string;
|
|
@@ -6905,6 +7097,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6905
7097
|
manufacturer_part_number?: string | undefined;
|
|
6906
7098
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6907
7099
|
display_value?: string | undefined;
|
|
7100
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6908
7101
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6909
7102
|
type: z.ZodLiteral<"source_component">;
|
|
6910
7103
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6913,6 +7106,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6913
7106
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6914
7107
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6915
7108
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7109
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6916
7110
|
}, {
|
|
6917
7111
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6918
7112
|
pin_count: z.ZodNumber;
|
|
@@ -6927,6 +7121,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6927
7121
|
manufacturer_part_number?: string | undefined;
|
|
6928
7122
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6929
7123
|
display_value?: string | undefined;
|
|
7124
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6930
7125
|
}, {
|
|
6931
7126
|
type: "source_component";
|
|
6932
7127
|
name: string;
|
|
@@ -6936,6 +7131,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6936
7131
|
manufacturer_part_number?: string | undefined;
|
|
6937
7132
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6938
7133
|
display_value?: string | undefined;
|
|
7134
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6939
7135
|
gender?: "male" | "female" | undefined;
|
|
6940
7136
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6941
7137
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6945,6 +7141,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6945
7141
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6946
7142
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6947
7143
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7144
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6948
7145
|
}, {
|
|
6949
7146
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6950
7147
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6960,6 +7157,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6960
7157
|
manufacturer_part_number?: string | undefined;
|
|
6961
7158
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6962
7159
|
display_value?: string | undefined;
|
|
7160
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6963
7161
|
equivalent_series_resistance?: number | undefined;
|
|
6964
7162
|
}, {
|
|
6965
7163
|
type: "source_component";
|
|
@@ -6971,6 +7169,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6971
7169
|
manufacturer_part_number?: string | undefined;
|
|
6972
7170
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6973
7171
|
display_value?: string | undefined;
|
|
7172
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6974
7173
|
equivalent_series_resistance?: string | number | undefined;
|
|
6975
7174
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6976
7175
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6980,6 +7179,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6980
7179
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6981
7180
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6982
7181
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7182
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6983
7183
|
}, {
|
|
6984
7184
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6985
7185
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6990,6 +7190,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6990
7190
|
manufacturer_part_number?: string | undefined;
|
|
6991
7191
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6992
7192
|
display_value?: string | undefined;
|
|
7193
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6993
7194
|
}, {
|
|
6994
7195
|
type: "source_component";
|
|
6995
7196
|
name: string;
|
|
@@ -6998,6 +7199,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6998
7199
|
manufacturer_part_number?: string | undefined;
|
|
6999
7200
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7000
7201
|
display_value?: string | undefined;
|
|
7202
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7001
7203
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7002
7204
|
type: z.ZodLiteral<"source_component">;
|
|
7003
7205
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7006,6 +7208,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7006
7208
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7007
7209
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7008
7210
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7211
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7009
7212
|
}, {
|
|
7010
7213
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
7011
7214
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -7018,6 +7221,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7018
7221
|
manufacturer_part_number?: string | undefined;
|
|
7019
7222
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7020
7223
|
display_value?: string | undefined;
|
|
7224
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7021
7225
|
}, {
|
|
7022
7226
|
type: "source_component";
|
|
7023
7227
|
name: string;
|
|
@@ -7027,6 +7231,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7027
7231
|
manufacturer_part_number?: string | undefined;
|
|
7028
7232
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7029
7233
|
display_value?: string | undefined;
|
|
7234
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7030
7235
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7031
7236
|
type: z.ZodLiteral<"source_component">;
|
|
7032
7237
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7035,6 +7240,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7035
7240
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7036
7241
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7037
7242
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7243
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7038
7244
|
}, {
|
|
7039
7245
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
7040
7246
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -7049,6 +7255,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7049
7255
|
manufacturer_part_number?: string | undefined;
|
|
7050
7256
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7051
7257
|
display_value?: string | undefined;
|
|
7258
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7052
7259
|
}, {
|
|
7053
7260
|
type: "source_component";
|
|
7054
7261
|
name: string;
|
|
@@ -7059,6 +7266,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7059
7266
|
manufacturer_part_number?: string | undefined;
|
|
7060
7267
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7061
7268
|
display_value?: string | undefined;
|
|
7269
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7062
7270
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7063
7271
|
type: z.ZodLiteral<"source_component">;
|
|
7064
7272
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7067,6 +7275,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7067
7275
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7068
7276
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7069
7277
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7278
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7070
7279
|
}, {
|
|
7071
7280
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7072
7281
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7079,6 +7288,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7079
7288
|
manufacturer_part_number?: string | undefined;
|
|
7080
7289
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7081
7290
|
display_value?: string | undefined;
|
|
7291
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7082
7292
|
}, {
|
|
7083
7293
|
type: "source_component";
|
|
7084
7294
|
name: string;
|
|
@@ -7088,6 +7298,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7088
7298
|
manufacturer_part_number?: string | undefined;
|
|
7089
7299
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7090
7300
|
display_value?: string | undefined;
|
|
7301
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7091
7302
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7092
7303
|
type: z.ZodLiteral<"source_component">;
|
|
7093
7304
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7096,6 +7307,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7096
7307
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7097
7308
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7098
7309
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7310
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7099
7311
|
}, {
|
|
7100
7312
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7101
7313
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7106,6 +7318,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7106
7318
|
manufacturer_part_number?: string | undefined;
|
|
7107
7319
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7108
7320
|
display_value?: string | undefined;
|
|
7321
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7109
7322
|
}, {
|
|
7110
7323
|
type: "source_component";
|
|
7111
7324
|
name: string;
|
|
@@ -7114,6 +7327,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7114
7327
|
manufacturer_part_number?: string | undefined;
|
|
7115
7328
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7116
7329
|
display_value?: string | undefined;
|
|
7330
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7117
7331
|
}>, z.ZodObject<{
|
|
7118
7332
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
7119
7333
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -9904,6 +10118,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9904
10118
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9905
10119
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9906
10120
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10121
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9907
10122
|
}, {
|
|
9908
10123
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
9909
10124
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -9917,6 +10132,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9917
10132
|
manufacturer_part_number?: string | undefined;
|
|
9918
10133
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9919
10134
|
display_value?: string | undefined;
|
|
10135
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9920
10136
|
display_resistance?: string | undefined;
|
|
9921
10137
|
}, {
|
|
9922
10138
|
type: "source_component";
|
|
@@ -9927,6 +10143,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9927
10143
|
manufacturer_part_number?: string | undefined;
|
|
9928
10144
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9929
10145
|
display_value?: string | undefined;
|
|
10146
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9930
10147
|
display_resistance?: string | undefined;
|
|
9931
10148
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9932
10149
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -9936,6 +10153,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9936
10153
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9937
10154
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9938
10155
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10156
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9939
10157
|
}, {
|
|
9940
10158
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
9941
10159
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -9951,6 +10169,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9951
10169
|
manufacturer_part_number?: string | undefined;
|
|
9952
10170
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9953
10171
|
display_value?: string | undefined;
|
|
10172
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9954
10173
|
max_voltage_rating?: number | undefined;
|
|
9955
10174
|
display_capacitance?: string | undefined;
|
|
9956
10175
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -9963,6 +10182,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9963
10182
|
manufacturer_part_number?: string | undefined;
|
|
9964
10183
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9965
10184
|
display_value?: string | undefined;
|
|
10185
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9966
10186
|
max_voltage_rating?: string | number | undefined;
|
|
9967
10187
|
display_capacitance?: string | undefined;
|
|
9968
10188
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -9974,6 +10194,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9974
10194
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9975
10195
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9976
10196
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10197
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9977
10198
|
}, {
|
|
9978
10199
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
9979
10200
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -9984,6 +10205,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9984
10205
|
manufacturer_part_number?: string | undefined;
|
|
9985
10206
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9986
10207
|
display_value?: string | undefined;
|
|
10208
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9987
10209
|
}, {
|
|
9988
10210
|
type: "source_component";
|
|
9989
10211
|
name: string;
|
|
@@ -9992,6 +10214,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9992
10214
|
manufacturer_part_number?: string | undefined;
|
|
9993
10215
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9994
10216
|
display_value?: string | undefined;
|
|
10217
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9995
10218
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9996
10219
|
type: z.ZodLiteral<"source_component">;
|
|
9997
10220
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10000,6 +10223,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10000
10223
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10001
10224
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10002
10225
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10226
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10003
10227
|
}, {
|
|
10004
10228
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
10005
10229
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10010,6 +10234,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10010
10234
|
manufacturer_part_number?: string | undefined;
|
|
10011
10235
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10012
10236
|
display_value?: string | undefined;
|
|
10237
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10013
10238
|
}, {
|
|
10014
10239
|
type: "source_component";
|
|
10015
10240
|
name: string;
|
|
@@ -10018,6 +10243,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10018
10243
|
manufacturer_part_number?: string | undefined;
|
|
10019
10244
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10020
10245
|
display_value?: string | undefined;
|
|
10246
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10021
10247
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10022
10248
|
type: z.ZodLiteral<"source_component">;
|
|
10023
10249
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10026,6 +10252,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10026
10252
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10027
10253
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10028
10254
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10255
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10029
10256
|
}, {
|
|
10030
10257
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
10031
10258
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10036,6 +10263,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10036
10263
|
manufacturer_part_number?: string | undefined;
|
|
10037
10264
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10038
10265
|
display_value?: string | undefined;
|
|
10266
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10039
10267
|
}, {
|
|
10040
10268
|
type: "source_component";
|
|
10041
10269
|
name: string;
|
|
@@ -10044,6 +10272,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10044
10272
|
manufacturer_part_number?: string | undefined;
|
|
10045
10273
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10046
10274
|
display_value?: string | undefined;
|
|
10275
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10047
10276
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10048
10277
|
type: z.ZodLiteral<"source_component">;
|
|
10049
10278
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10052,6 +10281,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10052
10281
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10053
10282
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10054
10283
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10284
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10055
10285
|
}, {
|
|
10056
10286
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
10057
10287
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10062,6 +10292,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10062
10292
|
manufacturer_part_number?: string | undefined;
|
|
10063
10293
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10064
10294
|
display_value?: string | undefined;
|
|
10295
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10065
10296
|
}, {
|
|
10066
10297
|
type: "source_component";
|
|
10067
10298
|
name: string;
|
|
@@ -10070,6 +10301,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10070
10301
|
manufacturer_part_number?: string | undefined;
|
|
10071
10302
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10072
10303
|
display_value?: string | undefined;
|
|
10304
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10073
10305
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10074
10306
|
type: z.ZodLiteral<"source_component">;
|
|
10075
10307
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10078,6 +10310,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10078
10310
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10079
10311
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10080
10312
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10313
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10081
10314
|
}, {
|
|
10082
10315
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10083
10316
|
}>, {
|
|
@@ -10090,6 +10323,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10090
10323
|
manufacturer_part_number?: string | undefined;
|
|
10091
10324
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10092
10325
|
display_value?: string | undefined;
|
|
10326
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10093
10327
|
}, {
|
|
10094
10328
|
type: "source_component";
|
|
10095
10329
|
name: string;
|
|
@@ -10098,6 +10332,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10098
10332
|
manufacturer_part_number?: string | undefined;
|
|
10099
10333
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10100
10334
|
display_value?: string | undefined;
|
|
10335
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10101
10336
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10102
10337
|
type: z.ZodLiteral<"source_component">;
|
|
10103
10338
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10106,6 +10341,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10106
10341
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10107
10342
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10108
10343
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10344
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10109
10345
|
}, {
|
|
10110
10346
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
10111
10347
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10118,6 +10354,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10118
10354
|
manufacturer_part_number?: string | undefined;
|
|
10119
10355
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10120
10356
|
display_value?: string | undefined;
|
|
10357
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10121
10358
|
}, {
|
|
10122
10359
|
type: "source_component";
|
|
10123
10360
|
name: string;
|
|
@@ -10127,6 +10364,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10127
10364
|
manufacturer_part_number?: string | undefined;
|
|
10128
10365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10129
10366
|
display_value?: string | undefined;
|
|
10367
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10130
10368
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10131
10369
|
type: z.ZodLiteral<"source_component">;
|
|
10132
10370
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10135,6 +10373,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10135
10373
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10136
10374
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10137
10375
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10376
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10138
10377
|
}, {
|
|
10139
10378
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
10140
10379
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -10147,6 +10386,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10147
10386
|
manufacturer_part_number?: string | undefined;
|
|
10148
10387
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10149
10388
|
display_value?: string | undefined;
|
|
10389
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10150
10390
|
}, {
|
|
10151
10391
|
type: "source_component";
|
|
10152
10392
|
name: string;
|
|
@@ -10156,6 +10396,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10156
10396
|
manufacturer_part_number?: string | undefined;
|
|
10157
10397
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10158
10398
|
display_value?: string | undefined;
|
|
10399
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10159
10400
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10160
10401
|
type: z.ZodLiteral<"source_component">;
|
|
10161
10402
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10164,6 +10405,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10164
10405
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10165
10406
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10166
10407
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10408
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10167
10409
|
}, {
|
|
10168
10410
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
10169
10411
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10176,6 +10418,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10176
10418
|
manufacturer_part_number?: string | undefined;
|
|
10177
10419
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10178
10420
|
display_value?: string | undefined;
|
|
10421
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10179
10422
|
}, {
|
|
10180
10423
|
type: "source_component";
|
|
10181
10424
|
name: string;
|
|
@@ -10185,6 +10428,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10185
10428
|
manufacturer_part_number?: string | undefined;
|
|
10186
10429
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10187
10430
|
display_value?: string | undefined;
|
|
10431
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10188
10432
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10189
10433
|
type: z.ZodLiteral<"source_component">;
|
|
10190
10434
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10193,6 +10437,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10193
10437
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10194
10438
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10195
10439
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10440
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10196
10441
|
}, {
|
|
10197
10442
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
10198
10443
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10203,6 +10448,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10203
10448
|
manufacturer_part_number?: string | undefined;
|
|
10204
10449
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10205
10450
|
display_value?: string | undefined;
|
|
10451
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10206
10452
|
}, {
|
|
10207
10453
|
type: "source_component";
|
|
10208
10454
|
name: string;
|
|
@@ -10211,6 +10457,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10211
10457
|
manufacturer_part_number?: string | undefined;
|
|
10212
10458
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10213
10459
|
display_value?: string | undefined;
|
|
10460
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10214
10461
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10215
10462
|
type: z.ZodLiteral<"source_component">;
|
|
10216
10463
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10219,6 +10466,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10219
10466
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10220
10467
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10221
10468
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10469
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10222
10470
|
}, {
|
|
10223
10471
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
10224
10472
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10231,6 +10479,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10231
10479
|
manufacturer_part_number?: string | undefined;
|
|
10232
10480
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10233
10481
|
display_value?: string | undefined;
|
|
10482
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10234
10483
|
}, {
|
|
10235
10484
|
type: "source_component";
|
|
10236
10485
|
name: string;
|
|
@@ -10240,6 +10489,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10240
10489
|
manufacturer_part_number?: string | undefined;
|
|
10241
10490
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10242
10491
|
display_value?: string | undefined;
|
|
10492
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10243
10493
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10244
10494
|
type: z.ZodLiteral<"source_component">;
|
|
10245
10495
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10248,6 +10498,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10248
10498
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10249
10499
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10250
10500
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10501
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10251
10502
|
}, {
|
|
10252
10503
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
10253
10504
|
frequency: z.ZodNumber;
|
|
@@ -10261,6 +10512,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10261
10512
|
manufacturer_part_number?: string | undefined;
|
|
10262
10513
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10263
10514
|
display_value?: string | undefined;
|
|
10515
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10264
10516
|
load_capacitance?: number | undefined;
|
|
10265
10517
|
}, {
|
|
10266
10518
|
type: "source_component";
|
|
@@ -10271,6 +10523,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10271
10523
|
manufacturer_part_number?: string | undefined;
|
|
10272
10524
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10273
10525
|
display_value?: string | undefined;
|
|
10526
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10274
10527
|
load_capacitance?: number | undefined;
|
|
10275
10528
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10276
10529
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10280,6 +10533,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10280
10533
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10281
10534
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10282
10535
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10536
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10283
10537
|
}, {
|
|
10284
10538
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
10285
10539
|
pin_count: z.ZodNumber;
|
|
@@ -10294,6 +10548,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10294
10548
|
manufacturer_part_number?: string | undefined;
|
|
10295
10549
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10296
10550
|
display_value?: string | undefined;
|
|
10551
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10297
10552
|
}, {
|
|
10298
10553
|
type: "source_component";
|
|
10299
10554
|
name: string;
|
|
@@ -10303,6 +10558,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10303
10558
|
manufacturer_part_number?: string | undefined;
|
|
10304
10559
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10305
10560
|
display_value?: string | undefined;
|
|
10561
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10306
10562
|
gender?: "male" | "female" | undefined;
|
|
10307
10563
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10308
10564
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10312,6 +10568,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10312
10568
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10313
10569
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10314
10570
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10571
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10315
10572
|
}, {
|
|
10316
10573
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10317
10574
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10327,6 +10584,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10327
10584
|
manufacturer_part_number?: string | undefined;
|
|
10328
10585
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10329
10586
|
display_value?: string | undefined;
|
|
10587
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10330
10588
|
equivalent_series_resistance?: number | undefined;
|
|
10331
10589
|
}, {
|
|
10332
10590
|
type: "source_component";
|
|
@@ -10338,6 +10596,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10338
10596
|
manufacturer_part_number?: string | undefined;
|
|
10339
10597
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10340
10598
|
display_value?: string | undefined;
|
|
10599
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10341
10600
|
equivalent_series_resistance?: string | number | undefined;
|
|
10342
10601
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10343
10602
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10347,6 +10606,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10347
10606
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10348
10607
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10349
10608
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10609
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10350
10610
|
}, {
|
|
10351
10611
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
10352
10612
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10357,6 +10617,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10357
10617
|
manufacturer_part_number?: string | undefined;
|
|
10358
10618
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10359
10619
|
display_value?: string | undefined;
|
|
10620
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10360
10621
|
}, {
|
|
10361
10622
|
type: "source_component";
|
|
10362
10623
|
name: string;
|
|
@@ -10365,6 +10626,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10365
10626
|
manufacturer_part_number?: string | undefined;
|
|
10366
10627
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10367
10628
|
display_value?: string | undefined;
|
|
10629
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10368
10630
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10369
10631
|
type: z.ZodLiteral<"source_component">;
|
|
10370
10632
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10373,6 +10635,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10373
10635
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10374
10636
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10375
10637
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10638
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10376
10639
|
}, {
|
|
10377
10640
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
10378
10641
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -10385,6 +10648,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10385
10648
|
manufacturer_part_number?: string | undefined;
|
|
10386
10649
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10387
10650
|
display_value?: string | undefined;
|
|
10651
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10388
10652
|
}, {
|
|
10389
10653
|
type: "source_component";
|
|
10390
10654
|
name: string;
|
|
@@ -10394,6 +10658,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10394
10658
|
manufacturer_part_number?: string | undefined;
|
|
10395
10659
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10396
10660
|
display_value?: string | undefined;
|
|
10661
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10397
10662
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10398
10663
|
type: z.ZodLiteral<"source_component">;
|
|
10399
10664
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10402,6 +10667,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10402
10667
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10403
10668
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10404
10669
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10670
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10405
10671
|
}, {
|
|
10406
10672
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
10407
10673
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -10416,6 +10682,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10416
10682
|
manufacturer_part_number?: string | undefined;
|
|
10417
10683
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10418
10684
|
display_value?: string | undefined;
|
|
10685
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10419
10686
|
}, {
|
|
10420
10687
|
type: "source_component";
|
|
10421
10688
|
name: string;
|
|
@@ -10426,6 +10693,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10426
10693
|
manufacturer_part_number?: string | undefined;
|
|
10427
10694
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10428
10695
|
display_value?: string | undefined;
|
|
10696
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10429
10697
|
}>, z.ZodObject<{
|
|
10430
10698
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
10431
10699
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -10449,6 +10717,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10449
10717
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10450
10718
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10451
10719
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10720
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10452
10721
|
}, {
|
|
10453
10722
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10454
10723
|
}>, {
|
|
@@ -10461,6 +10730,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10461
10730
|
manufacturer_part_number?: string | undefined;
|
|
10462
10731
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10463
10732
|
display_value?: string | undefined;
|
|
10733
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10464
10734
|
}, {
|
|
10465
10735
|
type: "source_component";
|
|
10466
10736
|
name: string;
|
|
@@ -10469,6 +10739,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10469
10739
|
manufacturer_part_number?: string | undefined;
|
|
10470
10740
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10471
10741
|
display_value?: string | undefined;
|
|
10742
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10472
10743
|
}>, z.ZodObject<{
|
|
10473
10744
|
type: z.ZodLiteral<"source_net">;
|
|
10474
10745
|
source_net_id: z.ZodString;
|
|
@@ -10531,6 +10802,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10531
10802
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10532
10803
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10533
10804
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10805
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10534
10806
|
}, {
|
|
10535
10807
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
10536
10808
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10541,6 +10813,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10541
10813
|
manufacturer_part_number?: string | undefined;
|
|
10542
10814
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10543
10815
|
display_value?: string | undefined;
|
|
10816
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10544
10817
|
}, {
|
|
10545
10818
|
type: "source_component";
|
|
10546
10819
|
name: string;
|
|
@@ -10549,6 +10822,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10549
10822
|
manufacturer_part_number?: string | undefined;
|
|
10550
10823
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10551
10824
|
display_value?: string | undefined;
|
|
10825
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10552
10826
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10553
10827
|
type: z.ZodLiteral<"source_component">;
|
|
10554
10828
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10557,6 +10831,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10557
10831
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10558
10832
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10559
10833
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10834
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10560
10835
|
}, {
|
|
10561
10836
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
10562
10837
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10567,6 +10842,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10567
10842
|
manufacturer_part_number?: string | undefined;
|
|
10568
10843
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10569
10844
|
display_value?: string | undefined;
|
|
10845
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10570
10846
|
}, {
|
|
10571
10847
|
type: "source_component";
|
|
10572
10848
|
name: string;
|
|
@@ -10575,6 +10851,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10575
10851
|
manufacturer_part_number?: string | undefined;
|
|
10576
10852
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10577
10853
|
display_value?: string | undefined;
|
|
10854
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10578
10855
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10579
10856
|
type: z.ZodLiteral<"source_component">;
|
|
10580
10857
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10583,6 +10860,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10583
10860
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10584
10861
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10585
10862
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10863
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10586
10864
|
}, {
|
|
10587
10865
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
10588
10866
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10598,6 +10876,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10598
10876
|
manufacturer_part_number?: string | undefined;
|
|
10599
10877
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10600
10878
|
display_value?: string | undefined;
|
|
10879
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10601
10880
|
max_voltage_rating?: number | undefined;
|
|
10602
10881
|
display_capacitance?: string | undefined;
|
|
10603
10882
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -10610,6 +10889,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10610
10889
|
manufacturer_part_number?: string | undefined;
|
|
10611
10890
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10612
10891
|
display_value?: string | undefined;
|
|
10892
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10613
10893
|
max_voltage_rating?: string | number | undefined;
|
|
10614
10894
|
display_capacitance?: string | undefined;
|
|
10615
10895
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -10621,6 +10901,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10621
10901
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10622
10902
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10623
10903
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10904
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10624
10905
|
}, {
|
|
10625
10906
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10626
10907
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10631,6 +10912,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10631
10912
|
manufacturer_part_number?: string | undefined;
|
|
10632
10913
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10633
10914
|
display_value?: string | undefined;
|
|
10915
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10634
10916
|
}, {
|
|
10635
10917
|
type: "source_component";
|
|
10636
10918
|
name: string;
|
|
@@ -10639,6 +10921,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10639
10921
|
manufacturer_part_number?: string | undefined;
|
|
10640
10922
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10641
10923
|
display_value?: string | undefined;
|
|
10924
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10642
10925
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10643
10926
|
type: z.ZodLiteral<"source_component">;
|
|
10644
10927
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10647,6 +10930,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10647
10930
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10648
10931
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10649
10932
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10933
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10650
10934
|
}, {
|
|
10651
10935
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
10652
10936
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10660,6 +10944,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10660
10944
|
manufacturer_part_number?: string | undefined;
|
|
10661
10945
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10662
10946
|
display_value?: string | undefined;
|
|
10947
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10663
10948
|
display_resistance?: string | undefined;
|
|
10664
10949
|
}, {
|
|
10665
10950
|
type: "source_component";
|
|
@@ -10670,6 +10955,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10670
10955
|
manufacturer_part_number?: string | undefined;
|
|
10671
10956
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10672
10957
|
display_value?: string | undefined;
|
|
10958
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10673
10959
|
display_resistance?: string | undefined;
|
|
10674
10960
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10675
10961
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10679,6 +10965,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10679
10965
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10680
10966
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10681
10967
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10968
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10682
10969
|
}, {
|
|
10683
10970
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
10684
10971
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10691,6 +10978,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10691
10978
|
manufacturer_part_number?: string | undefined;
|
|
10692
10979
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10693
10980
|
display_value?: string | undefined;
|
|
10981
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10694
10982
|
}, {
|
|
10695
10983
|
type: "source_component";
|
|
10696
10984
|
name: string;
|
|
@@ -10700,6 +10988,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10700
10988
|
manufacturer_part_number?: string | undefined;
|
|
10701
10989
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10702
10990
|
display_value?: string | undefined;
|
|
10991
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10703
10992
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10704
10993
|
type: z.ZodLiteral<"source_component">;
|
|
10705
10994
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10708,6 +10997,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10708
10997
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10709
10998
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10710
10999
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11000
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10711
11001
|
}, {
|
|
10712
11002
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
10713
11003
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -10720,6 +11010,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10720
11010
|
manufacturer_part_number?: string | undefined;
|
|
10721
11011
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10722
11012
|
display_value?: string | undefined;
|
|
11013
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10723
11014
|
}, {
|
|
10724
11015
|
type: "source_component";
|
|
10725
11016
|
name: string;
|
|
@@ -10729,6 +11020,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10729
11020
|
manufacturer_part_number?: string | undefined;
|
|
10730
11021
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10731
11022
|
display_value?: string | undefined;
|
|
11023
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10732
11024
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10733
11025
|
type: z.ZodLiteral<"source_component">;
|
|
10734
11026
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10737,6 +11029,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10737
11029
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10738
11030
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10739
11031
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11032
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10740
11033
|
}, {
|
|
10741
11034
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
10742
11035
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10749,6 +11042,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10749
11042
|
manufacturer_part_number?: string | undefined;
|
|
10750
11043
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10751
11044
|
display_value?: string | undefined;
|
|
11045
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10752
11046
|
}, {
|
|
10753
11047
|
type: "source_component";
|
|
10754
11048
|
name: string;
|
|
@@ -10758,6 +11052,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10758
11052
|
manufacturer_part_number?: string | undefined;
|
|
10759
11053
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10760
11054
|
display_value?: string | undefined;
|
|
11055
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10761
11056
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10762
11057
|
type: z.ZodLiteral<"source_component">;
|
|
10763
11058
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10766,6 +11061,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10766
11061
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10767
11062
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10768
11063
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11064
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10769
11065
|
}, {
|
|
10770
11066
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
10771
11067
|
pin_count: z.ZodNumber;
|
|
@@ -10780,6 +11076,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10780
11076
|
manufacturer_part_number?: string | undefined;
|
|
10781
11077
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10782
11078
|
display_value?: string | undefined;
|
|
11079
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10783
11080
|
}, {
|
|
10784
11081
|
type: "source_component";
|
|
10785
11082
|
name: string;
|
|
@@ -10789,6 +11086,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10789
11086
|
manufacturer_part_number?: string | undefined;
|
|
10790
11087
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10791
11088
|
display_value?: string | undefined;
|
|
11089
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10792
11090
|
gender?: "male" | "female" | undefined;
|
|
10793
11091
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10794
11092
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10798,6 +11096,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10798
11096
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10799
11097
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10800
11098
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11099
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10801
11100
|
}, {
|
|
10802
11101
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10803
11102
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10813,6 +11112,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10813
11112
|
manufacturer_part_number?: string | undefined;
|
|
10814
11113
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10815
11114
|
display_value?: string | undefined;
|
|
11115
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10816
11116
|
equivalent_series_resistance?: number | undefined;
|
|
10817
11117
|
}, {
|
|
10818
11118
|
type: "source_component";
|
|
@@ -10824,6 +11124,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10824
11124
|
manufacturer_part_number?: string | undefined;
|
|
10825
11125
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10826
11126
|
display_value?: string | undefined;
|
|
11127
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10827
11128
|
equivalent_series_resistance?: string | number | undefined;
|
|
10828
11129
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10829
11130
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10833,6 +11134,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10833
11134
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10834
11135
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10835
11136
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11137
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10836
11138
|
}, {
|
|
10837
11139
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
10838
11140
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10843,6 +11145,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10843
11145
|
manufacturer_part_number?: string | undefined;
|
|
10844
11146
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10845
11147
|
display_value?: string | undefined;
|
|
11148
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10846
11149
|
}, {
|
|
10847
11150
|
type: "source_component";
|
|
10848
11151
|
name: string;
|
|
@@ -10851,6 +11154,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10851
11154
|
manufacturer_part_number?: string | undefined;
|
|
10852
11155
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10853
11156
|
display_value?: string | undefined;
|
|
11157
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10854
11158
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10855
11159
|
type: z.ZodLiteral<"source_component">;
|
|
10856
11160
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10859,6 +11163,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10859
11163
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10860
11164
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10861
11165
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11166
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10862
11167
|
}, {
|
|
10863
11168
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
10864
11169
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -10871,6 +11176,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10871
11176
|
manufacturer_part_number?: string | undefined;
|
|
10872
11177
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10873
11178
|
display_value?: string | undefined;
|
|
11179
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10874
11180
|
}, {
|
|
10875
11181
|
type: "source_component";
|
|
10876
11182
|
name: string;
|
|
@@ -10880,6 +11186,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10880
11186
|
manufacturer_part_number?: string | undefined;
|
|
10881
11187
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10882
11188
|
display_value?: string | undefined;
|
|
11189
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10883
11190
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10884
11191
|
type: z.ZodLiteral<"source_component">;
|
|
10885
11192
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10888,6 +11195,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10888
11195
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10889
11196
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10890
11197
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11198
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10891
11199
|
}, {
|
|
10892
11200
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
10893
11201
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -10902,6 +11210,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10902
11210
|
manufacturer_part_number?: string | undefined;
|
|
10903
11211
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10904
11212
|
display_value?: string | undefined;
|
|
11213
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10905
11214
|
}, {
|
|
10906
11215
|
type: "source_component";
|
|
10907
11216
|
name: string;
|
|
@@ -10912,6 +11221,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10912
11221
|
manufacturer_part_number?: string | undefined;
|
|
10913
11222
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10914
11223
|
display_value?: string | undefined;
|
|
11224
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10915
11225
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10916
11226
|
type: z.ZodLiteral<"source_component">;
|
|
10917
11227
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10920,6 +11230,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10920
11230
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10921
11231
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10922
11232
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11233
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10923
11234
|
}, {
|
|
10924
11235
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
10925
11236
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10932,6 +11243,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10932
11243
|
manufacturer_part_number?: string | undefined;
|
|
10933
11244
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10934
11245
|
display_value?: string | undefined;
|
|
11246
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10935
11247
|
}, {
|
|
10936
11248
|
type: "source_component";
|
|
10937
11249
|
name: string;
|
|
@@ -10941,6 +11253,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10941
11253
|
manufacturer_part_number?: string | undefined;
|
|
10942
11254
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10943
11255
|
display_value?: string | undefined;
|
|
11256
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10944
11257
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10945
11258
|
type: z.ZodLiteral<"source_component">;
|
|
10946
11259
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10949,6 +11262,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10949
11262
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10950
11263
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10951
11264
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11265
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10952
11266
|
}, {
|
|
10953
11267
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
10954
11268
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10959,6 +11273,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10959
11273
|
manufacturer_part_number?: string | undefined;
|
|
10960
11274
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10961
11275
|
display_value?: string | undefined;
|
|
11276
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10962
11277
|
}, {
|
|
10963
11278
|
type: "source_component";
|
|
10964
11279
|
name: string;
|
|
@@ -10967,6 +11282,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10967
11282
|
manufacturer_part_number?: string | undefined;
|
|
10968
11283
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10969
11284
|
display_value?: string | undefined;
|
|
11285
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10970
11286
|
}>, z.ZodObject<{
|
|
10971
11287
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
10972
11288
|
name: z.ZodOptional<z.ZodString>;
|