@tscircuit/props 0.0.290 → 0.0.292
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.ts +992 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/pinout.ts +15 -0
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -749,6 +749,7 @@ interface PinAttributeMap {
|
|
|
749
749
|
requiresGround?: boolean;
|
|
750
750
|
providesVoltage?: string | number;
|
|
751
751
|
requiresVoltage?: string | number;
|
|
752
|
+
doNotConnect?: boolean;
|
|
752
753
|
}
|
|
753
754
|
declare const pinAttributeMap: z.ZodObject<{
|
|
754
755
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -757,6 +758,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
757
758
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
758
759
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
759
760
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
761
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
760
762
|
}, "strip", z.ZodTypeAny, {
|
|
761
763
|
providesPower?: boolean | undefined;
|
|
762
764
|
requiresPower?: boolean | undefined;
|
|
@@ -764,6 +766,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
764
766
|
requiresGround?: boolean | undefined;
|
|
765
767
|
providesVoltage?: string | number | undefined;
|
|
766
768
|
requiresVoltage?: string | number | undefined;
|
|
769
|
+
doNotConnect?: boolean | undefined;
|
|
767
770
|
}, {
|
|
768
771
|
providesPower?: boolean | undefined;
|
|
769
772
|
requiresPower?: boolean | undefined;
|
|
@@ -771,6 +774,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
771
774
|
requiresGround?: boolean | undefined;
|
|
772
775
|
providesVoltage?: string | number | undefined;
|
|
773
776
|
requiresVoltage?: string | number | undefined;
|
|
777
|
+
doNotConnect?: boolean | undefined;
|
|
774
778
|
}>;
|
|
775
779
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
776
780
|
key?: any;
|
|
@@ -1049,6 +1053,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1049
1053
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
1050
1054
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1051
1055
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1056
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
1052
1057
|
}, "strip", z.ZodTypeAny, {
|
|
1053
1058
|
providesPower?: boolean | undefined;
|
|
1054
1059
|
requiresPower?: boolean | undefined;
|
|
@@ -1056,6 +1061,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1056
1061
|
requiresGround?: boolean | undefined;
|
|
1057
1062
|
providesVoltage?: string | number | undefined;
|
|
1058
1063
|
requiresVoltage?: string | number | undefined;
|
|
1064
|
+
doNotConnect?: boolean | undefined;
|
|
1059
1065
|
}, {
|
|
1060
1066
|
providesPower?: boolean | undefined;
|
|
1061
1067
|
requiresPower?: boolean | undefined;
|
|
@@ -1063,6 +1069,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1063
1069
|
requiresGround?: boolean | undefined;
|
|
1064
1070
|
providesVoltage?: string | number | undefined;
|
|
1065
1071
|
requiresVoltage?: string | number | undefined;
|
|
1072
|
+
doNotConnect?: boolean | undefined;
|
|
1066
1073
|
}>>>;
|
|
1067
1074
|
}, "strip", z.ZodTypeAny, {
|
|
1068
1075
|
name: string;
|
|
@@ -1086,6 +1093,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1086
1093
|
requiresGround?: boolean | undefined;
|
|
1087
1094
|
providesVoltage?: string | number | undefined;
|
|
1088
1095
|
requiresVoltage?: string | number | undefined;
|
|
1096
|
+
doNotConnect?: boolean | undefined;
|
|
1089
1097
|
}> | undefined;
|
|
1090
1098
|
cadModel?: string | {
|
|
1091
1099
|
stlUrl: string;
|
|
@@ -1167,6 +1175,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1167
1175
|
requiresGround?: boolean | undefined;
|
|
1168
1176
|
providesVoltage?: string | number | undefined;
|
|
1169
1177
|
requiresVoltage?: string | number | undefined;
|
|
1178
|
+
doNotConnect?: boolean | undefined;
|
|
1170
1179
|
}> | undefined;
|
|
1171
1180
|
cadModel?: string | {
|
|
1172
1181
|
stlUrl: string;
|
|
@@ -1492,6 +1501,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
1492
1501
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
1493
1502
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1494
1503
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1504
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
1495
1505
|
}, "strip", z.ZodTypeAny, {
|
|
1496
1506
|
providesPower?: boolean | undefined;
|
|
1497
1507
|
requiresPower?: boolean | undefined;
|
|
@@ -1499,6 +1509,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
1499
1509
|
requiresGround?: boolean | undefined;
|
|
1500
1510
|
providesVoltage?: string | number | undefined;
|
|
1501
1511
|
requiresVoltage?: string | number | undefined;
|
|
1512
|
+
doNotConnect?: boolean | undefined;
|
|
1502
1513
|
}, {
|
|
1503
1514
|
providesPower?: boolean | undefined;
|
|
1504
1515
|
requiresPower?: boolean | undefined;
|
|
@@ -1506,6 +1517,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
1506
1517
|
requiresGround?: boolean | undefined;
|
|
1507
1518
|
providesVoltage?: string | number | undefined;
|
|
1508
1519
|
requiresVoltage?: string | number | undefined;
|
|
1520
|
+
doNotConnect?: boolean | undefined;
|
|
1509
1521
|
}>>>;
|
|
1510
1522
|
}, "strip", z.ZodTypeAny, {
|
|
1511
1523
|
name: string;
|
|
@@ -1529,6 +1541,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
1529
1541
|
requiresGround?: boolean | undefined;
|
|
1530
1542
|
providesVoltage?: string | number | undefined;
|
|
1531
1543
|
requiresVoltage?: string | number | undefined;
|
|
1544
|
+
doNotConnect?: boolean | undefined;
|
|
1532
1545
|
}> | undefined;
|
|
1533
1546
|
cadModel?: string | {
|
|
1534
1547
|
stlUrl: string;
|
|
@@ -1610,6 +1623,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
1610
1623
|
requiresGround?: boolean | undefined;
|
|
1611
1624
|
providesVoltage?: string | number | undefined;
|
|
1612
1625
|
requiresVoltage?: string | number | undefined;
|
|
1626
|
+
doNotConnect?: boolean | undefined;
|
|
1613
1627
|
}> | undefined;
|
|
1614
1628
|
cadModel?: string | {
|
|
1615
1629
|
stlUrl: string;
|
|
@@ -10215,6 +10229,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
10215
10229
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
10216
10230
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10217
10231
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10232
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
10218
10233
|
}, "strip", z.ZodTypeAny, {
|
|
10219
10234
|
providesPower?: boolean | undefined;
|
|
10220
10235
|
requiresPower?: boolean | undefined;
|
|
@@ -10222,6 +10237,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
10222
10237
|
requiresGround?: boolean | undefined;
|
|
10223
10238
|
providesVoltage?: string | number | undefined;
|
|
10224
10239
|
requiresVoltage?: string | number | undefined;
|
|
10240
|
+
doNotConnect?: boolean | undefined;
|
|
10225
10241
|
}, {
|
|
10226
10242
|
providesPower?: boolean | undefined;
|
|
10227
10243
|
requiresPower?: boolean | undefined;
|
|
@@ -10229,6 +10245,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
10229
10245
|
requiresGround?: boolean | undefined;
|
|
10230
10246
|
providesVoltage?: string | number | undefined;
|
|
10231
10247
|
requiresVoltage?: string | number | undefined;
|
|
10248
|
+
doNotConnect?: boolean | undefined;
|
|
10232
10249
|
}>>>;
|
|
10233
10250
|
} & {
|
|
10234
10251
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -10502,6 +10519,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
10502
10519
|
requiresGround?: boolean | undefined;
|
|
10503
10520
|
providesVoltage?: string | number | undefined;
|
|
10504
10521
|
requiresVoltage?: string | number | undefined;
|
|
10522
|
+
doNotConnect?: boolean | undefined;
|
|
10505
10523
|
}> | undefined;
|
|
10506
10524
|
cadModel?: string | {
|
|
10507
10525
|
stlUrl: string;
|
|
@@ -10660,6 +10678,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
10660
10678
|
requiresGround?: boolean | undefined;
|
|
10661
10679
|
providesVoltage?: string | number | undefined;
|
|
10662
10680
|
requiresVoltage?: string | number | undefined;
|
|
10681
|
+
doNotConnect?: boolean | undefined;
|
|
10663
10682
|
}> | undefined;
|
|
10664
10683
|
cadModel?: string | {
|
|
10665
10684
|
stlUrl: string;
|
|
@@ -11065,6 +11084,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
11065
11084
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
11066
11085
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11067
11086
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11087
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
11068
11088
|
}, "strip", z.ZodTypeAny, {
|
|
11069
11089
|
providesPower?: boolean | undefined;
|
|
11070
11090
|
requiresPower?: boolean | undefined;
|
|
@@ -11072,6 +11092,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
11072
11092
|
requiresGround?: boolean | undefined;
|
|
11073
11093
|
providesVoltage?: string | number | undefined;
|
|
11074
11094
|
requiresVoltage?: string | number | undefined;
|
|
11095
|
+
doNotConnect?: boolean | undefined;
|
|
11075
11096
|
}, {
|
|
11076
11097
|
providesPower?: boolean | undefined;
|
|
11077
11098
|
requiresPower?: boolean | undefined;
|
|
@@ -11079,6 +11100,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
11079
11100
|
requiresGround?: boolean | undefined;
|
|
11080
11101
|
providesVoltage?: string | number | undefined;
|
|
11081
11102
|
requiresVoltage?: string | number | undefined;
|
|
11103
|
+
doNotConnect?: boolean | undefined;
|
|
11082
11104
|
}>>>;
|
|
11083
11105
|
} & {
|
|
11084
11106
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -11352,6 +11374,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
11352
11374
|
requiresGround?: boolean | undefined;
|
|
11353
11375
|
providesVoltage?: string | number | undefined;
|
|
11354
11376
|
requiresVoltage?: string | number | undefined;
|
|
11377
|
+
doNotConnect?: boolean | undefined;
|
|
11355
11378
|
}> | undefined;
|
|
11356
11379
|
cadModel?: string | {
|
|
11357
11380
|
stlUrl: string;
|
|
@@ -11510,6 +11533,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
11510
11533
|
requiresGround?: boolean | undefined;
|
|
11511
11534
|
providesVoltage?: string | number | undefined;
|
|
11512
11535
|
requiresVoltage?: string | number | undefined;
|
|
11536
|
+
doNotConnect?: boolean | undefined;
|
|
11513
11537
|
}> | undefined;
|
|
11514
11538
|
cadModel?: string | {
|
|
11515
11539
|
stlUrl: string;
|
|
@@ -11647,6 +11671,861 @@ declare const bugProps: z.ZodObject<{
|
|
|
11647
11671
|
}>;
|
|
11648
11672
|
type InferredChipProps = z.input<typeof chipProps>;
|
|
11649
11673
|
|
|
11674
|
+
declare const pinoutProps: z.ZodObject<{
|
|
11675
|
+
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11676
|
+
pcbY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11677
|
+
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11678
|
+
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11679
|
+
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11680
|
+
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
11681
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
11682
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
11683
|
+
}, "strip", z.ZodTypeAny, {
|
|
11684
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11685
|
+
}, {
|
|
11686
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11687
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
11688
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
11689
|
+
}>>;
|
|
11690
|
+
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
11691
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
11692
|
+
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
11693
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
11694
|
+
} & {
|
|
11695
|
+
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
11696
|
+
} & {
|
|
11697
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
11698
|
+
name: z.ZodString;
|
|
11699
|
+
cadModel: z.ZodOptional<z.ZodUnion<[z.ZodNull, z.ZodString, z.ZodObject<{
|
|
11700
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
11701
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11702
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11703
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11704
|
+
}, "strip", z.ZodTypeAny, {
|
|
11705
|
+
x: string | number;
|
|
11706
|
+
y: string | number;
|
|
11707
|
+
z: string | number;
|
|
11708
|
+
}, {
|
|
11709
|
+
x: string | number;
|
|
11710
|
+
y: string | number;
|
|
11711
|
+
z: string | number;
|
|
11712
|
+
}>]>>;
|
|
11713
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
11714
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11715
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11716
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11717
|
+
}, "strip", z.ZodTypeAny, {
|
|
11718
|
+
x: number;
|
|
11719
|
+
y: number;
|
|
11720
|
+
z: number;
|
|
11721
|
+
}, {
|
|
11722
|
+
x: string | number;
|
|
11723
|
+
y: string | number;
|
|
11724
|
+
z: string | number;
|
|
11725
|
+
}>>;
|
|
11726
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
11727
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11728
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11729
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11730
|
+
}, "strip", z.ZodTypeAny, {
|
|
11731
|
+
x: number;
|
|
11732
|
+
y: number;
|
|
11733
|
+
z: number;
|
|
11734
|
+
}, {
|
|
11735
|
+
x: string | number;
|
|
11736
|
+
y: string | number;
|
|
11737
|
+
z: string | number;
|
|
11738
|
+
}>>;
|
|
11739
|
+
} & {
|
|
11740
|
+
stlUrl: z.ZodString;
|
|
11741
|
+
}, "strip", z.ZodTypeAny, {
|
|
11742
|
+
stlUrl: string;
|
|
11743
|
+
rotationOffset?: number | {
|
|
11744
|
+
x: string | number;
|
|
11745
|
+
y: string | number;
|
|
11746
|
+
z: string | number;
|
|
11747
|
+
} | undefined;
|
|
11748
|
+
positionOffset?: {
|
|
11749
|
+
x: number;
|
|
11750
|
+
y: number;
|
|
11751
|
+
z: number;
|
|
11752
|
+
} | undefined;
|
|
11753
|
+
size?: {
|
|
11754
|
+
x: number;
|
|
11755
|
+
y: number;
|
|
11756
|
+
z: number;
|
|
11757
|
+
} | undefined;
|
|
11758
|
+
}, {
|
|
11759
|
+
stlUrl: string;
|
|
11760
|
+
rotationOffset?: number | {
|
|
11761
|
+
x: string | number;
|
|
11762
|
+
y: string | number;
|
|
11763
|
+
z: string | number;
|
|
11764
|
+
} | undefined;
|
|
11765
|
+
positionOffset?: {
|
|
11766
|
+
x: string | number;
|
|
11767
|
+
y: string | number;
|
|
11768
|
+
z: string | number;
|
|
11769
|
+
} | undefined;
|
|
11770
|
+
size?: {
|
|
11771
|
+
x: string | number;
|
|
11772
|
+
y: string | number;
|
|
11773
|
+
z: string | number;
|
|
11774
|
+
} | undefined;
|
|
11775
|
+
}>, z.ZodObject<{
|
|
11776
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
11777
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11778
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11779
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11780
|
+
}, "strip", z.ZodTypeAny, {
|
|
11781
|
+
x: string | number;
|
|
11782
|
+
y: string | number;
|
|
11783
|
+
z: string | number;
|
|
11784
|
+
}, {
|
|
11785
|
+
x: string | number;
|
|
11786
|
+
y: string | number;
|
|
11787
|
+
z: string | number;
|
|
11788
|
+
}>]>>;
|
|
11789
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
11790
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11791
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11792
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11793
|
+
}, "strip", z.ZodTypeAny, {
|
|
11794
|
+
x: number;
|
|
11795
|
+
y: number;
|
|
11796
|
+
z: number;
|
|
11797
|
+
}, {
|
|
11798
|
+
x: string | number;
|
|
11799
|
+
y: string | number;
|
|
11800
|
+
z: string | number;
|
|
11801
|
+
}>>;
|
|
11802
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
11803
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11804
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11805
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11806
|
+
}, "strip", z.ZodTypeAny, {
|
|
11807
|
+
x: number;
|
|
11808
|
+
y: number;
|
|
11809
|
+
z: number;
|
|
11810
|
+
}, {
|
|
11811
|
+
x: string | number;
|
|
11812
|
+
y: string | number;
|
|
11813
|
+
z: string | number;
|
|
11814
|
+
}>>;
|
|
11815
|
+
} & {
|
|
11816
|
+
objUrl: z.ZodString;
|
|
11817
|
+
mtlUrl: z.ZodOptional<z.ZodString>;
|
|
11818
|
+
}, "strip", z.ZodTypeAny, {
|
|
11819
|
+
objUrl: string;
|
|
11820
|
+
rotationOffset?: number | {
|
|
11821
|
+
x: string | number;
|
|
11822
|
+
y: string | number;
|
|
11823
|
+
z: string | number;
|
|
11824
|
+
} | undefined;
|
|
11825
|
+
positionOffset?: {
|
|
11826
|
+
x: number;
|
|
11827
|
+
y: number;
|
|
11828
|
+
z: number;
|
|
11829
|
+
} | undefined;
|
|
11830
|
+
size?: {
|
|
11831
|
+
x: number;
|
|
11832
|
+
y: number;
|
|
11833
|
+
z: number;
|
|
11834
|
+
} | undefined;
|
|
11835
|
+
mtlUrl?: string | undefined;
|
|
11836
|
+
}, {
|
|
11837
|
+
objUrl: string;
|
|
11838
|
+
rotationOffset?: number | {
|
|
11839
|
+
x: string | number;
|
|
11840
|
+
y: string | number;
|
|
11841
|
+
z: string | number;
|
|
11842
|
+
} | undefined;
|
|
11843
|
+
positionOffset?: {
|
|
11844
|
+
x: string | number;
|
|
11845
|
+
y: string | number;
|
|
11846
|
+
z: string | number;
|
|
11847
|
+
} | undefined;
|
|
11848
|
+
size?: {
|
|
11849
|
+
x: string | number;
|
|
11850
|
+
y: string | number;
|
|
11851
|
+
z: string | number;
|
|
11852
|
+
} | undefined;
|
|
11853
|
+
mtlUrl?: string | undefined;
|
|
11854
|
+
}>, z.ZodObject<{
|
|
11855
|
+
rotationOffset: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodObject<{
|
|
11856
|
+
x: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11857
|
+
y: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11858
|
+
z: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
11859
|
+
}, "strip", z.ZodTypeAny, {
|
|
11860
|
+
x: string | number;
|
|
11861
|
+
y: string | number;
|
|
11862
|
+
z: string | number;
|
|
11863
|
+
}, {
|
|
11864
|
+
x: string | number;
|
|
11865
|
+
y: string | number;
|
|
11866
|
+
z: string | number;
|
|
11867
|
+
}>]>>;
|
|
11868
|
+
positionOffset: z.ZodOptional<z.ZodObject<{
|
|
11869
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11870
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11871
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11872
|
+
}, "strip", z.ZodTypeAny, {
|
|
11873
|
+
x: number;
|
|
11874
|
+
y: number;
|
|
11875
|
+
z: number;
|
|
11876
|
+
}, {
|
|
11877
|
+
x: string | number;
|
|
11878
|
+
y: string | number;
|
|
11879
|
+
z: string | number;
|
|
11880
|
+
}>>;
|
|
11881
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
11882
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11883
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11884
|
+
z: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
11885
|
+
}, "strip", z.ZodTypeAny, {
|
|
11886
|
+
x: number;
|
|
11887
|
+
y: number;
|
|
11888
|
+
z: number;
|
|
11889
|
+
}, {
|
|
11890
|
+
x: string | number;
|
|
11891
|
+
y: string | number;
|
|
11892
|
+
z: string | number;
|
|
11893
|
+
}>>;
|
|
11894
|
+
} & {
|
|
11895
|
+
jscad: z.ZodRecord<z.ZodString, z.ZodAny>;
|
|
11896
|
+
}, "strip", z.ZodTypeAny, {
|
|
11897
|
+
jscad: Record<string, any>;
|
|
11898
|
+
rotationOffset?: number | {
|
|
11899
|
+
x: string | number;
|
|
11900
|
+
y: string | number;
|
|
11901
|
+
z: string | number;
|
|
11902
|
+
} | undefined;
|
|
11903
|
+
positionOffset?: {
|
|
11904
|
+
x: number;
|
|
11905
|
+
y: number;
|
|
11906
|
+
z: number;
|
|
11907
|
+
} | undefined;
|
|
11908
|
+
size?: {
|
|
11909
|
+
x: number;
|
|
11910
|
+
y: number;
|
|
11911
|
+
z: number;
|
|
11912
|
+
} | undefined;
|
|
11913
|
+
}, {
|
|
11914
|
+
jscad: Record<string, any>;
|
|
11915
|
+
rotationOffset?: number | {
|
|
11916
|
+
x: string | number;
|
|
11917
|
+
y: string | number;
|
|
11918
|
+
z: string | number;
|
|
11919
|
+
} | undefined;
|
|
11920
|
+
positionOffset?: {
|
|
11921
|
+
x: string | number;
|
|
11922
|
+
y: string | number;
|
|
11923
|
+
z: string | number;
|
|
11924
|
+
} | undefined;
|
|
11925
|
+
size?: {
|
|
11926
|
+
x: string | number;
|
|
11927
|
+
y: string | number;
|
|
11928
|
+
z: string | number;
|
|
11929
|
+
} | undefined;
|
|
11930
|
+
}>]>>;
|
|
11931
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
11932
|
+
symbolName: z.ZodOptional<z.ZodString>;
|
|
11933
|
+
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
11934
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11935
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
11936
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
11937
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
11938
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
11939
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11940
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11941
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
11942
|
+
}, "strip", z.ZodTypeAny, {
|
|
11943
|
+
providesPower?: boolean | undefined;
|
|
11944
|
+
requiresPower?: boolean | undefined;
|
|
11945
|
+
providesGround?: boolean | undefined;
|
|
11946
|
+
requiresGround?: boolean | undefined;
|
|
11947
|
+
providesVoltage?: string | number | undefined;
|
|
11948
|
+
requiresVoltage?: string | number | undefined;
|
|
11949
|
+
doNotConnect?: boolean | undefined;
|
|
11950
|
+
}, {
|
|
11951
|
+
providesPower?: boolean | undefined;
|
|
11952
|
+
requiresPower?: boolean | undefined;
|
|
11953
|
+
providesGround?: boolean | undefined;
|
|
11954
|
+
requiresGround?: boolean | undefined;
|
|
11955
|
+
providesVoltage?: string | number | undefined;
|
|
11956
|
+
requiresVoltage?: string | number | undefined;
|
|
11957
|
+
doNotConnect?: boolean | undefined;
|
|
11958
|
+
}>>>;
|
|
11959
|
+
} & {
|
|
11960
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
11961
|
+
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
11962
|
+
showPinAliases: z.ZodOptional<z.ZodBoolean>;
|
|
11963
|
+
pcbPinLabels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11964
|
+
internallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">, "many">>;
|
|
11965
|
+
externallyConnectedPins: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodString, "many">, "many">>;
|
|
11966
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
11967
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
11968
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
11969
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
11970
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
11971
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11972
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11973
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11974
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
11975
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
11976
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11977
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11978
|
+
}, "strip", z.ZodTypeAny, {
|
|
11979
|
+
pins: (string | number)[];
|
|
11980
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11981
|
+
}, {
|
|
11982
|
+
pins: (string | number)[];
|
|
11983
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11984
|
+
}>>;
|
|
11985
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
11986
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11987
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11988
|
+
}, "strip", z.ZodTypeAny, {
|
|
11989
|
+
pins: (string | number)[];
|
|
11990
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11991
|
+
}, {
|
|
11992
|
+
pins: (string | number)[];
|
|
11993
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
11994
|
+
}>>;
|
|
11995
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
11996
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
11997
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
11998
|
+
}, "strip", z.ZodTypeAny, {
|
|
11999
|
+
pins: (string | number)[];
|
|
12000
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12001
|
+
}, {
|
|
12002
|
+
pins: (string | number)[];
|
|
12003
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12004
|
+
}>>;
|
|
12005
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
12006
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12007
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12008
|
+
}, "strip", z.ZodTypeAny, {
|
|
12009
|
+
pins: (string | number)[];
|
|
12010
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12011
|
+
}, {
|
|
12012
|
+
pins: (string | number)[];
|
|
12013
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12014
|
+
}>>;
|
|
12015
|
+
}, "strip", z.ZodTypeAny, {
|
|
12016
|
+
leftSize?: number | undefined;
|
|
12017
|
+
topSize?: number | undefined;
|
|
12018
|
+
rightSize?: number | undefined;
|
|
12019
|
+
bottomSize?: number | undefined;
|
|
12020
|
+
leftSide?: {
|
|
12021
|
+
pins: (string | number)[];
|
|
12022
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12023
|
+
} | undefined;
|
|
12024
|
+
topSide?: {
|
|
12025
|
+
pins: (string | number)[];
|
|
12026
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12027
|
+
} | undefined;
|
|
12028
|
+
rightSide?: {
|
|
12029
|
+
pins: (string | number)[];
|
|
12030
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12031
|
+
} | undefined;
|
|
12032
|
+
bottomSide?: {
|
|
12033
|
+
pins: (string | number)[];
|
|
12034
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12035
|
+
} | undefined;
|
|
12036
|
+
leftPinCount?: number | undefined;
|
|
12037
|
+
rightPinCount?: number | undefined;
|
|
12038
|
+
topPinCount?: number | undefined;
|
|
12039
|
+
bottomPinCount?: number | undefined;
|
|
12040
|
+
}, {
|
|
12041
|
+
leftSize?: number | undefined;
|
|
12042
|
+
topSize?: number | undefined;
|
|
12043
|
+
rightSize?: number | undefined;
|
|
12044
|
+
bottomSize?: number | undefined;
|
|
12045
|
+
leftSide?: {
|
|
12046
|
+
pins: (string | number)[];
|
|
12047
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12048
|
+
} | undefined;
|
|
12049
|
+
topSide?: {
|
|
12050
|
+
pins: (string | number)[];
|
|
12051
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12052
|
+
} | undefined;
|
|
12053
|
+
rightSide?: {
|
|
12054
|
+
pins: (string | number)[];
|
|
12055
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12056
|
+
} | undefined;
|
|
12057
|
+
bottomSide?: {
|
|
12058
|
+
pins: (string | number)[];
|
|
12059
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12060
|
+
} | undefined;
|
|
12061
|
+
leftPinCount?: number | undefined;
|
|
12062
|
+
rightPinCount?: number | undefined;
|
|
12063
|
+
topPinCount?: number | undefined;
|
|
12064
|
+
bottomPinCount?: number | undefined;
|
|
12065
|
+
}>>;
|
|
12066
|
+
schPortArrangement: z.ZodOptional<z.ZodObject<{
|
|
12067
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
12068
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
12069
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
12070
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
12071
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12072
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12073
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12074
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
12075
|
+
leftSide: z.ZodOptional<z.ZodObject<{
|
|
12076
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12077
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12078
|
+
}, "strip", z.ZodTypeAny, {
|
|
12079
|
+
pins: (string | number)[];
|
|
12080
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12081
|
+
}, {
|
|
12082
|
+
pins: (string | number)[];
|
|
12083
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12084
|
+
}>>;
|
|
12085
|
+
rightSide: z.ZodOptional<z.ZodObject<{
|
|
12086
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12087
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12088
|
+
}, "strip", z.ZodTypeAny, {
|
|
12089
|
+
pins: (string | number)[];
|
|
12090
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12091
|
+
}, {
|
|
12092
|
+
pins: (string | number)[];
|
|
12093
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12094
|
+
}>>;
|
|
12095
|
+
topSide: z.ZodOptional<z.ZodObject<{
|
|
12096
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12097
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12098
|
+
}, "strip", z.ZodTypeAny, {
|
|
12099
|
+
pins: (string | number)[];
|
|
12100
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12101
|
+
}, {
|
|
12102
|
+
pins: (string | number)[];
|
|
12103
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12104
|
+
}>>;
|
|
12105
|
+
bottomSide: z.ZodOptional<z.ZodObject<{
|
|
12106
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
12107
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
12108
|
+
}, "strip", z.ZodTypeAny, {
|
|
12109
|
+
pins: (string | number)[];
|
|
12110
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12111
|
+
}, {
|
|
12112
|
+
pins: (string | number)[];
|
|
12113
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12114
|
+
}>>;
|
|
12115
|
+
}, "strip", z.ZodTypeAny, {
|
|
12116
|
+
leftSize?: number | undefined;
|
|
12117
|
+
topSize?: number | undefined;
|
|
12118
|
+
rightSize?: number | undefined;
|
|
12119
|
+
bottomSize?: number | undefined;
|
|
12120
|
+
leftSide?: {
|
|
12121
|
+
pins: (string | number)[];
|
|
12122
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12123
|
+
} | undefined;
|
|
12124
|
+
topSide?: {
|
|
12125
|
+
pins: (string | number)[];
|
|
12126
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12127
|
+
} | undefined;
|
|
12128
|
+
rightSide?: {
|
|
12129
|
+
pins: (string | number)[];
|
|
12130
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12131
|
+
} | undefined;
|
|
12132
|
+
bottomSide?: {
|
|
12133
|
+
pins: (string | number)[];
|
|
12134
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12135
|
+
} | undefined;
|
|
12136
|
+
leftPinCount?: number | undefined;
|
|
12137
|
+
rightPinCount?: number | undefined;
|
|
12138
|
+
topPinCount?: number | undefined;
|
|
12139
|
+
bottomPinCount?: number | undefined;
|
|
12140
|
+
}, {
|
|
12141
|
+
leftSize?: number | undefined;
|
|
12142
|
+
topSize?: number | undefined;
|
|
12143
|
+
rightSize?: number | undefined;
|
|
12144
|
+
bottomSize?: number | undefined;
|
|
12145
|
+
leftSide?: {
|
|
12146
|
+
pins: (string | number)[];
|
|
12147
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12148
|
+
} | undefined;
|
|
12149
|
+
topSide?: {
|
|
12150
|
+
pins: (string | number)[];
|
|
12151
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12152
|
+
} | undefined;
|
|
12153
|
+
rightSide?: {
|
|
12154
|
+
pins: (string | number)[];
|
|
12155
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12156
|
+
} | undefined;
|
|
12157
|
+
bottomSide?: {
|
|
12158
|
+
pins: (string | number)[];
|
|
12159
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12160
|
+
} | undefined;
|
|
12161
|
+
leftPinCount?: number | undefined;
|
|
12162
|
+
rightPinCount?: number | undefined;
|
|
12163
|
+
topPinCount?: number | undefined;
|
|
12164
|
+
bottomPinCount?: number | undefined;
|
|
12165
|
+
}>>;
|
|
12166
|
+
pinCompatibleVariants: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
12167
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
12168
|
+
supplierPartNumber: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
12169
|
+
}, "strip", z.ZodTypeAny, {
|
|
12170
|
+
manufacturerPartNumber?: string | undefined;
|
|
12171
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12172
|
+
}, {
|
|
12173
|
+
manufacturerPartNumber?: string | undefined;
|
|
12174
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12175
|
+
}>, "many">>;
|
|
12176
|
+
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12177
|
+
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12178
|
+
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12179
|
+
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12180
|
+
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12181
|
+
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12182
|
+
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12183
|
+
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12184
|
+
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12185
|
+
}, "strip", z.ZodTypeAny, {
|
|
12186
|
+
marginLeft?: number | undefined;
|
|
12187
|
+
marginRight?: number | undefined;
|
|
12188
|
+
marginTop?: number | undefined;
|
|
12189
|
+
marginBottom?: number | undefined;
|
|
12190
|
+
leftMargin?: number | undefined;
|
|
12191
|
+
rightMargin?: number | undefined;
|
|
12192
|
+
topMargin?: number | undefined;
|
|
12193
|
+
bottomMargin?: number | undefined;
|
|
12194
|
+
}, {
|
|
12195
|
+
marginLeft?: string | number | undefined;
|
|
12196
|
+
marginRight?: string | number | undefined;
|
|
12197
|
+
marginTop?: string | number | undefined;
|
|
12198
|
+
marginBottom?: string | number | undefined;
|
|
12199
|
+
leftMargin?: string | number | undefined;
|
|
12200
|
+
rightMargin?: string | number | undefined;
|
|
12201
|
+
topMargin?: string | number | undefined;
|
|
12202
|
+
bottomMargin?: string | number | undefined;
|
|
12203
|
+
}>>>;
|
|
12204
|
+
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12205
|
+
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12206
|
+
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
12207
|
+
noSchematicRepresentation: z.ZodOptional<z.ZodBoolean>;
|
|
12208
|
+
connections: z.ZodOptional<z.ZodPipeline<z.ZodType<Partial<Record<string, string | string[] | readonly string[]>>, z.ZodTypeDef, Partial<Record<string, string | string[] | readonly string[]>>>, z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
12209
|
+
}, "strip", z.ZodTypeAny, {
|
|
12210
|
+
name: string;
|
|
12211
|
+
pcbX?: number | undefined;
|
|
12212
|
+
pcbY?: number | undefined;
|
|
12213
|
+
pcbRotation?: number | undefined;
|
|
12214
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
12215
|
+
pcbRelative?: boolean | undefined;
|
|
12216
|
+
relative?: boolean | undefined;
|
|
12217
|
+
schX?: number | undefined;
|
|
12218
|
+
schY?: number | undefined;
|
|
12219
|
+
schRotation?: number | undefined;
|
|
12220
|
+
footprint?: FootprintProp | undefined;
|
|
12221
|
+
schRelative?: boolean | undefined;
|
|
12222
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12223
|
+
key?: any;
|
|
12224
|
+
pinAttributes?: Record<string, {
|
|
12225
|
+
providesPower?: boolean | undefined;
|
|
12226
|
+
requiresPower?: boolean | undefined;
|
|
12227
|
+
providesGround?: boolean | undefined;
|
|
12228
|
+
requiresGround?: boolean | undefined;
|
|
12229
|
+
providesVoltage?: string | number | undefined;
|
|
12230
|
+
requiresVoltage?: string | number | undefined;
|
|
12231
|
+
doNotConnect?: boolean | undefined;
|
|
12232
|
+
}> | undefined;
|
|
12233
|
+
cadModel?: string | {
|
|
12234
|
+
stlUrl: string;
|
|
12235
|
+
rotationOffset?: number | {
|
|
12236
|
+
x: string | number;
|
|
12237
|
+
y: string | number;
|
|
12238
|
+
z: string | number;
|
|
12239
|
+
} | undefined;
|
|
12240
|
+
positionOffset?: {
|
|
12241
|
+
x: number;
|
|
12242
|
+
y: number;
|
|
12243
|
+
z: number;
|
|
12244
|
+
} | undefined;
|
|
12245
|
+
size?: {
|
|
12246
|
+
x: number;
|
|
12247
|
+
y: number;
|
|
12248
|
+
z: number;
|
|
12249
|
+
} | undefined;
|
|
12250
|
+
} | {
|
|
12251
|
+
objUrl: string;
|
|
12252
|
+
rotationOffset?: number | {
|
|
12253
|
+
x: string | number;
|
|
12254
|
+
y: string | number;
|
|
12255
|
+
z: string | number;
|
|
12256
|
+
} | undefined;
|
|
12257
|
+
positionOffset?: {
|
|
12258
|
+
x: number;
|
|
12259
|
+
y: number;
|
|
12260
|
+
z: number;
|
|
12261
|
+
} | undefined;
|
|
12262
|
+
size?: {
|
|
12263
|
+
x: number;
|
|
12264
|
+
y: number;
|
|
12265
|
+
z: number;
|
|
12266
|
+
} | undefined;
|
|
12267
|
+
mtlUrl?: string | undefined;
|
|
12268
|
+
} | {
|
|
12269
|
+
jscad: Record<string, any>;
|
|
12270
|
+
rotationOffset?: number | {
|
|
12271
|
+
x: string | number;
|
|
12272
|
+
y: string | number;
|
|
12273
|
+
z: string | number;
|
|
12274
|
+
} | undefined;
|
|
12275
|
+
positionOffset?: {
|
|
12276
|
+
x: number;
|
|
12277
|
+
y: number;
|
|
12278
|
+
z: number;
|
|
12279
|
+
} | undefined;
|
|
12280
|
+
size?: {
|
|
12281
|
+
x: number;
|
|
12282
|
+
y: number;
|
|
12283
|
+
z: number;
|
|
12284
|
+
} | undefined;
|
|
12285
|
+
} | null | undefined;
|
|
12286
|
+
children?: any;
|
|
12287
|
+
symbolName?: string | undefined;
|
|
12288
|
+
doNotPlace?: boolean | undefined;
|
|
12289
|
+
schWidth?: number | undefined;
|
|
12290
|
+
schHeight?: number | undefined;
|
|
12291
|
+
manufacturerPartNumber?: string | undefined;
|
|
12292
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
12293
|
+
showPinAliases?: boolean | undefined;
|
|
12294
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
12295
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
12296
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
12297
|
+
schPinArrangement?: {
|
|
12298
|
+
leftSize?: number | undefined;
|
|
12299
|
+
topSize?: number | undefined;
|
|
12300
|
+
rightSize?: number | undefined;
|
|
12301
|
+
bottomSize?: number | undefined;
|
|
12302
|
+
leftSide?: {
|
|
12303
|
+
pins: (string | number)[];
|
|
12304
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12305
|
+
} | undefined;
|
|
12306
|
+
topSide?: {
|
|
12307
|
+
pins: (string | number)[];
|
|
12308
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12309
|
+
} | undefined;
|
|
12310
|
+
rightSide?: {
|
|
12311
|
+
pins: (string | number)[];
|
|
12312
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12313
|
+
} | undefined;
|
|
12314
|
+
bottomSide?: {
|
|
12315
|
+
pins: (string | number)[];
|
|
12316
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12317
|
+
} | undefined;
|
|
12318
|
+
leftPinCount?: number | undefined;
|
|
12319
|
+
rightPinCount?: number | undefined;
|
|
12320
|
+
topPinCount?: number | undefined;
|
|
12321
|
+
bottomPinCount?: number | undefined;
|
|
12322
|
+
} | undefined;
|
|
12323
|
+
schPortArrangement?: {
|
|
12324
|
+
leftSize?: number | undefined;
|
|
12325
|
+
topSize?: number | undefined;
|
|
12326
|
+
rightSize?: number | undefined;
|
|
12327
|
+
bottomSize?: number | undefined;
|
|
12328
|
+
leftSide?: {
|
|
12329
|
+
pins: (string | number)[];
|
|
12330
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12331
|
+
} | undefined;
|
|
12332
|
+
topSide?: {
|
|
12333
|
+
pins: (string | number)[];
|
|
12334
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12335
|
+
} | undefined;
|
|
12336
|
+
rightSide?: {
|
|
12337
|
+
pins: (string | number)[];
|
|
12338
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12339
|
+
} | undefined;
|
|
12340
|
+
bottomSide?: {
|
|
12341
|
+
pins: (string | number)[];
|
|
12342
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12343
|
+
} | undefined;
|
|
12344
|
+
leftPinCount?: number | undefined;
|
|
12345
|
+
rightPinCount?: number | undefined;
|
|
12346
|
+
topPinCount?: number | undefined;
|
|
12347
|
+
bottomPinCount?: number | undefined;
|
|
12348
|
+
} | undefined;
|
|
12349
|
+
pinCompatibleVariants?: {
|
|
12350
|
+
manufacturerPartNumber?: string | undefined;
|
|
12351
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12352
|
+
}[] | undefined;
|
|
12353
|
+
schPinStyle?: Record<string, {
|
|
12354
|
+
marginLeft?: number | undefined;
|
|
12355
|
+
marginRight?: number | undefined;
|
|
12356
|
+
marginTop?: number | undefined;
|
|
12357
|
+
marginBottom?: number | undefined;
|
|
12358
|
+
leftMargin?: number | undefined;
|
|
12359
|
+
rightMargin?: number | undefined;
|
|
12360
|
+
topMargin?: number | undefined;
|
|
12361
|
+
bottomMargin?: number | undefined;
|
|
12362
|
+
}> | undefined;
|
|
12363
|
+
schPinSpacing?: number | undefined;
|
|
12364
|
+
noSchematicRepresentation?: boolean | undefined;
|
|
12365
|
+
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
12366
|
+
}, {
|
|
12367
|
+
name: string;
|
|
12368
|
+
pcbX?: string | number | undefined;
|
|
12369
|
+
pcbY?: string | number | undefined;
|
|
12370
|
+
pcbRotation?: string | number | undefined;
|
|
12371
|
+
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | {
|
|
12372
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
12373
|
+
} | undefined;
|
|
12374
|
+
pcbRelative?: boolean | undefined;
|
|
12375
|
+
relative?: boolean | undefined;
|
|
12376
|
+
schX?: string | number | undefined;
|
|
12377
|
+
schY?: string | number | undefined;
|
|
12378
|
+
schRotation?: string | number | undefined;
|
|
12379
|
+
footprint?: FootprintProp | undefined;
|
|
12380
|
+
schRelative?: boolean | undefined;
|
|
12381
|
+
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12382
|
+
key?: any;
|
|
12383
|
+
pinAttributes?: Record<string, {
|
|
12384
|
+
providesPower?: boolean | undefined;
|
|
12385
|
+
requiresPower?: boolean | undefined;
|
|
12386
|
+
providesGround?: boolean | undefined;
|
|
12387
|
+
requiresGround?: boolean | undefined;
|
|
12388
|
+
providesVoltage?: string | number | undefined;
|
|
12389
|
+
requiresVoltage?: string | number | undefined;
|
|
12390
|
+
doNotConnect?: boolean | undefined;
|
|
12391
|
+
}> | undefined;
|
|
12392
|
+
cadModel?: string | {
|
|
12393
|
+
stlUrl: string;
|
|
12394
|
+
rotationOffset?: number | {
|
|
12395
|
+
x: string | number;
|
|
12396
|
+
y: string | number;
|
|
12397
|
+
z: string | number;
|
|
12398
|
+
} | undefined;
|
|
12399
|
+
positionOffset?: {
|
|
12400
|
+
x: string | number;
|
|
12401
|
+
y: string | number;
|
|
12402
|
+
z: string | number;
|
|
12403
|
+
} | undefined;
|
|
12404
|
+
size?: {
|
|
12405
|
+
x: string | number;
|
|
12406
|
+
y: string | number;
|
|
12407
|
+
z: string | number;
|
|
12408
|
+
} | undefined;
|
|
12409
|
+
} | {
|
|
12410
|
+
objUrl: string;
|
|
12411
|
+
rotationOffset?: number | {
|
|
12412
|
+
x: string | number;
|
|
12413
|
+
y: string | number;
|
|
12414
|
+
z: string | number;
|
|
12415
|
+
} | undefined;
|
|
12416
|
+
positionOffset?: {
|
|
12417
|
+
x: string | number;
|
|
12418
|
+
y: string | number;
|
|
12419
|
+
z: string | number;
|
|
12420
|
+
} | undefined;
|
|
12421
|
+
size?: {
|
|
12422
|
+
x: string | number;
|
|
12423
|
+
y: string | number;
|
|
12424
|
+
z: string | number;
|
|
12425
|
+
} | undefined;
|
|
12426
|
+
mtlUrl?: string | undefined;
|
|
12427
|
+
} | {
|
|
12428
|
+
jscad: Record<string, any>;
|
|
12429
|
+
rotationOffset?: number | {
|
|
12430
|
+
x: string | number;
|
|
12431
|
+
y: string | number;
|
|
12432
|
+
z: string | number;
|
|
12433
|
+
} | undefined;
|
|
12434
|
+
positionOffset?: {
|
|
12435
|
+
x: string | number;
|
|
12436
|
+
y: string | number;
|
|
12437
|
+
z: string | number;
|
|
12438
|
+
} | undefined;
|
|
12439
|
+
size?: {
|
|
12440
|
+
x: string | number;
|
|
12441
|
+
y: string | number;
|
|
12442
|
+
z: string | number;
|
|
12443
|
+
} | undefined;
|
|
12444
|
+
} | null | undefined;
|
|
12445
|
+
children?: any;
|
|
12446
|
+
symbolName?: string | undefined;
|
|
12447
|
+
doNotPlace?: boolean | undefined;
|
|
12448
|
+
schWidth?: string | number | undefined;
|
|
12449
|
+
schHeight?: string | number | undefined;
|
|
12450
|
+
manufacturerPartNumber?: string | undefined;
|
|
12451
|
+
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
12452
|
+
showPinAliases?: boolean | undefined;
|
|
12453
|
+
pcbPinLabels?: Record<string, string> | undefined;
|
|
12454
|
+
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
12455
|
+
externallyConnectedPins?: string[][] | undefined;
|
|
12456
|
+
schPinArrangement?: {
|
|
12457
|
+
leftSize?: number | undefined;
|
|
12458
|
+
topSize?: number | undefined;
|
|
12459
|
+
rightSize?: number | undefined;
|
|
12460
|
+
bottomSize?: number | undefined;
|
|
12461
|
+
leftSide?: {
|
|
12462
|
+
pins: (string | number)[];
|
|
12463
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12464
|
+
} | undefined;
|
|
12465
|
+
topSide?: {
|
|
12466
|
+
pins: (string | number)[];
|
|
12467
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12468
|
+
} | undefined;
|
|
12469
|
+
rightSide?: {
|
|
12470
|
+
pins: (string | number)[];
|
|
12471
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12472
|
+
} | undefined;
|
|
12473
|
+
bottomSide?: {
|
|
12474
|
+
pins: (string | number)[];
|
|
12475
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12476
|
+
} | undefined;
|
|
12477
|
+
leftPinCount?: number | undefined;
|
|
12478
|
+
rightPinCount?: number | undefined;
|
|
12479
|
+
topPinCount?: number | undefined;
|
|
12480
|
+
bottomPinCount?: number | undefined;
|
|
12481
|
+
} | undefined;
|
|
12482
|
+
schPortArrangement?: {
|
|
12483
|
+
leftSize?: number | undefined;
|
|
12484
|
+
topSize?: number | undefined;
|
|
12485
|
+
rightSize?: number | undefined;
|
|
12486
|
+
bottomSize?: number | undefined;
|
|
12487
|
+
leftSide?: {
|
|
12488
|
+
pins: (string | number)[];
|
|
12489
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12490
|
+
} | undefined;
|
|
12491
|
+
topSide?: {
|
|
12492
|
+
pins: (string | number)[];
|
|
12493
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12494
|
+
} | undefined;
|
|
12495
|
+
rightSide?: {
|
|
12496
|
+
pins: (string | number)[];
|
|
12497
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12498
|
+
} | undefined;
|
|
12499
|
+
bottomSide?: {
|
|
12500
|
+
pins: (string | number)[];
|
|
12501
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
12502
|
+
} | undefined;
|
|
12503
|
+
leftPinCount?: number | undefined;
|
|
12504
|
+
rightPinCount?: number | undefined;
|
|
12505
|
+
topPinCount?: number | undefined;
|
|
12506
|
+
bottomPinCount?: number | undefined;
|
|
12507
|
+
} | undefined;
|
|
12508
|
+
pinCompatibleVariants?: {
|
|
12509
|
+
manufacturerPartNumber?: string | undefined;
|
|
12510
|
+
supplierPartNumber?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12511
|
+
}[] | undefined;
|
|
12512
|
+
schPinStyle?: Record<string, {
|
|
12513
|
+
marginLeft?: string | number | undefined;
|
|
12514
|
+
marginRight?: string | number | undefined;
|
|
12515
|
+
marginTop?: string | number | undefined;
|
|
12516
|
+
marginBottom?: string | number | undefined;
|
|
12517
|
+
leftMargin?: string | number | undefined;
|
|
12518
|
+
rightMargin?: string | number | undefined;
|
|
12519
|
+
topMargin?: string | number | undefined;
|
|
12520
|
+
bottomMargin?: string | number | undefined;
|
|
12521
|
+
}> | undefined;
|
|
12522
|
+
schPinSpacing?: string | number | undefined;
|
|
12523
|
+
noSchematicRepresentation?: boolean | undefined;
|
|
12524
|
+
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
12525
|
+
}>;
|
|
12526
|
+
interface PinoutProps<PinLabelMap extends PinLabelsProp | string = string> extends ChipProps<PinLabelMap> {
|
|
12527
|
+
}
|
|
12528
|
+
|
|
11650
12529
|
interface JumperProps extends CommonComponentProps {
|
|
11651
12530
|
manufacturerPartNumber?: string;
|
|
11652
12531
|
pinLabels?: Record<number | SchematicPinLabel, SchematicPinLabel | SchematicPinLabel[]>;
|
|
@@ -11945,6 +12824,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
11945
12824
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
11946
12825
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11947
12826
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12827
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
11948
12828
|
}, "strip", z.ZodTypeAny, {
|
|
11949
12829
|
providesPower?: boolean | undefined;
|
|
11950
12830
|
requiresPower?: boolean | undefined;
|
|
@@ -11952,6 +12832,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
11952
12832
|
requiresGround?: boolean | undefined;
|
|
11953
12833
|
providesVoltage?: string | number | undefined;
|
|
11954
12834
|
requiresVoltage?: string | number | undefined;
|
|
12835
|
+
doNotConnect?: boolean | undefined;
|
|
11955
12836
|
}, {
|
|
11956
12837
|
providesPower?: boolean | undefined;
|
|
11957
12838
|
requiresPower?: boolean | undefined;
|
|
@@ -11959,6 +12840,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
11959
12840
|
requiresGround?: boolean | undefined;
|
|
11960
12841
|
providesVoltage?: string | number | undefined;
|
|
11961
12842
|
requiresVoltage?: string | number | undefined;
|
|
12843
|
+
doNotConnect?: boolean | undefined;
|
|
11962
12844
|
}>>>;
|
|
11963
12845
|
} & {
|
|
11964
12846
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -12221,6 +13103,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
12221
13103
|
requiresGround?: boolean | undefined;
|
|
12222
13104
|
providesVoltage?: string | number | undefined;
|
|
12223
13105
|
requiresVoltage?: string | number | undefined;
|
|
13106
|
+
doNotConnect?: boolean | undefined;
|
|
12224
13107
|
}> | undefined;
|
|
12225
13108
|
cadModel?: string | {
|
|
12226
13109
|
stlUrl: string;
|
|
@@ -12374,6 +13257,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
12374
13257
|
requiresGround?: boolean | undefined;
|
|
12375
13258
|
providesVoltage?: string | number | undefined;
|
|
12376
13259
|
requiresVoltage?: string | number | undefined;
|
|
13260
|
+
doNotConnect?: boolean | undefined;
|
|
12377
13261
|
}> | undefined;
|
|
12378
13262
|
cadModel?: string | {
|
|
12379
13263
|
stlUrl: string;
|
|
@@ -12782,6 +13666,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
12782
13666
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
12783
13667
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12784
13668
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13669
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
12785
13670
|
}, "strip", z.ZodTypeAny, {
|
|
12786
13671
|
providesPower?: boolean | undefined;
|
|
12787
13672
|
requiresPower?: boolean | undefined;
|
|
@@ -12789,6 +13674,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
12789
13674
|
requiresGround?: boolean | undefined;
|
|
12790
13675
|
providesVoltage?: string | number | undefined;
|
|
12791
13676
|
requiresVoltage?: string | number | undefined;
|
|
13677
|
+
doNotConnect?: boolean | undefined;
|
|
12792
13678
|
}, {
|
|
12793
13679
|
providesPower?: boolean | undefined;
|
|
12794
13680
|
requiresPower?: boolean | undefined;
|
|
@@ -12796,6 +13682,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
12796
13682
|
requiresGround?: boolean | undefined;
|
|
12797
13683
|
providesVoltage?: string | number | undefined;
|
|
12798
13684
|
requiresVoltage?: string | number | undefined;
|
|
13685
|
+
doNotConnect?: boolean | undefined;
|
|
12799
13686
|
}>>>;
|
|
12800
13687
|
} & {
|
|
12801
13688
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -13061,6 +13948,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
13061
13948
|
requiresGround?: boolean | undefined;
|
|
13062
13949
|
providesVoltage?: string | number | undefined;
|
|
13063
13950
|
requiresVoltage?: string | number | undefined;
|
|
13951
|
+
doNotConnect?: boolean | undefined;
|
|
13064
13952
|
}> | undefined;
|
|
13065
13953
|
cadModel?: string | {
|
|
13066
13954
|
stlUrl: string;
|
|
@@ -13216,6 +14104,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
13216
14104
|
requiresGround?: boolean | undefined;
|
|
13217
14105
|
providesVoltage?: string | number | undefined;
|
|
13218
14106
|
requiresVoltage?: string | number | undefined;
|
|
14107
|
+
doNotConnect?: boolean | undefined;
|
|
13219
14108
|
}> | undefined;
|
|
13220
14109
|
cadModel?: string | {
|
|
13221
14110
|
stlUrl: string;
|
|
@@ -13635,6 +14524,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
13635
14524
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
13636
14525
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13637
14526
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14527
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
13638
14528
|
}, "strip", z.ZodTypeAny, {
|
|
13639
14529
|
providesPower?: boolean | undefined;
|
|
13640
14530
|
requiresPower?: boolean | undefined;
|
|
@@ -13642,6 +14532,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
13642
14532
|
requiresGround?: boolean | undefined;
|
|
13643
14533
|
providesVoltage?: string | number | undefined;
|
|
13644
14534
|
requiresVoltage?: string | number | undefined;
|
|
14535
|
+
doNotConnect?: boolean | undefined;
|
|
13645
14536
|
}, {
|
|
13646
14537
|
providesPower?: boolean | undefined;
|
|
13647
14538
|
requiresPower?: boolean | undefined;
|
|
@@ -13649,6 +14540,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
13649
14540
|
requiresGround?: boolean | undefined;
|
|
13650
14541
|
providesVoltage?: string | number | undefined;
|
|
13651
14542
|
requiresVoltage?: string | number | undefined;
|
|
14543
|
+
doNotConnect?: boolean | undefined;
|
|
13652
14544
|
}>>>;
|
|
13653
14545
|
} & {
|
|
13654
14546
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -13809,6 +14701,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
13809
14701
|
requiresGround?: boolean | undefined;
|
|
13810
14702
|
providesVoltage?: string | number | undefined;
|
|
13811
14703
|
requiresVoltage?: string | number | undefined;
|
|
14704
|
+
doNotConnect?: boolean | undefined;
|
|
13812
14705
|
}> | undefined;
|
|
13813
14706
|
cadModel?: string | {
|
|
13814
14707
|
stlUrl: string;
|
|
@@ -13934,6 +14827,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
13934
14827
|
requiresGround?: boolean | undefined;
|
|
13935
14828
|
providesVoltage?: string | number | undefined;
|
|
13936
14829
|
requiresVoltage?: string | number | undefined;
|
|
14830
|
+
doNotConnect?: boolean | undefined;
|
|
13937
14831
|
}> | undefined;
|
|
13938
14832
|
cadModel?: string | {
|
|
13939
14833
|
stlUrl: string;
|
|
@@ -14331,6 +15225,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
14331
15225
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
14332
15226
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14333
15227
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15228
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
14334
15229
|
}, "strip", z.ZodTypeAny, {
|
|
14335
15230
|
providesPower?: boolean | undefined;
|
|
14336
15231
|
requiresPower?: boolean | undefined;
|
|
@@ -14338,6 +15233,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
14338
15233
|
requiresGround?: boolean | undefined;
|
|
14339
15234
|
providesVoltage?: string | number | undefined;
|
|
14340
15235
|
requiresVoltage?: string | number | undefined;
|
|
15236
|
+
doNotConnect?: boolean | undefined;
|
|
14341
15237
|
}, {
|
|
14342
15238
|
providesPower?: boolean | undefined;
|
|
14343
15239
|
requiresPower?: boolean | undefined;
|
|
@@ -14345,6 +15241,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
14345
15241
|
requiresGround?: boolean | undefined;
|
|
14346
15242
|
providesVoltage?: string | number | undefined;
|
|
14347
15243
|
requiresVoltage?: string | number | undefined;
|
|
15244
|
+
doNotConnect?: boolean | undefined;
|
|
14348
15245
|
}>>>;
|
|
14349
15246
|
} & {
|
|
14350
15247
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -14375,6 +15272,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
14375
15272
|
requiresGround?: boolean | undefined;
|
|
14376
15273
|
providesVoltage?: string | number | undefined;
|
|
14377
15274
|
requiresVoltage?: string | number | undefined;
|
|
15275
|
+
doNotConnect?: boolean | undefined;
|
|
14378
15276
|
}> | undefined;
|
|
14379
15277
|
cadModel?: string | {
|
|
14380
15278
|
stlUrl: string;
|
|
@@ -14461,6 +15359,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
14461
15359
|
requiresGround?: boolean | undefined;
|
|
14462
15360
|
providesVoltage?: string | number | undefined;
|
|
14463
15361
|
requiresVoltage?: string | number | undefined;
|
|
15362
|
+
doNotConnect?: boolean | undefined;
|
|
14464
15363
|
}> | undefined;
|
|
14465
15364
|
cadModel?: string | {
|
|
14466
15365
|
stlUrl: string;
|
|
@@ -15280,6 +16179,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
15280
16179
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
15281
16180
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15282
16181
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16182
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
15283
16183
|
}, "strip", z.ZodTypeAny, {
|
|
15284
16184
|
providesPower?: boolean | undefined;
|
|
15285
16185
|
requiresPower?: boolean | undefined;
|
|
@@ -15287,6 +16187,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
15287
16187
|
requiresGround?: boolean | undefined;
|
|
15288
16188
|
providesVoltage?: string | number | undefined;
|
|
15289
16189
|
requiresVoltage?: string | number | undefined;
|
|
16190
|
+
doNotConnect?: boolean | undefined;
|
|
15290
16191
|
}, {
|
|
15291
16192
|
providesPower?: boolean | undefined;
|
|
15292
16193
|
requiresPower?: boolean | undefined;
|
|
@@ -15294,6 +16195,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
15294
16195
|
requiresGround?: boolean | undefined;
|
|
15295
16196
|
providesVoltage?: string | number | undefined;
|
|
15296
16197
|
requiresVoltage?: string | number | undefined;
|
|
16198
|
+
doNotConnect?: boolean | undefined;
|
|
15297
16199
|
}>>>;
|
|
15298
16200
|
} & {
|
|
15299
16201
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15326,6 +16228,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
15326
16228
|
requiresGround?: boolean | undefined;
|
|
15327
16229
|
providesVoltage?: string | number | undefined;
|
|
15328
16230
|
requiresVoltage?: string | number | undefined;
|
|
16231
|
+
doNotConnect?: boolean | undefined;
|
|
15329
16232
|
}> | undefined;
|
|
15330
16233
|
cadModel?: string | {
|
|
15331
16234
|
stlUrl: string;
|
|
@@ -15414,6 +16317,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
15414
16317
|
requiresGround?: boolean | undefined;
|
|
15415
16318
|
providesVoltage?: string | number | undefined;
|
|
15416
16319
|
requiresVoltage?: string | number | undefined;
|
|
16320
|
+
doNotConnect?: boolean | undefined;
|
|
15417
16321
|
}> | undefined;
|
|
15418
16322
|
cadModel?: string | {
|
|
15419
16323
|
stlUrl: string;
|
|
@@ -15752,6 +16656,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
15752
16656
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
15753
16657
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15754
16658
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16659
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
15755
16660
|
}, "strip", z.ZodTypeAny, {
|
|
15756
16661
|
providesPower?: boolean | undefined;
|
|
15757
16662
|
requiresPower?: boolean | undefined;
|
|
@@ -15759,6 +16664,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
15759
16664
|
requiresGround?: boolean | undefined;
|
|
15760
16665
|
providesVoltage?: string | number | undefined;
|
|
15761
16666
|
requiresVoltage?: string | number | undefined;
|
|
16667
|
+
doNotConnect?: boolean | undefined;
|
|
15762
16668
|
}, {
|
|
15763
16669
|
providesPower?: boolean | undefined;
|
|
15764
16670
|
requiresPower?: boolean | undefined;
|
|
@@ -15766,6 +16672,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
15766
16672
|
requiresGround?: boolean | undefined;
|
|
15767
16673
|
providesVoltage?: string | number | undefined;
|
|
15768
16674
|
requiresVoltage?: string | number | undefined;
|
|
16675
|
+
doNotConnect?: boolean | undefined;
|
|
15769
16676
|
}>>>;
|
|
15770
16677
|
} & {
|
|
15771
16678
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -15793,6 +16700,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
15793
16700
|
requiresGround?: boolean | undefined;
|
|
15794
16701
|
providesVoltage?: string | number | undefined;
|
|
15795
16702
|
requiresVoltage?: string | number | undefined;
|
|
16703
|
+
doNotConnect?: boolean | undefined;
|
|
15796
16704
|
}> | undefined;
|
|
15797
16705
|
cadModel?: string | {
|
|
15798
16706
|
stlUrl: string;
|
|
@@ -15876,6 +16784,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
15876
16784
|
requiresGround?: boolean | undefined;
|
|
15877
16785
|
providesVoltage?: string | number | undefined;
|
|
15878
16786
|
requiresVoltage?: string | number | undefined;
|
|
16787
|
+
doNotConnect?: boolean | undefined;
|
|
15879
16788
|
}> | undefined;
|
|
15880
16789
|
cadModel?: string | {
|
|
15881
16790
|
stlUrl: string;
|
|
@@ -16215,6 +17124,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
16215
17124
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
16216
17125
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16217
17126
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17127
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
16218
17128
|
}, "strip", z.ZodTypeAny, {
|
|
16219
17129
|
providesPower?: boolean | undefined;
|
|
16220
17130
|
requiresPower?: boolean | undefined;
|
|
@@ -16222,6 +17132,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
16222
17132
|
requiresGround?: boolean | undefined;
|
|
16223
17133
|
providesVoltage?: string | number | undefined;
|
|
16224
17134
|
requiresVoltage?: string | number | undefined;
|
|
17135
|
+
doNotConnect?: boolean | undefined;
|
|
16225
17136
|
}, {
|
|
16226
17137
|
providesPower?: boolean | undefined;
|
|
16227
17138
|
requiresPower?: boolean | undefined;
|
|
@@ -16229,6 +17140,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
16229
17140
|
requiresGround?: boolean | undefined;
|
|
16230
17141
|
providesVoltage?: string | number | undefined;
|
|
16231
17142
|
requiresVoltage?: string | number | undefined;
|
|
17143
|
+
doNotConnect?: boolean | undefined;
|
|
16232
17144
|
}>>>;
|
|
16233
17145
|
} & {
|
|
16234
17146
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16262,6 +17174,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
16262
17174
|
requiresGround?: boolean | undefined;
|
|
16263
17175
|
providesVoltage?: string | number | undefined;
|
|
16264
17176
|
requiresVoltage?: string | number | undefined;
|
|
17177
|
+
doNotConnect?: boolean | undefined;
|
|
16265
17178
|
}> | undefined;
|
|
16266
17179
|
cadModel?: string | {
|
|
16267
17180
|
stlUrl: string;
|
|
@@ -16350,6 +17263,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
16350
17263
|
requiresGround?: boolean | undefined;
|
|
16351
17264
|
providesVoltage?: string | number | undefined;
|
|
16352
17265
|
requiresVoltage?: string | number | undefined;
|
|
17266
|
+
doNotConnect?: boolean | undefined;
|
|
16353
17267
|
}> | undefined;
|
|
16354
17268
|
cadModel?: string | {
|
|
16355
17269
|
stlUrl: string;
|
|
@@ -16687,6 +17601,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
16687
17601
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
16688
17602
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16689
17603
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17604
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
16690
17605
|
}, "strip", z.ZodTypeAny, {
|
|
16691
17606
|
providesPower?: boolean | undefined;
|
|
16692
17607
|
requiresPower?: boolean | undefined;
|
|
@@ -16694,6 +17609,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
16694
17609
|
requiresGround?: boolean | undefined;
|
|
16695
17610
|
providesVoltage?: string | number | undefined;
|
|
16696
17611
|
requiresVoltage?: string | number | undefined;
|
|
17612
|
+
doNotConnect?: boolean | undefined;
|
|
16697
17613
|
}, {
|
|
16698
17614
|
providesPower?: boolean | undefined;
|
|
16699
17615
|
requiresPower?: boolean | undefined;
|
|
@@ -16701,6 +17617,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
16701
17617
|
requiresGround?: boolean | undefined;
|
|
16702
17618
|
providesVoltage?: string | number | undefined;
|
|
16703
17619
|
requiresVoltage?: string | number | undefined;
|
|
17620
|
+
doNotConnect?: boolean | undefined;
|
|
16704
17621
|
}>>>;
|
|
16705
17622
|
} & {
|
|
16706
17623
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -16730,6 +17647,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
16730
17647
|
requiresGround?: boolean | undefined;
|
|
16731
17648
|
providesVoltage?: string | number | undefined;
|
|
16732
17649
|
requiresVoltage?: string | number | undefined;
|
|
17650
|
+
doNotConnect?: boolean | undefined;
|
|
16733
17651
|
}> | undefined;
|
|
16734
17652
|
cadModel?: string | {
|
|
16735
17653
|
stlUrl: string;
|
|
@@ -16814,6 +17732,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
16814
17732
|
requiresGround?: boolean | undefined;
|
|
16815
17733
|
providesVoltage?: string | number | undefined;
|
|
16816
17734
|
requiresVoltage?: string | number | undefined;
|
|
17735
|
+
doNotConnect?: boolean | undefined;
|
|
16817
17736
|
}> | undefined;
|
|
16818
17737
|
cadModel?: string | {
|
|
16819
17738
|
stlUrl: string;
|
|
@@ -18237,6 +19156,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
18237
19156
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
18238
19157
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18239
19158
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
19159
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
18240
19160
|
}, "strip", z.ZodTypeAny, {
|
|
18241
19161
|
providesPower?: boolean | undefined;
|
|
18242
19162
|
requiresPower?: boolean | undefined;
|
|
@@ -18244,6 +19164,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
18244
19164
|
requiresGround?: boolean | undefined;
|
|
18245
19165
|
providesVoltage?: string | number | undefined;
|
|
18246
19166
|
requiresVoltage?: string | number | undefined;
|
|
19167
|
+
doNotConnect?: boolean | undefined;
|
|
18247
19168
|
}, {
|
|
18248
19169
|
providesPower?: boolean | undefined;
|
|
18249
19170
|
requiresPower?: boolean | undefined;
|
|
@@ -18251,6 +19172,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
18251
19172
|
requiresGround?: boolean | undefined;
|
|
18252
19173
|
providesVoltage?: string | number | undefined;
|
|
18253
19174
|
requiresVoltage?: string | number | undefined;
|
|
19175
|
+
doNotConnect?: boolean | undefined;
|
|
18254
19176
|
}>>>;
|
|
18255
19177
|
} & {
|
|
18256
19178
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -18289,6 +19211,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
18289
19211
|
requiresGround?: boolean | undefined;
|
|
18290
19212
|
providesVoltage?: string | number | undefined;
|
|
18291
19213
|
requiresVoltage?: string | number | undefined;
|
|
19214
|
+
doNotConnect?: boolean | undefined;
|
|
18292
19215
|
}> | undefined;
|
|
18293
19216
|
cadModel?: string | {
|
|
18294
19217
|
stlUrl: string;
|
|
@@ -18379,6 +19302,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
18379
19302
|
requiresGround?: boolean | undefined;
|
|
18380
19303
|
providesVoltage?: string | number | undefined;
|
|
18381
19304
|
requiresVoltage?: string | number | undefined;
|
|
19305
|
+
doNotConnect?: boolean | undefined;
|
|
18382
19306
|
}> | undefined;
|
|
18383
19307
|
cadModel?: string | {
|
|
18384
19308
|
stlUrl: string;
|
|
@@ -20258,6 +21182,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
20258
21182
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
20259
21183
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20260
21184
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21185
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
20261
21186
|
}, "strip", z.ZodTypeAny, {
|
|
20262
21187
|
providesPower?: boolean | undefined;
|
|
20263
21188
|
requiresPower?: boolean | undefined;
|
|
@@ -20265,6 +21190,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
20265
21190
|
requiresGround?: boolean | undefined;
|
|
20266
21191
|
providesVoltage?: string | number | undefined;
|
|
20267
21192
|
requiresVoltage?: string | number | undefined;
|
|
21193
|
+
doNotConnect?: boolean | undefined;
|
|
20268
21194
|
}, {
|
|
20269
21195
|
providesPower?: boolean | undefined;
|
|
20270
21196
|
requiresPower?: boolean | undefined;
|
|
@@ -20272,6 +21198,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
20272
21198
|
requiresGround?: boolean | undefined;
|
|
20273
21199
|
providesVoltage?: string | number | undefined;
|
|
20274
21200
|
requiresVoltage?: string | number | undefined;
|
|
21201
|
+
doNotConnect?: boolean | undefined;
|
|
20275
21202
|
}>>>;
|
|
20276
21203
|
} & {
|
|
20277
21204
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
@@ -20300,6 +21227,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
20300
21227
|
requiresGround?: boolean | undefined;
|
|
20301
21228
|
providesVoltage?: string | number | undefined;
|
|
20302
21229
|
requiresVoltage?: string | number | undefined;
|
|
21230
|
+
doNotConnect?: boolean | undefined;
|
|
20303
21231
|
}> | undefined;
|
|
20304
21232
|
cadModel?: string | {
|
|
20305
21233
|
stlUrl: string;
|
|
@@ -20385,6 +21313,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
20385
21313
|
requiresGround?: boolean | undefined;
|
|
20386
21314
|
providesVoltage?: string | number | undefined;
|
|
20387
21315
|
requiresVoltage?: string | number | undefined;
|
|
21316
|
+
doNotConnect?: boolean | undefined;
|
|
20388
21317
|
}> | undefined;
|
|
20389
21318
|
cadModel?: string | {
|
|
20390
21319
|
stlUrl: string;
|
|
@@ -20791,6 +21720,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
20791
21720
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
20792
21721
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20793
21722
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21723
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
20794
21724
|
}, "strip", z.ZodTypeAny, {
|
|
20795
21725
|
providesPower?: boolean | undefined;
|
|
20796
21726
|
requiresPower?: boolean | undefined;
|
|
@@ -20798,6 +21728,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
20798
21728
|
requiresGround?: boolean | undefined;
|
|
20799
21729
|
providesVoltage?: string | number | undefined;
|
|
20800
21730
|
requiresVoltage?: string | number | undefined;
|
|
21731
|
+
doNotConnect?: boolean | undefined;
|
|
20801
21732
|
}, {
|
|
20802
21733
|
providesPower?: boolean | undefined;
|
|
20803
21734
|
requiresPower?: boolean | undefined;
|
|
@@ -20805,6 +21736,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
20805
21736
|
requiresGround?: boolean | undefined;
|
|
20806
21737
|
providesVoltage?: string | number | undefined;
|
|
20807
21738
|
requiresVoltage?: string | number | undefined;
|
|
21739
|
+
doNotConnect?: boolean | undefined;
|
|
20808
21740
|
}>>>;
|
|
20809
21741
|
} & {
|
|
20810
21742
|
pinCount: z.ZodNumber;
|
|
@@ -20975,6 +21907,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
20975
21907
|
requiresGround?: boolean | undefined;
|
|
20976
21908
|
providesVoltage?: string | number | undefined;
|
|
20977
21909
|
requiresVoltage?: string | number | undefined;
|
|
21910
|
+
doNotConnect?: boolean | undefined;
|
|
20978
21911
|
}> | undefined;
|
|
20979
21912
|
cadModel?: string | {
|
|
20980
21913
|
stlUrl: string;
|
|
@@ -21107,6 +22040,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
21107
22040
|
requiresGround?: boolean | undefined;
|
|
21108
22041
|
providesVoltage?: string | number | undefined;
|
|
21109
22042
|
requiresVoltage?: string | number | undefined;
|
|
22043
|
+
doNotConnect?: boolean | undefined;
|
|
21110
22044
|
}> | undefined;
|
|
21111
22045
|
cadModel?: string | {
|
|
21112
22046
|
stlUrl: string;
|
|
@@ -21555,6 +22489,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
21555
22489
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
21556
22490
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21557
22491
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22492
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
21558
22493
|
}, "strip", z.ZodTypeAny, {
|
|
21559
22494
|
providesPower?: boolean | undefined;
|
|
21560
22495
|
requiresPower?: boolean | undefined;
|
|
@@ -21562,6 +22497,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
21562
22497
|
requiresGround?: boolean | undefined;
|
|
21563
22498
|
providesVoltage?: string | number | undefined;
|
|
21564
22499
|
requiresVoltage?: string | number | undefined;
|
|
22500
|
+
doNotConnect?: boolean | undefined;
|
|
21565
22501
|
}, {
|
|
21566
22502
|
providesPower?: boolean | undefined;
|
|
21567
22503
|
requiresPower?: boolean | undefined;
|
|
@@ -21569,6 +22505,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
21569
22505
|
requiresGround?: boolean | undefined;
|
|
21570
22506
|
providesVoltage?: string | number | undefined;
|
|
21571
22507
|
requiresVoltage?: string | number | undefined;
|
|
22508
|
+
doNotConnect?: boolean | undefined;
|
|
21572
22509
|
}>>>;
|
|
21573
22510
|
} & {
|
|
21574
22511
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -21842,6 +22779,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
21842
22779
|
requiresGround?: boolean | undefined;
|
|
21843
22780
|
providesVoltage?: string | number | undefined;
|
|
21844
22781
|
requiresVoltage?: string | number | undefined;
|
|
22782
|
+
doNotConnect?: boolean | undefined;
|
|
21845
22783
|
}> | undefined;
|
|
21846
22784
|
cadModel?: string | {
|
|
21847
22785
|
stlUrl: string;
|
|
@@ -22000,6 +22938,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
22000
22938
|
requiresGround?: boolean | undefined;
|
|
22001
22939
|
providesVoltage?: string | number | undefined;
|
|
22002
22940
|
requiresVoltage?: string | number | undefined;
|
|
22941
|
+
doNotConnect?: boolean | undefined;
|
|
22003
22942
|
}> | undefined;
|
|
22004
22943
|
cadModel?: string | {
|
|
22005
22944
|
stlUrl: string;
|
|
@@ -23441,6 +24380,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
23441
24380
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
23442
24381
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23443
24382
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24383
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
23444
24384
|
}, "strip", z.ZodTypeAny, {
|
|
23445
24385
|
providesPower?: boolean | undefined;
|
|
23446
24386
|
requiresPower?: boolean | undefined;
|
|
@@ -23448,6 +24388,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
23448
24388
|
requiresGround?: boolean | undefined;
|
|
23449
24389
|
providesVoltage?: string | number | undefined;
|
|
23450
24390
|
requiresVoltage?: string | number | undefined;
|
|
24391
|
+
doNotConnect?: boolean | undefined;
|
|
23451
24392
|
}, {
|
|
23452
24393
|
providesPower?: boolean | undefined;
|
|
23453
24394
|
requiresPower?: boolean | undefined;
|
|
@@ -23455,6 +24396,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
23455
24396
|
requiresGround?: boolean | undefined;
|
|
23456
24397
|
providesVoltage?: string | number | undefined;
|
|
23457
24398
|
requiresVoltage?: string | number | undefined;
|
|
24399
|
+
doNotConnect?: boolean | undefined;
|
|
23458
24400
|
}>>>;
|
|
23459
24401
|
} & {
|
|
23460
24402
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -23482,6 +24424,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
23482
24424
|
requiresGround?: boolean | undefined;
|
|
23483
24425
|
providesVoltage?: string | number | undefined;
|
|
23484
24426
|
requiresVoltage?: string | number | undefined;
|
|
24427
|
+
doNotConnect?: boolean | undefined;
|
|
23485
24428
|
}> | undefined;
|
|
23486
24429
|
cadModel?: string | {
|
|
23487
24430
|
stlUrl: string;
|
|
@@ -23565,6 +24508,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
23565
24508
|
requiresGround?: boolean | undefined;
|
|
23566
24509
|
providesVoltage?: string | number | undefined;
|
|
23567
24510
|
requiresVoltage?: string | number | undefined;
|
|
24511
|
+
doNotConnect?: boolean | undefined;
|
|
23568
24512
|
}> | undefined;
|
|
23569
24513
|
cadModel?: string | {
|
|
23570
24514
|
stlUrl: string;
|
|
@@ -23898,6 +24842,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
23898
24842
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
23899
24843
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23900
24844
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24845
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
23901
24846
|
}, "strip", z.ZodTypeAny, {
|
|
23902
24847
|
providesPower?: boolean | undefined;
|
|
23903
24848
|
requiresPower?: boolean | undefined;
|
|
@@ -23905,6 +24850,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
23905
24850
|
requiresGround?: boolean | undefined;
|
|
23906
24851
|
providesVoltage?: string | number | undefined;
|
|
23907
24852
|
requiresVoltage?: string | number | undefined;
|
|
24853
|
+
doNotConnect?: boolean | undefined;
|
|
23908
24854
|
}, {
|
|
23909
24855
|
providesPower?: boolean | undefined;
|
|
23910
24856
|
requiresPower?: boolean | undefined;
|
|
@@ -23912,6 +24858,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
23912
24858
|
requiresGround?: boolean | undefined;
|
|
23913
24859
|
providesVoltage?: string | number | undefined;
|
|
23914
24860
|
requiresVoltage?: string | number | undefined;
|
|
24861
|
+
doNotConnect?: boolean | undefined;
|
|
23915
24862
|
}>>>;
|
|
23916
24863
|
} & {
|
|
23917
24864
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
@@ -23940,6 +24887,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
23940
24887
|
requiresGround?: boolean | undefined;
|
|
23941
24888
|
providesVoltage?: string | number | undefined;
|
|
23942
24889
|
requiresVoltage?: string | number | undefined;
|
|
24890
|
+
doNotConnect?: boolean | undefined;
|
|
23943
24891
|
}> | undefined;
|
|
23944
24892
|
cadModel?: string | {
|
|
23945
24893
|
stlUrl: string;
|
|
@@ -24023,6 +24971,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
24023
24971
|
requiresGround?: boolean | undefined;
|
|
24024
24972
|
providesVoltage?: string | number | undefined;
|
|
24025
24973
|
requiresVoltage?: string | number | undefined;
|
|
24974
|
+
doNotConnect?: boolean | undefined;
|
|
24026
24975
|
}> | undefined;
|
|
24027
24976
|
cadModel?: string | {
|
|
24028
24977
|
stlUrl: string;
|
|
@@ -24356,6 +25305,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
24356
25305
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
24357
25306
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24358
25307
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25308
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
24359
25309
|
}, "strip", z.ZodTypeAny, {
|
|
24360
25310
|
providesPower?: boolean | undefined;
|
|
24361
25311
|
requiresPower?: boolean | undefined;
|
|
@@ -24363,6 +25313,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
24363
25313
|
requiresGround?: boolean | undefined;
|
|
24364
25314
|
providesVoltage?: string | number | undefined;
|
|
24365
25315
|
requiresVoltage?: string | number | undefined;
|
|
25316
|
+
doNotConnect?: boolean | undefined;
|
|
24366
25317
|
}, {
|
|
24367
25318
|
providesPower?: boolean | undefined;
|
|
24368
25319
|
requiresPower?: boolean | undefined;
|
|
@@ -24370,6 +25321,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
24370
25321
|
requiresGround?: boolean | undefined;
|
|
24371
25322
|
providesVoltage?: string | number | undefined;
|
|
24372
25323
|
requiresVoltage?: string | number | undefined;
|
|
25324
|
+
doNotConnect?: boolean | undefined;
|
|
24373
25325
|
}>>>;
|
|
24374
25326
|
} & {
|
|
24375
25327
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -24398,6 +25350,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
24398
25350
|
requiresGround?: boolean | undefined;
|
|
24399
25351
|
providesVoltage?: string | number | undefined;
|
|
24400
25352
|
requiresVoltage?: string | number | undefined;
|
|
25353
|
+
doNotConnect?: boolean | undefined;
|
|
24401
25354
|
}> | undefined;
|
|
24402
25355
|
cadModel?: string | {
|
|
24403
25356
|
stlUrl: string;
|
|
@@ -24482,6 +25435,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
24482
25435
|
requiresGround?: boolean | undefined;
|
|
24483
25436
|
providesVoltage?: string | number | undefined;
|
|
24484
25437
|
requiresVoltage?: string | number | undefined;
|
|
25438
|
+
doNotConnect?: boolean | undefined;
|
|
24485
25439
|
}> | undefined;
|
|
24486
25440
|
cadModel?: string | {
|
|
24487
25441
|
stlUrl: string;
|
|
@@ -24812,6 +25766,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
24812
25766
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
24813
25767
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24814
25768
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25769
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
24815
25770
|
}, "strip", z.ZodTypeAny, {
|
|
24816
25771
|
providesPower?: boolean | undefined;
|
|
24817
25772
|
requiresPower?: boolean | undefined;
|
|
@@ -24819,6 +25774,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
24819
25774
|
requiresGround?: boolean | undefined;
|
|
24820
25775
|
providesVoltage?: string | number | undefined;
|
|
24821
25776
|
requiresVoltage?: string | number | undefined;
|
|
25777
|
+
doNotConnect?: boolean | undefined;
|
|
24822
25778
|
}, {
|
|
24823
25779
|
providesPower?: boolean | undefined;
|
|
24824
25780
|
requiresPower?: boolean | undefined;
|
|
@@ -24826,6 +25782,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
24826
25782
|
requiresGround?: boolean | undefined;
|
|
24827
25783
|
providesVoltage?: string | number | undefined;
|
|
24828
25784
|
requiresVoltage?: string | number | undefined;
|
|
25785
|
+
doNotConnect?: boolean | undefined;
|
|
24829
25786
|
}>>>;
|
|
24830
25787
|
} & {
|
|
24831
25788
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["anode", "cathode", "pin1", "pin2", "pos", "neg"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -24860,6 +25817,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
24860
25817
|
requiresGround?: boolean | undefined;
|
|
24861
25818
|
providesVoltage?: string | number | undefined;
|
|
24862
25819
|
requiresVoltage?: string | number | undefined;
|
|
25820
|
+
doNotConnect?: boolean | undefined;
|
|
24863
25821
|
}> | undefined;
|
|
24864
25822
|
cadModel?: string | {
|
|
24865
25823
|
stlUrl: string;
|
|
@@ -24949,6 +25907,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
24949
25907
|
requiresGround?: boolean | undefined;
|
|
24950
25908
|
providesVoltage?: string | number | undefined;
|
|
24951
25909
|
requiresVoltage?: string | number | undefined;
|
|
25910
|
+
doNotConnect?: boolean | undefined;
|
|
24952
25911
|
}> | undefined;
|
|
24953
25912
|
cadModel?: string | {
|
|
24954
25913
|
stlUrl: string;
|
|
@@ -25038,6 +25997,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
25038
25997
|
requiresGround?: boolean | undefined;
|
|
25039
25998
|
providesVoltage?: string | number | undefined;
|
|
25040
25999
|
requiresVoltage?: string | number | undefined;
|
|
26000
|
+
doNotConnect?: boolean | undefined;
|
|
25041
26001
|
}> | undefined;
|
|
25042
26002
|
cadModel?: string | {
|
|
25043
26003
|
stlUrl: string;
|
|
@@ -25127,6 +26087,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
25127
26087
|
requiresGround?: boolean | undefined;
|
|
25128
26088
|
providesVoltage?: string | number | undefined;
|
|
25129
26089
|
requiresVoltage?: string | number | undefined;
|
|
26090
|
+
doNotConnect?: boolean | undefined;
|
|
25130
26091
|
}> | undefined;
|
|
25131
26092
|
cadModel?: string | {
|
|
25132
26093
|
stlUrl: string;
|
|
@@ -25222,6 +26183,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
25222
26183
|
requiresGround?: boolean | undefined;
|
|
25223
26184
|
providesVoltage?: string | number | undefined;
|
|
25224
26185
|
requiresVoltage?: string | number | undefined;
|
|
26186
|
+
doNotConnect?: boolean | undefined;
|
|
25225
26187
|
}> | undefined;
|
|
25226
26188
|
cadModel?: string | {
|
|
25227
26189
|
stlUrl: string;
|
|
@@ -25305,6 +26267,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
25305
26267
|
requiresGround?: boolean | undefined;
|
|
25306
26268
|
providesVoltage?: string | number | undefined;
|
|
25307
26269
|
requiresVoltage?: string | number | undefined;
|
|
26270
|
+
doNotConnect?: boolean | undefined;
|
|
25308
26271
|
}> | undefined;
|
|
25309
26272
|
cadModel?: string | {
|
|
25310
26273
|
stlUrl: string;
|
|
@@ -25662,6 +26625,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
25662
26625
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
25663
26626
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25664
26627
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
26628
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
25665
26629
|
}, "strip", z.ZodTypeAny, {
|
|
25666
26630
|
providesPower?: boolean | undefined;
|
|
25667
26631
|
requiresPower?: boolean | undefined;
|
|
@@ -25669,6 +26633,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
25669
26633
|
requiresGround?: boolean | undefined;
|
|
25670
26634
|
providesVoltage?: string | number | undefined;
|
|
25671
26635
|
requiresVoltage?: string | number | undefined;
|
|
26636
|
+
doNotConnect?: boolean | undefined;
|
|
25672
26637
|
}, {
|
|
25673
26638
|
providesPower?: boolean | undefined;
|
|
25674
26639
|
requiresPower?: boolean | undefined;
|
|
@@ -25676,6 +26641,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
25676
26641
|
requiresGround?: boolean | undefined;
|
|
25677
26642
|
providesVoltage?: string | number | undefined;
|
|
25678
26643
|
requiresVoltage?: string | number | undefined;
|
|
26644
|
+
doNotConnect?: boolean | undefined;
|
|
25679
26645
|
}>>>;
|
|
25680
26646
|
} & {
|
|
25681
26647
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -25706,6 +26672,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
25706
26672
|
requiresGround?: boolean | undefined;
|
|
25707
26673
|
providesVoltage?: string | number | undefined;
|
|
25708
26674
|
requiresVoltage?: string | number | undefined;
|
|
26675
|
+
doNotConnect?: boolean | undefined;
|
|
25709
26676
|
}> | undefined;
|
|
25710
26677
|
cadModel?: string | {
|
|
25711
26678
|
stlUrl: string;
|
|
@@ -25793,6 +26760,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
25793
26760
|
requiresGround?: boolean | undefined;
|
|
25794
26761
|
providesVoltage?: string | number | undefined;
|
|
25795
26762
|
requiresVoltage?: string | number | undefined;
|
|
26763
|
+
doNotConnect?: boolean | undefined;
|
|
25796
26764
|
}> | undefined;
|
|
25797
26765
|
cadModel?: string | {
|
|
25798
26766
|
stlUrl: string;
|
|
@@ -26135,6 +27103,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
26135
27103
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
26136
27104
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
26137
27105
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
27106
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
26138
27107
|
}, "strip", z.ZodTypeAny, {
|
|
26139
27108
|
providesPower?: boolean | undefined;
|
|
26140
27109
|
requiresPower?: boolean | undefined;
|
|
@@ -26142,6 +27111,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
26142
27111
|
requiresGround?: boolean | undefined;
|
|
26143
27112
|
providesVoltage?: string | number | undefined;
|
|
26144
27113
|
requiresVoltage?: string | number | undefined;
|
|
27114
|
+
doNotConnect?: boolean | undefined;
|
|
26145
27115
|
}, {
|
|
26146
27116
|
providesPower?: boolean | undefined;
|
|
26147
27117
|
requiresPower?: boolean | undefined;
|
|
@@ -26149,6 +27119,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
26149
27119
|
requiresGround?: boolean | undefined;
|
|
26150
27120
|
providesVoltage?: string | number | undefined;
|
|
26151
27121
|
requiresVoltage?: string | number | undefined;
|
|
27122
|
+
doNotConnect?: boolean | undefined;
|
|
26152
27123
|
}>>>;
|
|
26153
27124
|
} & {
|
|
26154
27125
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -26181,6 +27152,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
26181
27152
|
requiresGround?: boolean | undefined;
|
|
26182
27153
|
providesVoltage?: string | number | undefined;
|
|
26183
27154
|
requiresVoltage?: string | number | undefined;
|
|
27155
|
+
doNotConnect?: boolean | undefined;
|
|
26184
27156
|
}> | undefined;
|
|
26185
27157
|
cadModel?: string | {
|
|
26186
27158
|
stlUrl: string;
|
|
@@ -26267,6 +27239,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
26267
27239
|
requiresGround?: boolean | undefined;
|
|
26268
27240
|
providesVoltage?: string | number | undefined;
|
|
26269
27241
|
requiresVoltage?: string | number | undefined;
|
|
27242
|
+
doNotConnect?: boolean | undefined;
|
|
26270
27243
|
}> | undefined;
|
|
26271
27244
|
cadModel?: string | {
|
|
26272
27245
|
stlUrl: string;
|
|
@@ -26354,6 +27327,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
26354
27327
|
requiresGround?: boolean | undefined;
|
|
26355
27328
|
providesVoltage?: string | number | undefined;
|
|
26356
27329
|
requiresVoltage?: string | number | undefined;
|
|
27330
|
+
doNotConnect?: boolean | undefined;
|
|
26357
27331
|
}> | undefined;
|
|
26358
27332
|
cadModel?: string | {
|
|
26359
27333
|
stlUrl: string;
|
|
@@ -26995,6 +27969,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
26995
27969
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
26996
27970
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
26997
27971
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
27972
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
26998
27973
|
}, "strip", z.ZodTypeAny, {
|
|
26999
27974
|
providesPower?: boolean | undefined;
|
|
27000
27975
|
requiresPower?: boolean | undefined;
|
|
@@ -27002,6 +27977,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
27002
27977
|
requiresGround?: boolean | undefined;
|
|
27003
27978
|
providesVoltage?: string | number | undefined;
|
|
27004
27979
|
requiresVoltage?: string | number | undefined;
|
|
27980
|
+
doNotConnect?: boolean | undefined;
|
|
27005
27981
|
}, {
|
|
27006
27982
|
providesPower?: boolean | undefined;
|
|
27007
27983
|
requiresPower?: boolean | undefined;
|
|
@@ -27009,6 +27985,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
27009
27985
|
requiresGround?: boolean | undefined;
|
|
27010
27986
|
providesVoltage?: string | number | undefined;
|
|
27011
27987
|
requiresVoltage?: string | number | undefined;
|
|
27988
|
+
doNotConnect?: boolean | undefined;
|
|
27012
27989
|
}>>>;
|
|
27013
27990
|
} & {
|
|
27014
27991
|
footprintVariant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -27040,6 +28017,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
27040
28017
|
requiresGround?: boolean | undefined;
|
|
27041
28018
|
providesVoltage?: string | number | undefined;
|
|
27042
28019
|
requiresVoltage?: string | number | undefined;
|
|
28020
|
+
doNotConnect?: boolean | undefined;
|
|
27043
28021
|
}> | undefined;
|
|
27044
28022
|
cadModel?: string | {
|
|
27045
28023
|
stlUrl: string;
|
|
@@ -27126,6 +28104,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
27126
28104
|
requiresGround?: boolean | undefined;
|
|
27127
28105
|
providesVoltage?: string | number | undefined;
|
|
27128
28106
|
requiresVoltage?: string | number | undefined;
|
|
28107
|
+
doNotConnect?: boolean | undefined;
|
|
27129
28108
|
}> | undefined;
|
|
27130
28109
|
cadModel?: string | {
|
|
27131
28110
|
stlUrl: string;
|
|
@@ -27212,6 +28191,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
27212
28191
|
requiresGround?: boolean | undefined;
|
|
27213
28192
|
providesVoltage?: string | number | undefined;
|
|
27214
28193
|
requiresVoltage?: string | number | undefined;
|
|
28194
|
+
doNotConnect?: boolean | undefined;
|
|
27215
28195
|
}> | undefined;
|
|
27216
28196
|
cadModel?: string | {
|
|
27217
28197
|
stlUrl: string;
|
|
@@ -27298,6 +28278,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
27298
28278
|
requiresGround?: boolean | undefined;
|
|
27299
28279
|
providesVoltage?: string | number | undefined;
|
|
27300
28280
|
requiresVoltage?: string | number | undefined;
|
|
28281
|
+
doNotConnect?: boolean | undefined;
|
|
27301
28282
|
}> | undefined;
|
|
27302
28283
|
cadModel?: string | {
|
|
27303
28284
|
stlUrl: string;
|
|
@@ -27745,6 +28726,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
27745
28726
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
27746
28727
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
27747
28728
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28729
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
27748
28730
|
}, "strip", z.ZodTypeAny, {
|
|
27749
28731
|
providesPower?: boolean | undefined;
|
|
27750
28732
|
requiresPower?: boolean | undefined;
|
|
@@ -27752,6 +28734,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
27752
28734
|
requiresGround?: boolean | undefined;
|
|
27753
28735
|
providesVoltage?: string | number | undefined;
|
|
27754
28736
|
requiresVoltage?: string | number | undefined;
|
|
28737
|
+
doNotConnect?: boolean | undefined;
|
|
27755
28738
|
}, {
|
|
27756
28739
|
providesPower?: boolean | undefined;
|
|
27757
28740
|
requiresPower?: boolean | undefined;
|
|
@@ -27759,6 +28742,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
27759
28742
|
requiresGround?: boolean | undefined;
|
|
27760
28743
|
providesVoltage?: string | number | undefined;
|
|
27761
28744
|
requiresVoltage?: string | number | undefined;
|
|
28745
|
+
doNotConnect?: boolean | undefined;
|
|
27762
28746
|
}>>>;
|
|
27763
28747
|
} & {
|
|
27764
28748
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -27785,6 +28769,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
27785
28769
|
requiresGround?: boolean | undefined;
|
|
27786
28770
|
providesVoltage?: string | number | undefined;
|
|
27787
28771
|
requiresVoltage?: string | number | undefined;
|
|
28772
|
+
doNotConnect?: boolean | undefined;
|
|
27788
28773
|
}> | undefined;
|
|
27789
28774
|
cadModel?: string | {
|
|
27790
28775
|
stlUrl: string;
|
|
@@ -27867,6 +28852,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
27867
28852
|
requiresGround?: boolean | undefined;
|
|
27868
28853
|
providesVoltage?: string | number | undefined;
|
|
27869
28854
|
requiresVoltage?: string | number | undefined;
|
|
28855
|
+
doNotConnect?: boolean | undefined;
|
|
27870
28856
|
}> | undefined;
|
|
27871
28857
|
cadModel?: string | {
|
|
27872
28858
|
stlUrl: string;
|
|
@@ -28203,6 +29189,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
28203
29189
|
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
28204
29190
|
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28205
29191
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
29192
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
28206
29193
|
}, "strip", z.ZodTypeAny, {
|
|
28207
29194
|
providesPower?: boolean | undefined;
|
|
28208
29195
|
requiresPower?: boolean | undefined;
|
|
@@ -28210,6 +29197,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
28210
29197
|
requiresGround?: boolean | undefined;
|
|
28211
29198
|
providesVoltage?: string | number | undefined;
|
|
28212
29199
|
requiresVoltage?: string | number | undefined;
|
|
29200
|
+
doNotConnect?: boolean | undefined;
|
|
28213
29201
|
}, {
|
|
28214
29202
|
providesPower?: boolean | undefined;
|
|
28215
29203
|
requiresPower?: boolean | undefined;
|
|
@@ -28217,6 +29205,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
28217
29205
|
requiresGround?: boolean | undefined;
|
|
28218
29206
|
providesVoltage?: string | number | undefined;
|
|
28219
29207
|
requiresVoltage?: string | number | undefined;
|
|
29208
|
+
doNotConnect?: boolean | undefined;
|
|
28220
29209
|
}>>>;
|
|
28221
29210
|
} & {
|
|
28222
29211
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -28247,6 +29236,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
28247
29236
|
requiresGround?: boolean | undefined;
|
|
28248
29237
|
providesVoltage?: string | number | undefined;
|
|
28249
29238
|
requiresVoltage?: string | number | undefined;
|
|
29239
|
+
doNotConnect?: boolean | undefined;
|
|
28250
29240
|
}> | undefined;
|
|
28251
29241
|
cadModel?: string | {
|
|
28252
29242
|
stlUrl: string;
|
|
@@ -28334,6 +29324,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
28334
29324
|
requiresGround?: boolean | undefined;
|
|
28335
29325
|
providesVoltage?: string | number | undefined;
|
|
28336
29326
|
requiresVoltage?: string | number | undefined;
|
|
29327
|
+
doNotConnect?: boolean | undefined;
|
|
28337
29328
|
}> | undefined;
|
|
28338
29329
|
cadModel?: string | {
|
|
28339
29330
|
stlUrl: string;
|
|
@@ -29247,4 +30238,4 @@ interface PlatformConfig {
|
|
|
29247
30238
|
}
|
|
29248
30239
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
29249
30240
|
|
|
29250
|
-
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageSourceProps, type WaveShape, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourceProps };
|
|
30241
|
+
export { type AutocompleteString, type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadModelBase, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelStl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CrystalPinLabels, type CrystalProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNotePathProps, type FabricationNoteTextProps, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type JumperProps, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OvalPlatedHoleProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type PushButtonProps, type RectCutoutProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchematicBoxProps, type SchematicCellProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRowProps, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type TestpointProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageSourceProps, type WaveShape, autorouterConfig, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelJscad, cadModelObj, cadModelProp, cadModelStl, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, crystalPins, crystalProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNotePathProps, fabricationNoteTextProps, footprintProp, footprintProps, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, jumperProps, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerProps, powerSourceProps, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schematicBoxProps, schematicCellProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRowProps, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, supplierProps, switchProps, testpointProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageSourceProps };
|