circuit-json 0.0.162 → 0.0.164
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 +18 -0
- package/dist/index.d.mts +416 -2
- package/dist/index.mjs +549 -532
- 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
|
/**
|
|
@@ -5177,6 +5235,41 @@ declare const source_project_metadata: z.ZodObject<{
|
|
|
5177
5235
|
}>;
|
|
5178
5236
|
type InferredProjectMetadata = z.infer<typeof source_project_metadata>;
|
|
5179
5237
|
|
|
5238
|
+
declare const source_missing_property_error: z.ZodObject<{
|
|
5239
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
5240
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5241
|
+
source_component_id: z.ZodString;
|
|
5242
|
+
property_name: z.ZodString;
|
|
5243
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
5244
|
+
message: z.ZodString;
|
|
5245
|
+
}, "strip", z.ZodTypeAny, {
|
|
5246
|
+
message: string;
|
|
5247
|
+
type: "source_missing_property_error";
|
|
5248
|
+
source_component_id: string;
|
|
5249
|
+
error_type: "source_missing_property_error";
|
|
5250
|
+
source_missing_property_error_id: string;
|
|
5251
|
+
property_name: string;
|
|
5252
|
+
}, {
|
|
5253
|
+
message: string;
|
|
5254
|
+
type: "source_missing_property_error";
|
|
5255
|
+
source_component_id: string;
|
|
5256
|
+
error_type: "source_missing_property_error";
|
|
5257
|
+
property_name: string;
|
|
5258
|
+
source_missing_property_error_id?: string | undefined;
|
|
5259
|
+
}>;
|
|
5260
|
+
type SourceMissingPropertyErrorInput = z.input<typeof source_missing_property_error>;
|
|
5261
|
+
/**
|
|
5262
|
+
* The source code is missing a property
|
|
5263
|
+
*/
|
|
5264
|
+
interface SourceMissingPropertyError {
|
|
5265
|
+
type: "source_missing_property_error";
|
|
5266
|
+
source_missing_property_error_id: string;
|
|
5267
|
+
source_component_id: string;
|
|
5268
|
+
property_name: string;
|
|
5269
|
+
error_type: "source_missing_property_error";
|
|
5270
|
+
message: string;
|
|
5271
|
+
}
|
|
5272
|
+
|
|
5180
5273
|
declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
5181
5274
|
type: z.ZodLiteral<"source_component">;
|
|
5182
5275
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5185,6 +5278,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5185
5278
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5186
5279
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5187
5280
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5281
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5188
5282
|
}, {
|
|
5189
5283
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
5190
5284
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5198,6 +5292,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5198
5292
|
manufacturer_part_number?: string | undefined;
|
|
5199
5293
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5200
5294
|
display_value?: string | undefined;
|
|
5295
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5201
5296
|
display_resistance?: string | undefined;
|
|
5202
5297
|
}, {
|
|
5203
5298
|
type: "source_component";
|
|
@@ -5208,6 +5303,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5208
5303
|
manufacturer_part_number?: string | undefined;
|
|
5209
5304
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5210
5305
|
display_value?: string | undefined;
|
|
5306
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5211
5307
|
display_resistance?: string | undefined;
|
|
5212
5308
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5213
5309
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5217,6 +5313,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5217
5313
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5218
5314
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5219
5315
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5316
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5220
5317
|
}, {
|
|
5221
5318
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
5222
5319
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5232,6 +5329,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5232
5329
|
manufacturer_part_number?: string | undefined;
|
|
5233
5330
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5234
5331
|
display_value?: string | undefined;
|
|
5332
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5235
5333
|
max_voltage_rating?: number | undefined;
|
|
5236
5334
|
display_capacitance?: string | undefined;
|
|
5237
5335
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -5244,6 +5342,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5244
5342
|
manufacturer_part_number?: string | undefined;
|
|
5245
5343
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5246
5344
|
display_value?: string | undefined;
|
|
5345
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5247
5346
|
max_voltage_rating?: string | number | undefined;
|
|
5248
5347
|
display_capacitance?: string | undefined;
|
|
5249
5348
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -5255,6 +5354,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5255
5354
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5256
5355
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5257
5356
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5357
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5258
5358
|
}, {
|
|
5259
5359
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5260
5360
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5265,6 +5365,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5265
5365
|
manufacturer_part_number?: string | undefined;
|
|
5266
5366
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5267
5367
|
display_value?: string | undefined;
|
|
5368
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5268
5369
|
}, {
|
|
5269
5370
|
type: "source_component";
|
|
5270
5371
|
name: string;
|
|
@@ -5273,6 +5374,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5273
5374
|
manufacturer_part_number?: string | undefined;
|
|
5274
5375
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5275
5376
|
display_value?: string | undefined;
|
|
5377
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5276
5378
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5277
5379
|
type: z.ZodLiteral<"source_component">;
|
|
5278
5380
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5281,6 +5383,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5281
5383
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5282
5384
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5283
5385
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5386
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5284
5387
|
}, {
|
|
5285
5388
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
5286
5389
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5291,6 +5394,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5291
5394
|
manufacturer_part_number?: string | undefined;
|
|
5292
5395
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5293
5396
|
display_value?: string | undefined;
|
|
5397
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5294
5398
|
}, {
|
|
5295
5399
|
type: "source_component";
|
|
5296
5400
|
name: string;
|
|
@@ -5299,6 +5403,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5299
5403
|
manufacturer_part_number?: string | undefined;
|
|
5300
5404
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5301
5405
|
display_value?: string | undefined;
|
|
5406
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5302
5407
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5303
5408
|
type: z.ZodLiteral<"source_component">;
|
|
5304
5409
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5307,6 +5412,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5307
5412
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5308
5413
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5309
5414
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5415
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5310
5416
|
}, {
|
|
5311
5417
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
5312
5418
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5317,6 +5423,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5317
5423
|
manufacturer_part_number?: string | undefined;
|
|
5318
5424
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5319
5425
|
display_value?: string | undefined;
|
|
5426
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5320
5427
|
}, {
|
|
5321
5428
|
type: "source_component";
|
|
5322
5429
|
name: string;
|
|
@@ -5325,6 +5432,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5325
5432
|
manufacturer_part_number?: string | undefined;
|
|
5326
5433
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5327
5434
|
display_value?: string | undefined;
|
|
5435
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5328
5436
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5329
5437
|
type: z.ZodLiteral<"source_component">;
|
|
5330
5438
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5333,6 +5441,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5333
5441
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5334
5442
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5335
5443
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5444
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5336
5445
|
}, {
|
|
5337
5446
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
5338
5447
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5343,6 +5452,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5343
5452
|
manufacturer_part_number?: string | undefined;
|
|
5344
5453
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5345
5454
|
display_value?: string | undefined;
|
|
5455
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5346
5456
|
}, {
|
|
5347
5457
|
type: "source_component";
|
|
5348
5458
|
name: string;
|
|
@@ -5351,6 +5461,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5351
5461
|
manufacturer_part_number?: string | undefined;
|
|
5352
5462
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5353
5463
|
display_value?: string | undefined;
|
|
5464
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5354
5465
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
5355
5466
|
type: z.ZodLiteral<"source_component">;
|
|
5356
5467
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5359,6 +5470,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5359
5470
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5360
5471
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5361
5472
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5473
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5362
5474
|
}, {
|
|
5363
5475
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
5364
5476
|
}>, {
|
|
@@ -5371,6 +5483,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5371
5483
|
manufacturer_part_number?: string | undefined;
|
|
5372
5484
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5373
5485
|
display_value?: string | undefined;
|
|
5486
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5374
5487
|
}, {
|
|
5375
5488
|
type: "source_component";
|
|
5376
5489
|
name: string;
|
|
@@ -5379,6 +5492,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5379
5492
|
manufacturer_part_number?: string | undefined;
|
|
5380
5493
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5381
5494
|
display_value?: string | undefined;
|
|
5495
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5382
5496
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5383
5497
|
type: z.ZodLiteral<"source_component">;
|
|
5384
5498
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5387,6 +5501,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5387
5501
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5388
5502
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5389
5503
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5504
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5390
5505
|
}, {
|
|
5391
5506
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
5392
5507
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5399,6 +5514,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5399
5514
|
manufacturer_part_number?: string | undefined;
|
|
5400
5515
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5401
5516
|
display_value?: string | undefined;
|
|
5517
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5402
5518
|
}, {
|
|
5403
5519
|
type: "source_component";
|
|
5404
5520
|
name: string;
|
|
@@ -5408,6 +5524,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5408
5524
|
manufacturer_part_number?: string | undefined;
|
|
5409
5525
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5410
5526
|
display_value?: string | undefined;
|
|
5527
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5411
5528
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5412
5529
|
type: z.ZodLiteral<"source_component">;
|
|
5413
5530
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5416,6 +5533,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5416
5533
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5417
5534
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5418
5535
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5536
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5419
5537
|
}, {
|
|
5420
5538
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
5421
5539
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -5428,6 +5546,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5428
5546
|
manufacturer_part_number?: string | undefined;
|
|
5429
5547
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5430
5548
|
display_value?: string | undefined;
|
|
5549
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5431
5550
|
}, {
|
|
5432
5551
|
type: "source_component";
|
|
5433
5552
|
name: string;
|
|
@@ -5437,6 +5556,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5437
5556
|
manufacturer_part_number?: string | undefined;
|
|
5438
5557
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5439
5558
|
display_value?: string | undefined;
|
|
5559
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5440
5560
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5441
5561
|
type: z.ZodLiteral<"source_component">;
|
|
5442
5562
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5445,6 +5565,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5445
5565
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5446
5566
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5447
5567
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5568
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5448
5569
|
}, {
|
|
5449
5570
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
5450
5571
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5457,6 +5578,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5457
5578
|
manufacturer_part_number?: string | undefined;
|
|
5458
5579
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5459
5580
|
display_value?: string | undefined;
|
|
5581
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5460
5582
|
}, {
|
|
5461
5583
|
type: "source_component";
|
|
5462
5584
|
name: string;
|
|
@@ -5466,6 +5588,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5466
5588
|
manufacturer_part_number?: string | undefined;
|
|
5467
5589
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5468
5590
|
display_value?: string | undefined;
|
|
5591
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5469
5592
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5470
5593
|
type: z.ZodLiteral<"source_component">;
|
|
5471
5594
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5474,6 +5597,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5474
5597
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5475
5598
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5476
5599
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5600
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5477
5601
|
}, {
|
|
5478
5602
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
5479
5603
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5484,6 +5608,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5484
5608
|
manufacturer_part_number?: string | undefined;
|
|
5485
5609
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5486
5610
|
display_value?: string | undefined;
|
|
5611
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5487
5612
|
}, {
|
|
5488
5613
|
type: "source_component";
|
|
5489
5614
|
name: string;
|
|
@@ -5492,6 +5617,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5492
5617
|
manufacturer_part_number?: string | undefined;
|
|
5493
5618
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5494
5619
|
display_value?: string | undefined;
|
|
5620
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5495
5621
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5496
5622
|
type: z.ZodLiteral<"source_component">;
|
|
5497
5623
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5500,6 +5626,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5500
5626
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5501
5627
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5502
5628
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5629
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5503
5630
|
}, {
|
|
5504
5631
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
5505
5632
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -5512,6 +5639,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5512
5639
|
manufacturer_part_number?: string | undefined;
|
|
5513
5640
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5514
5641
|
display_value?: string | undefined;
|
|
5642
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5515
5643
|
}, {
|
|
5516
5644
|
type: "source_component";
|
|
5517
5645
|
name: string;
|
|
@@ -5521,6 +5649,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5521
5649
|
manufacturer_part_number?: string | undefined;
|
|
5522
5650
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5523
5651
|
display_value?: string | undefined;
|
|
5652
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5524
5653
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5525
5654
|
type: z.ZodLiteral<"source_component">;
|
|
5526
5655
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5529,6 +5658,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5529
5658
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5530
5659
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5531
5660
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5661
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5532
5662
|
}, {
|
|
5533
5663
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
5534
5664
|
frequency: z.ZodNumber;
|
|
@@ -5542,6 +5672,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5542
5672
|
manufacturer_part_number?: string | undefined;
|
|
5543
5673
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5544
5674
|
display_value?: string | undefined;
|
|
5675
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5545
5676
|
load_capacitance?: number | undefined;
|
|
5546
5677
|
}, {
|
|
5547
5678
|
type: "source_component";
|
|
@@ -5552,6 +5683,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5552
5683
|
manufacturer_part_number?: string | undefined;
|
|
5553
5684
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5554
5685
|
display_value?: string | undefined;
|
|
5686
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5555
5687
|
load_capacitance?: number | undefined;
|
|
5556
5688
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5557
5689
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5561,6 +5693,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5561
5693
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5562
5694
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5563
5695
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5696
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5564
5697
|
}, {
|
|
5565
5698
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
5566
5699
|
pin_count: z.ZodNumber;
|
|
@@ -5575,6 +5708,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5575
5708
|
manufacturer_part_number?: string | undefined;
|
|
5576
5709
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5577
5710
|
display_value?: string | undefined;
|
|
5711
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5578
5712
|
}, {
|
|
5579
5713
|
type: "source_component";
|
|
5580
5714
|
name: string;
|
|
@@ -5584,6 +5718,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5584
5718
|
manufacturer_part_number?: string | undefined;
|
|
5585
5719
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5586
5720
|
display_value?: string | undefined;
|
|
5721
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5587
5722
|
gender?: "male" | "female" | undefined;
|
|
5588
5723
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5589
5724
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5593,6 +5728,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5593
5728
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5594
5729
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5595
5730
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5731
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5596
5732
|
}, {
|
|
5597
5733
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
5598
5734
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -5608,6 +5744,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5608
5744
|
manufacturer_part_number?: string | undefined;
|
|
5609
5745
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5610
5746
|
display_value?: string | undefined;
|
|
5747
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5611
5748
|
equivalent_series_resistance?: number | undefined;
|
|
5612
5749
|
}, {
|
|
5613
5750
|
type: "source_component";
|
|
@@ -5619,6 +5756,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5619
5756
|
manufacturer_part_number?: string | undefined;
|
|
5620
5757
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5621
5758
|
display_value?: string | undefined;
|
|
5759
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5622
5760
|
equivalent_series_resistance?: string | number | undefined;
|
|
5623
5761
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5624
5762
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -5628,6 +5766,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5628
5766
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5629
5767
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5630
5768
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5769
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5631
5770
|
}, {
|
|
5632
5771
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
5633
5772
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -5638,6 +5777,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5638
5777
|
manufacturer_part_number?: string | undefined;
|
|
5639
5778
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5640
5779
|
display_value?: string | undefined;
|
|
5780
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5641
5781
|
}, {
|
|
5642
5782
|
type: "source_component";
|
|
5643
5783
|
name: string;
|
|
@@ -5646,6 +5786,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5646
5786
|
manufacturer_part_number?: string | undefined;
|
|
5647
5787
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5648
5788
|
display_value?: string | undefined;
|
|
5789
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5649
5790
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5650
5791
|
type: z.ZodLiteral<"source_component">;
|
|
5651
5792
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5654,6 +5795,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5654
5795
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5655
5796
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5656
5797
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5798
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5657
5799
|
}, {
|
|
5658
5800
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
5659
5801
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -5666,6 +5808,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5666
5808
|
manufacturer_part_number?: string | undefined;
|
|
5667
5809
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5668
5810
|
display_value?: string | undefined;
|
|
5811
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5669
5812
|
}, {
|
|
5670
5813
|
type: "source_component";
|
|
5671
5814
|
name: string;
|
|
@@ -5675,6 +5818,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5675
5818
|
manufacturer_part_number?: string | undefined;
|
|
5676
5819
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5677
5820
|
display_value?: string | undefined;
|
|
5821
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5678
5822
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
5679
5823
|
type: z.ZodLiteral<"source_component">;
|
|
5680
5824
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -5683,6 +5827,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5683
5827
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
5684
5828
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
5685
5829
|
display_value: z.ZodOptional<z.ZodString>;
|
|
5830
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
5686
5831
|
}, {
|
|
5687
5832
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
5688
5833
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -5697,6 +5842,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5697
5842
|
manufacturer_part_number?: string | undefined;
|
|
5698
5843
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5699
5844
|
display_value?: string | undefined;
|
|
5845
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5700
5846
|
}, {
|
|
5701
5847
|
type: "source_component";
|
|
5702
5848
|
name: string;
|
|
@@ -5707,6 +5853,7 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5707
5853
|
manufacturer_part_number?: string | undefined;
|
|
5708
5854
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
5709
5855
|
display_value?: string | undefined;
|
|
5856
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
5710
5857
|
}>, z.ZodObject<{
|
|
5711
5858
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
5712
5859
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -5722,12 +5869,33 @@ declare const any_source_component: z.ZodUnion<[z.ZodObject<z.objectUtil.extendS
|
|
|
5722
5869
|
name?: string | undefined;
|
|
5723
5870
|
software_used_string?: string | undefined;
|
|
5724
5871
|
created_at?: string | undefined;
|
|
5872
|
+
}>, z.ZodObject<{
|
|
5873
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
5874
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
5875
|
+
source_component_id: z.ZodString;
|
|
5876
|
+
property_name: z.ZodString;
|
|
5877
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
5878
|
+
message: z.ZodString;
|
|
5879
|
+
}, "strip", z.ZodTypeAny, {
|
|
5880
|
+
message: string;
|
|
5881
|
+
type: "source_missing_property_error";
|
|
5882
|
+
source_component_id: string;
|
|
5883
|
+
error_type: "source_missing_property_error";
|
|
5884
|
+
source_missing_property_error_id: string;
|
|
5885
|
+
property_name: string;
|
|
5886
|
+
}, {
|
|
5887
|
+
message: string;
|
|
5888
|
+
type: "source_missing_property_error";
|
|
5889
|
+
source_component_id: string;
|
|
5890
|
+
error_type: "source_missing_property_error";
|
|
5891
|
+
property_name: string;
|
|
5892
|
+
source_missing_property_error_id?: string | undefined;
|
|
5725
5893
|
}>]>;
|
|
5726
5894
|
/**
|
|
5727
5895
|
* Deprecated: use `AnySourceElement` instead
|
|
5728
5896
|
*/
|
|
5729
5897
|
type AnySourceComponent = z.infer<typeof any_source_component>;
|
|
5730
|
-
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata;
|
|
5898
|
+
type AnySourceElement = SourceSimpleResistor | SourceSimpleCapacitor | SourceSimpleDiode | SourceSimpleGround | SourceSimpleChip | SourceLed | SourceSimplePowerSource | SourceSimpleBattery | SourceSimpleInductor | SourceSimplePushButton | SourceSimplePotentiometer | SourceSimpleCrystal | SourceSimplePinHeader | SourceSimpleResonator | SourceSimpleSwitch | SourceSimpleTransistor | SourceSimpleMosfet | SourceProjectMetadata | SourceMissingPropertyError;
|
|
5731
5899
|
|
|
5732
5900
|
declare const source_port: z.ZodObject<{
|
|
5733
5901
|
type: z.ZodLiteral<"source_port">;
|
|
@@ -6051,6 +6219,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6051
6219
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6052
6220
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6053
6221
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6222
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6054
6223
|
}, {
|
|
6055
6224
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6056
6225
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6064,6 +6233,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6064
6233
|
manufacturer_part_number?: string | undefined;
|
|
6065
6234
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6066
6235
|
display_value?: string | undefined;
|
|
6236
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6067
6237
|
display_resistance?: string | undefined;
|
|
6068
6238
|
}, {
|
|
6069
6239
|
type: "source_component";
|
|
@@ -6074,6 +6244,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6074
6244
|
manufacturer_part_number?: string | undefined;
|
|
6075
6245
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6076
6246
|
display_value?: string | undefined;
|
|
6247
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6077
6248
|
display_resistance?: string | undefined;
|
|
6078
6249
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6079
6250
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6083,6 +6254,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6083
6254
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6084
6255
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6085
6256
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6257
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6086
6258
|
}, {
|
|
6087
6259
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6088
6260
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6098,6 +6270,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6098
6270
|
manufacturer_part_number?: string | undefined;
|
|
6099
6271
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6100
6272
|
display_value?: string | undefined;
|
|
6273
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6101
6274
|
max_voltage_rating?: number | undefined;
|
|
6102
6275
|
display_capacitance?: string | undefined;
|
|
6103
6276
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -6110,6 +6283,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6110
6283
|
manufacturer_part_number?: string | undefined;
|
|
6111
6284
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6112
6285
|
display_value?: string | undefined;
|
|
6286
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6113
6287
|
max_voltage_rating?: string | number | undefined;
|
|
6114
6288
|
display_capacitance?: string | undefined;
|
|
6115
6289
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -6121,6 +6295,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6121
6295
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6122
6296
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6123
6297
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6298
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6124
6299
|
}, {
|
|
6125
6300
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6126
6301
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6131,6 +6306,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6131
6306
|
manufacturer_part_number?: string | undefined;
|
|
6132
6307
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6133
6308
|
display_value?: string | undefined;
|
|
6309
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6134
6310
|
}, {
|
|
6135
6311
|
type: "source_component";
|
|
6136
6312
|
name: string;
|
|
@@ -6139,6 +6315,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6139
6315
|
manufacturer_part_number?: string | undefined;
|
|
6140
6316
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6141
6317
|
display_value?: string | undefined;
|
|
6318
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6142
6319
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6143
6320
|
type: z.ZodLiteral<"source_component">;
|
|
6144
6321
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6147,6 +6324,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6147
6324
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6148
6325
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6149
6326
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6327
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6150
6328
|
}, {
|
|
6151
6329
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
6152
6330
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6157,6 +6335,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6157
6335
|
manufacturer_part_number?: string | undefined;
|
|
6158
6336
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6159
6337
|
display_value?: string | undefined;
|
|
6338
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6160
6339
|
}, {
|
|
6161
6340
|
type: "source_component";
|
|
6162
6341
|
name: string;
|
|
@@ -6165,6 +6344,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6165
6344
|
manufacturer_part_number?: string | undefined;
|
|
6166
6345
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6167
6346
|
display_value?: string | undefined;
|
|
6347
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6168
6348
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6169
6349
|
type: z.ZodLiteral<"source_component">;
|
|
6170
6350
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6173,6 +6353,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6173
6353
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6174
6354
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6175
6355
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6356
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6176
6357
|
}, {
|
|
6177
6358
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6178
6359
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6183,6 +6364,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6183
6364
|
manufacturer_part_number?: string | undefined;
|
|
6184
6365
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6185
6366
|
display_value?: string | undefined;
|
|
6367
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6186
6368
|
}, {
|
|
6187
6369
|
type: "source_component";
|
|
6188
6370
|
name: string;
|
|
@@ -6191,6 +6373,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6191
6373
|
manufacturer_part_number?: string | undefined;
|
|
6192
6374
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6193
6375
|
display_value?: string | undefined;
|
|
6376
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6194
6377
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6195
6378
|
type: z.ZodLiteral<"source_component">;
|
|
6196
6379
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6199,6 +6382,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6199
6382
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6200
6383
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6201
6384
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6385
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6202
6386
|
}, {
|
|
6203
6387
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6204
6388
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6209,6 +6393,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6209
6393
|
manufacturer_part_number?: string | undefined;
|
|
6210
6394
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6211
6395
|
display_value?: string | undefined;
|
|
6396
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6212
6397
|
}, {
|
|
6213
6398
|
type: "source_component";
|
|
6214
6399
|
name: string;
|
|
@@ -6217,6 +6402,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6217
6402
|
manufacturer_part_number?: string | undefined;
|
|
6218
6403
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6219
6404
|
display_value?: string | undefined;
|
|
6405
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6220
6406
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6221
6407
|
type: z.ZodLiteral<"source_component">;
|
|
6222
6408
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6225,6 +6411,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6225
6411
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6226
6412
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6227
6413
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6414
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6228
6415
|
}, {
|
|
6229
6416
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6230
6417
|
}>, {
|
|
@@ -6237,6 +6424,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6237
6424
|
manufacturer_part_number?: string | undefined;
|
|
6238
6425
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6239
6426
|
display_value?: string | undefined;
|
|
6427
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6240
6428
|
}, {
|
|
6241
6429
|
type: "source_component";
|
|
6242
6430
|
name: string;
|
|
@@ -6245,6 +6433,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6245
6433
|
manufacturer_part_number?: string | undefined;
|
|
6246
6434
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6247
6435
|
display_value?: string | undefined;
|
|
6436
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6248
6437
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6249
6438
|
type: z.ZodLiteral<"source_component">;
|
|
6250
6439
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6253,6 +6442,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6253
6442
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6254
6443
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6255
6444
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6445
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6256
6446
|
}, {
|
|
6257
6447
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6258
6448
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6265,6 +6455,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6265
6455
|
manufacturer_part_number?: string | undefined;
|
|
6266
6456
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6267
6457
|
display_value?: string | undefined;
|
|
6458
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6268
6459
|
}, {
|
|
6269
6460
|
type: "source_component";
|
|
6270
6461
|
name: string;
|
|
@@ -6274,6 +6465,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6274
6465
|
manufacturer_part_number?: string | undefined;
|
|
6275
6466
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6276
6467
|
display_value?: string | undefined;
|
|
6468
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6277
6469
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6278
6470
|
type: z.ZodLiteral<"source_component">;
|
|
6279
6471
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6282,6 +6474,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6282
6474
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6283
6475
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6284
6476
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6477
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6285
6478
|
}, {
|
|
6286
6479
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6287
6480
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6294,6 +6487,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6294
6487
|
manufacturer_part_number?: string | undefined;
|
|
6295
6488
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6296
6489
|
display_value?: string | undefined;
|
|
6490
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6297
6491
|
}, {
|
|
6298
6492
|
type: "source_component";
|
|
6299
6493
|
name: string;
|
|
@@ -6303,6 +6497,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6303
6497
|
manufacturer_part_number?: string | undefined;
|
|
6304
6498
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6305
6499
|
display_value?: string | undefined;
|
|
6500
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6306
6501
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6307
6502
|
type: z.ZodLiteral<"source_component">;
|
|
6308
6503
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6311,6 +6506,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6311
6506
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6312
6507
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6313
6508
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6509
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6314
6510
|
}, {
|
|
6315
6511
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6316
6512
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6323,6 +6519,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6323
6519
|
manufacturer_part_number?: string | undefined;
|
|
6324
6520
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6325
6521
|
display_value?: string | undefined;
|
|
6522
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6326
6523
|
}, {
|
|
6327
6524
|
type: "source_component";
|
|
6328
6525
|
name: string;
|
|
@@ -6332,6 +6529,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6332
6529
|
manufacturer_part_number?: string | undefined;
|
|
6333
6530
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6334
6531
|
display_value?: string | undefined;
|
|
6532
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6335
6533
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6336
6534
|
type: z.ZodLiteral<"source_component">;
|
|
6337
6535
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6340,6 +6538,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6340
6538
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6341
6539
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6342
6540
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6541
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6343
6542
|
}, {
|
|
6344
6543
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
6345
6544
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6350,6 +6549,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6350
6549
|
manufacturer_part_number?: string | undefined;
|
|
6351
6550
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6352
6551
|
display_value?: string | undefined;
|
|
6552
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6353
6553
|
}, {
|
|
6354
6554
|
type: "source_component";
|
|
6355
6555
|
name: string;
|
|
@@ -6358,6 +6558,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6358
6558
|
manufacturer_part_number?: string | undefined;
|
|
6359
6559
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6360
6560
|
display_value?: string | undefined;
|
|
6561
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6361
6562
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6362
6563
|
type: z.ZodLiteral<"source_component">;
|
|
6363
6564
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6366,6 +6567,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6366
6567
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6367
6568
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6368
6569
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6570
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6369
6571
|
}, {
|
|
6370
6572
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
6371
6573
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6378,6 +6580,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6378
6580
|
manufacturer_part_number?: string | undefined;
|
|
6379
6581
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6380
6582
|
display_value?: string | undefined;
|
|
6583
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6381
6584
|
}, {
|
|
6382
6585
|
type: "source_component";
|
|
6383
6586
|
name: string;
|
|
@@ -6387,6 +6590,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6387
6590
|
manufacturer_part_number?: string | undefined;
|
|
6388
6591
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6389
6592
|
display_value?: string | undefined;
|
|
6593
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6390
6594
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6391
6595
|
type: z.ZodLiteral<"source_component">;
|
|
6392
6596
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6395,6 +6599,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6395
6599
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6396
6600
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6397
6601
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6602
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6398
6603
|
}, {
|
|
6399
6604
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
6400
6605
|
frequency: z.ZodNumber;
|
|
@@ -6408,6 +6613,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6408
6613
|
manufacturer_part_number?: string | undefined;
|
|
6409
6614
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6410
6615
|
display_value?: string | undefined;
|
|
6616
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6411
6617
|
load_capacitance?: number | undefined;
|
|
6412
6618
|
}, {
|
|
6413
6619
|
type: "source_component";
|
|
@@ -6418,6 +6624,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6418
6624
|
manufacturer_part_number?: string | undefined;
|
|
6419
6625
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6420
6626
|
display_value?: string | undefined;
|
|
6627
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6421
6628
|
load_capacitance?: number | undefined;
|
|
6422
6629
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6423
6630
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6427,6 +6634,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6427
6634
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6428
6635
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6429
6636
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6637
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6430
6638
|
}, {
|
|
6431
6639
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6432
6640
|
pin_count: z.ZodNumber;
|
|
@@ -6441,6 +6649,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6441
6649
|
manufacturer_part_number?: string | undefined;
|
|
6442
6650
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6443
6651
|
display_value?: string | undefined;
|
|
6652
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6444
6653
|
}, {
|
|
6445
6654
|
type: "source_component";
|
|
6446
6655
|
name: string;
|
|
@@ -6450,6 +6659,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6450
6659
|
manufacturer_part_number?: string | undefined;
|
|
6451
6660
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6452
6661
|
display_value?: string | undefined;
|
|
6662
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6453
6663
|
gender?: "male" | "female" | undefined;
|
|
6454
6664
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6455
6665
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6459,6 +6669,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6459
6669
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6460
6670
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6461
6671
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6672
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6462
6673
|
}, {
|
|
6463
6674
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6464
6675
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6474,6 +6685,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6474
6685
|
manufacturer_part_number?: string | undefined;
|
|
6475
6686
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6476
6687
|
display_value?: string | undefined;
|
|
6688
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6477
6689
|
equivalent_series_resistance?: number | undefined;
|
|
6478
6690
|
}, {
|
|
6479
6691
|
type: "source_component";
|
|
@@ -6485,6 +6697,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6485
6697
|
manufacturer_part_number?: string | undefined;
|
|
6486
6698
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6487
6699
|
display_value?: string | undefined;
|
|
6700
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6488
6701
|
equivalent_series_resistance?: string | number | undefined;
|
|
6489
6702
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6490
6703
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6494,6 +6707,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6494
6707
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6495
6708
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6496
6709
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6710
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6497
6711
|
}, {
|
|
6498
6712
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6499
6713
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6504,6 +6718,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6504
6718
|
manufacturer_part_number?: string | undefined;
|
|
6505
6719
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6506
6720
|
display_value?: string | undefined;
|
|
6721
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6507
6722
|
}, {
|
|
6508
6723
|
type: "source_component";
|
|
6509
6724
|
name: string;
|
|
@@ -6512,6 +6727,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6512
6727
|
manufacturer_part_number?: string | undefined;
|
|
6513
6728
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6514
6729
|
display_value?: string | undefined;
|
|
6730
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6515
6731
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6516
6732
|
type: z.ZodLiteral<"source_component">;
|
|
6517
6733
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6520,6 +6736,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6520
6736
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6521
6737
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6522
6738
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6739
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6523
6740
|
}, {
|
|
6524
6741
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
6525
6742
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -6532,6 +6749,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6532
6749
|
manufacturer_part_number?: string | undefined;
|
|
6533
6750
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6534
6751
|
display_value?: string | undefined;
|
|
6752
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6535
6753
|
}, {
|
|
6536
6754
|
type: "source_component";
|
|
6537
6755
|
name: string;
|
|
@@ -6541,6 +6759,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6541
6759
|
manufacturer_part_number?: string | undefined;
|
|
6542
6760
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6543
6761
|
display_value?: string | undefined;
|
|
6762
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6544
6763
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6545
6764
|
type: z.ZodLiteral<"source_component">;
|
|
6546
6765
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6549,6 +6768,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6549
6768
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6550
6769
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6551
6770
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6771
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6552
6772
|
}, {
|
|
6553
6773
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
6554
6774
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -6563,6 +6783,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6563
6783
|
manufacturer_part_number?: string | undefined;
|
|
6564
6784
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6565
6785
|
display_value?: string | undefined;
|
|
6786
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6566
6787
|
}, {
|
|
6567
6788
|
type: "source_component";
|
|
6568
6789
|
name: string;
|
|
@@ -6573,6 +6794,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6573
6794
|
manufacturer_part_number?: string | undefined;
|
|
6574
6795
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6575
6796
|
display_value?: string | undefined;
|
|
6797
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6576
6798
|
}>, z.ZodObject<{
|
|
6577
6799
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
6578
6800
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6588,6 +6810,27 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6588
6810
|
name?: string | undefined;
|
|
6589
6811
|
software_used_string?: string | undefined;
|
|
6590
6812
|
created_at?: string | undefined;
|
|
6813
|
+
}>, z.ZodObject<{
|
|
6814
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
6815
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6816
|
+
source_component_id: z.ZodString;
|
|
6817
|
+
property_name: z.ZodString;
|
|
6818
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
6819
|
+
message: z.ZodString;
|
|
6820
|
+
}, "strip", z.ZodTypeAny, {
|
|
6821
|
+
message: string;
|
|
6822
|
+
type: "source_missing_property_error";
|
|
6823
|
+
source_component_id: string;
|
|
6824
|
+
error_type: "source_missing_property_error";
|
|
6825
|
+
source_missing_property_error_id: string;
|
|
6826
|
+
property_name: string;
|
|
6827
|
+
}, {
|
|
6828
|
+
message: string;
|
|
6829
|
+
type: "source_missing_property_error";
|
|
6830
|
+
source_component_id: string;
|
|
6831
|
+
error_type: "source_missing_property_error";
|
|
6832
|
+
property_name: string;
|
|
6833
|
+
source_missing_property_error_id?: string | undefined;
|
|
6591
6834
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
6592
6835
|
type: z.ZodLiteral<"source_component">;
|
|
6593
6836
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6596,6 +6839,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6596
6839
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6597
6840
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6598
6841
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6842
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6599
6843
|
}, {
|
|
6600
6844
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6601
6845
|
}>, {
|
|
@@ -6608,6 +6852,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6608
6852
|
manufacturer_part_number?: string | undefined;
|
|
6609
6853
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6610
6854
|
display_value?: string | undefined;
|
|
6855
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6611
6856
|
}, {
|
|
6612
6857
|
type: "source_component";
|
|
6613
6858
|
name: string;
|
|
@@ -6616,6 +6861,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6616
6861
|
manufacturer_part_number?: string | undefined;
|
|
6617
6862
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6618
6863
|
display_value?: string | undefined;
|
|
6864
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6619
6865
|
}>, z.ZodObject<{
|
|
6620
6866
|
type: z.ZodLiteral<"source_net">;
|
|
6621
6867
|
source_net_id: z.ZodString;
|
|
@@ -6678,6 +6924,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6678
6924
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6679
6925
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6680
6926
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6927
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6681
6928
|
}, {
|
|
6682
6929
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
6683
6930
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6688,6 +6935,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6688
6935
|
manufacturer_part_number?: string | undefined;
|
|
6689
6936
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6690
6937
|
display_value?: string | undefined;
|
|
6938
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6691
6939
|
}, {
|
|
6692
6940
|
type: "source_component";
|
|
6693
6941
|
name: string;
|
|
@@ -6696,6 +6944,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6696
6944
|
manufacturer_part_number?: string | undefined;
|
|
6697
6945
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6698
6946
|
display_value?: string | undefined;
|
|
6947
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6699
6948
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6700
6949
|
type: z.ZodLiteral<"source_component">;
|
|
6701
6950
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6704,6 +6953,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6704
6953
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6705
6954
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6706
6955
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6956
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6707
6957
|
}, {
|
|
6708
6958
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
6709
6959
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6714,6 +6964,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6714
6964
|
manufacturer_part_number?: string | undefined;
|
|
6715
6965
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6716
6966
|
display_value?: string | undefined;
|
|
6967
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6717
6968
|
}, {
|
|
6718
6969
|
type: "source_component";
|
|
6719
6970
|
name: string;
|
|
@@ -6722,6 +6973,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6722
6973
|
manufacturer_part_number?: string | undefined;
|
|
6723
6974
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6724
6975
|
display_value?: string | undefined;
|
|
6976
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6725
6977
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6726
6978
|
type: z.ZodLiteral<"source_component">;
|
|
6727
6979
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6730,6 +6982,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6730
6982
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6731
6983
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6732
6984
|
display_value: z.ZodOptional<z.ZodString>;
|
|
6985
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6733
6986
|
}, {
|
|
6734
6987
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
6735
6988
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6745,6 +6998,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6745
6998
|
manufacturer_part_number?: string | undefined;
|
|
6746
6999
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6747
7000
|
display_value?: string | undefined;
|
|
7001
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6748
7002
|
max_voltage_rating?: number | undefined;
|
|
6749
7003
|
display_capacitance?: string | undefined;
|
|
6750
7004
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -6757,6 +7011,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6757
7011
|
manufacturer_part_number?: string | undefined;
|
|
6758
7012
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6759
7013
|
display_value?: string | undefined;
|
|
7014
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6760
7015
|
max_voltage_rating?: string | number | undefined;
|
|
6761
7016
|
display_capacitance?: string | undefined;
|
|
6762
7017
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -6768,6 +7023,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6768
7023
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6769
7024
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6770
7025
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7026
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6771
7027
|
}, {
|
|
6772
7028
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
6773
7029
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6778,6 +7034,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6778
7034
|
manufacturer_part_number?: string | undefined;
|
|
6779
7035
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6780
7036
|
display_value?: string | undefined;
|
|
7037
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6781
7038
|
}, {
|
|
6782
7039
|
type: "source_component";
|
|
6783
7040
|
name: string;
|
|
@@ -6786,6 +7043,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6786
7043
|
manufacturer_part_number?: string | undefined;
|
|
6787
7044
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6788
7045
|
display_value?: string | undefined;
|
|
7046
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6789
7047
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6790
7048
|
type: z.ZodLiteral<"source_component">;
|
|
6791
7049
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6794,6 +7052,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6794
7052
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6795
7053
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6796
7054
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7055
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6797
7056
|
}, {
|
|
6798
7057
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
6799
7058
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6807,6 +7066,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6807
7066
|
manufacturer_part_number?: string | undefined;
|
|
6808
7067
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6809
7068
|
display_value?: string | undefined;
|
|
7069
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6810
7070
|
display_resistance?: string | undefined;
|
|
6811
7071
|
}, {
|
|
6812
7072
|
type: "source_component";
|
|
@@ -6817,6 +7077,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6817
7077
|
manufacturer_part_number?: string | undefined;
|
|
6818
7078
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6819
7079
|
display_value?: string | undefined;
|
|
7080
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6820
7081
|
display_resistance?: string | undefined;
|
|
6821
7082
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6822
7083
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6826,6 +7087,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6826
7087
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6827
7088
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6828
7089
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7090
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6829
7091
|
}, {
|
|
6830
7092
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
6831
7093
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6838,6 +7100,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6838
7100
|
manufacturer_part_number?: string | undefined;
|
|
6839
7101
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6840
7102
|
display_value?: string | undefined;
|
|
7103
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6841
7104
|
}, {
|
|
6842
7105
|
type: "source_component";
|
|
6843
7106
|
name: string;
|
|
@@ -6847,6 +7110,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6847
7110
|
manufacturer_part_number?: string | undefined;
|
|
6848
7111
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6849
7112
|
display_value?: string | undefined;
|
|
7113
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6850
7114
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6851
7115
|
type: z.ZodLiteral<"source_component">;
|
|
6852
7116
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6855,6 +7119,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6855
7119
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6856
7120
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6857
7121
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7122
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6858
7123
|
}, {
|
|
6859
7124
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
6860
7125
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -6867,6 +7132,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6867
7132
|
manufacturer_part_number?: string | undefined;
|
|
6868
7133
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6869
7134
|
display_value?: string | undefined;
|
|
7135
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6870
7136
|
}, {
|
|
6871
7137
|
type: "source_component";
|
|
6872
7138
|
name: string;
|
|
@@ -6876,6 +7142,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6876
7142
|
manufacturer_part_number?: string | undefined;
|
|
6877
7143
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6878
7144
|
display_value?: string | undefined;
|
|
7145
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6879
7146
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6880
7147
|
type: z.ZodLiteral<"source_component">;
|
|
6881
7148
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6884,6 +7151,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6884
7151
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6885
7152
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6886
7153
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7154
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6887
7155
|
}, {
|
|
6888
7156
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
6889
7157
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -6896,6 +7164,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6896
7164
|
manufacturer_part_number?: string | undefined;
|
|
6897
7165
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6898
7166
|
display_value?: string | undefined;
|
|
7167
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6899
7168
|
}, {
|
|
6900
7169
|
type: "source_component";
|
|
6901
7170
|
name: string;
|
|
@@ -6905,6 +7174,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6905
7174
|
manufacturer_part_number?: string | undefined;
|
|
6906
7175
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6907
7176
|
display_value?: string | undefined;
|
|
7177
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6908
7178
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6909
7179
|
type: z.ZodLiteral<"source_component">;
|
|
6910
7180
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -6913,6 +7183,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6913
7183
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6914
7184
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6915
7185
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7186
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6916
7187
|
}, {
|
|
6917
7188
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
6918
7189
|
pin_count: z.ZodNumber;
|
|
@@ -6927,6 +7198,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6927
7198
|
manufacturer_part_number?: string | undefined;
|
|
6928
7199
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6929
7200
|
display_value?: string | undefined;
|
|
7201
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6930
7202
|
}, {
|
|
6931
7203
|
type: "source_component";
|
|
6932
7204
|
name: string;
|
|
@@ -6936,6 +7208,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6936
7208
|
manufacturer_part_number?: string | undefined;
|
|
6937
7209
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6938
7210
|
display_value?: string | undefined;
|
|
7211
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6939
7212
|
gender?: "male" | "female" | undefined;
|
|
6940
7213
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6941
7214
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6945,6 +7218,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6945
7218
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6946
7219
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6947
7220
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7221
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6948
7222
|
}, {
|
|
6949
7223
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
6950
7224
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -6960,6 +7234,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6960
7234
|
manufacturer_part_number?: string | undefined;
|
|
6961
7235
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6962
7236
|
display_value?: string | undefined;
|
|
7237
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6963
7238
|
equivalent_series_resistance?: number | undefined;
|
|
6964
7239
|
}, {
|
|
6965
7240
|
type: "source_component";
|
|
@@ -6971,6 +7246,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6971
7246
|
manufacturer_part_number?: string | undefined;
|
|
6972
7247
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6973
7248
|
display_value?: string | undefined;
|
|
7249
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6974
7250
|
equivalent_series_resistance?: string | number | undefined;
|
|
6975
7251
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
6976
7252
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -6980,6 +7256,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6980
7256
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
6981
7257
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
6982
7258
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7259
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
6983
7260
|
}, {
|
|
6984
7261
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
6985
7262
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -6990,6 +7267,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6990
7267
|
manufacturer_part_number?: string | undefined;
|
|
6991
7268
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6992
7269
|
display_value?: string | undefined;
|
|
7270
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
6993
7271
|
}, {
|
|
6994
7272
|
type: "source_component";
|
|
6995
7273
|
name: string;
|
|
@@ -6998,6 +7276,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
6998
7276
|
manufacturer_part_number?: string | undefined;
|
|
6999
7277
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7000
7278
|
display_value?: string | undefined;
|
|
7279
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7001
7280
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7002
7281
|
type: z.ZodLiteral<"source_component">;
|
|
7003
7282
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7006,6 +7285,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7006
7285
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7007
7286
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7008
7287
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7288
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7009
7289
|
}, {
|
|
7010
7290
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
7011
7291
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -7018,6 +7298,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7018
7298
|
manufacturer_part_number?: string | undefined;
|
|
7019
7299
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7020
7300
|
display_value?: string | undefined;
|
|
7301
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7021
7302
|
}, {
|
|
7022
7303
|
type: "source_component";
|
|
7023
7304
|
name: string;
|
|
@@ -7027,6 +7308,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7027
7308
|
manufacturer_part_number?: string | undefined;
|
|
7028
7309
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7029
7310
|
display_value?: string | undefined;
|
|
7311
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7030
7312
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7031
7313
|
type: z.ZodLiteral<"source_component">;
|
|
7032
7314
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7035,6 +7317,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7035
7317
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7036
7318
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7037
7319
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7320
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7038
7321
|
}, {
|
|
7039
7322
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
7040
7323
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -7049,6 +7332,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7049
7332
|
manufacturer_part_number?: string | undefined;
|
|
7050
7333
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7051
7334
|
display_value?: string | undefined;
|
|
7335
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7052
7336
|
}, {
|
|
7053
7337
|
type: "source_component";
|
|
7054
7338
|
name: string;
|
|
@@ -7059,6 +7343,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7059
7343
|
manufacturer_part_number?: string | undefined;
|
|
7060
7344
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7061
7345
|
display_value?: string | undefined;
|
|
7346
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7062
7347
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7063
7348
|
type: z.ZodLiteral<"source_component">;
|
|
7064
7349
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7067,6 +7352,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7067
7352
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7068
7353
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7069
7354
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7355
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7070
7356
|
}, {
|
|
7071
7357
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
7072
7358
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -7079,6 +7365,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7079
7365
|
manufacturer_part_number?: string | undefined;
|
|
7080
7366
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7081
7367
|
display_value?: string | undefined;
|
|
7368
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7082
7369
|
}, {
|
|
7083
7370
|
type: "source_component";
|
|
7084
7371
|
name: string;
|
|
@@ -7088,6 +7375,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7088
7375
|
manufacturer_part_number?: string | undefined;
|
|
7089
7376
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7090
7377
|
display_value?: string | undefined;
|
|
7378
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7091
7379
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
7092
7380
|
type: z.ZodLiteral<"source_component">;
|
|
7093
7381
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -7096,6 +7384,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7096
7384
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
7097
7385
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
7098
7386
|
display_value: z.ZodOptional<z.ZodString>;
|
|
7387
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
7099
7388
|
}, {
|
|
7100
7389
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
7101
7390
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7106,6 +7395,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7106
7395
|
manufacturer_part_number?: string | undefined;
|
|
7107
7396
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7108
7397
|
display_value?: string | undefined;
|
|
7398
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7109
7399
|
}, {
|
|
7110
7400
|
type: "source_component";
|
|
7111
7401
|
name: string;
|
|
@@ -7114,6 +7404,7 @@ declare const any_circuit_element: z.ZodUnion<[z.ZodObject<{
|
|
|
7114
7404
|
manufacturer_part_number?: string | undefined;
|
|
7115
7405
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
7116
7406
|
display_value?: string | undefined;
|
|
7407
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
7117
7408
|
}>, z.ZodObject<{
|
|
7118
7409
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
7119
7410
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -9904,6 +10195,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9904
10195
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9905
10196
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9906
10197
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10198
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9907
10199
|
}, {
|
|
9908
10200
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
9909
10201
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -9917,6 +10209,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9917
10209
|
manufacturer_part_number?: string | undefined;
|
|
9918
10210
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9919
10211
|
display_value?: string | undefined;
|
|
10212
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9920
10213
|
display_resistance?: string | undefined;
|
|
9921
10214
|
}, {
|
|
9922
10215
|
type: "source_component";
|
|
@@ -9927,6 +10220,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9927
10220
|
manufacturer_part_number?: string | undefined;
|
|
9928
10221
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9929
10222
|
display_value?: string | undefined;
|
|
10223
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9930
10224
|
display_resistance?: string | undefined;
|
|
9931
10225
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9932
10226
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -9936,6 +10230,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9936
10230
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9937
10231
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9938
10232
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10233
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9939
10234
|
}, {
|
|
9940
10235
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
9941
10236
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -9951,6 +10246,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9951
10246
|
manufacturer_part_number?: string | undefined;
|
|
9952
10247
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9953
10248
|
display_value?: string | undefined;
|
|
10249
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9954
10250
|
max_voltage_rating?: number | undefined;
|
|
9955
10251
|
display_capacitance?: string | undefined;
|
|
9956
10252
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -9963,6 +10259,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9963
10259
|
manufacturer_part_number?: string | undefined;
|
|
9964
10260
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9965
10261
|
display_value?: string | undefined;
|
|
10262
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9966
10263
|
max_voltage_rating?: string | number | undefined;
|
|
9967
10264
|
display_capacitance?: string | undefined;
|
|
9968
10265
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -9974,6 +10271,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9974
10271
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
9975
10272
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
9976
10273
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10274
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
9977
10275
|
}, {
|
|
9978
10276
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
9979
10277
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -9984,6 +10282,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9984
10282
|
manufacturer_part_number?: string | undefined;
|
|
9985
10283
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9986
10284
|
display_value?: string | undefined;
|
|
10285
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9987
10286
|
}, {
|
|
9988
10287
|
type: "source_component";
|
|
9989
10288
|
name: string;
|
|
@@ -9992,6 +10291,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
9992
10291
|
manufacturer_part_number?: string | undefined;
|
|
9993
10292
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9994
10293
|
display_value?: string | undefined;
|
|
10294
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
9995
10295
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
9996
10296
|
type: z.ZodLiteral<"source_component">;
|
|
9997
10297
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10000,6 +10300,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10000
10300
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10001
10301
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10002
10302
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10303
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10003
10304
|
}, {
|
|
10004
10305
|
ftype: z.ZodLiteral<"simple_ground">;
|
|
10005
10306
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10010,6 +10311,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10010
10311
|
manufacturer_part_number?: string | undefined;
|
|
10011
10312
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10012
10313
|
display_value?: string | undefined;
|
|
10314
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10013
10315
|
}, {
|
|
10014
10316
|
type: "source_component";
|
|
10015
10317
|
name: string;
|
|
@@ -10018,6 +10320,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10018
10320
|
manufacturer_part_number?: string | undefined;
|
|
10019
10321
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10020
10322
|
display_value?: string | undefined;
|
|
10323
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10021
10324
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10022
10325
|
type: z.ZodLiteral<"source_component">;
|
|
10023
10326
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10026,6 +10329,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10026
10329
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10027
10330
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10028
10331
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10332
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10029
10333
|
}, {
|
|
10030
10334
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
10031
10335
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10036,6 +10340,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10036
10340
|
manufacturer_part_number?: string | undefined;
|
|
10037
10341
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10038
10342
|
display_value?: string | undefined;
|
|
10343
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10039
10344
|
}, {
|
|
10040
10345
|
type: "source_component";
|
|
10041
10346
|
name: string;
|
|
@@ -10044,6 +10349,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10044
10349
|
manufacturer_part_number?: string | undefined;
|
|
10045
10350
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10046
10351
|
display_value?: string | undefined;
|
|
10352
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10047
10353
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10048
10354
|
type: z.ZodLiteral<"source_component">;
|
|
10049
10355
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10052,6 +10358,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10052
10358
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10053
10359
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10054
10360
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10361
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10055
10362
|
}, {
|
|
10056
10363
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
10057
10364
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10062,6 +10369,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10062
10369
|
manufacturer_part_number?: string | undefined;
|
|
10063
10370
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10064
10371
|
display_value?: string | undefined;
|
|
10372
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10065
10373
|
}, {
|
|
10066
10374
|
type: "source_component";
|
|
10067
10375
|
name: string;
|
|
@@ -10070,6 +10378,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10070
10378
|
manufacturer_part_number?: string | undefined;
|
|
10071
10379
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10072
10380
|
display_value?: string | undefined;
|
|
10381
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10073
10382
|
}>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10074
10383
|
type: z.ZodLiteral<"source_component">;
|
|
10075
10384
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10078,6 +10387,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10078
10387
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10079
10388
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10080
10389
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10390
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10081
10391
|
}, {
|
|
10082
10392
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10083
10393
|
}>, {
|
|
@@ -10090,6 +10400,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10090
10400
|
manufacturer_part_number?: string | undefined;
|
|
10091
10401
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10092
10402
|
display_value?: string | undefined;
|
|
10403
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10093
10404
|
}, {
|
|
10094
10405
|
type: "source_component";
|
|
10095
10406
|
name: string;
|
|
@@ -10098,6 +10409,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10098
10409
|
manufacturer_part_number?: string | undefined;
|
|
10099
10410
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10100
10411
|
display_value?: string | undefined;
|
|
10412
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10101
10413
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10102
10414
|
type: z.ZodLiteral<"source_component">;
|
|
10103
10415
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10106,6 +10418,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10106
10418
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10107
10419
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10108
10420
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10421
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10109
10422
|
}, {
|
|
10110
10423
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
10111
10424
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10118,6 +10431,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10118
10431
|
manufacturer_part_number?: string | undefined;
|
|
10119
10432
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10120
10433
|
display_value?: string | undefined;
|
|
10434
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10121
10435
|
}, {
|
|
10122
10436
|
type: "source_component";
|
|
10123
10437
|
name: string;
|
|
@@ -10127,6 +10441,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10127
10441
|
manufacturer_part_number?: string | undefined;
|
|
10128
10442
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10129
10443
|
display_value?: string | undefined;
|
|
10444
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10130
10445
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10131
10446
|
type: z.ZodLiteral<"source_component">;
|
|
10132
10447
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10135,6 +10450,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10135
10450
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10136
10451
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10137
10452
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10453
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10138
10454
|
}, {
|
|
10139
10455
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
10140
10456
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -10147,6 +10463,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10147
10463
|
manufacturer_part_number?: string | undefined;
|
|
10148
10464
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10149
10465
|
display_value?: string | undefined;
|
|
10466
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10150
10467
|
}, {
|
|
10151
10468
|
type: "source_component";
|
|
10152
10469
|
name: string;
|
|
@@ -10156,6 +10473,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10156
10473
|
manufacturer_part_number?: string | undefined;
|
|
10157
10474
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10158
10475
|
display_value?: string | undefined;
|
|
10476
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10159
10477
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10160
10478
|
type: z.ZodLiteral<"source_component">;
|
|
10161
10479
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10164,6 +10482,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10164
10482
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10165
10483
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10166
10484
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10485
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10167
10486
|
}, {
|
|
10168
10487
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
10169
10488
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10176,6 +10495,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10176
10495
|
manufacturer_part_number?: string | undefined;
|
|
10177
10496
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10178
10497
|
display_value?: string | undefined;
|
|
10498
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10179
10499
|
}, {
|
|
10180
10500
|
type: "source_component";
|
|
10181
10501
|
name: string;
|
|
@@ -10185,6 +10505,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10185
10505
|
manufacturer_part_number?: string | undefined;
|
|
10186
10506
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10187
10507
|
display_value?: string | undefined;
|
|
10508
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10188
10509
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10189
10510
|
type: z.ZodLiteral<"source_component">;
|
|
10190
10511
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10193,6 +10514,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10193
10514
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10194
10515
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10195
10516
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10517
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10196
10518
|
}, {
|
|
10197
10519
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
10198
10520
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10203,6 +10525,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10203
10525
|
manufacturer_part_number?: string | undefined;
|
|
10204
10526
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10205
10527
|
display_value?: string | undefined;
|
|
10528
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10206
10529
|
}, {
|
|
10207
10530
|
type: "source_component";
|
|
10208
10531
|
name: string;
|
|
@@ -10211,6 +10534,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10211
10534
|
manufacturer_part_number?: string | undefined;
|
|
10212
10535
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10213
10536
|
display_value?: string | undefined;
|
|
10537
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10214
10538
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10215
10539
|
type: z.ZodLiteral<"source_component">;
|
|
10216
10540
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10219,6 +10543,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10219
10543
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10220
10544
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10221
10545
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10546
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10222
10547
|
}, {
|
|
10223
10548
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
10224
10549
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10231,6 +10556,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10231
10556
|
manufacturer_part_number?: string | undefined;
|
|
10232
10557
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10233
10558
|
display_value?: string | undefined;
|
|
10559
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10234
10560
|
}, {
|
|
10235
10561
|
type: "source_component";
|
|
10236
10562
|
name: string;
|
|
@@ -10240,6 +10566,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10240
10566
|
manufacturer_part_number?: string | undefined;
|
|
10241
10567
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10242
10568
|
display_value?: string | undefined;
|
|
10569
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10243
10570
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10244
10571
|
type: z.ZodLiteral<"source_component">;
|
|
10245
10572
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10248,6 +10575,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10248
10575
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10249
10576
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10250
10577
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10578
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10251
10579
|
}, {
|
|
10252
10580
|
ftype: z.ZodLiteral<"simple_crystal">;
|
|
10253
10581
|
frequency: z.ZodNumber;
|
|
@@ -10261,6 +10589,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10261
10589
|
manufacturer_part_number?: string | undefined;
|
|
10262
10590
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10263
10591
|
display_value?: string | undefined;
|
|
10592
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10264
10593
|
load_capacitance?: number | undefined;
|
|
10265
10594
|
}, {
|
|
10266
10595
|
type: "source_component";
|
|
@@ -10271,6 +10600,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10271
10600
|
manufacturer_part_number?: string | undefined;
|
|
10272
10601
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10273
10602
|
display_value?: string | undefined;
|
|
10603
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10274
10604
|
load_capacitance?: number | undefined;
|
|
10275
10605
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10276
10606
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10280,6 +10610,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10280
10610
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10281
10611
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10282
10612
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10613
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10283
10614
|
}, {
|
|
10284
10615
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
10285
10616
|
pin_count: z.ZodNumber;
|
|
@@ -10294,6 +10625,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10294
10625
|
manufacturer_part_number?: string | undefined;
|
|
10295
10626
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10296
10627
|
display_value?: string | undefined;
|
|
10628
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10297
10629
|
}, {
|
|
10298
10630
|
type: "source_component";
|
|
10299
10631
|
name: string;
|
|
@@ -10303,6 +10635,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10303
10635
|
manufacturer_part_number?: string | undefined;
|
|
10304
10636
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10305
10637
|
display_value?: string | undefined;
|
|
10638
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10306
10639
|
gender?: "male" | "female" | undefined;
|
|
10307
10640
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10308
10641
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10312,6 +10645,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10312
10645
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10313
10646
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10314
10647
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10648
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10315
10649
|
}, {
|
|
10316
10650
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10317
10651
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10327,6 +10661,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10327
10661
|
manufacturer_part_number?: string | undefined;
|
|
10328
10662
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10329
10663
|
display_value?: string | undefined;
|
|
10664
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10330
10665
|
equivalent_series_resistance?: number | undefined;
|
|
10331
10666
|
}, {
|
|
10332
10667
|
type: "source_component";
|
|
@@ -10338,6 +10673,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10338
10673
|
manufacturer_part_number?: string | undefined;
|
|
10339
10674
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10340
10675
|
display_value?: string | undefined;
|
|
10676
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10341
10677
|
equivalent_series_resistance?: string | number | undefined;
|
|
10342
10678
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10343
10679
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10347,6 +10683,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10347
10683
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10348
10684
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10349
10685
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10686
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10350
10687
|
}, {
|
|
10351
10688
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
10352
10689
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10357,6 +10694,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10357
10694
|
manufacturer_part_number?: string | undefined;
|
|
10358
10695
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10359
10696
|
display_value?: string | undefined;
|
|
10697
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10360
10698
|
}, {
|
|
10361
10699
|
type: "source_component";
|
|
10362
10700
|
name: string;
|
|
@@ -10365,6 +10703,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10365
10703
|
manufacturer_part_number?: string | undefined;
|
|
10366
10704
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10367
10705
|
display_value?: string | undefined;
|
|
10706
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10368
10707
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10369
10708
|
type: z.ZodLiteral<"source_component">;
|
|
10370
10709
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10373,6 +10712,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10373
10712
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10374
10713
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10375
10714
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10715
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10376
10716
|
}, {
|
|
10377
10717
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
10378
10718
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -10385,6 +10725,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10385
10725
|
manufacturer_part_number?: string | undefined;
|
|
10386
10726
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10387
10727
|
display_value?: string | undefined;
|
|
10728
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10388
10729
|
}, {
|
|
10389
10730
|
type: "source_component";
|
|
10390
10731
|
name: string;
|
|
@@ -10394,6 +10735,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10394
10735
|
manufacturer_part_number?: string | undefined;
|
|
10395
10736
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10396
10737
|
display_value?: string | undefined;
|
|
10738
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10397
10739
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10398
10740
|
type: z.ZodLiteral<"source_component">;
|
|
10399
10741
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10402,6 +10744,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10402
10744
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10403
10745
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10404
10746
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10747
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10405
10748
|
}, {
|
|
10406
10749
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
10407
10750
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -10416,6 +10759,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10416
10759
|
manufacturer_part_number?: string | undefined;
|
|
10417
10760
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10418
10761
|
display_value?: string | undefined;
|
|
10762
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10419
10763
|
}, {
|
|
10420
10764
|
type: "source_component";
|
|
10421
10765
|
name: string;
|
|
@@ -10426,6 +10770,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10426
10770
|
manufacturer_part_number?: string | undefined;
|
|
10427
10771
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10428
10772
|
display_value?: string | undefined;
|
|
10773
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10429
10774
|
}>, z.ZodObject<{
|
|
10430
10775
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
10431
10776
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -10441,6 +10786,27 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10441
10786
|
name?: string | undefined;
|
|
10442
10787
|
software_used_string?: string | undefined;
|
|
10443
10788
|
created_at?: string | undefined;
|
|
10789
|
+
}>, z.ZodObject<{
|
|
10790
|
+
type: z.ZodLiteral<"source_missing_property_error">;
|
|
10791
|
+
source_missing_property_error_id: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
10792
|
+
source_component_id: z.ZodString;
|
|
10793
|
+
property_name: z.ZodString;
|
|
10794
|
+
error_type: z.ZodLiteral<"source_missing_property_error">;
|
|
10795
|
+
message: z.ZodString;
|
|
10796
|
+
}, "strip", z.ZodTypeAny, {
|
|
10797
|
+
message: string;
|
|
10798
|
+
type: "source_missing_property_error";
|
|
10799
|
+
source_component_id: string;
|
|
10800
|
+
error_type: "source_missing_property_error";
|
|
10801
|
+
source_missing_property_error_id: string;
|
|
10802
|
+
property_name: string;
|
|
10803
|
+
}, {
|
|
10804
|
+
message: string;
|
|
10805
|
+
type: "source_missing_property_error";
|
|
10806
|
+
source_component_id: string;
|
|
10807
|
+
error_type: "source_missing_property_error";
|
|
10808
|
+
property_name: string;
|
|
10809
|
+
source_missing_property_error_id?: string | undefined;
|
|
10444
10810
|
}>]>, z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
10445
10811
|
type: z.ZodLiteral<"source_component">;
|
|
10446
10812
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10449,6 +10815,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10449
10815
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10450
10816
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10451
10817
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10818
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10452
10819
|
}, {
|
|
10453
10820
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10454
10821
|
}>, {
|
|
@@ -10461,6 +10828,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10461
10828
|
manufacturer_part_number?: string | undefined;
|
|
10462
10829
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10463
10830
|
display_value?: string | undefined;
|
|
10831
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10464
10832
|
}, {
|
|
10465
10833
|
type: "source_component";
|
|
10466
10834
|
name: string;
|
|
@@ -10469,6 +10837,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10469
10837
|
manufacturer_part_number?: string | undefined;
|
|
10470
10838
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10471
10839
|
display_value?: string | undefined;
|
|
10840
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10472
10841
|
}>, z.ZodObject<{
|
|
10473
10842
|
type: z.ZodLiteral<"source_net">;
|
|
10474
10843
|
source_net_id: z.ZodString;
|
|
@@ -10531,6 +10900,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10531
10900
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10532
10901
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10533
10902
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10903
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10534
10904
|
}, {
|
|
10535
10905
|
ftype: z.ZodLiteral<"simple_bug">;
|
|
10536
10906
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10541,6 +10911,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10541
10911
|
manufacturer_part_number?: string | undefined;
|
|
10542
10912
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10543
10913
|
display_value?: string | undefined;
|
|
10914
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10544
10915
|
}, {
|
|
10545
10916
|
type: "source_component";
|
|
10546
10917
|
name: string;
|
|
@@ -10549,6 +10920,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10549
10920
|
manufacturer_part_number?: string | undefined;
|
|
10550
10921
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10551
10922
|
display_value?: string | undefined;
|
|
10923
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10552
10924
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10553
10925
|
type: z.ZodLiteral<"source_component">;
|
|
10554
10926
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10557,6 +10929,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10557
10929
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10558
10930
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10559
10931
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10932
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10560
10933
|
}, {
|
|
10561
10934
|
ftype: z.ZodLiteral<"simple_chip">;
|
|
10562
10935
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10567,6 +10940,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10567
10940
|
manufacturer_part_number?: string | undefined;
|
|
10568
10941
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10569
10942
|
display_value?: string | undefined;
|
|
10943
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10570
10944
|
}, {
|
|
10571
10945
|
type: "source_component";
|
|
10572
10946
|
name: string;
|
|
@@ -10575,6 +10949,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10575
10949
|
manufacturer_part_number?: string | undefined;
|
|
10576
10950
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10577
10951
|
display_value?: string | undefined;
|
|
10952
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10578
10953
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10579
10954
|
type: z.ZodLiteral<"source_component">;
|
|
10580
10955
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10583,6 +10958,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10583
10958
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10584
10959
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10585
10960
|
display_value: z.ZodOptional<z.ZodString>;
|
|
10961
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10586
10962
|
}, {
|
|
10587
10963
|
ftype: z.ZodLiteral<"simple_capacitor">;
|
|
10588
10964
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10598,6 +10974,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10598
10974
|
manufacturer_part_number?: string | undefined;
|
|
10599
10975
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10600
10976
|
display_value?: string | undefined;
|
|
10977
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10601
10978
|
max_voltage_rating?: number | undefined;
|
|
10602
10979
|
display_capacitance?: string | undefined;
|
|
10603
10980
|
max_decoupling_trace_length?: number | undefined;
|
|
@@ -10610,6 +10987,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10610
10987
|
manufacturer_part_number?: string | undefined;
|
|
10611
10988
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10612
10989
|
display_value?: string | undefined;
|
|
10990
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10613
10991
|
max_voltage_rating?: string | number | undefined;
|
|
10614
10992
|
display_capacitance?: string | undefined;
|
|
10615
10993
|
max_decoupling_trace_length?: string | number | undefined;
|
|
@@ -10621,6 +10999,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10621
10999
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10622
11000
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10623
11001
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11002
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10624
11003
|
}, {
|
|
10625
11004
|
ftype: z.ZodLiteral<"simple_diode">;
|
|
10626
11005
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10631,6 +11010,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10631
11010
|
manufacturer_part_number?: string | undefined;
|
|
10632
11011
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10633
11012
|
display_value?: string | undefined;
|
|
11013
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10634
11014
|
}, {
|
|
10635
11015
|
type: "source_component";
|
|
10636
11016
|
name: string;
|
|
@@ -10639,6 +11019,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10639
11019
|
manufacturer_part_number?: string | undefined;
|
|
10640
11020
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10641
11021
|
display_value?: string | undefined;
|
|
11022
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10642
11023
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10643
11024
|
type: z.ZodLiteral<"source_component">;
|
|
10644
11025
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10647,6 +11028,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10647
11028
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10648
11029
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10649
11030
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11031
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10650
11032
|
}, {
|
|
10651
11033
|
ftype: z.ZodLiteral<"simple_resistor">;
|
|
10652
11034
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10660,6 +11042,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10660
11042
|
manufacturer_part_number?: string | undefined;
|
|
10661
11043
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10662
11044
|
display_value?: string | undefined;
|
|
11045
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10663
11046
|
display_resistance?: string | undefined;
|
|
10664
11047
|
}, {
|
|
10665
11048
|
type: "source_component";
|
|
@@ -10670,6 +11053,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10670
11053
|
manufacturer_part_number?: string | undefined;
|
|
10671
11054
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10672
11055
|
display_value?: string | undefined;
|
|
11056
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10673
11057
|
display_resistance?: string | undefined;
|
|
10674
11058
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10675
11059
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10679,6 +11063,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10679
11063
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10680
11064
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10681
11065
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11066
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10682
11067
|
}, {
|
|
10683
11068
|
ftype: z.ZodLiteral<"simple_power_source">;
|
|
10684
11069
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10691,6 +11076,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10691
11076
|
manufacturer_part_number?: string | undefined;
|
|
10692
11077
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10693
11078
|
display_value?: string | undefined;
|
|
11079
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10694
11080
|
}, {
|
|
10695
11081
|
type: "source_component";
|
|
10696
11082
|
name: string;
|
|
@@ -10700,6 +11086,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10700
11086
|
manufacturer_part_number?: string | undefined;
|
|
10701
11087
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10702
11088
|
display_value?: string | undefined;
|
|
11089
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10703
11090
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10704
11091
|
type: z.ZodLiteral<"source_component">;
|
|
10705
11092
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10708,6 +11095,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10708
11095
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10709
11096
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10710
11097
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11098
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10711
11099
|
}, {
|
|
10712
11100
|
ftype: z.ZodLiteral<"simple_battery">;
|
|
10713
11101
|
capacity: z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>;
|
|
@@ -10720,6 +11108,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10720
11108
|
manufacturer_part_number?: string | undefined;
|
|
10721
11109
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10722
11110
|
display_value?: string | undefined;
|
|
11111
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10723
11112
|
}, {
|
|
10724
11113
|
type: "source_component";
|
|
10725
11114
|
name: string;
|
|
@@ -10729,6 +11118,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10729
11118
|
manufacturer_part_number?: string | undefined;
|
|
10730
11119
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10731
11120
|
display_value?: string | undefined;
|
|
11121
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10732
11122
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10733
11123
|
type: z.ZodLiteral<"source_component">;
|
|
10734
11124
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10737,6 +11127,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10737
11127
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10738
11128
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10739
11129
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11130
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10740
11131
|
}, {
|
|
10741
11132
|
ftype: z.ZodLiteral<"simple_inductor">;
|
|
10742
11133
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10749,6 +11140,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10749
11140
|
manufacturer_part_number?: string | undefined;
|
|
10750
11141
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10751
11142
|
display_value?: string | undefined;
|
|
11143
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10752
11144
|
}, {
|
|
10753
11145
|
type: "source_component";
|
|
10754
11146
|
name: string;
|
|
@@ -10758,6 +11150,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10758
11150
|
manufacturer_part_number?: string | undefined;
|
|
10759
11151
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10760
11152
|
display_value?: string | undefined;
|
|
11153
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10761
11154
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10762
11155
|
type: z.ZodLiteral<"source_component">;
|
|
10763
11156
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10766,6 +11159,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10766
11159
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10767
11160
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10768
11161
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11162
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10769
11163
|
}, {
|
|
10770
11164
|
ftype: z.ZodLiteral<"simple_pin_header">;
|
|
10771
11165
|
pin_count: z.ZodNumber;
|
|
@@ -10780,6 +11174,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10780
11174
|
manufacturer_part_number?: string | undefined;
|
|
10781
11175
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10782
11176
|
display_value?: string | undefined;
|
|
11177
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10783
11178
|
}, {
|
|
10784
11179
|
type: "source_component";
|
|
10785
11180
|
name: string;
|
|
@@ -10789,6 +11184,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10789
11184
|
manufacturer_part_number?: string | undefined;
|
|
10790
11185
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10791
11186
|
display_value?: string | undefined;
|
|
11187
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10792
11188
|
gender?: "male" | "female" | undefined;
|
|
10793
11189
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10794
11190
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10798,6 +11194,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10798
11194
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10799
11195
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10800
11196
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11197
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10801
11198
|
}, {
|
|
10802
11199
|
ftype: z.ZodLiteral<"simple_resonator">;
|
|
10803
11200
|
load_capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -10813,6 +11210,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10813
11210
|
manufacturer_part_number?: string | undefined;
|
|
10814
11211
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10815
11212
|
display_value?: string | undefined;
|
|
11213
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10816
11214
|
equivalent_series_resistance?: number | undefined;
|
|
10817
11215
|
}, {
|
|
10818
11216
|
type: "source_component";
|
|
@@ -10824,6 +11222,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10824
11222
|
manufacturer_part_number?: string | undefined;
|
|
10825
11223
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10826
11224
|
display_value?: string | undefined;
|
|
11225
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10827
11226
|
equivalent_series_resistance?: string | number | undefined;
|
|
10828
11227
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10829
11228
|
type: z.ZodLiteral<"source_component">;
|
|
@@ -10833,6 +11232,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10833
11232
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10834
11233
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10835
11234
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11235
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10836
11236
|
}, {
|
|
10837
11237
|
ftype: z.ZodLiteral<"simple_switch">;
|
|
10838
11238
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10843,6 +11243,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10843
11243
|
manufacturer_part_number?: string | undefined;
|
|
10844
11244
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10845
11245
|
display_value?: string | undefined;
|
|
11246
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10846
11247
|
}, {
|
|
10847
11248
|
type: "source_component";
|
|
10848
11249
|
name: string;
|
|
@@ -10851,6 +11252,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10851
11252
|
manufacturer_part_number?: string | undefined;
|
|
10852
11253
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10853
11254
|
display_value?: string | undefined;
|
|
11255
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10854
11256
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10855
11257
|
type: z.ZodLiteral<"source_component">;
|
|
10856
11258
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10859,6 +11261,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10859
11261
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10860
11262
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10861
11263
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11264
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10862
11265
|
}, {
|
|
10863
11266
|
ftype: z.ZodLiteral<"simple_transistor">;
|
|
10864
11267
|
transistor_type: z.ZodEnum<["npn", "pnp"]>;
|
|
@@ -10871,6 +11274,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10871
11274
|
manufacturer_part_number?: string | undefined;
|
|
10872
11275
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10873
11276
|
display_value?: string | undefined;
|
|
11277
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10874
11278
|
}, {
|
|
10875
11279
|
type: "source_component";
|
|
10876
11280
|
name: string;
|
|
@@ -10880,6 +11284,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10880
11284
|
manufacturer_part_number?: string | undefined;
|
|
10881
11285
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10882
11286
|
display_value?: string | undefined;
|
|
11287
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10883
11288
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10884
11289
|
type: z.ZodLiteral<"source_component">;
|
|
10885
11290
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10888,6 +11293,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10888
11293
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10889
11294
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10890
11295
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11296
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10891
11297
|
}, {
|
|
10892
11298
|
ftype: z.ZodLiteral<"simple_mosfet">;
|
|
10893
11299
|
channel_type: z.ZodEnum<["n", "p"]>;
|
|
@@ -10902,6 +11308,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10902
11308
|
manufacturer_part_number?: string | undefined;
|
|
10903
11309
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10904
11310
|
display_value?: string | undefined;
|
|
11311
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10905
11312
|
}, {
|
|
10906
11313
|
type: "source_component";
|
|
10907
11314
|
name: string;
|
|
@@ -10912,6 +11319,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10912
11319
|
manufacturer_part_number?: string | undefined;
|
|
10913
11320
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10914
11321
|
display_value?: string | undefined;
|
|
11322
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10915
11323
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10916
11324
|
type: z.ZodLiteral<"source_component">;
|
|
10917
11325
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10920,6 +11328,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10920
11328
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10921
11329
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10922
11330
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11331
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10923
11332
|
}, {
|
|
10924
11333
|
ftype: z.ZodLiteral<"simple_potentiometer">;
|
|
10925
11334
|
max_resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -10932,6 +11341,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10932
11341
|
manufacturer_part_number?: string | undefined;
|
|
10933
11342
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10934
11343
|
display_value?: string | undefined;
|
|
11344
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10935
11345
|
}, {
|
|
10936
11346
|
type: "source_component";
|
|
10937
11347
|
name: string;
|
|
@@ -10941,6 +11351,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10941
11351
|
manufacturer_part_number?: string | undefined;
|
|
10942
11352
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10943
11353
|
display_value?: string | undefined;
|
|
11354
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10944
11355
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
10945
11356
|
type: z.ZodLiteral<"source_component">;
|
|
10946
11357
|
ftype: z.ZodOptional<z.ZodString>;
|
|
@@ -10949,6 +11360,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10949
11360
|
manufacturer_part_number: z.ZodOptional<z.ZodString>;
|
|
10950
11361
|
supplier_part_numbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
10951
11362
|
display_value: z.ZodOptional<z.ZodString>;
|
|
11363
|
+
are_pins_interchangeable: z.ZodOptional<z.ZodBoolean>;
|
|
10952
11364
|
}, {
|
|
10953
11365
|
ftype: z.ZodLiteral<"simple_push_button">;
|
|
10954
11366
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -10959,6 +11371,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10959
11371
|
manufacturer_part_number?: string | undefined;
|
|
10960
11372
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10961
11373
|
display_value?: string | undefined;
|
|
11374
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10962
11375
|
}, {
|
|
10963
11376
|
type: "source_component";
|
|
10964
11377
|
name: string;
|
|
@@ -10967,6 +11380,7 @@ declare const any_soup_element: z.ZodUnion<[z.ZodObject<{
|
|
|
10967
11380
|
manufacturer_part_number?: string | undefined;
|
|
10968
11381
|
supplier_part_numbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10969
11382
|
display_value?: string | undefined;
|
|
11383
|
+
are_pins_interchangeable?: boolean | undefined;
|
|
10970
11384
|
}>, z.ZodObject<{
|
|
10971
11385
|
type: z.ZodLiteral<"source_project_metadata">;
|
|
10972
11386
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -13708,4 +14122,4 @@ type AnySoupElementInput = AnyCircuitElementInput;
|
|
|
13708
14122
|
*/
|
|
13709
14123
|
type CircuitJson = AnyCircuitElement[];
|
|
13710
14124
|
|
|
13711
|
-
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|
|
14125
|
+
export { type AnyCircuitElement, type AnyCircuitElementInput, type AnySoupElement, type AnySoupElementInput, type AnySourceComponent, type AnySourceElement, type CadComponent, type CadComponentInput, type CircuitJson, type CircuitJsonError, type Distance, type InferredProjectMetadata, type InputPoint, type InputPosition, type InputRotation, type LayerRef, type LayerRefInput, type Length, type PCBBoard, type PCBComponent, type PCBFabricationNotePath, type PCBFabricationNoteText, type PCBHole, type PCBHoleInput, type PCBKeepout, type PCBKeepoutInput, type PCBMissingFootprintError, type PCBPlacementError, type PCBPlatedHole, type PCBPlatedHoleInput, type PCBPort, type PCBPortInput, type PCBPortNotMatchedError, type PCBSMTPad, type PCBSMTPadInput, type PCBSilkscreenLine, type PCBSilkscreenText, type PCBSolderPasteInput, type PCBText, type PCBTrace, type PCBTraceError, type PCBTraceHint, type PCBTraceInput, type PCBVia, type PcbAutoroutingError, type PcbAutoroutingErrorInput, type PcbAutoroutingErrorInterface, type PcbBoard, type PcbBoardInput, type PcbCircuitElement, type PcbComponent, type PcbComponentInput, type PcbFabricationNotePath, type PcbFabricationNotePathInput, type PcbFabricationNoteText, type PcbFabricationNoteTextInput, type PcbGroup, type PcbGroupInput, type PcbHole, type PcbHoleCircleOrSquare, type PcbHoleCircleOrSquareInput, type PcbHoleCircularWithRectPad, type PcbHoleOval, type PcbHoleOvalInput, type PcbHolePillWithRectPad, type PcbManualEditConflictWarning, type PcbManualEditConflictWarningInput, type PcbMissingFootprintError, type PcbMissingFootprintErrorInput, type PcbPlacementError, type PcbPlacementErrorInput, type PcbPlatedHole, type PcbPlatedHoleCircle, type PcbPlatedHoleInput, type PcbPlatedHoleOval, type PcbPort, type PcbPortInput, type PcbPortNotMatchedError, type PcbPortNotMatchedErrorInput, type PcbRouteHint, type PcbRouteHintInput, type PcbRouteHints, type PcbRouteHintsInput, type PcbSilkscreenCircle, type PcbSilkscreenCircleInput, type PcbSilkscreenLine, type PcbSilkscreenLineInput, type PcbSilkscreenOval, type PcbSilkscreenOvalDeprecated, type PcbSilkscreenOvalInput, type PcbSilkscreenPath, type PcbSilkscreenPathDeprecated, type PcbSilkscreenPathInput, type PcbSilkscreenRect, type PcbSilkscreenRectInput, type PcbSilkscreenRectOld, type PcbSilkscreenText, type PcbSilkscreenTextInput, type PcbSmtPad, type PcbSmtPadCircle, type PcbSmtPadPill, type PcbSmtPadRect, type PcbSmtPadRotatedRect, type PcbSolderPaste, type PcbSolderPasteCircle, type PcbSolderPasteOval, type PcbSolderPastePill, type PcbSolderPasteRect, type PcbSolderPasteRotatedRect, type PcbText, type PcbTextInput, type PcbTrace, type PcbTraceError, type PcbTraceErrorInput, type PcbTraceHint, type PcbTraceHintInput, type PcbTraceInput, type PcbTraceRoutePoint, type PcbTraceRoutePointVia, type PcbTraceRoutePointWire, type PcbVia, type PcbViaInput, type Point, type Point3, type Position, type Rotation, type RouteHintPoint, type RouteHintPointInput, type SchematicBox, type SchematicBoxInput, type SchematicComponent, type SchematicComponentInput, type SchematicDebugLine, type SchematicDebugObject, type SchematicDebugObjectInput, type SchematicDebugPoint, type SchematicDebugRect, type SchematicError, type SchematicErrorInput, type SchematicLine, type SchematicLineInput, type SchematicManualEditConflictWarning, type SchematicManualEditConflictWarningInput, type SchematicNetLabel, type SchematicNetLabelInput, type SchematicPath, type SchematicPathInput, type SchematicPort, type SchematicPortArrangement, type SchematicPortArrangementBySides, type SchematicPortArrangementBySize, type SchematicPortInput, type SchematicText, type SchematicTextInput, type SchematicTrace, type SchematicTraceEdge, type SchematicTraceInput, type SchematicVoltageProbe, type SchematicVoltageProbeInput, type Size, type SourceComponentBase, type SourceGroup, type SourceGroupInput, type SourceLed, type SourceLedInput, type SourceMissingPropertyError, type SourceMissingPropertyErrorInput, type SourceNet, type SourceNetInput, type SourcePort, type SourcePortInput, type SourceProjectMetadata, type SourceSimpleBattery, type SourceSimpleBatteryInput, type SourceSimpleBugInput, type SourceSimpleCapacitor, type SourceSimpleCapacitorInput, type SourceSimpleChip, type SourceSimpleChipInput, type SourceSimpleCrystal, type SourceSimpleCrystalInput, type SourceSimpleDiode, type SourceSimpleDiodeInput, type SourceSimpleGround, type SourceSimpleGroundInput, type SourceSimpleInductor, type SourceSimpleInductorInput, type SourceSimpleMosfet, type SourceSimpleMosfetInput, type SourceSimplePinHeader, type SourceSimplePinHeaderInput, type SourceSimplePotentiometer, type SourceSimplePotentiometerInput, type SourceSimplePowerSource, type SourceSimplePowerSourceInput, type SourceSimplePushButton, type SourceSimplePushButtonInput, type SourceSimpleResistor, type SourceSimpleResistorInput, type SourceSimpleResonator, type SourceSimpleResonatorInput, type SourceSimpleSwitch, type SourceSimpleSwitchInput, type SourceSimpleTransistor, type SourceSimpleTransistorInput, type SourceTrace, type SupplierName, type VisibleLayer, type VisibleLayerRef, all_layers, any_circuit_element, any_soup_element, any_source_component, battery_capacity, cad_component, capacitance, current, distance, frequency, getZodPrefixedIdWithDefault, inductance, layer_ref, layer_string, length, pcb_autorouting_error, pcb_board, pcb_component, pcb_fabrication_note_path, pcb_fabrication_note_text, pcb_group, pcb_hole, pcb_hole_circle_or_square_shape, pcb_hole_oval_shape, pcb_keepout, pcb_manual_edit_conflict_warning, pcb_missing_footprint_error, pcb_placement_error, pcb_plated_hole, pcb_port, pcb_port_not_matched_error, pcb_route_hint, pcb_route_hints, pcb_silkscreen_circle, pcb_silkscreen_line, pcb_silkscreen_oval, pcb_silkscreen_path, pcb_silkscreen_rect, pcb_silkscreen_text, pcb_smtpad, pcb_smtpad_pill, pcb_solder_paste, pcb_text, pcb_trace, pcb_trace_error, pcb_trace_hint, pcb_trace_route_point, pcb_trace_route_point_via, pcb_trace_route_point_wire, pcb_via, point, point3, port_arrangement, position, position3, resistance, rotation, route_hint_point, schematic_box, schematic_component, schematic_component_port_arrangement_by_sides, schematic_component_port_arrangement_by_size, schematic_debug_line, schematic_debug_object, schematic_debug_object_base, schematic_debug_point, schematic_debug_rect, schematic_error, schematic_line, schematic_manual_edit_conflict_warning, schematic_net_label, schematic_path, schematic_pin_styles, schematic_port, schematic_text, schematic_trace, schematic_voltage_probe, size, source_component_base, source_group, source_led, source_missing_property_error, source_net, source_port, source_project_metadata, source_simple_battery, source_simple_bug, source_simple_capacitor, source_simple_chip, source_simple_crystal, source_simple_diode, source_simple_ground, source_simple_inductor, source_simple_mosfet, source_simple_pin_header, source_simple_potentiometer, source_simple_power_source, source_simple_push_button, source_simple_resistor, source_simple_resonator, source_simple_switch, source_simple_transistor, source_trace, supplier_name, time, visible_layer, voltage };
|