@tscircuit/props 0.0.261 → 0.0.262
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/dist/index.d.ts +1000 -81
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +22 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -704,10 +704,40 @@ declare const supplierProps: z.ZodObject<{
|
|
|
704
704
|
}, {
|
|
705
705
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
706
706
|
}>;
|
|
707
|
+
interface PinAttributeMap {
|
|
708
|
+
providesPower?: boolean;
|
|
709
|
+
requiresPower?: boolean;
|
|
710
|
+
providesGround?: boolean;
|
|
711
|
+
requiresGround?: boolean;
|
|
712
|
+
providesVoltage?: string | number;
|
|
713
|
+
requiresVoltage?: string | number;
|
|
714
|
+
}
|
|
715
|
+
declare const pinAttributeMap: z.ZodObject<{
|
|
716
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
717
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
718
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
719
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
720
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
721
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
722
|
+
}, "strip", z.ZodTypeAny, {
|
|
723
|
+
providesPower?: boolean | undefined;
|
|
724
|
+
requiresPower?: boolean | undefined;
|
|
725
|
+
providesGround?: boolean | undefined;
|
|
726
|
+
requiresGround?: boolean | undefined;
|
|
727
|
+
providesVoltage?: string | number | undefined;
|
|
728
|
+
requiresVoltage?: string | number | undefined;
|
|
729
|
+
}, {
|
|
730
|
+
providesPower?: boolean | undefined;
|
|
731
|
+
requiresPower?: boolean | undefined;
|
|
732
|
+
providesGround?: boolean | undefined;
|
|
733
|
+
requiresGround?: boolean | undefined;
|
|
734
|
+
providesVoltage?: string | number | undefined;
|
|
735
|
+
requiresVoltage?: string | number | undefined;
|
|
736
|
+
}>;
|
|
707
737
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
708
738
|
key?: any;
|
|
709
739
|
name: string;
|
|
710
|
-
pinAttributes?: Record<PinLabel,
|
|
740
|
+
pinAttributes?: Record<PinLabel, PinAttributeMap>;
|
|
711
741
|
supplierPartNumbers?: SupplierPartNumbers;
|
|
712
742
|
cadModel?: CadModelProp;
|
|
713
743
|
children?: any;
|
|
@@ -971,7 +1001,28 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
971
1001
|
children: z.ZodOptional<z.ZodAny>;
|
|
972
1002
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
973
1003
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
974
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
1004
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1005
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
1006
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
1007
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
1008
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
1009
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1010
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1011
|
+
}, "strip", z.ZodTypeAny, {
|
|
1012
|
+
providesPower?: boolean | undefined;
|
|
1013
|
+
requiresPower?: boolean | undefined;
|
|
1014
|
+
providesGround?: boolean | undefined;
|
|
1015
|
+
requiresGround?: boolean | undefined;
|
|
1016
|
+
providesVoltage?: string | number | undefined;
|
|
1017
|
+
requiresVoltage?: string | number | undefined;
|
|
1018
|
+
}, {
|
|
1019
|
+
providesPower?: boolean | undefined;
|
|
1020
|
+
requiresPower?: boolean | undefined;
|
|
1021
|
+
providesGround?: boolean | undefined;
|
|
1022
|
+
requiresGround?: boolean | undefined;
|
|
1023
|
+
providesVoltage?: string | number | undefined;
|
|
1024
|
+
requiresVoltage?: string | number | undefined;
|
|
1025
|
+
}>>>;
|
|
975
1026
|
}, "strip", z.ZodTypeAny, {
|
|
976
1027
|
name: string;
|
|
977
1028
|
pcbX?: number | undefined;
|
|
@@ -984,7 +1035,14 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
984
1035
|
footprint?: FootprintProp | undefined;
|
|
985
1036
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
986
1037
|
key?: any;
|
|
987
|
-
pinAttributes?: Record<string,
|
|
1038
|
+
pinAttributes?: Record<string, {
|
|
1039
|
+
providesPower?: boolean | undefined;
|
|
1040
|
+
requiresPower?: boolean | undefined;
|
|
1041
|
+
providesGround?: boolean | undefined;
|
|
1042
|
+
requiresGround?: boolean | undefined;
|
|
1043
|
+
providesVoltage?: string | number | undefined;
|
|
1044
|
+
requiresVoltage?: string | number | undefined;
|
|
1045
|
+
}> | undefined;
|
|
988
1046
|
cadModel?: string | {
|
|
989
1047
|
stlUrl: string;
|
|
990
1048
|
rotationOffset?: number | {
|
|
@@ -1055,7 +1113,14 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
1055
1113
|
footprint?: FootprintProp | undefined;
|
|
1056
1114
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1057
1115
|
key?: any;
|
|
1058
|
-
pinAttributes?: Record<string,
|
|
1116
|
+
pinAttributes?: Record<string, {
|
|
1117
|
+
providesPower?: boolean | undefined;
|
|
1118
|
+
requiresPower?: boolean | undefined;
|
|
1119
|
+
providesGround?: boolean | undefined;
|
|
1120
|
+
requiresGround?: boolean | undefined;
|
|
1121
|
+
providesVoltage?: string | number | undefined;
|
|
1122
|
+
requiresVoltage?: string | number | undefined;
|
|
1123
|
+
}> | undefined;
|
|
1059
1124
|
cadModel?: string | {
|
|
1060
1125
|
stlUrl: string;
|
|
1061
1126
|
rotationOffset?: number | {
|
|
@@ -1370,7 +1435,28 @@ declare const componentProps: z.ZodObject<{
|
|
|
1370
1435
|
children: z.ZodOptional<z.ZodAny>;
|
|
1371
1436
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
1372
1437
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
1373
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
1438
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1439
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
1440
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
1441
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
1442
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
1443
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1444
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1445
|
+
}, "strip", z.ZodTypeAny, {
|
|
1446
|
+
providesPower?: boolean | undefined;
|
|
1447
|
+
requiresPower?: boolean | undefined;
|
|
1448
|
+
providesGround?: boolean | undefined;
|
|
1449
|
+
requiresGround?: boolean | undefined;
|
|
1450
|
+
providesVoltage?: string | number | undefined;
|
|
1451
|
+
requiresVoltage?: string | number | undefined;
|
|
1452
|
+
}, {
|
|
1453
|
+
providesPower?: boolean | undefined;
|
|
1454
|
+
requiresPower?: boolean | undefined;
|
|
1455
|
+
providesGround?: boolean | undefined;
|
|
1456
|
+
requiresGround?: boolean | undefined;
|
|
1457
|
+
providesVoltage?: string | number | undefined;
|
|
1458
|
+
requiresVoltage?: string | number | undefined;
|
|
1459
|
+
}>>>;
|
|
1374
1460
|
}, "strip", z.ZodTypeAny, {
|
|
1375
1461
|
name: string;
|
|
1376
1462
|
pcbX?: number | undefined;
|
|
@@ -1383,7 +1469,14 @@ declare const componentProps: z.ZodObject<{
|
|
|
1383
1469
|
footprint?: FootprintProp | undefined;
|
|
1384
1470
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1385
1471
|
key?: any;
|
|
1386
|
-
pinAttributes?: Record<string,
|
|
1472
|
+
pinAttributes?: Record<string, {
|
|
1473
|
+
providesPower?: boolean | undefined;
|
|
1474
|
+
requiresPower?: boolean | undefined;
|
|
1475
|
+
providesGround?: boolean | undefined;
|
|
1476
|
+
requiresGround?: boolean | undefined;
|
|
1477
|
+
providesVoltage?: string | number | undefined;
|
|
1478
|
+
requiresVoltage?: string | number | undefined;
|
|
1479
|
+
}> | undefined;
|
|
1387
1480
|
cadModel?: string | {
|
|
1388
1481
|
stlUrl: string;
|
|
1389
1482
|
rotationOffset?: number | {
|
|
@@ -1454,7 +1547,14 @@ declare const componentProps: z.ZodObject<{
|
|
|
1454
1547
|
footprint?: FootprintProp | undefined;
|
|
1455
1548
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
1456
1549
|
key?: any;
|
|
1457
|
-
pinAttributes?: Record<string,
|
|
1550
|
+
pinAttributes?: Record<string, {
|
|
1551
|
+
providesPower?: boolean | undefined;
|
|
1552
|
+
requiresPower?: boolean | undefined;
|
|
1553
|
+
providesGround?: boolean | undefined;
|
|
1554
|
+
requiresGround?: boolean | undefined;
|
|
1555
|
+
providesVoltage?: string | number | undefined;
|
|
1556
|
+
requiresVoltage?: string | number | undefined;
|
|
1557
|
+
}> | undefined;
|
|
1458
1558
|
cadModel?: string | {
|
|
1459
1559
|
stlUrl: string;
|
|
1460
1560
|
rotationOffset?: number | {
|
|
@@ -8416,7 +8516,28 @@ declare const chipProps: z.ZodObject<{
|
|
|
8416
8516
|
children: z.ZodOptional<z.ZodAny>;
|
|
8417
8517
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
8418
8518
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
8419
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8519
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8520
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
8521
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
8522
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
8523
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
8524
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
8525
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
8526
|
+
}, "strip", z.ZodTypeAny, {
|
|
8527
|
+
providesPower?: boolean | undefined;
|
|
8528
|
+
requiresPower?: boolean | undefined;
|
|
8529
|
+
providesGround?: boolean | undefined;
|
|
8530
|
+
requiresGround?: boolean | undefined;
|
|
8531
|
+
providesVoltage?: string | number | undefined;
|
|
8532
|
+
requiresVoltage?: string | number | undefined;
|
|
8533
|
+
}, {
|
|
8534
|
+
providesPower?: boolean | undefined;
|
|
8535
|
+
requiresPower?: boolean | undefined;
|
|
8536
|
+
providesGround?: boolean | undefined;
|
|
8537
|
+
requiresGround?: boolean | undefined;
|
|
8538
|
+
providesVoltage?: string | number | undefined;
|
|
8539
|
+
requiresVoltage?: string | number | undefined;
|
|
8540
|
+
}>>>;
|
|
8420
8541
|
} & {
|
|
8421
8542
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
8422
8543
|
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">]>>>;
|
|
@@ -8679,7 +8800,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
8679
8800
|
footprint?: FootprintProp | undefined;
|
|
8680
8801
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8681
8802
|
key?: any;
|
|
8682
|
-
pinAttributes?: Record<string,
|
|
8803
|
+
pinAttributes?: Record<string, {
|
|
8804
|
+
providesPower?: boolean | undefined;
|
|
8805
|
+
requiresPower?: boolean | undefined;
|
|
8806
|
+
providesGround?: boolean | undefined;
|
|
8807
|
+
requiresGround?: boolean | undefined;
|
|
8808
|
+
providesVoltage?: string | number | undefined;
|
|
8809
|
+
requiresVoltage?: string | number | undefined;
|
|
8810
|
+
}> | undefined;
|
|
8683
8811
|
cadModel?: string | {
|
|
8684
8812
|
stlUrl: string;
|
|
8685
8813
|
rotationOffset?: number | {
|
|
@@ -8827,7 +8955,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
8827
8955
|
footprint?: FootprintProp | undefined;
|
|
8828
8956
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8829
8957
|
key?: any;
|
|
8830
|
-
pinAttributes?: Record<string,
|
|
8958
|
+
pinAttributes?: Record<string, {
|
|
8959
|
+
providesPower?: boolean | undefined;
|
|
8960
|
+
requiresPower?: boolean | undefined;
|
|
8961
|
+
providesGround?: boolean | undefined;
|
|
8962
|
+
requiresGround?: boolean | undefined;
|
|
8963
|
+
providesVoltage?: string | number | undefined;
|
|
8964
|
+
requiresVoltage?: string | number | undefined;
|
|
8965
|
+
}> | undefined;
|
|
8831
8966
|
cadModel?: string | {
|
|
8832
8967
|
stlUrl: string;
|
|
8833
8968
|
rotationOffset?: number | {
|
|
@@ -9222,7 +9357,28 @@ declare const bugProps: z.ZodObject<{
|
|
|
9222
9357
|
children: z.ZodOptional<z.ZodAny>;
|
|
9223
9358
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
9224
9359
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
9225
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9360
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9361
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
9362
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
9363
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
9364
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
9365
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9366
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9367
|
+
}, "strip", z.ZodTypeAny, {
|
|
9368
|
+
providesPower?: boolean | undefined;
|
|
9369
|
+
requiresPower?: boolean | undefined;
|
|
9370
|
+
providesGround?: boolean | undefined;
|
|
9371
|
+
requiresGround?: boolean | undefined;
|
|
9372
|
+
providesVoltage?: string | number | undefined;
|
|
9373
|
+
requiresVoltage?: string | number | undefined;
|
|
9374
|
+
}, {
|
|
9375
|
+
providesPower?: boolean | undefined;
|
|
9376
|
+
requiresPower?: boolean | undefined;
|
|
9377
|
+
providesGround?: boolean | undefined;
|
|
9378
|
+
requiresGround?: boolean | undefined;
|
|
9379
|
+
providesVoltage?: string | number | undefined;
|
|
9380
|
+
requiresVoltage?: string | number | undefined;
|
|
9381
|
+
}>>>;
|
|
9226
9382
|
} & {
|
|
9227
9383
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
9228
9384
|
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">]>>>;
|
|
@@ -9485,7 +9641,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
9485
9641
|
footprint?: FootprintProp | undefined;
|
|
9486
9642
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9487
9643
|
key?: any;
|
|
9488
|
-
pinAttributes?: Record<string,
|
|
9644
|
+
pinAttributes?: Record<string, {
|
|
9645
|
+
providesPower?: boolean | undefined;
|
|
9646
|
+
requiresPower?: boolean | undefined;
|
|
9647
|
+
providesGround?: boolean | undefined;
|
|
9648
|
+
requiresGround?: boolean | undefined;
|
|
9649
|
+
providesVoltage?: string | number | undefined;
|
|
9650
|
+
requiresVoltage?: string | number | undefined;
|
|
9651
|
+
}> | undefined;
|
|
9489
9652
|
cadModel?: string | {
|
|
9490
9653
|
stlUrl: string;
|
|
9491
9654
|
rotationOffset?: number | {
|
|
@@ -9633,7 +9796,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
9633
9796
|
footprint?: FootprintProp | undefined;
|
|
9634
9797
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9635
9798
|
key?: any;
|
|
9636
|
-
pinAttributes?: Record<string,
|
|
9799
|
+
pinAttributes?: Record<string, {
|
|
9800
|
+
providesPower?: boolean | undefined;
|
|
9801
|
+
requiresPower?: boolean | undefined;
|
|
9802
|
+
providesGround?: boolean | undefined;
|
|
9803
|
+
requiresGround?: boolean | undefined;
|
|
9804
|
+
providesVoltage?: string | number | undefined;
|
|
9805
|
+
requiresVoltage?: string | number | undefined;
|
|
9806
|
+
}> | undefined;
|
|
9637
9807
|
cadModel?: string | {
|
|
9638
9808
|
stlUrl: string;
|
|
9639
9809
|
rotationOffset?: number | {
|
|
@@ -10054,7 +10224,28 @@ declare const jumperProps: z.ZodObject<{
|
|
|
10054
10224
|
children: z.ZodOptional<z.ZodAny>;
|
|
10055
10225
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10056
10226
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10057
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10227
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10228
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
10229
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
10230
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
10231
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
10232
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10233
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10234
|
+
}, "strip", z.ZodTypeAny, {
|
|
10235
|
+
providesPower?: boolean | undefined;
|
|
10236
|
+
requiresPower?: boolean | undefined;
|
|
10237
|
+
providesGround?: boolean | undefined;
|
|
10238
|
+
requiresGround?: boolean | undefined;
|
|
10239
|
+
providesVoltage?: string | number | undefined;
|
|
10240
|
+
requiresVoltage?: string | number | undefined;
|
|
10241
|
+
}, {
|
|
10242
|
+
providesPower?: boolean | undefined;
|
|
10243
|
+
requiresPower?: boolean | undefined;
|
|
10244
|
+
providesGround?: boolean | undefined;
|
|
10245
|
+
requiresGround?: boolean | undefined;
|
|
10246
|
+
providesVoltage?: string | number | undefined;
|
|
10247
|
+
requiresVoltage?: string | number | undefined;
|
|
10248
|
+
}>>>;
|
|
10058
10249
|
} & {
|
|
10059
10250
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
10060
10251
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -10206,7 +10397,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
10206
10397
|
footprint?: FootprintProp | undefined;
|
|
10207
10398
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10208
10399
|
key?: any;
|
|
10209
|
-
pinAttributes?: Record<string,
|
|
10400
|
+
pinAttributes?: Record<string, {
|
|
10401
|
+
providesPower?: boolean | undefined;
|
|
10402
|
+
requiresPower?: boolean | undefined;
|
|
10403
|
+
providesGround?: boolean | undefined;
|
|
10404
|
+
requiresGround?: boolean | undefined;
|
|
10405
|
+
providesVoltage?: string | number | undefined;
|
|
10406
|
+
requiresVoltage?: string | number | undefined;
|
|
10407
|
+
}> | undefined;
|
|
10210
10408
|
cadModel?: string | {
|
|
10211
10409
|
stlUrl: string;
|
|
10212
10410
|
rotationOffset?: number | {
|
|
@@ -10323,7 +10521,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
10323
10521
|
footprint?: FootprintProp | undefined;
|
|
10324
10522
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10325
10523
|
key?: any;
|
|
10326
|
-
pinAttributes?: Record<string,
|
|
10524
|
+
pinAttributes?: Record<string, {
|
|
10525
|
+
providesPower?: boolean | undefined;
|
|
10526
|
+
requiresPower?: boolean | undefined;
|
|
10527
|
+
providesGround?: boolean | undefined;
|
|
10528
|
+
requiresGround?: boolean | undefined;
|
|
10529
|
+
providesVoltage?: string | number | undefined;
|
|
10530
|
+
requiresVoltage?: string | number | undefined;
|
|
10531
|
+
}> | undefined;
|
|
10327
10532
|
cadModel?: string | {
|
|
10328
10533
|
stlUrl: string;
|
|
10329
10534
|
rotationOffset?: number | {
|
|
@@ -10695,7 +10900,28 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
10695
10900
|
children: z.ZodOptional<z.ZodAny>;
|
|
10696
10901
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10697
10902
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10698
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10903
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10904
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
10905
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
10906
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
10907
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
10908
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10909
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10910
|
+
}, "strip", z.ZodTypeAny, {
|
|
10911
|
+
providesPower?: boolean | undefined;
|
|
10912
|
+
requiresPower?: boolean | undefined;
|
|
10913
|
+
providesGround?: boolean | undefined;
|
|
10914
|
+
requiresGround?: boolean | undefined;
|
|
10915
|
+
providesVoltage?: string | number | undefined;
|
|
10916
|
+
requiresVoltage?: string | number | undefined;
|
|
10917
|
+
}, {
|
|
10918
|
+
providesPower?: boolean | undefined;
|
|
10919
|
+
requiresPower?: boolean | undefined;
|
|
10920
|
+
providesGround?: boolean | undefined;
|
|
10921
|
+
requiresGround?: boolean | undefined;
|
|
10922
|
+
providesVoltage?: string | number | undefined;
|
|
10923
|
+
requiresVoltage?: string | number | undefined;
|
|
10924
|
+
}>>>;
|
|
10699
10925
|
} & {
|
|
10700
10926
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
10701
10927
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -10850,7 +11076,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
10850
11076
|
footprint?: FootprintProp | undefined;
|
|
10851
11077
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10852
11078
|
key?: any;
|
|
10853
|
-
pinAttributes?: Record<string,
|
|
11079
|
+
pinAttributes?: Record<string, {
|
|
11080
|
+
providesPower?: boolean | undefined;
|
|
11081
|
+
requiresPower?: boolean | undefined;
|
|
11082
|
+
providesGround?: boolean | undefined;
|
|
11083
|
+
requiresGround?: boolean | undefined;
|
|
11084
|
+
providesVoltage?: string | number | undefined;
|
|
11085
|
+
requiresVoltage?: string | number | undefined;
|
|
11086
|
+
}> | undefined;
|
|
10854
11087
|
cadModel?: string | {
|
|
10855
11088
|
stlUrl: string;
|
|
10856
11089
|
rotationOffset?: number | {
|
|
@@ -10969,7 +11202,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
10969
11202
|
footprint?: FootprintProp | undefined;
|
|
10970
11203
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10971
11204
|
key?: any;
|
|
10972
|
-
pinAttributes?: Record<string,
|
|
11205
|
+
pinAttributes?: Record<string, {
|
|
11206
|
+
providesPower?: boolean | undefined;
|
|
11207
|
+
requiresPower?: boolean | undefined;
|
|
11208
|
+
providesGround?: boolean | undefined;
|
|
11209
|
+
requiresGround?: boolean | undefined;
|
|
11210
|
+
providesVoltage?: string | number | undefined;
|
|
11211
|
+
requiresVoltage?: string | number | undefined;
|
|
11212
|
+
}> | undefined;
|
|
10973
11213
|
cadModel?: string | {
|
|
10974
11214
|
stlUrl: string;
|
|
10975
11215
|
rotationOffset?: number | {
|
|
@@ -11352,7 +11592,28 @@ declare const connectorProps: z.ZodObject<{
|
|
|
11352
11592
|
children: z.ZodOptional<z.ZodAny>;
|
|
11353
11593
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
11354
11594
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
11355
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11595
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11596
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
11597
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
11598
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
11599
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
11600
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11601
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11602
|
+
}, "strip", z.ZodTypeAny, {
|
|
11603
|
+
providesPower?: boolean | undefined;
|
|
11604
|
+
requiresPower?: boolean | undefined;
|
|
11605
|
+
providesGround?: boolean | undefined;
|
|
11606
|
+
requiresGround?: boolean | undefined;
|
|
11607
|
+
providesVoltage?: string | number | undefined;
|
|
11608
|
+
requiresVoltage?: string | number | undefined;
|
|
11609
|
+
}, {
|
|
11610
|
+
providesPower?: boolean | undefined;
|
|
11611
|
+
requiresPower?: boolean | undefined;
|
|
11612
|
+
providesGround?: boolean | undefined;
|
|
11613
|
+
requiresGround?: boolean | undefined;
|
|
11614
|
+
providesVoltage?: string | number | undefined;
|
|
11615
|
+
requiresVoltage?: string | number | undefined;
|
|
11616
|
+
}>>>;
|
|
11356
11617
|
} & {
|
|
11357
11618
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
11358
11619
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -11502,7 +11763,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
11502
11763
|
footprint?: FootprintProp | undefined;
|
|
11503
11764
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11504
11765
|
key?: any;
|
|
11505
|
-
pinAttributes?: Record<string,
|
|
11766
|
+
pinAttributes?: Record<string, {
|
|
11767
|
+
providesPower?: boolean | undefined;
|
|
11768
|
+
requiresPower?: boolean | undefined;
|
|
11769
|
+
providesGround?: boolean | undefined;
|
|
11770
|
+
requiresGround?: boolean | undefined;
|
|
11771
|
+
providesVoltage?: string | number | undefined;
|
|
11772
|
+
requiresVoltage?: string | number | undefined;
|
|
11773
|
+
}> | undefined;
|
|
11506
11774
|
cadModel?: string | {
|
|
11507
11775
|
stlUrl: string;
|
|
11508
11776
|
rotationOffset?: number | {
|
|
@@ -11617,7 +11885,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
11617
11885
|
footprint?: FootprintProp | undefined;
|
|
11618
11886
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11619
11887
|
key?: any;
|
|
11620
|
-
pinAttributes?: Record<string,
|
|
11888
|
+
pinAttributes?: Record<string, {
|
|
11889
|
+
providesPower?: boolean | undefined;
|
|
11890
|
+
requiresPower?: boolean | undefined;
|
|
11891
|
+
providesGround?: boolean | undefined;
|
|
11892
|
+
requiresGround?: boolean | undefined;
|
|
11893
|
+
providesVoltage?: string | number | undefined;
|
|
11894
|
+
requiresVoltage?: string | number | undefined;
|
|
11895
|
+
}> | undefined;
|
|
11621
11896
|
cadModel?: string | {
|
|
11622
11897
|
stlUrl: string;
|
|
11623
11898
|
rotationOffset?: number | {
|
|
@@ -12004,7 +12279,28 @@ declare const fuseProps: z.ZodObject<{
|
|
|
12004
12279
|
children: z.ZodOptional<z.ZodAny>;
|
|
12005
12280
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
12006
12281
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
12007
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12282
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12283
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
12284
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
12285
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
12286
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
12287
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12288
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12289
|
+
}, "strip", z.ZodTypeAny, {
|
|
12290
|
+
providesPower?: boolean | undefined;
|
|
12291
|
+
requiresPower?: boolean | undefined;
|
|
12292
|
+
providesGround?: boolean | undefined;
|
|
12293
|
+
requiresGround?: boolean | undefined;
|
|
12294
|
+
providesVoltage?: string | number | undefined;
|
|
12295
|
+
requiresVoltage?: string | number | undefined;
|
|
12296
|
+
}, {
|
|
12297
|
+
providesPower?: boolean | undefined;
|
|
12298
|
+
requiresPower?: boolean | undefined;
|
|
12299
|
+
providesGround?: boolean | undefined;
|
|
12300
|
+
requiresGround?: boolean | undefined;
|
|
12301
|
+
providesVoltage?: string | number | undefined;
|
|
12302
|
+
requiresVoltage?: string | number | undefined;
|
|
12303
|
+
}>>>;
|
|
12008
12304
|
} & {
|
|
12009
12305
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12010
12306
|
voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -12024,7 +12320,14 @@ declare const fuseProps: z.ZodObject<{
|
|
|
12024
12320
|
footprint?: FootprintProp | undefined;
|
|
12025
12321
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12026
12322
|
key?: any;
|
|
12027
|
-
pinAttributes?: Record<string,
|
|
12323
|
+
pinAttributes?: Record<string, {
|
|
12324
|
+
providesPower?: boolean | undefined;
|
|
12325
|
+
requiresPower?: boolean | undefined;
|
|
12326
|
+
providesGround?: boolean | undefined;
|
|
12327
|
+
requiresGround?: boolean | undefined;
|
|
12328
|
+
providesVoltage?: string | number | undefined;
|
|
12329
|
+
requiresVoltage?: string | number | undefined;
|
|
12330
|
+
}> | undefined;
|
|
12028
12331
|
cadModel?: string | {
|
|
12029
12332
|
stlUrl: string;
|
|
12030
12333
|
rotationOffset?: number | {
|
|
@@ -12100,7 +12403,14 @@ declare const fuseProps: z.ZodObject<{
|
|
|
12100
12403
|
footprint?: FootprintProp | undefined;
|
|
12101
12404
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12102
12405
|
key?: any;
|
|
12103
|
-
pinAttributes?: Record<string,
|
|
12406
|
+
pinAttributes?: Record<string, {
|
|
12407
|
+
providesPower?: boolean | undefined;
|
|
12408
|
+
requiresPower?: boolean | undefined;
|
|
12409
|
+
providesGround?: boolean | undefined;
|
|
12410
|
+
requiresGround?: boolean | undefined;
|
|
12411
|
+
providesVoltage?: string | number | undefined;
|
|
12412
|
+
requiresVoltage?: string | number | undefined;
|
|
12413
|
+
}> | undefined;
|
|
12104
12414
|
cadModel?: string | {
|
|
12105
12415
|
stlUrl: string;
|
|
12106
12416
|
rotationOffset?: number | {
|
|
@@ -12849,7 +13159,28 @@ declare const resistorProps: z.ZodObject<{
|
|
|
12849
13159
|
children: z.ZodOptional<z.ZodAny>;
|
|
12850
13160
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
12851
13161
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
12852
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13162
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13163
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
13164
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
13165
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
13166
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
13167
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13168
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13169
|
+
}, "strip", z.ZodTypeAny, {
|
|
13170
|
+
providesPower?: boolean | undefined;
|
|
13171
|
+
requiresPower?: boolean | undefined;
|
|
13172
|
+
providesGround?: boolean | undefined;
|
|
13173
|
+
requiresGround?: boolean | undefined;
|
|
13174
|
+
providesVoltage?: string | number | undefined;
|
|
13175
|
+
requiresVoltage?: string | number | undefined;
|
|
13176
|
+
}, {
|
|
13177
|
+
providesPower?: boolean | undefined;
|
|
13178
|
+
requiresPower?: boolean | undefined;
|
|
13179
|
+
providesGround?: boolean | undefined;
|
|
13180
|
+
requiresGround?: boolean | undefined;
|
|
13181
|
+
providesVoltage?: string | number | undefined;
|
|
13182
|
+
requiresVoltage?: string | number | undefined;
|
|
13183
|
+
}>>>;
|
|
12853
13184
|
} & {
|
|
12854
13185
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12855
13186
|
pullupFor: z.ZodOptional<z.ZodString>;
|
|
@@ -12871,7 +13202,14 @@ declare const resistorProps: z.ZodObject<{
|
|
|
12871
13202
|
footprint?: FootprintProp | undefined;
|
|
12872
13203
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12873
13204
|
key?: any;
|
|
12874
|
-
pinAttributes?: Record<string,
|
|
13205
|
+
pinAttributes?: Record<string, {
|
|
13206
|
+
providesPower?: boolean | undefined;
|
|
13207
|
+
requiresPower?: boolean | undefined;
|
|
13208
|
+
providesGround?: boolean | undefined;
|
|
13209
|
+
requiresGround?: boolean | undefined;
|
|
13210
|
+
providesVoltage?: string | number | undefined;
|
|
13211
|
+
requiresVoltage?: string | number | undefined;
|
|
13212
|
+
}> | undefined;
|
|
12875
13213
|
cadModel?: string | {
|
|
12876
13214
|
stlUrl: string;
|
|
12877
13215
|
rotationOffset?: number | {
|
|
@@ -12949,7 +13287,14 @@ declare const resistorProps: z.ZodObject<{
|
|
|
12949
13287
|
footprint?: FootprintProp | undefined;
|
|
12950
13288
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12951
13289
|
key?: any;
|
|
12952
|
-
pinAttributes?: Record<string,
|
|
13290
|
+
pinAttributes?: Record<string, {
|
|
13291
|
+
providesPower?: boolean | undefined;
|
|
13292
|
+
requiresPower?: boolean | undefined;
|
|
13293
|
+
providesGround?: boolean | undefined;
|
|
13294
|
+
requiresGround?: boolean | undefined;
|
|
13295
|
+
providesVoltage?: string | number | undefined;
|
|
13296
|
+
requiresVoltage?: string | number | undefined;
|
|
13297
|
+
}> | undefined;
|
|
12953
13298
|
cadModel?: string | {
|
|
12954
13299
|
stlUrl: string;
|
|
12955
13300
|
rotationOffset?: number | {
|
|
@@ -13277,7 +13622,28 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
13277
13622
|
children: z.ZodOptional<z.ZodAny>;
|
|
13278
13623
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
13279
13624
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
13280
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13625
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13626
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
13627
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
13628
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
13629
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
13630
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13631
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13632
|
+
}, "strip", z.ZodTypeAny, {
|
|
13633
|
+
providesPower?: boolean | undefined;
|
|
13634
|
+
requiresPower?: boolean | undefined;
|
|
13635
|
+
providesGround?: boolean | undefined;
|
|
13636
|
+
requiresGround?: boolean | undefined;
|
|
13637
|
+
providesVoltage?: string | number | undefined;
|
|
13638
|
+
requiresVoltage?: string | number | undefined;
|
|
13639
|
+
}, {
|
|
13640
|
+
providesPower?: boolean | undefined;
|
|
13641
|
+
requiresPower?: boolean | undefined;
|
|
13642
|
+
providesGround?: boolean | undefined;
|
|
13643
|
+
requiresGround?: boolean | undefined;
|
|
13644
|
+
providesVoltage?: string | number | undefined;
|
|
13645
|
+
requiresVoltage?: string | number | undefined;
|
|
13646
|
+
}>>>;
|
|
13281
13647
|
} & {
|
|
13282
13648
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13283
13649
|
pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
|
|
@@ -13294,7 +13660,14 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
13294
13660
|
footprint?: FootprintProp | undefined;
|
|
13295
13661
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13296
13662
|
key?: any;
|
|
13297
|
-
pinAttributes?: Record<string,
|
|
13663
|
+
pinAttributes?: Record<string, {
|
|
13664
|
+
providesPower?: boolean | undefined;
|
|
13665
|
+
requiresPower?: boolean | undefined;
|
|
13666
|
+
providesGround?: boolean | undefined;
|
|
13667
|
+
requiresGround?: boolean | undefined;
|
|
13668
|
+
providesVoltage?: string | number | undefined;
|
|
13669
|
+
requiresVoltage?: string | number | undefined;
|
|
13670
|
+
}> | undefined;
|
|
13298
13671
|
cadModel?: string | {
|
|
13299
13672
|
stlUrl: string;
|
|
13300
13673
|
rotationOffset?: number | {
|
|
@@ -13367,7 +13740,14 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
13367
13740
|
footprint?: FootprintProp | undefined;
|
|
13368
13741
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13369
13742
|
key?: any;
|
|
13370
|
-
pinAttributes?: Record<string,
|
|
13743
|
+
pinAttributes?: Record<string, {
|
|
13744
|
+
providesPower?: boolean | undefined;
|
|
13745
|
+
requiresPower?: boolean | undefined;
|
|
13746
|
+
providesGround?: boolean | undefined;
|
|
13747
|
+
requiresGround?: boolean | undefined;
|
|
13748
|
+
providesVoltage?: string | number | undefined;
|
|
13749
|
+
requiresVoltage?: string | number | undefined;
|
|
13750
|
+
}> | undefined;
|
|
13371
13751
|
cadModel?: string | {
|
|
13372
13752
|
stlUrl: string;
|
|
13373
13753
|
rotationOffset?: number | {
|
|
@@ -13691,7 +14071,28 @@ declare const crystalProps: z.ZodObject<{
|
|
|
13691
14071
|
children: z.ZodOptional<z.ZodAny>;
|
|
13692
14072
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
13693
14073
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
13694
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14074
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14075
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
14076
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
14077
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
14078
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
14079
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14080
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14081
|
+
}, "strip", z.ZodTypeAny, {
|
|
14082
|
+
providesPower?: boolean | undefined;
|
|
14083
|
+
requiresPower?: boolean | undefined;
|
|
14084
|
+
providesGround?: boolean | undefined;
|
|
14085
|
+
requiresGround?: boolean | undefined;
|
|
14086
|
+
providesVoltage?: string | number | undefined;
|
|
14087
|
+
requiresVoltage?: string | number | undefined;
|
|
14088
|
+
}, {
|
|
14089
|
+
providesPower?: boolean | undefined;
|
|
14090
|
+
requiresPower?: boolean | undefined;
|
|
14091
|
+
providesGround?: boolean | undefined;
|
|
14092
|
+
requiresGround?: boolean | undefined;
|
|
14093
|
+
providesVoltage?: string | number | undefined;
|
|
14094
|
+
requiresVoltage?: string | number | undefined;
|
|
14095
|
+
}>>>;
|
|
13695
14096
|
} & {
|
|
13696
14097
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13697
14098
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -13711,7 +14112,14 @@ declare const crystalProps: z.ZodObject<{
|
|
|
13711
14112
|
footprint?: FootprintProp | undefined;
|
|
13712
14113
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13713
14114
|
key?: any;
|
|
13714
|
-
pinAttributes?: Record<string,
|
|
14115
|
+
pinAttributes?: Record<string, {
|
|
14116
|
+
providesPower?: boolean | undefined;
|
|
14117
|
+
requiresPower?: boolean | undefined;
|
|
14118
|
+
providesGround?: boolean | undefined;
|
|
14119
|
+
requiresGround?: boolean | undefined;
|
|
14120
|
+
providesVoltage?: string | number | undefined;
|
|
14121
|
+
requiresVoltage?: string | number | undefined;
|
|
14122
|
+
}> | undefined;
|
|
13715
14123
|
cadModel?: string | {
|
|
13716
14124
|
stlUrl: string;
|
|
13717
14125
|
rotationOffset?: number | {
|
|
@@ -13786,7 +14194,14 @@ declare const crystalProps: z.ZodObject<{
|
|
|
13786
14194
|
footprint?: FootprintProp | undefined;
|
|
13787
14195
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13788
14196
|
key?: any;
|
|
13789
|
-
pinAttributes?: Record<string,
|
|
14197
|
+
pinAttributes?: Record<string, {
|
|
14198
|
+
providesPower?: boolean | undefined;
|
|
14199
|
+
requiresPower?: boolean | undefined;
|
|
14200
|
+
providesGround?: boolean | undefined;
|
|
14201
|
+
requiresGround?: boolean | undefined;
|
|
14202
|
+
providesVoltage?: string | number | undefined;
|
|
14203
|
+
requiresVoltage?: string | number | undefined;
|
|
14204
|
+
}> | undefined;
|
|
13790
14205
|
cadModel?: string | {
|
|
13791
14206
|
stlUrl: string;
|
|
13792
14207
|
rotationOffset?: number | {
|
|
@@ -14112,7 +14527,28 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
14112
14527
|
children: z.ZodOptional<z.ZodAny>;
|
|
14113
14528
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
14114
14529
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
14115
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14530
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14531
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
14532
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
14533
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
14534
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
14535
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14536
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14537
|
+
}, "strip", z.ZodTypeAny, {
|
|
14538
|
+
providesPower?: boolean | undefined;
|
|
14539
|
+
requiresPower?: boolean | undefined;
|
|
14540
|
+
providesGround?: boolean | undefined;
|
|
14541
|
+
requiresGround?: boolean | undefined;
|
|
14542
|
+
providesVoltage?: string | number | undefined;
|
|
14543
|
+
requiresVoltage?: string | number | undefined;
|
|
14544
|
+
}, {
|
|
14545
|
+
providesPower?: boolean | undefined;
|
|
14546
|
+
requiresPower?: boolean | undefined;
|
|
14547
|
+
providesGround?: boolean | undefined;
|
|
14548
|
+
requiresGround?: boolean | undefined;
|
|
14549
|
+
providesVoltage?: string | number | undefined;
|
|
14550
|
+
requiresVoltage?: string | number | undefined;
|
|
14551
|
+
}>>>;
|
|
14116
14552
|
} & {
|
|
14117
14553
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14118
14554
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -14131,7 +14567,14 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
14131
14567
|
footprint?: FootprintProp | undefined;
|
|
14132
14568
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14133
14569
|
key?: any;
|
|
14134
|
-
pinAttributes?: Record<string,
|
|
14570
|
+
pinAttributes?: Record<string, {
|
|
14571
|
+
providesPower?: boolean | undefined;
|
|
14572
|
+
requiresPower?: boolean | undefined;
|
|
14573
|
+
providesGround?: boolean | undefined;
|
|
14574
|
+
requiresGround?: boolean | undefined;
|
|
14575
|
+
providesVoltage?: string | number | undefined;
|
|
14576
|
+
requiresVoltage?: string | number | undefined;
|
|
14577
|
+
}> | undefined;
|
|
14135
14578
|
cadModel?: string | {
|
|
14136
14579
|
stlUrl: string;
|
|
14137
14580
|
rotationOffset?: number | {
|
|
@@ -14205,7 +14648,14 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
14205
14648
|
footprint?: FootprintProp | undefined;
|
|
14206
14649
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14207
14650
|
key?: any;
|
|
14208
|
-
pinAttributes?: Record<string,
|
|
14651
|
+
pinAttributes?: Record<string, {
|
|
14652
|
+
providesPower?: boolean | undefined;
|
|
14653
|
+
requiresPower?: boolean | undefined;
|
|
14654
|
+
providesGround?: boolean | undefined;
|
|
14655
|
+
requiresGround?: boolean | undefined;
|
|
14656
|
+
providesVoltage?: string | number | undefined;
|
|
14657
|
+
requiresVoltage?: string | number | undefined;
|
|
14658
|
+
}> | undefined;
|
|
14209
14659
|
cadModel?: string | {
|
|
14210
14660
|
stlUrl: string;
|
|
14211
14661
|
rotationOffset?: number | {
|
|
@@ -15402,7 +15852,28 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
15402
15852
|
children: z.ZodOptional<z.ZodAny>;
|
|
15403
15853
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
15404
15854
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
15405
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
15855
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
15856
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
15857
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
15858
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
15859
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
15860
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15861
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15862
|
+
}, "strip", z.ZodTypeAny, {
|
|
15863
|
+
providesPower?: boolean | undefined;
|
|
15864
|
+
requiresPower?: boolean | undefined;
|
|
15865
|
+
providesGround?: boolean | undefined;
|
|
15866
|
+
requiresGround?: boolean | undefined;
|
|
15867
|
+
providesVoltage?: string | number | undefined;
|
|
15868
|
+
requiresVoltage?: string | number | undefined;
|
|
15869
|
+
}, {
|
|
15870
|
+
providesPower?: boolean | undefined;
|
|
15871
|
+
requiresPower?: boolean | undefined;
|
|
15872
|
+
providesGround?: boolean | undefined;
|
|
15873
|
+
requiresGround?: boolean | undefined;
|
|
15874
|
+
providesVoltage?: string | number | undefined;
|
|
15875
|
+
requiresVoltage?: string | number | undefined;
|
|
15876
|
+
}>>>;
|
|
15406
15877
|
} & {
|
|
15407
15878
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
15408
15879
|
maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15430,7 +15901,14 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
15430
15901
|
footprint?: FootprintProp | undefined;
|
|
15431
15902
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15432
15903
|
key?: any;
|
|
15433
|
-
pinAttributes?: Record<string,
|
|
15904
|
+
pinAttributes?: Record<string, {
|
|
15905
|
+
providesPower?: boolean | undefined;
|
|
15906
|
+
requiresPower?: boolean | undefined;
|
|
15907
|
+
providesGround?: boolean | undefined;
|
|
15908
|
+
requiresGround?: boolean | undefined;
|
|
15909
|
+
providesVoltage?: string | number | undefined;
|
|
15910
|
+
requiresVoltage?: string | number | undefined;
|
|
15911
|
+
}> | undefined;
|
|
15434
15912
|
cadModel?: string | {
|
|
15435
15913
|
stlUrl: string;
|
|
15436
15914
|
rotationOffset?: number | {
|
|
@@ -15510,7 +15988,14 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
15510
15988
|
footprint?: FootprintProp | undefined;
|
|
15511
15989
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15512
15990
|
key?: any;
|
|
15513
|
-
pinAttributes?: Record<string,
|
|
15991
|
+
pinAttributes?: Record<string, {
|
|
15992
|
+
providesPower?: boolean | undefined;
|
|
15993
|
+
requiresPower?: boolean | undefined;
|
|
15994
|
+
providesGround?: boolean | undefined;
|
|
15995
|
+
requiresGround?: boolean | undefined;
|
|
15996
|
+
providesVoltage?: string | number | undefined;
|
|
15997
|
+
requiresVoltage?: string | number | undefined;
|
|
15998
|
+
}> | undefined;
|
|
15514
15999
|
cadModel?: string | {
|
|
15515
16000
|
stlUrl: string;
|
|
15516
16001
|
rotationOffset?: number | {
|
|
@@ -17199,7 +17684,28 @@ declare const batteryProps: z.ZodObject<{
|
|
|
17199
17684
|
children: z.ZodOptional<z.ZodAny>;
|
|
17200
17685
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17201
17686
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17202
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
17687
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
17688
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
17689
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
17690
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
17691
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
17692
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17693
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17694
|
+
}, "strip", z.ZodTypeAny, {
|
|
17695
|
+
providesPower?: boolean | undefined;
|
|
17696
|
+
requiresPower?: boolean | undefined;
|
|
17697
|
+
providesGround?: boolean | undefined;
|
|
17698
|
+
requiresGround?: boolean | undefined;
|
|
17699
|
+
providesVoltage?: string | number | undefined;
|
|
17700
|
+
requiresVoltage?: string | number | undefined;
|
|
17701
|
+
}, {
|
|
17702
|
+
providesPower?: boolean | undefined;
|
|
17703
|
+
requiresPower?: boolean | undefined;
|
|
17704
|
+
providesGround?: boolean | undefined;
|
|
17705
|
+
requiresGround?: boolean | undefined;
|
|
17706
|
+
providesVoltage?: string | number | undefined;
|
|
17707
|
+
requiresVoltage?: string | number | undefined;
|
|
17708
|
+
}>>>;
|
|
17203
17709
|
} & {
|
|
17204
17710
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
17205
17711
|
schOrientation: z.ZodOptional<z.ZodEnum<["vertical", "horizontal", "pos_top", "pos_bottom", "pos_left", "pos_right", "neg_top", "neg_bottom", "neg_left", "neg_right"]>>;
|
|
@@ -17215,7 +17721,14 @@ declare const batteryProps: z.ZodObject<{
|
|
|
17215
17721
|
footprint?: FootprintProp | undefined;
|
|
17216
17722
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17217
17723
|
key?: any;
|
|
17218
|
-
pinAttributes?: Record<string,
|
|
17724
|
+
pinAttributes?: Record<string, {
|
|
17725
|
+
providesPower?: boolean | undefined;
|
|
17726
|
+
requiresPower?: boolean | undefined;
|
|
17727
|
+
providesGround?: boolean | undefined;
|
|
17728
|
+
requiresGround?: boolean | undefined;
|
|
17729
|
+
providesVoltage?: string | number | undefined;
|
|
17730
|
+
requiresVoltage?: string | number | undefined;
|
|
17731
|
+
}> | undefined;
|
|
17219
17732
|
cadModel?: string | {
|
|
17220
17733
|
stlUrl: string;
|
|
17221
17734
|
rotationOffset?: number | {
|
|
@@ -17288,7 +17801,14 @@ declare const batteryProps: z.ZodObject<{
|
|
|
17288
17801
|
footprint?: FootprintProp | undefined;
|
|
17289
17802
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17290
17803
|
key?: any;
|
|
17291
|
-
pinAttributes?: Record<string,
|
|
17804
|
+
pinAttributes?: Record<string, {
|
|
17805
|
+
providesPower?: boolean | undefined;
|
|
17806
|
+
requiresPower?: boolean | undefined;
|
|
17807
|
+
providesGround?: boolean | undefined;
|
|
17808
|
+
requiresGround?: boolean | undefined;
|
|
17809
|
+
providesVoltage?: string | number | undefined;
|
|
17810
|
+
requiresVoltage?: string | number | undefined;
|
|
17811
|
+
}> | undefined;
|
|
17292
17812
|
cadModel?: string | {
|
|
17293
17813
|
stlUrl: string;
|
|
17294
17814
|
rotationOffset?: number | {
|
|
@@ -17678,7 +18198,28 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
17678
18198
|
children: z.ZodOptional<z.ZodAny>;
|
|
17679
18199
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17680
18200
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17681
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
18201
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
18202
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
18203
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
18204
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
18205
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
18206
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18207
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18208
|
+
}, "strip", z.ZodTypeAny, {
|
|
18209
|
+
providesPower?: boolean | undefined;
|
|
18210
|
+
requiresPower?: boolean | undefined;
|
|
18211
|
+
providesGround?: boolean | undefined;
|
|
18212
|
+
requiresGround?: boolean | undefined;
|
|
18213
|
+
providesVoltage?: string | number | undefined;
|
|
18214
|
+
requiresVoltage?: string | number | undefined;
|
|
18215
|
+
}, {
|
|
18216
|
+
providesPower?: boolean | undefined;
|
|
18217
|
+
requiresPower?: boolean | undefined;
|
|
18218
|
+
providesGround?: boolean | undefined;
|
|
18219
|
+
requiresGround?: boolean | undefined;
|
|
18220
|
+
providesVoltage?: string | number | undefined;
|
|
18221
|
+
requiresVoltage?: string | number | undefined;
|
|
18222
|
+
}>>>;
|
|
17682
18223
|
} & {
|
|
17683
18224
|
pinCount: z.ZodNumber;
|
|
17684
18225
|
pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17837,7 +18378,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
17837
18378
|
footprint?: FootprintProp | undefined;
|
|
17838
18379
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17839
18380
|
key?: any;
|
|
17840
|
-
pinAttributes?: Record<string,
|
|
18381
|
+
pinAttributes?: Record<string, {
|
|
18382
|
+
providesPower?: boolean | undefined;
|
|
18383
|
+
requiresPower?: boolean | undefined;
|
|
18384
|
+
providesGround?: boolean | undefined;
|
|
18385
|
+
requiresGround?: boolean | undefined;
|
|
18386
|
+
providesVoltage?: string | number | undefined;
|
|
18387
|
+
requiresVoltage?: string | number | undefined;
|
|
18388
|
+
}> | undefined;
|
|
17841
18389
|
cadModel?: string | {
|
|
17842
18390
|
stlUrl: string;
|
|
17843
18391
|
rotationOffset?: number | {
|
|
@@ -17958,7 +18506,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
17958
18506
|
footprint?: FootprintProp | undefined;
|
|
17959
18507
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17960
18508
|
key?: any;
|
|
17961
|
-
pinAttributes?: Record<string,
|
|
18509
|
+
pinAttributes?: Record<string, {
|
|
18510
|
+
providesPower?: boolean | undefined;
|
|
18511
|
+
requiresPower?: boolean | undefined;
|
|
18512
|
+
providesGround?: boolean | undefined;
|
|
18513
|
+
requiresGround?: boolean | undefined;
|
|
18514
|
+
providesVoltage?: string | number | undefined;
|
|
18515
|
+
requiresVoltage?: string | number | undefined;
|
|
18516
|
+
}> | undefined;
|
|
17962
18517
|
cadModel?: string | {
|
|
17963
18518
|
stlUrl: string;
|
|
17964
18519
|
rotationOffset?: number | {
|
|
@@ -18395,7 +18950,28 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
18395
18950
|
children: z.ZodOptional<z.ZodAny>;
|
|
18396
18951
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
18397
18952
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
18398
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
18953
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
18954
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
18955
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
18956
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
18957
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
18958
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18959
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18960
|
+
}, "strip", z.ZodTypeAny, {
|
|
18961
|
+
providesPower?: boolean | undefined;
|
|
18962
|
+
requiresPower?: boolean | undefined;
|
|
18963
|
+
providesGround?: boolean | undefined;
|
|
18964
|
+
requiresGround?: boolean | undefined;
|
|
18965
|
+
providesVoltage?: string | number | undefined;
|
|
18966
|
+
requiresVoltage?: string | number | undefined;
|
|
18967
|
+
}, {
|
|
18968
|
+
providesPower?: boolean | undefined;
|
|
18969
|
+
requiresPower?: boolean | undefined;
|
|
18970
|
+
providesGround?: boolean | undefined;
|
|
18971
|
+
requiresGround?: boolean | undefined;
|
|
18972
|
+
providesVoltage?: string | number | undefined;
|
|
18973
|
+
requiresVoltage?: string | number | undefined;
|
|
18974
|
+
}>>>;
|
|
18399
18975
|
} & {
|
|
18400
18976
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
18401
18977
|
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">]>>>;
|
|
@@ -18658,7 +19234,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
18658
19234
|
footprint?: FootprintProp | undefined;
|
|
18659
19235
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18660
19236
|
key?: any;
|
|
18661
|
-
pinAttributes?: Record<string,
|
|
19237
|
+
pinAttributes?: Record<string, {
|
|
19238
|
+
providesPower?: boolean | undefined;
|
|
19239
|
+
requiresPower?: boolean | undefined;
|
|
19240
|
+
providesGround?: boolean | undefined;
|
|
19241
|
+
requiresGround?: boolean | undefined;
|
|
19242
|
+
providesVoltage?: string | number | undefined;
|
|
19243
|
+
requiresVoltage?: string | number | undefined;
|
|
19244
|
+
}> | undefined;
|
|
18662
19245
|
cadModel?: string | {
|
|
18663
19246
|
stlUrl: string;
|
|
18664
19247
|
rotationOffset?: number | {
|
|
@@ -18806,7 +19389,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
18806
19389
|
footprint?: FootprintProp | undefined;
|
|
18807
19390
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18808
19391
|
key?: any;
|
|
18809
|
-
pinAttributes?: Record<string,
|
|
19392
|
+
pinAttributes?: Record<string, {
|
|
19393
|
+
providesPower?: boolean | undefined;
|
|
19394
|
+
requiresPower?: boolean | undefined;
|
|
19395
|
+
providesGround?: boolean | undefined;
|
|
19396
|
+
requiresGround?: boolean | undefined;
|
|
19397
|
+
providesVoltage?: string | number | undefined;
|
|
19398
|
+
requiresVoltage?: string | number | undefined;
|
|
19399
|
+
}> | undefined;
|
|
18810
19400
|
cadModel?: string | {
|
|
18811
19401
|
stlUrl: string;
|
|
18812
19402
|
rotationOffset?: number | {
|
|
@@ -20002,7 +20592,28 @@ declare const transistorProps: z.ZodObject<{
|
|
|
20002
20592
|
children: z.ZodOptional<z.ZodAny>;
|
|
20003
20593
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20004
20594
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20005
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
20595
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
20596
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
20597
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
20598
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
20599
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
20600
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20601
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20602
|
+
}, "strip", z.ZodTypeAny, {
|
|
20603
|
+
providesPower?: boolean | undefined;
|
|
20604
|
+
requiresPower?: boolean | undefined;
|
|
20605
|
+
providesGround?: boolean | undefined;
|
|
20606
|
+
requiresGround?: boolean | undefined;
|
|
20607
|
+
providesVoltage?: string | number | undefined;
|
|
20608
|
+
requiresVoltage?: string | number | undefined;
|
|
20609
|
+
}, {
|
|
20610
|
+
providesPower?: boolean | undefined;
|
|
20611
|
+
requiresPower?: boolean | undefined;
|
|
20612
|
+
providesGround?: boolean | undefined;
|
|
20613
|
+
requiresGround?: boolean | undefined;
|
|
20614
|
+
providesVoltage?: string | number | undefined;
|
|
20615
|
+
requiresVoltage?: string | number | undefined;
|
|
20616
|
+
}>>>;
|
|
20006
20617
|
} & {
|
|
20007
20618
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
20008
20619
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -20019,7 +20630,14 @@ declare const transistorProps: z.ZodObject<{
|
|
|
20019
20630
|
footprint?: FootprintProp | undefined;
|
|
20020
20631
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20021
20632
|
key?: any;
|
|
20022
|
-
pinAttributes?: Record<string,
|
|
20633
|
+
pinAttributes?: Record<string, {
|
|
20634
|
+
providesPower?: boolean | undefined;
|
|
20635
|
+
requiresPower?: boolean | undefined;
|
|
20636
|
+
providesGround?: boolean | undefined;
|
|
20637
|
+
requiresGround?: boolean | undefined;
|
|
20638
|
+
providesVoltage?: string | number | undefined;
|
|
20639
|
+
requiresVoltage?: string | number | undefined;
|
|
20640
|
+
}> | undefined;
|
|
20023
20641
|
cadModel?: string | {
|
|
20024
20642
|
stlUrl: string;
|
|
20025
20643
|
rotationOffset?: number | {
|
|
@@ -20092,7 +20710,14 @@ declare const transistorProps: z.ZodObject<{
|
|
|
20092
20710
|
footprint?: FootprintProp | undefined;
|
|
20093
20711
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20094
20712
|
key?: any;
|
|
20095
|
-
pinAttributes?: Record<string,
|
|
20713
|
+
pinAttributes?: Record<string, {
|
|
20714
|
+
providesPower?: boolean | undefined;
|
|
20715
|
+
requiresPower?: boolean | undefined;
|
|
20716
|
+
providesGround?: boolean | undefined;
|
|
20717
|
+
requiresGround?: boolean | undefined;
|
|
20718
|
+
providesVoltage?: string | number | undefined;
|
|
20719
|
+
requiresVoltage?: string | number | undefined;
|
|
20720
|
+
}> | undefined;
|
|
20096
20721
|
cadModel?: string | {
|
|
20097
20722
|
stlUrl: string;
|
|
20098
20723
|
rotationOffset?: number | {
|
|
@@ -20415,7 +21040,28 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
20415
21040
|
children: z.ZodOptional<z.ZodAny>;
|
|
20416
21041
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20417
21042
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20418
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
21043
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21044
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21045
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
21046
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
21047
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
21048
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21049
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21050
|
+
}, "strip", z.ZodTypeAny, {
|
|
21051
|
+
providesPower?: boolean | undefined;
|
|
21052
|
+
requiresPower?: boolean | undefined;
|
|
21053
|
+
providesGround?: boolean | undefined;
|
|
21054
|
+
requiresGround?: boolean | undefined;
|
|
21055
|
+
providesVoltage?: string | number | undefined;
|
|
21056
|
+
requiresVoltage?: string | number | undefined;
|
|
21057
|
+
}, {
|
|
21058
|
+
providesPower?: boolean | undefined;
|
|
21059
|
+
requiresPower?: boolean | undefined;
|
|
21060
|
+
providesGround?: boolean | undefined;
|
|
21061
|
+
requiresGround?: boolean | undefined;
|
|
21062
|
+
providesVoltage?: string | number | undefined;
|
|
21063
|
+
requiresVoltage?: string | number | undefined;
|
|
21064
|
+
}>>>;
|
|
20419
21065
|
} & {
|
|
20420
21066
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
20421
21067
|
mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
|
|
@@ -20433,7 +21079,14 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
20433
21079
|
footprint?: FootprintProp | undefined;
|
|
20434
21080
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20435
21081
|
key?: any;
|
|
20436
|
-
pinAttributes?: Record<string,
|
|
21082
|
+
pinAttributes?: Record<string, {
|
|
21083
|
+
providesPower?: boolean | undefined;
|
|
21084
|
+
requiresPower?: boolean | undefined;
|
|
21085
|
+
providesGround?: boolean | undefined;
|
|
21086
|
+
requiresGround?: boolean | undefined;
|
|
21087
|
+
providesVoltage?: string | number | undefined;
|
|
21088
|
+
requiresVoltage?: string | number | undefined;
|
|
21089
|
+
}> | undefined;
|
|
20437
21090
|
cadModel?: string | {
|
|
20438
21091
|
stlUrl: string;
|
|
20439
21092
|
rotationOffset?: number | {
|
|
@@ -20506,7 +21159,14 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
20506
21159
|
footprint?: FootprintProp | undefined;
|
|
20507
21160
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20508
21161
|
key?: any;
|
|
20509
|
-
pinAttributes?: Record<string,
|
|
21162
|
+
pinAttributes?: Record<string, {
|
|
21163
|
+
providesPower?: boolean | undefined;
|
|
21164
|
+
requiresPower?: boolean | undefined;
|
|
21165
|
+
providesGround?: boolean | undefined;
|
|
21166
|
+
requiresGround?: boolean | undefined;
|
|
21167
|
+
providesVoltage?: string | number | undefined;
|
|
21168
|
+
requiresVoltage?: string | number | undefined;
|
|
21169
|
+
}> | undefined;
|
|
20510
21170
|
cadModel?: string | {
|
|
20511
21171
|
stlUrl: string;
|
|
20512
21172
|
rotationOffset?: number | {
|
|
@@ -20829,7 +21489,28 @@ declare const inductorProps: z.ZodObject<{
|
|
|
20829
21489
|
children: z.ZodOptional<z.ZodAny>;
|
|
20830
21490
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20831
21491
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20832
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
21492
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21493
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21494
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
21495
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
21496
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
21497
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21498
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21499
|
+
}, "strip", z.ZodTypeAny, {
|
|
21500
|
+
providesPower?: boolean | undefined;
|
|
21501
|
+
requiresPower?: boolean | undefined;
|
|
21502
|
+
providesGround?: boolean | undefined;
|
|
21503
|
+
requiresGround?: boolean | undefined;
|
|
21504
|
+
providesVoltage?: string | number | undefined;
|
|
21505
|
+
requiresVoltage?: string | number | undefined;
|
|
21506
|
+
}, {
|
|
21507
|
+
providesPower?: boolean | undefined;
|
|
21508
|
+
requiresPower?: boolean | undefined;
|
|
21509
|
+
providesGround?: boolean | undefined;
|
|
21510
|
+
requiresGround?: boolean | undefined;
|
|
21511
|
+
providesVoltage?: string | number | undefined;
|
|
21512
|
+
requiresVoltage?: string | number | undefined;
|
|
21513
|
+
}>>>;
|
|
20833
21514
|
} & {
|
|
20834
21515
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20835
21516
|
maxCurrentRating: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -20847,7 +21528,14 @@ declare const inductorProps: z.ZodObject<{
|
|
|
20847
21528
|
footprint?: FootprintProp | undefined;
|
|
20848
21529
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20849
21530
|
key?: any;
|
|
20850
|
-
pinAttributes?: Record<string,
|
|
21531
|
+
pinAttributes?: Record<string, {
|
|
21532
|
+
providesPower?: boolean | undefined;
|
|
21533
|
+
requiresPower?: boolean | undefined;
|
|
21534
|
+
providesGround?: boolean | undefined;
|
|
21535
|
+
requiresGround?: boolean | undefined;
|
|
21536
|
+
providesVoltage?: string | number | undefined;
|
|
21537
|
+
requiresVoltage?: string | number | undefined;
|
|
21538
|
+
}> | undefined;
|
|
20851
21539
|
cadModel?: string | {
|
|
20852
21540
|
stlUrl: string;
|
|
20853
21541
|
rotationOffset?: number | {
|
|
@@ -20921,7 +21609,14 @@ declare const inductorProps: z.ZodObject<{
|
|
|
20921
21609
|
footprint?: FootprintProp | undefined;
|
|
20922
21610
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20923
21611
|
key?: any;
|
|
20924
|
-
pinAttributes?: Record<string,
|
|
21612
|
+
pinAttributes?: Record<string, {
|
|
21613
|
+
providesPower?: boolean | undefined;
|
|
21614
|
+
requiresPower?: boolean | undefined;
|
|
21615
|
+
providesGround?: boolean | undefined;
|
|
21616
|
+
requiresGround?: boolean | undefined;
|
|
21617
|
+
providesVoltage?: string | number | undefined;
|
|
21618
|
+
requiresVoltage?: string | number | undefined;
|
|
21619
|
+
}> | undefined;
|
|
20925
21620
|
cadModel?: string | {
|
|
20926
21621
|
stlUrl: string;
|
|
20927
21622
|
rotationOffset?: number | {
|
|
@@ -21241,7 +21936,28 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21241
21936
|
children: z.ZodOptional<z.ZodAny>;
|
|
21242
21937
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
21243
21938
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
21244
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
21939
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21940
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21941
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
21942
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
21943
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
21944
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21945
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21946
|
+
}, "strip", z.ZodTypeAny, {
|
|
21947
|
+
providesPower?: boolean | undefined;
|
|
21948
|
+
requiresPower?: boolean | undefined;
|
|
21949
|
+
providesGround?: boolean | undefined;
|
|
21950
|
+
requiresGround?: boolean | undefined;
|
|
21951
|
+
providesVoltage?: string | number | undefined;
|
|
21952
|
+
requiresVoltage?: string | number | undefined;
|
|
21953
|
+
}, {
|
|
21954
|
+
providesPower?: boolean | undefined;
|
|
21955
|
+
requiresPower?: boolean | undefined;
|
|
21956
|
+
providesGround?: boolean | undefined;
|
|
21957
|
+
requiresGround?: boolean | undefined;
|
|
21958
|
+
providesVoltage?: string | number | undefined;
|
|
21959
|
+
requiresVoltage?: string | number | undefined;
|
|
21960
|
+
}>>>;
|
|
21245
21961
|
} & {
|
|
21246
21962
|
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">]>>>;
|
|
21247
21963
|
variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "avalanche", "photo", "tvs"]>>>;
|
|
@@ -21265,7 +21981,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21265
21981
|
footprint?: FootprintProp | undefined;
|
|
21266
21982
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21267
21983
|
key?: any;
|
|
21268
|
-
pinAttributes?: Record<string,
|
|
21984
|
+
pinAttributes?: Record<string, {
|
|
21985
|
+
providesPower?: boolean | undefined;
|
|
21986
|
+
requiresPower?: boolean | undefined;
|
|
21987
|
+
providesGround?: boolean | undefined;
|
|
21988
|
+
requiresGround?: boolean | undefined;
|
|
21989
|
+
providesVoltage?: string | number | undefined;
|
|
21990
|
+
requiresVoltage?: string | number | undefined;
|
|
21991
|
+
}> | undefined;
|
|
21269
21992
|
cadModel?: string | {
|
|
21270
21993
|
stlUrl: string;
|
|
21271
21994
|
rotationOffset?: number | {
|
|
@@ -21344,7 +22067,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21344
22067
|
footprint?: FootprintProp | undefined;
|
|
21345
22068
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21346
22069
|
key?: any;
|
|
21347
|
-
pinAttributes?: Record<string,
|
|
22070
|
+
pinAttributes?: Record<string, {
|
|
22071
|
+
providesPower?: boolean | undefined;
|
|
22072
|
+
requiresPower?: boolean | undefined;
|
|
22073
|
+
providesGround?: boolean | undefined;
|
|
22074
|
+
requiresGround?: boolean | undefined;
|
|
22075
|
+
providesVoltage?: string | number | undefined;
|
|
22076
|
+
requiresVoltage?: string | number | undefined;
|
|
22077
|
+
}> | undefined;
|
|
21348
22078
|
cadModel?: string | {
|
|
21349
22079
|
stlUrl: string;
|
|
21350
22080
|
rotationOffset?: number | {
|
|
@@ -21423,7 +22153,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21423
22153
|
footprint?: FootprintProp | undefined;
|
|
21424
22154
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21425
22155
|
key?: any;
|
|
21426
|
-
pinAttributes?: Record<string,
|
|
22156
|
+
pinAttributes?: Record<string, {
|
|
22157
|
+
providesPower?: boolean | undefined;
|
|
22158
|
+
requiresPower?: boolean | undefined;
|
|
22159
|
+
providesGround?: boolean | undefined;
|
|
22160
|
+
requiresGround?: boolean | undefined;
|
|
22161
|
+
providesVoltage?: string | number | undefined;
|
|
22162
|
+
requiresVoltage?: string | number | undefined;
|
|
22163
|
+
}> | undefined;
|
|
21427
22164
|
cadModel?: string | {
|
|
21428
22165
|
stlUrl: string;
|
|
21429
22166
|
rotationOffset?: number | {
|
|
@@ -21502,7 +22239,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21502
22239
|
footprint?: FootprintProp | undefined;
|
|
21503
22240
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21504
22241
|
key?: any;
|
|
21505
|
-
pinAttributes?: Record<string,
|
|
22242
|
+
pinAttributes?: Record<string, {
|
|
22243
|
+
providesPower?: boolean | undefined;
|
|
22244
|
+
requiresPower?: boolean | undefined;
|
|
22245
|
+
providesGround?: boolean | undefined;
|
|
22246
|
+
requiresGround?: boolean | undefined;
|
|
22247
|
+
providesVoltage?: string | number | undefined;
|
|
22248
|
+
requiresVoltage?: string | number | undefined;
|
|
22249
|
+
}> | undefined;
|
|
21506
22250
|
cadModel?: string | {
|
|
21507
22251
|
stlUrl: string;
|
|
21508
22252
|
rotationOffset?: number | {
|
|
@@ -21587,7 +22331,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21587
22331
|
footprint?: FootprintProp | undefined;
|
|
21588
22332
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21589
22333
|
key?: any;
|
|
21590
|
-
pinAttributes?: Record<string,
|
|
22334
|
+
pinAttributes?: Record<string, {
|
|
22335
|
+
providesPower?: boolean | undefined;
|
|
22336
|
+
requiresPower?: boolean | undefined;
|
|
22337
|
+
providesGround?: boolean | undefined;
|
|
22338
|
+
requiresGround?: boolean | undefined;
|
|
22339
|
+
providesVoltage?: string | number | undefined;
|
|
22340
|
+
requiresVoltage?: string | number | undefined;
|
|
22341
|
+
}> | undefined;
|
|
21591
22342
|
cadModel?: string | {
|
|
21592
22343
|
stlUrl: string;
|
|
21593
22344
|
rotationOffset?: number | {
|
|
@@ -21660,7 +22411,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21660
22411
|
footprint?: FootprintProp | undefined;
|
|
21661
22412
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21662
22413
|
key?: any;
|
|
21663
|
-
pinAttributes?: Record<string,
|
|
22414
|
+
pinAttributes?: Record<string, {
|
|
22415
|
+
providesPower?: boolean | undefined;
|
|
22416
|
+
requiresPower?: boolean | undefined;
|
|
22417
|
+
providesGround?: boolean | undefined;
|
|
22418
|
+
requiresGround?: boolean | undefined;
|
|
22419
|
+
providesVoltage?: string | number | undefined;
|
|
22420
|
+
requiresVoltage?: string | number | undefined;
|
|
22421
|
+
}> | undefined;
|
|
21664
22422
|
cadModel?: string | {
|
|
21665
22423
|
stlUrl: string;
|
|
21666
22424
|
rotationOffset?: number | {
|
|
@@ -22007,7 +22765,28 @@ declare const ledProps: z.ZodObject<{
|
|
|
22007
22765
|
children: z.ZodOptional<z.ZodAny>;
|
|
22008
22766
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
22009
22767
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
22010
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
22768
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22769
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
22770
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
22771
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
22772
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
22773
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22774
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22775
|
+
}, "strip", z.ZodTypeAny, {
|
|
22776
|
+
providesPower?: boolean | undefined;
|
|
22777
|
+
requiresPower?: boolean | undefined;
|
|
22778
|
+
providesGround?: boolean | undefined;
|
|
22779
|
+
requiresGround?: boolean | undefined;
|
|
22780
|
+
providesVoltage?: string | number | undefined;
|
|
22781
|
+
requiresVoltage?: string | number | undefined;
|
|
22782
|
+
}, {
|
|
22783
|
+
providesPower?: boolean | undefined;
|
|
22784
|
+
requiresPower?: boolean | undefined;
|
|
22785
|
+
providesGround?: boolean | undefined;
|
|
22786
|
+
requiresGround?: boolean | undefined;
|
|
22787
|
+
providesVoltage?: string | number | undefined;
|
|
22788
|
+
requiresVoltage?: string | number | undefined;
|
|
22789
|
+
}>>>;
|
|
22011
22790
|
} & {
|
|
22012
22791
|
color: z.ZodOptional<z.ZodString>;
|
|
22013
22792
|
wavelength: z.ZodOptional<z.ZodString>;
|
|
@@ -22027,7 +22806,14 @@ declare const ledProps: z.ZodObject<{
|
|
|
22027
22806
|
footprint?: FootprintProp | undefined;
|
|
22028
22807
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22029
22808
|
key?: any;
|
|
22030
|
-
pinAttributes?: Record<string,
|
|
22809
|
+
pinAttributes?: Record<string, {
|
|
22810
|
+
providesPower?: boolean | undefined;
|
|
22811
|
+
requiresPower?: boolean | undefined;
|
|
22812
|
+
providesGround?: boolean | undefined;
|
|
22813
|
+
requiresGround?: boolean | undefined;
|
|
22814
|
+
providesVoltage?: string | number | undefined;
|
|
22815
|
+
requiresVoltage?: string | number | undefined;
|
|
22816
|
+
}> | undefined;
|
|
22031
22817
|
cadModel?: string | {
|
|
22032
22818
|
stlUrl: string;
|
|
22033
22819
|
rotationOffset?: number | {
|
|
@@ -22104,7 +22890,14 @@ declare const ledProps: z.ZodObject<{
|
|
|
22104
22890
|
footprint?: FootprintProp | undefined;
|
|
22105
22891
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22106
22892
|
key?: any;
|
|
22107
|
-
pinAttributes?: Record<string,
|
|
22893
|
+
pinAttributes?: Record<string, {
|
|
22894
|
+
providesPower?: boolean | undefined;
|
|
22895
|
+
requiresPower?: boolean | undefined;
|
|
22896
|
+
providesGround?: boolean | undefined;
|
|
22897
|
+
requiresGround?: boolean | undefined;
|
|
22898
|
+
providesVoltage?: string | number | undefined;
|
|
22899
|
+
requiresVoltage?: string | number | undefined;
|
|
22900
|
+
}> | undefined;
|
|
22108
22901
|
cadModel?: string | {
|
|
22109
22902
|
stlUrl: string;
|
|
22110
22903
|
rotationOffset?: number | {
|
|
@@ -22436,7 +23229,28 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22436
23229
|
children: z.ZodOptional<z.ZodAny>;
|
|
22437
23230
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
22438
23231
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
22439
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
23232
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23233
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
23234
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
23235
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
23236
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
23237
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23238
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23239
|
+
}, "strip", z.ZodTypeAny, {
|
|
23240
|
+
providesPower?: boolean | undefined;
|
|
23241
|
+
requiresPower?: boolean | undefined;
|
|
23242
|
+
providesGround?: boolean | undefined;
|
|
23243
|
+
requiresGround?: boolean | undefined;
|
|
23244
|
+
providesVoltage?: string | number | undefined;
|
|
23245
|
+
requiresVoltage?: string | number | undefined;
|
|
23246
|
+
}, {
|
|
23247
|
+
providesPower?: boolean | undefined;
|
|
23248
|
+
requiresPower?: boolean | undefined;
|
|
23249
|
+
providesGround?: boolean | undefined;
|
|
23250
|
+
requiresGround?: boolean | undefined;
|
|
23251
|
+
providesVoltage?: string | number | undefined;
|
|
23252
|
+
requiresVoltage?: string | number | undefined;
|
|
23253
|
+
}>>>;
|
|
22440
23254
|
} & {
|
|
22441
23255
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
22442
23256
|
isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -22458,7 +23272,14 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22458
23272
|
footprint?: FootprintProp | undefined;
|
|
22459
23273
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22460
23274
|
key?: any;
|
|
22461
|
-
pinAttributes?: Record<string,
|
|
23275
|
+
pinAttributes?: Record<string, {
|
|
23276
|
+
providesPower?: boolean | undefined;
|
|
23277
|
+
requiresPower?: boolean | undefined;
|
|
23278
|
+
providesGround?: boolean | undefined;
|
|
23279
|
+
requiresGround?: boolean | undefined;
|
|
23280
|
+
providesVoltage?: string | number | undefined;
|
|
23281
|
+
requiresVoltage?: string | number | undefined;
|
|
23282
|
+
}> | undefined;
|
|
22462
23283
|
cadModel?: string | {
|
|
22463
23284
|
stlUrl: string;
|
|
22464
23285
|
rotationOffset?: number | {
|
|
@@ -22534,7 +23355,14 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22534
23355
|
footprint?: FootprintProp | undefined;
|
|
22535
23356
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22536
23357
|
key?: any;
|
|
22537
|
-
pinAttributes?: Record<string,
|
|
23358
|
+
pinAttributes?: Record<string, {
|
|
23359
|
+
providesPower?: boolean | undefined;
|
|
23360
|
+
requiresPower?: boolean | undefined;
|
|
23361
|
+
providesGround?: boolean | undefined;
|
|
23362
|
+
requiresGround?: boolean | undefined;
|
|
23363
|
+
providesVoltage?: string | number | undefined;
|
|
23364
|
+
requiresVoltage?: string | number | undefined;
|
|
23365
|
+
}> | undefined;
|
|
22538
23366
|
cadModel?: string | {
|
|
22539
23367
|
stlUrl: string;
|
|
22540
23368
|
rotationOffset?: number | {
|
|
@@ -22611,7 +23439,14 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22611
23439
|
footprint?: FootprintProp | undefined;
|
|
22612
23440
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22613
23441
|
key?: any;
|
|
22614
|
-
pinAttributes?: Record<string,
|
|
23442
|
+
pinAttributes?: Record<string, {
|
|
23443
|
+
providesPower?: boolean | undefined;
|
|
23444
|
+
requiresPower?: boolean | undefined;
|
|
23445
|
+
providesGround?: boolean | undefined;
|
|
23446
|
+
requiresGround?: boolean | undefined;
|
|
23447
|
+
providesVoltage?: string | number | undefined;
|
|
23448
|
+
requiresVoltage?: string | number | undefined;
|
|
23449
|
+
}> | undefined;
|
|
22615
23450
|
cadModel?: string | {
|
|
22616
23451
|
stlUrl: string;
|
|
22617
23452
|
rotationOffset?: number | {
|
|
@@ -23221,7 +24056,28 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23221
24056
|
children: z.ZodOptional<z.ZodAny>;
|
|
23222
24057
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
23223
24058
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
23224
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
24059
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24060
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
24061
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
24062
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
24063
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
24064
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24065
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24066
|
+
}, "strip", z.ZodTypeAny, {
|
|
24067
|
+
providesPower?: boolean | undefined;
|
|
24068
|
+
requiresPower?: boolean | undefined;
|
|
24069
|
+
providesGround?: boolean | undefined;
|
|
24070
|
+
requiresGround?: boolean | undefined;
|
|
24071
|
+
providesVoltage?: string | number | undefined;
|
|
24072
|
+
requiresVoltage?: string | number | undefined;
|
|
24073
|
+
}, {
|
|
24074
|
+
providesPower?: boolean | undefined;
|
|
24075
|
+
requiresPower?: boolean | undefined;
|
|
24076
|
+
providesGround?: boolean | undefined;
|
|
24077
|
+
requiresGround?: boolean | undefined;
|
|
24078
|
+
providesVoltage?: string | number | undefined;
|
|
24079
|
+
requiresVoltage?: string | number | undefined;
|
|
24080
|
+
}>>>;
|
|
23225
24081
|
} & {
|
|
23226
24082
|
footprintVariant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
23227
24083
|
padShape: z.ZodDefault<z.ZodOptional<z.ZodEnum<["rect", "circle"]>>>;
|
|
@@ -23242,7 +24098,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23242
24098
|
footprint?: FootprintProp | undefined;
|
|
23243
24099
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23244
24100
|
key?: any;
|
|
23245
|
-
pinAttributes?: Record<string,
|
|
24101
|
+
pinAttributes?: Record<string, {
|
|
24102
|
+
providesPower?: boolean | undefined;
|
|
24103
|
+
requiresPower?: boolean | undefined;
|
|
24104
|
+
providesGround?: boolean | undefined;
|
|
24105
|
+
requiresGround?: boolean | undefined;
|
|
24106
|
+
providesVoltage?: string | number | undefined;
|
|
24107
|
+
requiresVoltage?: string | number | undefined;
|
|
24108
|
+
}> | undefined;
|
|
23246
24109
|
cadModel?: string | {
|
|
23247
24110
|
stlUrl: string;
|
|
23248
24111
|
rotationOffset?: number | {
|
|
@@ -23318,7 +24181,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23318
24181
|
footprint?: FootprintProp | undefined;
|
|
23319
24182
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23320
24183
|
key?: any;
|
|
23321
|
-
pinAttributes?: Record<string,
|
|
24184
|
+
pinAttributes?: Record<string, {
|
|
24185
|
+
providesPower?: boolean | undefined;
|
|
24186
|
+
requiresPower?: boolean | undefined;
|
|
24187
|
+
providesGround?: boolean | undefined;
|
|
24188
|
+
requiresGround?: boolean | undefined;
|
|
24189
|
+
providesVoltage?: string | number | undefined;
|
|
24190
|
+
requiresVoltage?: string | number | undefined;
|
|
24191
|
+
}> | undefined;
|
|
23322
24192
|
cadModel?: string | {
|
|
23323
24193
|
stlUrl: string;
|
|
23324
24194
|
rotationOffset?: number | {
|
|
@@ -23394,7 +24264,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23394
24264
|
footprint?: FootprintProp | undefined;
|
|
23395
24265
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23396
24266
|
key?: any;
|
|
23397
|
-
pinAttributes?: Record<string,
|
|
24267
|
+
pinAttributes?: Record<string, {
|
|
24268
|
+
providesPower?: boolean | undefined;
|
|
24269
|
+
requiresPower?: boolean | undefined;
|
|
24270
|
+
providesGround?: boolean | undefined;
|
|
24271
|
+
requiresGround?: boolean | undefined;
|
|
24272
|
+
providesVoltage?: string | number | undefined;
|
|
24273
|
+
requiresVoltage?: string | number | undefined;
|
|
24274
|
+
}> | undefined;
|
|
23398
24275
|
cadModel?: string | {
|
|
23399
24276
|
stlUrl: string;
|
|
23400
24277
|
rotationOffset?: number | {
|
|
@@ -23470,7 +24347,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23470
24347
|
footprint?: FootprintProp | undefined;
|
|
23471
24348
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23472
24349
|
key?: any;
|
|
23473
|
-
pinAttributes?: Record<string,
|
|
24350
|
+
pinAttributes?: Record<string, {
|
|
24351
|
+
providesPower?: boolean | undefined;
|
|
24352
|
+
requiresPower?: boolean | undefined;
|
|
24353
|
+
providesGround?: boolean | undefined;
|
|
24354
|
+
requiresGround?: boolean | undefined;
|
|
24355
|
+
providesVoltage?: string | number | undefined;
|
|
24356
|
+
requiresVoltage?: string | number | undefined;
|
|
24357
|
+
}> | undefined;
|
|
23474
24358
|
cadModel?: string | {
|
|
23475
24359
|
stlUrl: string;
|
|
23476
24360
|
rotationOffset?: number | {
|
|
@@ -23889,7 +24773,28 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
23889
24773
|
children: z.ZodOptional<z.ZodAny>;
|
|
23890
24774
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
23891
24775
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
23892
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
24776
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24777
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
24778
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
24779
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
24780
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
24781
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24782
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24783
|
+
}, "strip", z.ZodTypeAny, {
|
|
24784
|
+
providesPower?: boolean | undefined;
|
|
24785
|
+
requiresPower?: boolean | undefined;
|
|
24786
|
+
providesGround?: boolean | undefined;
|
|
24787
|
+
requiresGround?: boolean | undefined;
|
|
24788
|
+
providesVoltage?: string | number | undefined;
|
|
24789
|
+
requiresVoltage?: string | number | undefined;
|
|
24790
|
+
}, {
|
|
24791
|
+
providesPower?: boolean | undefined;
|
|
24792
|
+
requiresPower?: boolean | undefined;
|
|
24793
|
+
providesGround?: boolean | undefined;
|
|
24794
|
+
requiresGround?: boolean | undefined;
|
|
24795
|
+
providesVoltage?: string | number | undefined;
|
|
24796
|
+
requiresVoltage?: string | number | undefined;
|
|
24797
|
+
}>>>;
|
|
23893
24798
|
} & {
|
|
23894
24799
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23895
24800
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23905,7 +24810,14 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
23905
24810
|
footprint?: FootprintProp | undefined;
|
|
23906
24811
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23907
24812
|
key?: any;
|
|
23908
|
-
pinAttributes?: Record<string,
|
|
24813
|
+
pinAttributes?: Record<string, {
|
|
24814
|
+
providesPower?: boolean | undefined;
|
|
24815
|
+
requiresPower?: boolean | undefined;
|
|
24816
|
+
providesGround?: boolean | undefined;
|
|
24817
|
+
requiresGround?: boolean | undefined;
|
|
24818
|
+
providesVoltage?: string | number | undefined;
|
|
24819
|
+
requiresVoltage?: string | number | undefined;
|
|
24820
|
+
}> | undefined;
|
|
23909
24821
|
cadModel?: string | {
|
|
23910
24822
|
stlUrl: string;
|
|
23911
24823
|
rotationOffset?: number | {
|
|
@@ -23977,7 +24889,14 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
23977
24889
|
footprint?: FootprintProp | undefined;
|
|
23978
24890
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23979
24891
|
key?: any;
|
|
23980
|
-
pinAttributes?: Record<string,
|
|
24892
|
+
pinAttributes?: Record<string, {
|
|
24893
|
+
providesPower?: boolean | undefined;
|
|
24894
|
+
requiresPower?: boolean | undefined;
|
|
24895
|
+
providesGround?: boolean | undefined;
|
|
24896
|
+
requiresGround?: boolean | undefined;
|
|
24897
|
+
providesVoltage?: string | number | undefined;
|
|
24898
|
+
requiresVoltage?: string | number | undefined;
|
|
24899
|
+
}> | undefined;
|
|
23981
24900
|
cadModel?: string | {
|
|
23982
24901
|
stlUrl: string;
|
|
23983
24902
|
rotationOffset?: number | {
|
|
@@ -24833,4 +25752,4 @@ interface PlatformConfig {
|
|
|
24833
25752
|
}
|
|
24834
25753
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
24835
25754
|
|
|
24836
|
-
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, 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 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, 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, 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 };
|
|
25755
|
+
export { type AutorouterConfig, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, 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, 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 };
|