@tscircuit/props 0.0.261 → 0.0.263
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 +334 -305
- package/dist/index.d.ts +1213 -107
- package/dist/index.js +24 -12
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +22 -4
- package/lib/components/board.ts +0 -12
- package/lib/components/group.ts +23 -1
- 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 | {
|
|
@@ -1834,6 +1934,11 @@ type SchematicPinLabel = z.infer<typeof schematicPinLabel>;
|
|
|
1834
1934
|
|
|
1835
1935
|
type Distance = number | string;
|
|
1836
1936
|
|
|
1937
|
+
type Point = {
|
|
1938
|
+
x: number | string;
|
|
1939
|
+
y: number | string;
|
|
1940
|
+
};
|
|
1941
|
+
|
|
1837
1942
|
declare const base_manual_edit_event: z.ZodObject<{
|
|
1838
1943
|
edit_event_id: z.ZodString;
|
|
1839
1944
|
in_progress: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2991,6 +3096,17 @@ interface SubcircuitGroupProps extends BaseGroupProps {
|
|
|
2991
3096
|
*/
|
|
2992
3097
|
schTraceAutoLabelEnabled?: boolean;
|
|
2993
3098
|
partsEngine?: PartsEngine;
|
|
3099
|
+
/** When autosizing, the board will be made square */
|
|
3100
|
+
square?: boolean;
|
|
3101
|
+
/** Desired empty area of the board e.g. "22mm^2" or "20%" */
|
|
3102
|
+
emptyArea?: string;
|
|
3103
|
+
/** Desired filled area of the board e.g. "22mm^2" or "20%" */
|
|
3104
|
+
filledArea?: string;
|
|
3105
|
+
width?: number | string;
|
|
3106
|
+
height?: number | string;
|
|
3107
|
+
outline?: Point[];
|
|
3108
|
+
outlineOffsetX?: number | string;
|
|
3109
|
+
outlineOffsetY?: number | string;
|
|
2994
3110
|
}
|
|
2995
3111
|
interface SubcircuitGroupPropsWithBool extends SubcircuitGroupProps {
|
|
2996
3112
|
subcircuit: true;
|
|
@@ -3508,7 +3624,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3508
3624
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
3509
3625
|
}>>;
|
|
3510
3626
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
3511
|
-
} & {
|
|
3512
3627
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3513
3628
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3514
3629
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -3737,8 +3852,6 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3737
3852
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3738
3853
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3739
3854
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3740
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3741
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3742
3855
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
3743
3856
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
3744
3857
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -3953,6 +4066,23 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
3953
4066
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
3954
4067
|
local?: boolean | undefined;
|
|
3955
4068
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
4069
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
4070
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
4071
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
4072
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4073
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4074
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4075
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4076
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4077
|
+
}, "strip", z.ZodTypeAny, {
|
|
4078
|
+
x: number;
|
|
4079
|
+
y: number;
|
|
4080
|
+
}, {
|
|
4081
|
+
x: string | number;
|
|
4082
|
+
y: string | number;
|
|
4083
|
+
}>, "many">>;
|
|
4084
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4085
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
3956
4086
|
}, "strip", z.ZodTypeAny, {
|
|
3957
4087
|
pcbX?: number | undefined;
|
|
3958
4088
|
pcbY?: number | undefined;
|
|
@@ -4117,6 +4247,15 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4117
4247
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
4118
4248
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
4119
4249
|
partsEngine?: PartsEngine | undefined;
|
|
4250
|
+
square?: boolean | undefined;
|
|
4251
|
+
emptyArea?: string | undefined;
|
|
4252
|
+
filledArea?: string | undefined;
|
|
4253
|
+
outline?: {
|
|
4254
|
+
x: number;
|
|
4255
|
+
y: number;
|
|
4256
|
+
}[] | undefined;
|
|
4257
|
+
outlineOffsetX?: number | undefined;
|
|
4258
|
+
outlineOffsetY?: number | undefined;
|
|
4120
4259
|
}, {
|
|
4121
4260
|
pcbX?: string | number | undefined;
|
|
4122
4261
|
pcbY?: string | number | undefined;
|
|
@@ -4285,6 +4424,15 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
4285
4424
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
4286
4425
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
4287
4426
|
partsEngine?: PartsEngine | undefined;
|
|
4427
|
+
square?: boolean | undefined;
|
|
4428
|
+
emptyArea?: string | undefined;
|
|
4429
|
+
filledArea?: string | undefined;
|
|
4430
|
+
outline?: {
|
|
4431
|
+
x: string | number;
|
|
4432
|
+
y: string | number;
|
|
4433
|
+
}[] | undefined;
|
|
4434
|
+
outlineOffsetX?: string | number | undefined;
|
|
4435
|
+
outlineOffsetY?: string | number | undefined;
|
|
4288
4436
|
}>;
|
|
4289
4437
|
declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
4290
4438
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4303,7 +4451,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4303
4451
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
4304
4452
|
}>>;
|
|
4305
4453
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
4306
|
-
} & {
|
|
4307
4454
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4308
4455
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4309
4456
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -4532,8 +4679,6 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4532
4679
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4533
4680
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4534
4681
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4535
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4536
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4537
4682
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
4538
4683
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
4539
4684
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -4748,6 +4893,23 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4748
4893
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
4749
4894
|
local?: boolean | undefined;
|
|
4750
4895
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
4896
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
4897
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
4898
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
4899
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4900
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4901
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
4902
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4903
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
4904
|
+
}, "strip", z.ZodTypeAny, {
|
|
4905
|
+
x: number;
|
|
4906
|
+
y: number;
|
|
4907
|
+
}, {
|
|
4908
|
+
x: string | number;
|
|
4909
|
+
y: string | number;
|
|
4910
|
+
}>, "many">>;
|
|
4911
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4912
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
4751
4913
|
} & {
|
|
4752
4914
|
subcircuit: z.ZodLiteral<true>;
|
|
4753
4915
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4915,6 +5077,15 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
4915
5077
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
4916
5078
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
4917
5079
|
partsEngine?: PartsEngine | undefined;
|
|
5080
|
+
square?: boolean | undefined;
|
|
5081
|
+
emptyArea?: string | undefined;
|
|
5082
|
+
filledArea?: string | undefined;
|
|
5083
|
+
outline?: {
|
|
5084
|
+
x: number;
|
|
5085
|
+
y: number;
|
|
5086
|
+
}[] | undefined;
|
|
5087
|
+
outlineOffsetX?: number | undefined;
|
|
5088
|
+
outlineOffsetY?: number | undefined;
|
|
4918
5089
|
}, {
|
|
4919
5090
|
subcircuit: true;
|
|
4920
5091
|
pcbX?: string | number | undefined;
|
|
@@ -5084,6 +5255,15 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
5084
5255
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
5085
5256
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
5086
5257
|
partsEngine?: PartsEngine | undefined;
|
|
5258
|
+
square?: boolean | undefined;
|
|
5259
|
+
emptyArea?: string | undefined;
|
|
5260
|
+
filledArea?: string | undefined;
|
|
5261
|
+
outline?: {
|
|
5262
|
+
x: string | number;
|
|
5263
|
+
y: string | number;
|
|
5264
|
+
}[] | undefined;
|
|
5265
|
+
outlineOffsetX?: string | number | undefined;
|
|
5266
|
+
outlineOffsetY?: string | number | undefined;
|
|
5087
5267
|
}>;
|
|
5088
5268
|
declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
5089
5269
|
pcbX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5596,7 +5776,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5596
5776
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
5597
5777
|
}>>;
|
|
5598
5778
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
5599
|
-
} & {
|
|
5600
5779
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5601
5780
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5602
5781
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -5825,8 +6004,6 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
5825
6004
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5826
6005
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5827
6006
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5828
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5829
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
5830
6007
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
5831
6008
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
5832
6009
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -6041,6 +6218,23 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6041
6218
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6042
6219
|
local?: boolean | undefined;
|
|
6043
6220
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
6221
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
6222
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
6223
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
6224
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6225
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6226
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6227
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6228
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
6229
|
+
}, "strip", z.ZodTypeAny, {
|
|
6230
|
+
x: number;
|
|
6231
|
+
y: number;
|
|
6232
|
+
}, {
|
|
6233
|
+
x: string | number;
|
|
6234
|
+
y: string | number;
|
|
6235
|
+
}>, "many">>;
|
|
6236
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6237
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6044
6238
|
} & {
|
|
6045
6239
|
subcircuit: z.ZodLiteral<true>;
|
|
6046
6240
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6208,6 +6402,15 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6208
6402
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
6209
6403
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
6210
6404
|
partsEngine?: PartsEngine | undefined;
|
|
6405
|
+
square?: boolean | undefined;
|
|
6406
|
+
emptyArea?: string | undefined;
|
|
6407
|
+
filledArea?: string | undefined;
|
|
6408
|
+
outline?: {
|
|
6409
|
+
x: number;
|
|
6410
|
+
y: number;
|
|
6411
|
+
}[] | undefined;
|
|
6412
|
+
outlineOffsetX?: number | undefined;
|
|
6413
|
+
outlineOffsetY?: number | undefined;
|
|
6211
6414
|
}, {
|
|
6212
6415
|
subcircuit: true;
|
|
6213
6416
|
pcbX?: string | number | undefined;
|
|
@@ -6377,19 +6580,18 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
6377
6580
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
6378
6581
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
6379
6582
|
partsEngine?: PartsEngine | undefined;
|
|
6583
|
+
square?: boolean | undefined;
|
|
6584
|
+
emptyArea?: string | undefined;
|
|
6585
|
+
filledArea?: string | undefined;
|
|
6586
|
+
outline?: {
|
|
6587
|
+
x: string | number;
|
|
6588
|
+
y: string | number;
|
|
6589
|
+
}[] | undefined;
|
|
6590
|
+
outlineOffsetX?: string | number | undefined;
|
|
6591
|
+
outlineOffsetY?: string | number | undefined;
|
|
6380
6592
|
}>]>;
|
|
6381
6593
|
|
|
6382
|
-
type Point = {
|
|
6383
|
-
x: number | string;
|
|
6384
|
-
y: number | string;
|
|
6385
|
-
};
|
|
6386
|
-
|
|
6387
6594
|
interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit"> {
|
|
6388
|
-
width?: number | string;
|
|
6389
|
-
height?: number | string;
|
|
6390
|
-
outline?: Point[];
|
|
6391
|
-
outlineOffsetX?: number | string;
|
|
6392
|
-
outlineOffsetY?: number | string;
|
|
6393
6595
|
material?: "fr4" | "fr1";
|
|
6394
6596
|
}
|
|
6395
6597
|
declare const boardProps: z.ZodObject<{
|
|
@@ -6643,6 +6845,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6643
6845
|
children: z.ZodOptional<z.ZodAny>;
|
|
6644
6846
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
6645
6847
|
key: z.ZodOptional<z.ZodAny>;
|
|
6848
|
+
} & {
|
|
6646
6849
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
6647
6850
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6648
6851
|
selector: z.ZodString;
|
|
@@ -6850,7 +7053,9 @@ declare const boardProps: z.ZodObject<{
|
|
|
6850
7053
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
6851
7054
|
local?: boolean | undefined;
|
|
6852
7055
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
6853
|
-
|
|
7056
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
7057
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
7058
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
6854
7059
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6855
7060
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6856
7061
|
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -6865,6 +7070,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
6865
7070
|
}>, "many">>;
|
|
6866
7071
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6867
7072
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7073
|
+
} & {
|
|
6868
7074
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
6869
7075
|
}, "strip", z.ZodTypeAny, {
|
|
6870
7076
|
material: "fr4" | "fr1";
|
|
@@ -7031,6 +7237,9 @@ declare const boardProps: z.ZodObject<{
|
|
|
7031
7237
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
7032
7238
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
7033
7239
|
partsEngine?: PartsEngine | undefined;
|
|
7240
|
+
square?: boolean | undefined;
|
|
7241
|
+
emptyArea?: string | undefined;
|
|
7242
|
+
filledArea?: string | undefined;
|
|
7034
7243
|
outline?: {
|
|
7035
7244
|
x: number;
|
|
7036
7245
|
y: number;
|
|
@@ -7205,6 +7414,9 @@ declare const boardProps: z.ZodObject<{
|
|
|
7205
7414
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
7206
7415
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
7207
7416
|
partsEngine?: PartsEngine | undefined;
|
|
7417
|
+
square?: boolean | undefined;
|
|
7418
|
+
emptyArea?: string | undefined;
|
|
7419
|
+
filledArea?: string | undefined;
|
|
7208
7420
|
outline?: {
|
|
7209
7421
|
x: string | number;
|
|
7210
7422
|
y: string | number;
|
|
@@ -7461,8 +7673,6 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7461
7673
|
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
7462
7674
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7463
7675
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7464
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7465
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7466
7676
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
7467
7677
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
7468
7678
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -7676,6 +7886,23 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7676
7886
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
7677
7887
|
local?: boolean | undefined;
|
|
7678
7888
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
7889
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
7890
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
7891
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
7892
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7893
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7894
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
7895
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7896
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
7897
|
+
}, "strip", z.ZodTypeAny, {
|
|
7898
|
+
x: number;
|
|
7899
|
+
y: number;
|
|
7900
|
+
}, {
|
|
7901
|
+
x: string | number;
|
|
7902
|
+
y: string | number;
|
|
7903
|
+
}>, "many">>;
|
|
7904
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7905
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7679
7906
|
} & {
|
|
7680
7907
|
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
7681
7908
|
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -7846,6 +8073,15 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
7846
8073
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
7847
8074
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
7848
8075
|
partsEngine?: PartsEngine | undefined;
|
|
8076
|
+
square?: boolean | undefined;
|
|
8077
|
+
emptyArea?: string | undefined;
|
|
8078
|
+
filledArea?: string | undefined;
|
|
8079
|
+
outline?: {
|
|
8080
|
+
x: number;
|
|
8081
|
+
y: number;
|
|
8082
|
+
}[] | undefined;
|
|
8083
|
+
outlineOffsetX?: number | undefined;
|
|
8084
|
+
outlineOffsetY?: number | undefined;
|
|
7849
8085
|
}, {
|
|
7850
8086
|
pcbX?: string | number | undefined;
|
|
7851
8087
|
pcbY?: string | number | undefined;
|
|
@@ -8014,6 +8250,15 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
8014
8250
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
8015
8251
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
8016
8252
|
partsEngine?: PartsEngine | undefined;
|
|
8253
|
+
square?: boolean | undefined;
|
|
8254
|
+
emptyArea?: string | undefined;
|
|
8255
|
+
filledArea?: string | undefined;
|
|
8256
|
+
outline?: {
|
|
8257
|
+
x: string | number;
|
|
8258
|
+
y: string | number;
|
|
8259
|
+
}[] | undefined;
|
|
8260
|
+
outlineOffsetX?: string | number | undefined;
|
|
8261
|
+
outlineOffsetY?: string | number | undefined;
|
|
8017
8262
|
}>;
|
|
8018
8263
|
|
|
8019
8264
|
type ConnectionTarget = string;
|
|
@@ -8416,7 +8661,28 @@ declare const chipProps: z.ZodObject<{
|
|
|
8416
8661
|
children: z.ZodOptional<z.ZodAny>;
|
|
8417
8662
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
8418
8663
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
8419
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
8664
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
8665
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
8666
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
8667
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
8668
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
8669
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
8670
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
8671
|
+
}, "strip", z.ZodTypeAny, {
|
|
8672
|
+
providesPower?: boolean | undefined;
|
|
8673
|
+
requiresPower?: boolean | undefined;
|
|
8674
|
+
providesGround?: boolean | undefined;
|
|
8675
|
+
requiresGround?: boolean | undefined;
|
|
8676
|
+
providesVoltage?: string | number | undefined;
|
|
8677
|
+
requiresVoltage?: string | number | undefined;
|
|
8678
|
+
}, {
|
|
8679
|
+
providesPower?: boolean | undefined;
|
|
8680
|
+
requiresPower?: boolean | undefined;
|
|
8681
|
+
providesGround?: boolean | undefined;
|
|
8682
|
+
requiresGround?: boolean | undefined;
|
|
8683
|
+
providesVoltage?: string | number | undefined;
|
|
8684
|
+
requiresVoltage?: string | number | undefined;
|
|
8685
|
+
}>>>;
|
|
8420
8686
|
} & {
|
|
8421
8687
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
8422
8688
|
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 +8945,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
8679
8945
|
footprint?: FootprintProp | undefined;
|
|
8680
8946
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8681
8947
|
key?: any;
|
|
8682
|
-
pinAttributes?: Record<string,
|
|
8948
|
+
pinAttributes?: Record<string, {
|
|
8949
|
+
providesPower?: boolean | undefined;
|
|
8950
|
+
requiresPower?: boolean | undefined;
|
|
8951
|
+
providesGround?: boolean | undefined;
|
|
8952
|
+
requiresGround?: boolean | undefined;
|
|
8953
|
+
providesVoltage?: string | number | undefined;
|
|
8954
|
+
requiresVoltage?: string | number | undefined;
|
|
8955
|
+
}> | undefined;
|
|
8683
8956
|
cadModel?: string | {
|
|
8684
8957
|
stlUrl: string;
|
|
8685
8958
|
rotationOffset?: number | {
|
|
@@ -8827,7 +9100,14 @@ declare const chipProps: z.ZodObject<{
|
|
|
8827
9100
|
footprint?: FootprintProp | undefined;
|
|
8828
9101
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
8829
9102
|
key?: any;
|
|
8830
|
-
pinAttributes?: Record<string,
|
|
9103
|
+
pinAttributes?: Record<string, {
|
|
9104
|
+
providesPower?: boolean | undefined;
|
|
9105
|
+
requiresPower?: boolean | undefined;
|
|
9106
|
+
providesGround?: boolean | undefined;
|
|
9107
|
+
requiresGround?: boolean | undefined;
|
|
9108
|
+
providesVoltage?: string | number | undefined;
|
|
9109
|
+
requiresVoltage?: string | number | undefined;
|
|
9110
|
+
}> | undefined;
|
|
8831
9111
|
cadModel?: string | {
|
|
8832
9112
|
stlUrl: string;
|
|
8833
9113
|
rotationOffset?: number | {
|
|
@@ -9222,7 +9502,28 @@ declare const bugProps: z.ZodObject<{
|
|
|
9222
9502
|
children: z.ZodOptional<z.ZodAny>;
|
|
9223
9503
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
9224
9504
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
9225
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
9505
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
9506
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
9507
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
9508
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
9509
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
9510
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9511
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9512
|
+
}, "strip", z.ZodTypeAny, {
|
|
9513
|
+
providesPower?: boolean | undefined;
|
|
9514
|
+
requiresPower?: boolean | undefined;
|
|
9515
|
+
providesGround?: boolean | undefined;
|
|
9516
|
+
requiresGround?: boolean | undefined;
|
|
9517
|
+
providesVoltage?: string | number | undefined;
|
|
9518
|
+
requiresVoltage?: string | number | undefined;
|
|
9519
|
+
}, {
|
|
9520
|
+
providesPower?: boolean | undefined;
|
|
9521
|
+
requiresPower?: boolean | undefined;
|
|
9522
|
+
providesGround?: boolean | undefined;
|
|
9523
|
+
requiresGround?: boolean | undefined;
|
|
9524
|
+
providesVoltage?: string | number | undefined;
|
|
9525
|
+
requiresVoltage?: string | number | undefined;
|
|
9526
|
+
}>>>;
|
|
9226
9527
|
} & {
|
|
9227
9528
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
9228
9529
|
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 +9786,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
9485
9786
|
footprint?: FootprintProp | undefined;
|
|
9486
9787
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9487
9788
|
key?: any;
|
|
9488
|
-
pinAttributes?: Record<string,
|
|
9789
|
+
pinAttributes?: Record<string, {
|
|
9790
|
+
providesPower?: boolean | undefined;
|
|
9791
|
+
requiresPower?: boolean | undefined;
|
|
9792
|
+
providesGround?: boolean | undefined;
|
|
9793
|
+
requiresGround?: boolean | undefined;
|
|
9794
|
+
providesVoltage?: string | number | undefined;
|
|
9795
|
+
requiresVoltage?: string | number | undefined;
|
|
9796
|
+
}> | undefined;
|
|
9489
9797
|
cadModel?: string | {
|
|
9490
9798
|
stlUrl: string;
|
|
9491
9799
|
rotationOffset?: number | {
|
|
@@ -9633,7 +9941,14 @@ declare const bugProps: z.ZodObject<{
|
|
|
9633
9941
|
footprint?: FootprintProp | undefined;
|
|
9634
9942
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
9635
9943
|
key?: any;
|
|
9636
|
-
pinAttributes?: Record<string,
|
|
9944
|
+
pinAttributes?: Record<string, {
|
|
9945
|
+
providesPower?: boolean | undefined;
|
|
9946
|
+
requiresPower?: boolean | undefined;
|
|
9947
|
+
providesGround?: boolean | undefined;
|
|
9948
|
+
requiresGround?: boolean | undefined;
|
|
9949
|
+
providesVoltage?: string | number | undefined;
|
|
9950
|
+
requiresVoltage?: string | number | undefined;
|
|
9951
|
+
}> | undefined;
|
|
9637
9952
|
cadModel?: string | {
|
|
9638
9953
|
stlUrl: string;
|
|
9639
9954
|
rotationOffset?: number | {
|
|
@@ -10054,7 +10369,28 @@ declare const jumperProps: z.ZodObject<{
|
|
|
10054
10369
|
children: z.ZodOptional<z.ZodAny>;
|
|
10055
10370
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10056
10371
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10057
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
10372
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
10373
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
10374
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
10375
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
10376
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
10377
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10378
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
10379
|
+
}, "strip", z.ZodTypeAny, {
|
|
10380
|
+
providesPower?: boolean | undefined;
|
|
10381
|
+
requiresPower?: boolean | undefined;
|
|
10382
|
+
providesGround?: boolean | undefined;
|
|
10383
|
+
requiresGround?: boolean | undefined;
|
|
10384
|
+
providesVoltage?: string | number | undefined;
|
|
10385
|
+
requiresVoltage?: string | number | undefined;
|
|
10386
|
+
}, {
|
|
10387
|
+
providesPower?: boolean | undefined;
|
|
10388
|
+
requiresPower?: boolean | undefined;
|
|
10389
|
+
providesGround?: boolean | undefined;
|
|
10390
|
+
requiresGround?: boolean | undefined;
|
|
10391
|
+
providesVoltage?: string | number | undefined;
|
|
10392
|
+
requiresVoltage?: string | number | undefined;
|
|
10393
|
+
}>>>;
|
|
10058
10394
|
} & {
|
|
10059
10395
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
10060
10396
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -10206,7 +10542,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
10206
10542
|
footprint?: FootprintProp | undefined;
|
|
10207
10543
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10208
10544
|
key?: any;
|
|
10209
|
-
pinAttributes?: Record<string,
|
|
10545
|
+
pinAttributes?: Record<string, {
|
|
10546
|
+
providesPower?: boolean | undefined;
|
|
10547
|
+
requiresPower?: boolean | undefined;
|
|
10548
|
+
providesGround?: boolean | undefined;
|
|
10549
|
+
requiresGround?: boolean | undefined;
|
|
10550
|
+
providesVoltage?: string | number | undefined;
|
|
10551
|
+
requiresVoltage?: string | number | undefined;
|
|
10552
|
+
}> | undefined;
|
|
10210
10553
|
cadModel?: string | {
|
|
10211
10554
|
stlUrl: string;
|
|
10212
10555
|
rotationOffset?: number | {
|
|
@@ -10323,7 +10666,14 @@ declare const jumperProps: z.ZodObject<{
|
|
|
10323
10666
|
footprint?: FootprintProp | undefined;
|
|
10324
10667
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10325
10668
|
key?: any;
|
|
10326
|
-
pinAttributes?: Record<string,
|
|
10669
|
+
pinAttributes?: Record<string, {
|
|
10670
|
+
providesPower?: boolean | undefined;
|
|
10671
|
+
requiresPower?: boolean | undefined;
|
|
10672
|
+
providesGround?: boolean | undefined;
|
|
10673
|
+
requiresGround?: boolean | undefined;
|
|
10674
|
+
providesVoltage?: string | number | undefined;
|
|
10675
|
+
requiresVoltage?: string | number | undefined;
|
|
10676
|
+
}> | undefined;
|
|
10327
10677
|
cadModel?: string | {
|
|
10328
10678
|
stlUrl: string;
|
|
10329
10679
|
rotationOffset?: number | {
|
|
@@ -10695,7 +11045,28 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
10695
11045
|
children: z.ZodOptional<z.ZodAny>;
|
|
10696
11046
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
10697
11047
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
10698
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11048
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11049
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
11050
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
11051
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
11052
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
11053
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11054
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11055
|
+
}, "strip", z.ZodTypeAny, {
|
|
11056
|
+
providesPower?: boolean | undefined;
|
|
11057
|
+
requiresPower?: boolean | undefined;
|
|
11058
|
+
providesGround?: boolean | undefined;
|
|
11059
|
+
requiresGround?: boolean | undefined;
|
|
11060
|
+
providesVoltage?: string | number | undefined;
|
|
11061
|
+
requiresVoltage?: string | number | undefined;
|
|
11062
|
+
}, {
|
|
11063
|
+
providesPower?: boolean | undefined;
|
|
11064
|
+
requiresPower?: boolean | undefined;
|
|
11065
|
+
providesGround?: boolean | undefined;
|
|
11066
|
+
requiresGround?: boolean | undefined;
|
|
11067
|
+
providesVoltage?: string | number | undefined;
|
|
11068
|
+
requiresVoltage?: string | number | undefined;
|
|
11069
|
+
}>>>;
|
|
10699
11070
|
} & {
|
|
10700
11071
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
10701
11072
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -10850,7 +11221,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
10850
11221
|
footprint?: FootprintProp | undefined;
|
|
10851
11222
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10852
11223
|
key?: any;
|
|
10853
|
-
pinAttributes?: Record<string,
|
|
11224
|
+
pinAttributes?: Record<string, {
|
|
11225
|
+
providesPower?: boolean | undefined;
|
|
11226
|
+
requiresPower?: boolean | undefined;
|
|
11227
|
+
providesGround?: boolean | undefined;
|
|
11228
|
+
requiresGround?: boolean | undefined;
|
|
11229
|
+
providesVoltage?: string | number | undefined;
|
|
11230
|
+
requiresVoltage?: string | number | undefined;
|
|
11231
|
+
}> | undefined;
|
|
10854
11232
|
cadModel?: string | {
|
|
10855
11233
|
stlUrl: string;
|
|
10856
11234
|
rotationOffset?: number | {
|
|
@@ -10969,7 +11347,14 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
10969
11347
|
footprint?: FootprintProp | undefined;
|
|
10970
11348
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
10971
11349
|
key?: any;
|
|
10972
|
-
pinAttributes?: Record<string,
|
|
11350
|
+
pinAttributes?: Record<string, {
|
|
11351
|
+
providesPower?: boolean | undefined;
|
|
11352
|
+
requiresPower?: boolean | undefined;
|
|
11353
|
+
providesGround?: boolean | undefined;
|
|
11354
|
+
requiresGround?: boolean | undefined;
|
|
11355
|
+
providesVoltage?: string | number | undefined;
|
|
11356
|
+
requiresVoltage?: string | number | undefined;
|
|
11357
|
+
}> | undefined;
|
|
10973
11358
|
cadModel?: string | {
|
|
10974
11359
|
stlUrl: string;
|
|
10975
11360
|
rotationOffset?: number | {
|
|
@@ -11352,7 +11737,28 @@ declare const connectorProps: z.ZodObject<{
|
|
|
11352
11737
|
children: z.ZodOptional<z.ZodAny>;
|
|
11353
11738
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
11354
11739
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
11355
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
11740
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
11741
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
11742
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
11743
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
11744
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
11745
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11746
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
11747
|
+
}, "strip", z.ZodTypeAny, {
|
|
11748
|
+
providesPower?: boolean | undefined;
|
|
11749
|
+
requiresPower?: boolean | undefined;
|
|
11750
|
+
providesGround?: boolean | undefined;
|
|
11751
|
+
requiresGround?: boolean | undefined;
|
|
11752
|
+
providesVoltage?: string | number | undefined;
|
|
11753
|
+
requiresVoltage?: string | number | undefined;
|
|
11754
|
+
}, {
|
|
11755
|
+
providesPower?: boolean | undefined;
|
|
11756
|
+
requiresPower?: boolean | undefined;
|
|
11757
|
+
providesGround?: boolean | undefined;
|
|
11758
|
+
requiresGround?: boolean | undefined;
|
|
11759
|
+
providesVoltage?: string | number | undefined;
|
|
11760
|
+
requiresVoltage?: string | number | undefined;
|
|
11761
|
+
}>>>;
|
|
11356
11762
|
} & {
|
|
11357
11763
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
11358
11764
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -11502,7 +11908,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
11502
11908
|
footprint?: FootprintProp | undefined;
|
|
11503
11909
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11504
11910
|
key?: any;
|
|
11505
|
-
pinAttributes?: Record<string,
|
|
11911
|
+
pinAttributes?: Record<string, {
|
|
11912
|
+
providesPower?: boolean | undefined;
|
|
11913
|
+
requiresPower?: boolean | undefined;
|
|
11914
|
+
providesGround?: boolean | undefined;
|
|
11915
|
+
requiresGround?: boolean | undefined;
|
|
11916
|
+
providesVoltage?: string | number | undefined;
|
|
11917
|
+
requiresVoltage?: string | number | undefined;
|
|
11918
|
+
}> | undefined;
|
|
11506
11919
|
cadModel?: string | {
|
|
11507
11920
|
stlUrl: string;
|
|
11508
11921
|
rotationOffset?: number | {
|
|
@@ -11617,7 +12030,14 @@ declare const connectorProps: z.ZodObject<{
|
|
|
11617
12030
|
footprint?: FootprintProp | undefined;
|
|
11618
12031
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
11619
12032
|
key?: any;
|
|
11620
|
-
pinAttributes?: Record<string,
|
|
12033
|
+
pinAttributes?: Record<string, {
|
|
12034
|
+
providesPower?: boolean | undefined;
|
|
12035
|
+
requiresPower?: boolean | undefined;
|
|
12036
|
+
providesGround?: boolean | undefined;
|
|
12037
|
+
requiresGround?: boolean | undefined;
|
|
12038
|
+
providesVoltage?: string | number | undefined;
|
|
12039
|
+
requiresVoltage?: string | number | undefined;
|
|
12040
|
+
}> | undefined;
|
|
11621
12041
|
cadModel?: string | {
|
|
11622
12042
|
stlUrl: string;
|
|
11623
12043
|
rotationOffset?: number | {
|
|
@@ -12004,7 +12424,28 @@ declare const fuseProps: z.ZodObject<{
|
|
|
12004
12424
|
children: z.ZodOptional<z.ZodAny>;
|
|
12005
12425
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
12006
12426
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
12007
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
12427
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12428
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
12429
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
12430
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
12431
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
12432
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12433
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12434
|
+
}, "strip", z.ZodTypeAny, {
|
|
12435
|
+
providesPower?: boolean | undefined;
|
|
12436
|
+
requiresPower?: boolean | undefined;
|
|
12437
|
+
providesGround?: boolean | undefined;
|
|
12438
|
+
requiresGround?: boolean | undefined;
|
|
12439
|
+
providesVoltage?: string | number | undefined;
|
|
12440
|
+
requiresVoltage?: string | number | undefined;
|
|
12441
|
+
}, {
|
|
12442
|
+
providesPower?: boolean | undefined;
|
|
12443
|
+
requiresPower?: boolean | undefined;
|
|
12444
|
+
providesGround?: boolean | undefined;
|
|
12445
|
+
requiresGround?: boolean | undefined;
|
|
12446
|
+
providesVoltage?: string | number | undefined;
|
|
12447
|
+
requiresVoltage?: string | number | undefined;
|
|
12448
|
+
}>>>;
|
|
12008
12449
|
} & {
|
|
12009
12450
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
12010
12451
|
voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -12024,7 +12465,14 @@ declare const fuseProps: z.ZodObject<{
|
|
|
12024
12465
|
footprint?: FootprintProp | undefined;
|
|
12025
12466
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12026
12467
|
key?: any;
|
|
12027
|
-
pinAttributes?: Record<string,
|
|
12468
|
+
pinAttributes?: Record<string, {
|
|
12469
|
+
providesPower?: boolean | undefined;
|
|
12470
|
+
requiresPower?: boolean | undefined;
|
|
12471
|
+
providesGround?: boolean | undefined;
|
|
12472
|
+
requiresGround?: boolean | undefined;
|
|
12473
|
+
providesVoltage?: string | number | undefined;
|
|
12474
|
+
requiresVoltage?: string | number | undefined;
|
|
12475
|
+
}> | undefined;
|
|
12028
12476
|
cadModel?: string | {
|
|
12029
12477
|
stlUrl: string;
|
|
12030
12478
|
rotationOffset?: number | {
|
|
@@ -12100,7 +12548,14 @@ declare const fuseProps: z.ZodObject<{
|
|
|
12100
12548
|
footprint?: FootprintProp | undefined;
|
|
12101
12549
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12102
12550
|
key?: any;
|
|
12103
|
-
pinAttributes?: Record<string,
|
|
12551
|
+
pinAttributes?: Record<string, {
|
|
12552
|
+
providesPower?: boolean | undefined;
|
|
12553
|
+
requiresPower?: boolean | undefined;
|
|
12554
|
+
providesGround?: boolean | undefined;
|
|
12555
|
+
requiresGround?: boolean | undefined;
|
|
12556
|
+
providesVoltage?: string | number | undefined;
|
|
12557
|
+
requiresVoltage?: string | number | undefined;
|
|
12558
|
+
}> | undefined;
|
|
12104
12559
|
cadModel?: string | {
|
|
12105
12560
|
stlUrl: string;
|
|
12106
12561
|
rotationOffset?: number | {
|
|
@@ -12849,7 +13304,28 @@ declare const resistorProps: z.ZodObject<{
|
|
|
12849
13304
|
children: z.ZodOptional<z.ZodAny>;
|
|
12850
13305
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
12851
13306
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
12852
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13307
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13308
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
13309
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
13310
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
13311
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
13312
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13313
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13314
|
+
}, "strip", z.ZodTypeAny, {
|
|
13315
|
+
providesPower?: boolean | undefined;
|
|
13316
|
+
requiresPower?: boolean | undefined;
|
|
13317
|
+
providesGround?: boolean | undefined;
|
|
13318
|
+
requiresGround?: boolean | undefined;
|
|
13319
|
+
providesVoltage?: string | number | undefined;
|
|
13320
|
+
requiresVoltage?: string | number | undefined;
|
|
13321
|
+
}, {
|
|
13322
|
+
providesPower?: boolean | undefined;
|
|
13323
|
+
requiresPower?: boolean | undefined;
|
|
13324
|
+
providesGround?: boolean | undefined;
|
|
13325
|
+
requiresGround?: boolean | undefined;
|
|
13326
|
+
providesVoltage?: string | number | undefined;
|
|
13327
|
+
requiresVoltage?: string | number | undefined;
|
|
13328
|
+
}>>>;
|
|
12853
13329
|
} & {
|
|
12854
13330
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
12855
13331
|
pullupFor: z.ZodOptional<z.ZodString>;
|
|
@@ -12871,7 +13347,14 @@ declare const resistorProps: z.ZodObject<{
|
|
|
12871
13347
|
footprint?: FootprintProp | undefined;
|
|
12872
13348
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12873
13349
|
key?: any;
|
|
12874
|
-
pinAttributes?: Record<string,
|
|
13350
|
+
pinAttributes?: Record<string, {
|
|
13351
|
+
providesPower?: boolean | undefined;
|
|
13352
|
+
requiresPower?: boolean | undefined;
|
|
13353
|
+
providesGround?: boolean | undefined;
|
|
13354
|
+
requiresGround?: boolean | undefined;
|
|
13355
|
+
providesVoltage?: string | number | undefined;
|
|
13356
|
+
requiresVoltage?: string | number | undefined;
|
|
13357
|
+
}> | undefined;
|
|
12875
13358
|
cadModel?: string | {
|
|
12876
13359
|
stlUrl: string;
|
|
12877
13360
|
rotationOffset?: number | {
|
|
@@ -12949,7 +13432,14 @@ declare const resistorProps: z.ZodObject<{
|
|
|
12949
13432
|
footprint?: FootprintProp | undefined;
|
|
12950
13433
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
12951
13434
|
key?: any;
|
|
12952
|
-
pinAttributes?: Record<string,
|
|
13435
|
+
pinAttributes?: Record<string, {
|
|
13436
|
+
providesPower?: boolean | undefined;
|
|
13437
|
+
requiresPower?: boolean | undefined;
|
|
13438
|
+
providesGround?: boolean | undefined;
|
|
13439
|
+
requiresGround?: boolean | undefined;
|
|
13440
|
+
providesVoltage?: string | number | undefined;
|
|
13441
|
+
requiresVoltage?: string | number | undefined;
|
|
13442
|
+
}> | undefined;
|
|
12953
13443
|
cadModel?: string | {
|
|
12954
13444
|
stlUrl: string;
|
|
12955
13445
|
rotationOffset?: number | {
|
|
@@ -13277,7 +13767,28 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
13277
13767
|
children: z.ZodOptional<z.ZodAny>;
|
|
13278
13768
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
13279
13769
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
13280
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
13770
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
13771
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
13772
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
13773
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
13774
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
13775
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13776
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13777
|
+
}, "strip", z.ZodTypeAny, {
|
|
13778
|
+
providesPower?: boolean | undefined;
|
|
13779
|
+
requiresPower?: boolean | undefined;
|
|
13780
|
+
providesGround?: boolean | undefined;
|
|
13781
|
+
requiresGround?: boolean | undefined;
|
|
13782
|
+
providesVoltage?: string | number | undefined;
|
|
13783
|
+
requiresVoltage?: string | number | undefined;
|
|
13784
|
+
}, {
|
|
13785
|
+
providesPower?: boolean | undefined;
|
|
13786
|
+
requiresPower?: boolean | undefined;
|
|
13787
|
+
providesGround?: boolean | undefined;
|
|
13788
|
+
requiresGround?: boolean | undefined;
|
|
13789
|
+
providesVoltage?: string | number | undefined;
|
|
13790
|
+
requiresVoltage?: string | number | undefined;
|
|
13791
|
+
}>>>;
|
|
13281
13792
|
} & {
|
|
13282
13793
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13283
13794
|
pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
|
|
@@ -13294,7 +13805,14 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
13294
13805
|
footprint?: FootprintProp | undefined;
|
|
13295
13806
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13296
13807
|
key?: any;
|
|
13297
|
-
pinAttributes?: Record<string,
|
|
13808
|
+
pinAttributes?: Record<string, {
|
|
13809
|
+
providesPower?: boolean | undefined;
|
|
13810
|
+
requiresPower?: boolean | undefined;
|
|
13811
|
+
providesGround?: boolean | undefined;
|
|
13812
|
+
requiresGround?: boolean | undefined;
|
|
13813
|
+
providesVoltage?: string | number | undefined;
|
|
13814
|
+
requiresVoltage?: string | number | undefined;
|
|
13815
|
+
}> | undefined;
|
|
13298
13816
|
cadModel?: string | {
|
|
13299
13817
|
stlUrl: string;
|
|
13300
13818
|
rotationOffset?: number | {
|
|
@@ -13367,7 +13885,14 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
13367
13885
|
footprint?: FootprintProp | undefined;
|
|
13368
13886
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13369
13887
|
key?: any;
|
|
13370
|
-
pinAttributes?: Record<string,
|
|
13888
|
+
pinAttributes?: Record<string, {
|
|
13889
|
+
providesPower?: boolean | undefined;
|
|
13890
|
+
requiresPower?: boolean | undefined;
|
|
13891
|
+
providesGround?: boolean | undefined;
|
|
13892
|
+
requiresGround?: boolean | undefined;
|
|
13893
|
+
providesVoltage?: string | number | undefined;
|
|
13894
|
+
requiresVoltage?: string | number | undefined;
|
|
13895
|
+
}> | undefined;
|
|
13371
13896
|
cadModel?: string | {
|
|
13372
13897
|
stlUrl: string;
|
|
13373
13898
|
rotationOffset?: number | {
|
|
@@ -13691,7 +14216,28 @@ declare const crystalProps: z.ZodObject<{
|
|
|
13691
14216
|
children: z.ZodOptional<z.ZodAny>;
|
|
13692
14217
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
13693
14218
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
13694
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14219
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14220
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
14221
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
14222
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
14223
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
14224
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14225
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14226
|
+
}, "strip", z.ZodTypeAny, {
|
|
14227
|
+
providesPower?: boolean | undefined;
|
|
14228
|
+
requiresPower?: boolean | undefined;
|
|
14229
|
+
providesGround?: boolean | undefined;
|
|
14230
|
+
requiresGround?: boolean | undefined;
|
|
14231
|
+
providesVoltage?: string | number | undefined;
|
|
14232
|
+
requiresVoltage?: string | number | undefined;
|
|
14233
|
+
}, {
|
|
14234
|
+
providesPower?: boolean | undefined;
|
|
14235
|
+
requiresPower?: boolean | undefined;
|
|
14236
|
+
providesGround?: boolean | undefined;
|
|
14237
|
+
requiresGround?: boolean | undefined;
|
|
14238
|
+
providesVoltage?: string | number | undefined;
|
|
14239
|
+
requiresVoltage?: string | number | undefined;
|
|
14240
|
+
}>>>;
|
|
13695
14241
|
} & {
|
|
13696
14242
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
13697
14243
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -13711,7 +14257,14 @@ declare const crystalProps: z.ZodObject<{
|
|
|
13711
14257
|
footprint?: FootprintProp | undefined;
|
|
13712
14258
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13713
14259
|
key?: any;
|
|
13714
|
-
pinAttributes?: Record<string,
|
|
14260
|
+
pinAttributes?: Record<string, {
|
|
14261
|
+
providesPower?: boolean | undefined;
|
|
14262
|
+
requiresPower?: boolean | undefined;
|
|
14263
|
+
providesGround?: boolean | undefined;
|
|
14264
|
+
requiresGround?: boolean | undefined;
|
|
14265
|
+
providesVoltage?: string | number | undefined;
|
|
14266
|
+
requiresVoltage?: string | number | undefined;
|
|
14267
|
+
}> | undefined;
|
|
13715
14268
|
cadModel?: string | {
|
|
13716
14269
|
stlUrl: string;
|
|
13717
14270
|
rotationOffset?: number | {
|
|
@@ -13786,7 +14339,14 @@ declare const crystalProps: z.ZodObject<{
|
|
|
13786
14339
|
footprint?: FootprintProp | undefined;
|
|
13787
14340
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
13788
14341
|
key?: any;
|
|
13789
|
-
pinAttributes?: Record<string,
|
|
14342
|
+
pinAttributes?: Record<string, {
|
|
14343
|
+
providesPower?: boolean | undefined;
|
|
14344
|
+
requiresPower?: boolean | undefined;
|
|
14345
|
+
providesGround?: boolean | undefined;
|
|
14346
|
+
requiresGround?: boolean | undefined;
|
|
14347
|
+
providesVoltage?: string | number | undefined;
|
|
14348
|
+
requiresVoltage?: string | number | undefined;
|
|
14349
|
+
}> | undefined;
|
|
13790
14350
|
cadModel?: string | {
|
|
13791
14351
|
stlUrl: string;
|
|
13792
14352
|
rotationOffset?: number | {
|
|
@@ -14112,7 +14672,28 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
14112
14672
|
children: z.ZodOptional<z.ZodAny>;
|
|
14113
14673
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
14114
14674
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
14115
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
14675
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
14676
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
14677
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
14678
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
14679
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
14680
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14681
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
14682
|
+
}, "strip", z.ZodTypeAny, {
|
|
14683
|
+
providesPower?: boolean | undefined;
|
|
14684
|
+
requiresPower?: boolean | undefined;
|
|
14685
|
+
providesGround?: boolean | undefined;
|
|
14686
|
+
requiresGround?: boolean | undefined;
|
|
14687
|
+
providesVoltage?: string | number | undefined;
|
|
14688
|
+
requiresVoltage?: string | number | undefined;
|
|
14689
|
+
}, {
|
|
14690
|
+
providesPower?: boolean | undefined;
|
|
14691
|
+
requiresPower?: boolean | undefined;
|
|
14692
|
+
providesGround?: boolean | undefined;
|
|
14693
|
+
requiresGround?: boolean | undefined;
|
|
14694
|
+
providesVoltage?: string | number | undefined;
|
|
14695
|
+
requiresVoltage?: string | number | undefined;
|
|
14696
|
+
}>>>;
|
|
14116
14697
|
} & {
|
|
14117
14698
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
14118
14699
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -14131,7 +14712,14 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
14131
14712
|
footprint?: FootprintProp | undefined;
|
|
14132
14713
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14133
14714
|
key?: any;
|
|
14134
|
-
pinAttributes?: Record<string,
|
|
14715
|
+
pinAttributes?: Record<string, {
|
|
14716
|
+
providesPower?: boolean | undefined;
|
|
14717
|
+
requiresPower?: boolean | undefined;
|
|
14718
|
+
providesGround?: boolean | undefined;
|
|
14719
|
+
requiresGround?: boolean | undefined;
|
|
14720
|
+
providesVoltage?: string | number | undefined;
|
|
14721
|
+
requiresVoltage?: string | number | undefined;
|
|
14722
|
+
}> | undefined;
|
|
14135
14723
|
cadModel?: string | {
|
|
14136
14724
|
stlUrl: string;
|
|
14137
14725
|
rotationOffset?: number | {
|
|
@@ -14205,7 +14793,14 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
14205
14793
|
footprint?: FootprintProp | undefined;
|
|
14206
14794
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
14207
14795
|
key?: any;
|
|
14208
|
-
pinAttributes?: Record<string,
|
|
14796
|
+
pinAttributes?: Record<string, {
|
|
14797
|
+
providesPower?: boolean | undefined;
|
|
14798
|
+
requiresPower?: boolean | undefined;
|
|
14799
|
+
providesGround?: boolean | undefined;
|
|
14800
|
+
requiresGround?: boolean | undefined;
|
|
14801
|
+
providesVoltage?: string | number | undefined;
|
|
14802
|
+
requiresVoltage?: string | number | undefined;
|
|
14803
|
+
}> | undefined;
|
|
14209
14804
|
cadModel?: string | {
|
|
14210
14805
|
stlUrl: string;
|
|
14211
14806
|
rotationOffset?: number | {
|
|
@@ -14528,6 +15123,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14528
15123
|
children: z.ZodOptional<z.ZodAny>;
|
|
14529
15124
|
schTitle: z.ZodOptional<z.ZodString>;
|
|
14530
15125
|
key: z.ZodOptional<z.ZodAny>;
|
|
15126
|
+
} & {
|
|
14531
15127
|
manualEdits: z.ZodOptional<z.ZodObject<{
|
|
14532
15128
|
pcb_placements: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
14533
15129
|
selector: z.ZodString;
|
|
@@ -14735,7 +15331,9 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14735
15331
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
14736
15332
|
local?: boolean | undefined;
|
|
14737
15333
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
14738
|
-
|
|
15334
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
15335
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
15336
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
14739
15337
|
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14740
15338
|
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14741
15339
|
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -14750,6 +15348,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14750
15348
|
}>, "many">>;
|
|
14751
15349
|
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
14752
15350
|
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
15351
|
+
} & {
|
|
14753
15352
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1"]>>;
|
|
14754
15353
|
} & {
|
|
14755
15354
|
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -14931,6 +15530,9 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
14931
15530
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
14932
15531
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
14933
15532
|
partsEngine?: PartsEngine | undefined;
|
|
15533
|
+
square?: boolean | undefined;
|
|
15534
|
+
emptyArea?: string | undefined;
|
|
15535
|
+
filledArea?: string | undefined;
|
|
14934
15536
|
outline?: {
|
|
14935
15537
|
x: number;
|
|
14936
15538
|
y: number;
|
|
@@ -15115,6 +15717,9 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
15115
15717
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
15116
15718
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
15117
15719
|
partsEngine?: PartsEngine | undefined;
|
|
15720
|
+
square?: boolean | undefined;
|
|
15721
|
+
emptyArea?: string | undefined;
|
|
15722
|
+
filledArea?: string | undefined;
|
|
15118
15723
|
outline?: {
|
|
15119
15724
|
x: string | number;
|
|
15120
15725
|
y: string | number;
|
|
@@ -15402,7 +16007,28 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
15402
16007
|
children: z.ZodOptional<z.ZodAny>;
|
|
15403
16008
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
15404
16009
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
15405
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
16010
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
16011
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
16012
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
16013
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
16014
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
16015
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16016
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16017
|
+
}, "strip", z.ZodTypeAny, {
|
|
16018
|
+
providesPower?: boolean | undefined;
|
|
16019
|
+
requiresPower?: boolean | undefined;
|
|
16020
|
+
providesGround?: boolean | undefined;
|
|
16021
|
+
requiresGround?: boolean | undefined;
|
|
16022
|
+
providesVoltage?: string | number | undefined;
|
|
16023
|
+
requiresVoltage?: string | number | undefined;
|
|
16024
|
+
}, {
|
|
16025
|
+
providesPower?: boolean | undefined;
|
|
16026
|
+
requiresPower?: boolean | undefined;
|
|
16027
|
+
providesGround?: boolean | undefined;
|
|
16028
|
+
requiresGround?: boolean | undefined;
|
|
16029
|
+
providesVoltage?: string | number | undefined;
|
|
16030
|
+
requiresVoltage?: string | number | undefined;
|
|
16031
|
+
}>>>;
|
|
15406
16032
|
} & {
|
|
15407
16033
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
15408
16034
|
maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -15430,7 +16056,14 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
15430
16056
|
footprint?: FootprintProp | undefined;
|
|
15431
16057
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15432
16058
|
key?: any;
|
|
15433
|
-
pinAttributes?: Record<string,
|
|
16059
|
+
pinAttributes?: Record<string, {
|
|
16060
|
+
providesPower?: boolean | undefined;
|
|
16061
|
+
requiresPower?: boolean | undefined;
|
|
16062
|
+
providesGround?: boolean | undefined;
|
|
16063
|
+
requiresGround?: boolean | undefined;
|
|
16064
|
+
providesVoltage?: string | number | undefined;
|
|
16065
|
+
requiresVoltage?: string | number | undefined;
|
|
16066
|
+
}> | undefined;
|
|
15434
16067
|
cadModel?: string | {
|
|
15435
16068
|
stlUrl: string;
|
|
15436
16069
|
rotationOffset?: number | {
|
|
@@ -15510,7 +16143,14 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
15510
16143
|
footprint?: FootprintProp | undefined;
|
|
15511
16144
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
15512
16145
|
key?: any;
|
|
15513
|
-
pinAttributes?: Record<string,
|
|
16146
|
+
pinAttributes?: Record<string, {
|
|
16147
|
+
providesPower?: boolean | undefined;
|
|
16148
|
+
requiresPower?: boolean | undefined;
|
|
16149
|
+
providesGround?: boolean | undefined;
|
|
16150
|
+
requiresGround?: boolean | undefined;
|
|
16151
|
+
providesVoltage?: string | number | undefined;
|
|
16152
|
+
requiresVoltage?: string | number | undefined;
|
|
16153
|
+
}> | undefined;
|
|
15514
16154
|
cadModel?: string | {
|
|
15515
16155
|
stlUrl: string;
|
|
15516
16156
|
rotationOffset?: number | {
|
|
@@ -17199,7 +17839,28 @@ declare const batteryProps: z.ZodObject<{
|
|
|
17199
17839
|
children: z.ZodOptional<z.ZodAny>;
|
|
17200
17840
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17201
17841
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17202
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
17842
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
17843
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
17844
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
17845
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
17846
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
17847
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17848
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17849
|
+
}, "strip", z.ZodTypeAny, {
|
|
17850
|
+
providesPower?: boolean | undefined;
|
|
17851
|
+
requiresPower?: boolean | undefined;
|
|
17852
|
+
providesGround?: boolean | undefined;
|
|
17853
|
+
requiresGround?: boolean | undefined;
|
|
17854
|
+
providesVoltage?: string | number | undefined;
|
|
17855
|
+
requiresVoltage?: string | number | undefined;
|
|
17856
|
+
}, {
|
|
17857
|
+
providesPower?: boolean | undefined;
|
|
17858
|
+
requiresPower?: boolean | undefined;
|
|
17859
|
+
providesGround?: boolean | undefined;
|
|
17860
|
+
requiresGround?: boolean | undefined;
|
|
17861
|
+
providesVoltage?: string | number | undefined;
|
|
17862
|
+
requiresVoltage?: string | number | undefined;
|
|
17863
|
+
}>>>;
|
|
17203
17864
|
} & {
|
|
17204
17865
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
17205
17866
|
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 +17876,14 @@ declare const batteryProps: z.ZodObject<{
|
|
|
17215
17876
|
footprint?: FootprintProp | undefined;
|
|
17216
17877
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17217
17878
|
key?: any;
|
|
17218
|
-
pinAttributes?: Record<string,
|
|
17879
|
+
pinAttributes?: Record<string, {
|
|
17880
|
+
providesPower?: boolean | undefined;
|
|
17881
|
+
requiresPower?: boolean | undefined;
|
|
17882
|
+
providesGround?: boolean | undefined;
|
|
17883
|
+
requiresGround?: boolean | undefined;
|
|
17884
|
+
providesVoltage?: string | number | undefined;
|
|
17885
|
+
requiresVoltage?: string | number | undefined;
|
|
17886
|
+
}> | undefined;
|
|
17219
17887
|
cadModel?: string | {
|
|
17220
17888
|
stlUrl: string;
|
|
17221
17889
|
rotationOffset?: number | {
|
|
@@ -17288,7 +17956,14 @@ declare const batteryProps: z.ZodObject<{
|
|
|
17288
17956
|
footprint?: FootprintProp | undefined;
|
|
17289
17957
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17290
17958
|
key?: any;
|
|
17291
|
-
pinAttributes?: Record<string,
|
|
17959
|
+
pinAttributes?: Record<string, {
|
|
17960
|
+
providesPower?: boolean | undefined;
|
|
17961
|
+
requiresPower?: boolean | undefined;
|
|
17962
|
+
providesGround?: boolean | undefined;
|
|
17963
|
+
requiresGround?: boolean | undefined;
|
|
17964
|
+
providesVoltage?: string | number | undefined;
|
|
17965
|
+
requiresVoltage?: string | number | undefined;
|
|
17966
|
+
}> | undefined;
|
|
17292
17967
|
cadModel?: string | {
|
|
17293
17968
|
stlUrl: string;
|
|
17294
17969
|
rotationOffset?: number | {
|
|
@@ -17678,7 +18353,28 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
17678
18353
|
children: z.ZodOptional<z.ZodAny>;
|
|
17679
18354
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
17680
18355
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
17681
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
18356
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
18357
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
18358
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
18359
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
18360
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
18361
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18362
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18363
|
+
}, "strip", z.ZodTypeAny, {
|
|
18364
|
+
providesPower?: boolean | undefined;
|
|
18365
|
+
requiresPower?: boolean | undefined;
|
|
18366
|
+
providesGround?: boolean | undefined;
|
|
18367
|
+
requiresGround?: boolean | undefined;
|
|
18368
|
+
providesVoltage?: string | number | undefined;
|
|
18369
|
+
requiresVoltage?: string | number | undefined;
|
|
18370
|
+
}, {
|
|
18371
|
+
providesPower?: boolean | undefined;
|
|
18372
|
+
requiresPower?: boolean | undefined;
|
|
18373
|
+
providesGround?: boolean | undefined;
|
|
18374
|
+
requiresGround?: boolean | undefined;
|
|
18375
|
+
providesVoltage?: string | number | undefined;
|
|
18376
|
+
requiresVoltage?: string | number | undefined;
|
|
18377
|
+
}>>>;
|
|
17682
18378
|
} & {
|
|
17683
18379
|
pinCount: z.ZodNumber;
|
|
17684
18380
|
pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17837,7 +18533,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
17837
18533
|
footprint?: FootprintProp | undefined;
|
|
17838
18534
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17839
18535
|
key?: any;
|
|
17840
|
-
pinAttributes?: Record<string,
|
|
18536
|
+
pinAttributes?: Record<string, {
|
|
18537
|
+
providesPower?: boolean | undefined;
|
|
18538
|
+
requiresPower?: boolean | undefined;
|
|
18539
|
+
providesGround?: boolean | undefined;
|
|
18540
|
+
requiresGround?: boolean | undefined;
|
|
18541
|
+
providesVoltage?: string | number | undefined;
|
|
18542
|
+
requiresVoltage?: string | number | undefined;
|
|
18543
|
+
}> | undefined;
|
|
17841
18544
|
cadModel?: string | {
|
|
17842
18545
|
stlUrl: string;
|
|
17843
18546
|
rotationOffset?: number | {
|
|
@@ -17958,7 +18661,14 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
17958
18661
|
footprint?: FootprintProp | undefined;
|
|
17959
18662
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
17960
18663
|
key?: any;
|
|
17961
|
-
pinAttributes?: Record<string,
|
|
18664
|
+
pinAttributes?: Record<string, {
|
|
18665
|
+
providesPower?: boolean | undefined;
|
|
18666
|
+
requiresPower?: boolean | undefined;
|
|
18667
|
+
providesGround?: boolean | undefined;
|
|
18668
|
+
requiresGround?: boolean | undefined;
|
|
18669
|
+
providesVoltage?: string | number | undefined;
|
|
18670
|
+
requiresVoltage?: string | number | undefined;
|
|
18671
|
+
}> | undefined;
|
|
17962
18672
|
cadModel?: string | {
|
|
17963
18673
|
stlUrl: string;
|
|
17964
18674
|
rotationOffset?: number | {
|
|
@@ -18395,7 +19105,28 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
18395
19105
|
children: z.ZodOptional<z.ZodAny>;
|
|
18396
19106
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
18397
19107
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
18398
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
19108
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
19109
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
19110
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
19111
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
19112
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
19113
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
19114
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
19115
|
+
}, "strip", z.ZodTypeAny, {
|
|
19116
|
+
providesPower?: boolean | undefined;
|
|
19117
|
+
requiresPower?: boolean | undefined;
|
|
19118
|
+
providesGround?: boolean | undefined;
|
|
19119
|
+
requiresGround?: boolean | undefined;
|
|
19120
|
+
providesVoltage?: string | number | undefined;
|
|
19121
|
+
requiresVoltage?: string | number | undefined;
|
|
19122
|
+
}, {
|
|
19123
|
+
providesPower?: boolean | undefined;
|
|
19124
|
+
requiresPower?: boolean | undefined;
|
|
19125
|
+
providesGround?: boolean | undefined;
|
|
19126
|
+
requiresGround?: boolean | undefined;
|
|
19127
|
+
providesVoltage?: string | number | undefined;
|
|
19128
|
+
requiresVoltage?: string | number | undefined;
|
|
19129
|
+
}>>>;
|
|
18399
19130
|
} & {
|
|
18400
19131
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
18401
19132
|
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 +19389,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
18658
19389
|
footprint?: FootprintProp | undefined;
|
|
18659
19390
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18660
19391
|
key?: any;
|
|
18661
|
-
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;
|
|
18662
19400
|
cadModel?: string | {
|
|
18663
19401
|
stlUrl: string;
|
|
18664
19402
|
rotationOffset?: number | {
|
|
@@ -18806,7 +19544,14 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
18806
19544
|
footprint?: FootprintProp | undefined;
|
|
18807
19545
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
18808
19546
|
key?: any;
|
|
18809
|
-
pinAttributes?: Record<string,
|
|
19547
|
+
pinAttributes?: Record<string, {
|
|
19548
|
+
providesPower?: boolean | undefined;
|
|
19549
|
+
requiresPower?: boolean | undefined;
|
|
19550
|
+
providesGround?: boolean | undefined;
|
|
19551
|
+
requiresGround?: boolean | undefined;
|
|
19552
|
+
providesVoltage?: string | number | undefined;
|
|
19553
|
+
requiresVoltage?: string | number | undefined;
|
|
19554
|
+
}> | undefined;
|
|
18810
19555
|
cadModel?: string | {
|
|
18811
19556
|
stlUrl: string;
|
|
18812
19557
|
rotationOffset?: number | {
|
|
@@ -18960,7 +19705,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
18960
19705
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6";
|
|
18961
19706
|
}>>;
|
|
18962
19707
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
18963
|
-
} & {
|
|
18964
19708
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18965
19709
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
18966
19710
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19189,8 +19933,6 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19189
19933
|
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19190
19934
|
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19191
19935
|
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19192
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19193
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19194
19936
|
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
19195
19937
|
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
19196
19938
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -19405,6 +20147,23 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19405
20147
|
preset?: "sequential-trace" | "subcircuit" | "auto" | "auto-local" | "auto-cloud" | undefined;
|
|
19406
20148
|
local?: boolean | undefined;
|
|
19407
20149
|
}>, z.ZodLiteral<"sequential-trace">, z.ZodLiteral<"subcircuit">, z.ZodLiteral<"auto">, z.ZodLiteral<"auto-local">, z.ZodLiteral<"auto-cloud">]>>;
|
|
20150
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
20151
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
20152
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
20153
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20154
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20155
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
20156
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20157
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20158
|
+
}, "strip", z.ZodTypeAny, {
|
|
20159
|
+
x: number;
|
|
20160
|
+
y: number;
|
|
20161
|
+
}, {
|
|
20162
|
+
x: string | number;
|
|
20163
|
+
y: string | number;
|
|
20164
|
+
}>, "many">>;
|
|
20165
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20166
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19408
20167
|
}, "strip", z.ZodTypeAny, {
|
|
19409
20168
|
pcbX?: number | undefined;
|
|
19410
20169
|
pcbY?: number | undefined;
|
|
@@ -19569,6 +20328,15 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19569
20328
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
19570
20329
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
19571
20330
|
partsEngine?: PartsEngine | undefined;
|
|
20331
|
+
square?: boolean | undefined;
|
|
20332
|
+
emptyArea?: string | undefined;
|
|
20333
|
+
filledArea?: string | undefined;
|
|
20334
|
+
outline?: {
|
|
20335
|
+
x: number;
|
|
20336
|
+
y: number;
|
|
20337
|
+
}[] | undefined;
|
|
20338
|
+
outlineOffsetX?: number | undefined;
|
|
20339
|
+
outlineOffsetY?: number | undefined;
|
|
19572
20340
|
}, {
|
|
19573
20341
|
pcbX?: string | number | undefined;
|
|
19574
20342
|
pcbY?: string | number | undefined;
|
|
@@ -19737,6 +20505,15 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
19737
20505
|
schAutoLayoutEnabled?: boolean | undefined;
|
|
19738
20506
|
schTraceAutoLabelEnabled?: boolean | undefined;
|
|
19739
20507
|
partsEngine?: PartsEngine | undefined;
|
|
20508
|
+
square?: boolean | undefined;
|
|
20509
|
+
emptyArea?: string | undefined;
|
|
20510
|
+
filledArea?: string | undefined;
|
|
20511
|
+
outline?: {
|
|
20512
|
+
x: string | number;
|
|
20513
|
+
y: string | number;
|
|
20514
|
+
}[] | undefined;
|
|
20515
|
+
outlineOffsetX?: string | number | undefined;
|
|
20516
|
+
outlineOffsetY?: string | number | undefined;
|
|
19740
20517
|
}>;
|
|
19741
20518
|
|
|
19742
20519
|
declare const transistorPinsLabels: readonly ["pin1", "pin2", "pin3", "emitter", "collector", "base", "gate", "source", "drain"];
|
|
@@ -20002,7 +20779,28 @@ declare const transistorProps: z.ZodObject<{
|
|
|
20002
20779
|
children: z.ZodOptional<z.ZodAny>;
|
|
20003
20780
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20004
20781
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20005
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
20782
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
20783
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
20784
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
20785
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
20786
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
20787
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20788
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20789
|
+
}, "strip", z.ZodTypeAny, {
|
|
20790
|
+
providesPower?: boolean | undefined;
|
|
20791
|
+
requiresPower?: boolean | undefined;
|
|
20792
|
+
providesGround?: boolean | undefined;
|
|
20793
|
+
requiresGround?: boolean | undefined;
|
|
20794
|
+
providesVoltage?: string | number | undefined;
|
|
20795
|
+
requiresVoltage?: string | number | undefined;
|
|
20796
|
+
}, {
|
|
20797
|
+
providesPower?: boolean | undefined;
|
|
20798
|
+
requiresPower?: boolean | undefined;
|
|
20799
|
+
providesGround?: boolean | undefined;
|
|
20800
|
+
requiresGround?: boolean | undefined;
|
|
20801
|
+
providesVoltage?: string | number | undefined;
|
|
20802
|
+
requiresVoltage?: string | number | undefined;
|
|
20803
|
+
}>>>;
|
|
20006
20804
|
} & {
|
|
20007
20805
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
20008
20806
|
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 +20817,14 @@ declare const transistorProps: z.ZodObject<{
|
|
|
20019
20817
|
footprint?: FootprintProp | undefined;
|
|
20020
20818
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20021
20819
|
key?: any;
|
|
20022
|
-
pinAttributes?: Record<string,
|
|
20820
|
+
pinAttributes?: Record<string, {
|
|
20821
|
+
providesPower?: boolean | undefined;
|
|
20822
|
+
requiresPower?: boolean | undefined;
|
|
20823
|
+
providesGround?: boolean | undefined;
|
|
20824
|
+
requiresGround?: boolean | undefined;
|
|
20825
|
+
providesVoltage?: string | number | undefined;
|
|
20826
|
+
requiresVoltage?: string | number | undefined;
|
|
20827
|
+
}> | undefined;
|
|
20023
20828
|
cadModel?: string | {
|
|
20024
20829
|
stlUrl: string;
|
|
20025
20830
|
rotationOffset?: number | {
|
|
@@ -20092,7 +20897,14 @@ declare const transistorProps: z.ZodObject<{
|
|
|
20092
20897
|
footprint?: FootprintProp | undefined;
|
|
20093
20898
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20094
20899
|
key?: any;
|
|
20095
|
-
pinAttributes?: Record<string,
|
|
20900
|
+
pinAttributes?: Record<string, {
|
|
20901
|
+
providesPower?: boolean | undefined;
|
|
20902
|
+
requiresPower?: boolean | undefined;
|
|
20903
|
+
providesGround?: boolean | undefined;
|
|
20904
|
+
requiresGround?: boolean | undefined;
|
|
20905
|
+
providesVoltage?: string | number | undefined;
|
|
20906
|
+
requiresVoltage?: string | number | undefined;
|
|
20907
|
+
}> | undefined;
|
|
20096
20908
|
cadModel?: string | {
|
|
20097
20909
|
stlUrl: string;
|
|
20098
20910
|
rotationOffset?: number | {
|
|
@@ -20415,7 +21227,28 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
20415
21227
|
children: z.ZodOptional<z.ZodAny>;
|
|
20416
21228
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20417
21229
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20418
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
21230
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21231
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21232
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
21233
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
21234
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
21235
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21236
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21237
|
+
}, "strip", z.ZodTypeAny, {
|
|
21238
|
+
providesPower?: boolean | undefined;
|
|
21239
|
+
requiresPower?: boolean | undefined;
|
|
21240
|
+
providesGround?: boolean | undefined;
|
|
21241
|
+
requiresGround?: boolean | undefined;
|
|
21242
|
+
providesVoltage?: string | number | undefined;
|
|
21243
|
+
requiresVoltage?: string | number | undefined;
|
|
21244
|
+
}, {
|
|
21245
|
+
providesPower?: boolean | undefined;
|
|
21246
|
+
requiresPower?: boolean | undefined;
|
|
21247
|
+
providesGround?: boolean | undefined;
|
|
21248
|
+
requiresGround?: boolean | undefined;
|
|
21249
|
+
providesVoltage?: string | number | undefined;
|
|
21250
|
+
requiresVoltage?: string | number | undefined;
|
|
21251
|
+
}>>>;
|
|
20419
21252
|
} & {
|
|
20420
21253
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
20421
21254
|
mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
|
|
@@ -20433,7 +21266,14 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
20433
21266
|
footprint?: FootprintProp | undefined;
|
|
20434
21267
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20435
21268
|
key?: any;
|
|
20436
|
-
pinAttributes?: Record<string,
|
|
21269
|
+
pinAttributes?: Record<string, {
|
|
21270
|
+
providesPower?: boolean | undefined;
|
|
21271
|
+
requiresPower?: boolean | undefined;
|
|
21272
|
+
providesGround?: boolean | undefined;
|
|
21273
|
+
requiresGround?: boolean | undefined;
|
|
21274
|
+
providesVoltage?: string | number | undefined;
|
|
21275
|
+
requiresVoltage?: string | number | undefined;
|
|
21276
|
+
}> | undefined;
|
|
20437
21277
|
cadModel?: string | {
|
|
20438
21278
|
stlUrl: string;
|
|
20439
21279
|
rotationOffset?: number | {
|
|
@@ -20506,7 +21346,14 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
20506
21346
|
footprint?: FootprintProp | undefined;
|
|
20507
21347
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20508
21348
|
key?: any;
|
|
20509
|
-
pinAttributes?: Record<string,
|
|
21349
|
+
pinAttributes?: Record<string, {
|
|
21350
|
+
providesPower?: boolean | undefined;
|
|
21351
|
+
requiresPower?: boolean | undefined;
|
|
21352
|
+
providesGround?: boolean | undefined;
|
|
21353
|
+
requiresGround?: boolean | undefined;
|
|
21354
|
+
providesVoltage?: string | number | undefined;
|
|
21355
|
+
requiresVoltage?: string | number | undefined;
|
|
21356
|
+
}> | undefined;
|
|
20510
21357
|
cadModel?: string | {
|
|
20511
21358
|
stlUrl: string;
|
|
20512
21359
|
rotationOffset?: number | {
|
|
@@ -20829,7 +21676,28 @@ declare const inductorProps: z.ZodObject<{
|
|
|
20829
21676
|
children: z.ZodOptional<z.ZodAny>;
|
|
20830
21677
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
20831
21678
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
20832
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
21679
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
21680
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
21681
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
21682
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
21683
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
21684
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21685
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21686
|
+
}, "strip", z.ZodTypeAny, {
|
|
21687
|
+
providesPower?: boolean | undefined;
|
|
21688
|
+
requiresPower?: boolean | undefined;
|
|
21689
|
+
providesGround?: boolean | undefined;
|
|
21690
|
+
requiresGround?: boolean | undefined;
|
|
21691
|
+
providesVoltage?: string | number | undefined;
|
|
21692
|
+
requiresVoltage?: string | number | undefined;
|
|
21693
|
+
}, {
|
|
21694
|
+
providesPower?: boolean | undefined;
|
|
21695
|
+
requiresPower?: boolean | undefined;
|
|
21696
|
+
providesGround?: boolean | undefined;
|
|
21697
|
+
requiresGround?: boolean | undefined;
|
|
21698
|
+
providesVoltage?: string | number | undefined;
|
|
21699
|
+
requiresVoltage?: string | number | undefined;
|
|
21700
|
+
}>>>;
|
|
20833
21701
|
} & {
|
|
20834
21702
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
20835
21703
|
maxCurrentRating: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -20847,7 +21715,14 @@ declare const inductorProps: z.ZodObject<{
|
|
|
20847
21715
|
footprint?: FootprintProp | undefined;
|
|
20848
21716
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20849
21717
|
key?: any;
|
|
20850
|
-
pinAttributes?: Record<string,
|
|
21718
|
+
pinAttributes?: Record<string, {
|
|
21719
|
+
providesPower?: boolean | undefined;
|
|
21720
|
+
requiresPower?: boolean | undefined;
|
|
21721
|
+
providesGround?: boolean | undefined;
|
|
21722
|
+
requiresGround?: boolean | undefined;
|
|
21723
|
+
providesVoltage?: string | number | undefined;
|
|
21724
|
+
requiresVoltage?: string | number | undefined;
|
|
21725
|
+
}> | undefined;
|
|
20851
21726
|
cadModel?: string | {
|
|
20852
21727
|
stlUrl: string;
|
|
20853
21728
|
rotationOffset?: number | {
|
|
@@ -20921,7 +21796,14 @@ declare const inductorProps: z.ZodObject<{
|
|
|
20921
21796
|
footprint?: FootprintProp | undefined;
|
|
20922
21797
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
20923
21798
|
key?: any;
|
|
20924
|
-
pinAttributes?: Record<string,
|
|
21799
|
+
pinAttributes?: Record<string, {
|
|
21800
|
+
providesPower?: boolean | undefined;
|
|
21801
|
+
requiresPower?: boolean | undefined;
|
|
21802
|
+
providesGround?: boolean | undefined;
|
|
21803
|
+
requiresGround?: boolean | undefined;
|
|
21804
|
+
providesVoltage?: string | number | undefined;
|
|
21805
|
+
requiresVoltage?: string | number | undefined;
|
|
21806
|
+
}> | undefined;
|
|
20925
21807
|
cadModel?: string | {
|
|
20926
21808
|
stlUrl: string;
|
|
20927
21809
|
rotationOffset?: number | {
|
|
@@ -21241,7 +22123,28 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21241
22123
|
children: z.ZodOptional<z.ZodAny>;
|
|
21242
22124
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
21243
22125
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
21244
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
22126
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22127
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
22128
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
22129
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
22130
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
22131
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22132
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22133
|
+
}, "strip", z.ZodTypeAny, {
|
|
22134
|
+
providesPower?: boolean | undefined;
|
|
22135
|
+
requiresPower?: boolean | undefined;
|
|
22136
|
+
providesGround?: boolean | undefined;
|
|
22137
|
+
requiresGround?: boolean | undefined;
|
|
22138
|
+
providesVoltage?: string | number | undefined;
|
|
22139
|
+
requiresVoltage?: string | number | undefined;
|
|
22140
|
+
}, {
|
|
22141
|
+
providesPower?: boolean | undefined;
|
|
22142
|
+
requiresPower?: boolean | undefined;
|
|
22143
|
+
providesGround?: boolean | undefined;
|
|
22144
|
+
requiresGround?: boolean | undefined;
|
|
22145
|
+
providesVoltage?: string | number | undefined;
|
|
22146
|
+
requiresVoltage?: string | number | undefined;
|
|
22147
|
+
}>>>;
|
|
21245
22148
|
} & {
|
|
21246
22149
|
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
22150
|
variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "avalanche", "photo", "tvs"]>>>;
|
|
@@ -21265,7 +22168,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21265
22168
|
footprint?: FootprintProp | undefined;
|
|
21266
22169
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21267
22170
|
key?: any;
|
|
21268
|
-
pinAttributes?: Record<string,
|
|
22171
|
+
pinAttributes?: Record<string, {
|
|
22172
|
+
providesPower?: boolean | undefined;
|
|
22173
|
+
requiresPower?: boolean | undefined;
|
|
22174
|
+
providesGround?: boolean | undefined;
|
|
22175
|
+
requiresGround?: boolean | undefined;
|
|
22176
|
+
providesVoltage?: string | number | undefined;
|
|
22177
|
+
requiresVoltage?: string | number | undefined;
|
|
22178
|
+
}> | undefined;
|
|
21269
22179
|
cadModel?: string | {
|
|
21270
22180
|
stlUrl: string;
|
|
21271
22181
|
rotationOffset?: number | {
|
|
@@ -21344,7 +22254,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21344
22254
|
footprint?: FootprintProp | undefined;
|
|
21345
22255
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21346
22256
|
key?: any;
|
|
21347
|
-
pinAttributes?: Record<string,
|
|
22257
|
+
pinAttributes?: Record<string, {
|
|
22258
|
+
providesPower?: boolean | undefined;
|
|
22259
|
+
requiresPower?: boolean | undefined;
|
|
22260
|
+
providesGround?: boolean | undefined;
|
|
22261
|
+
requiresGround?: boolean | undefined;
|
|
22262
|
+
providesVoltage?: string | number | undefined;
|
|
22263
|
+
requiresVoltage?: string | number | undefined;
|
|
22264
|
+
}> | undefined;
|
|
21348
22265
|
cadModel?: string | {
|
|
21349
22266
|
stlUrl: string;
|
|
21350
22267
|
rotationOffset?: number | {
|
|
@@ -21423,7 +22340,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21423
22340
|
footprint?: FootprintProp | undefined;
|
|
21424
22341
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21425
22342
|
key?: any;
|
|
21426
|
-
pinAttributes?: Record<string,
|
|
22343
|
+
pinAttributes?: Record<string, {
|
|
22344
|
+
providesPower?: boolean | undefined;
|
|
22345
|
+
requiresPower?: boolean | undefined;
|
|
22346
|
+
providesGround?: boolean | undefined;
|
|
22347
|
+
requiresGround?: boolean | undefined;
|
|
22348
|
+
providesVoltage?: string | number | undefined;
|
|
22349
|
+
requiresVoltage?: string | number | undefined;
|
|
22350
|
+
}> | undefined;
|
|
21427
22351
|
cadModel?: string | {
|
|
21428
22352
|
stlUrl: string;
|
|
21429
22353
|
rotationOffset?: number | {
|
|
@@ -21502,7 +22426,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21502
22426
|
footprint?: FootprintProp | undefined;
|
|
21503
22427
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21504
22428
|
key?: any;
|
|
21505
|
-
pinAttributes?: Record<string,
|
|
22429
|
+
pinAttributes?: Record<string, {
|
|
22430
|
+
providesPower?: boolean | undefined;
|
|
22431
|
+
requiresPower?: boolean | undefined;
|
|
22432
|
+
providesGround?: boolean | undefined;
|
|
22433
|
+
requiresGround?: boolean | undefined;
|
|
22434
|
+
providesVoltage?: string | number | undefined;
|
|
22435
|
+
requiresVoltage?: string | number | undefined;
|
|
22436
|
+
}> | undefined;
|
|
21506
22437
|
cadModel?: string | {
|
|
21507
22438
|
stlUrl: string;
|
|
21508
22439
|
rotationOffset?: number | {
|
|
@@ -21587,7 +22518,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21587
22518
|
footprint?: FootprintProp | undefined;
|
|
21588
22519
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21589
22520
|
key?: any;
|
|
21590
|
-
pinAttributes?: Record<string,
|
|
22521
|
+
pinAttributes?: Record<string, {
|
|
22522
|
+
providesPower?: boolean | undefined;
|
|
22523
|
+
requiresPower?: boolean | undefined;
|
|
22524
|
+
providesGround?: boolean | undefined;
|
|
22525
|
+
requiresGround?: boolean | undefined;
|
|
22526
|
+
providesVoltage?: string | number | undefined;
|
|
22527
|
+
requiresVoltage?: string | number | undefined;
|
|
22528
|
+
}> | undefined;
|
|
21591
22529
|
cadModel?: string | {
|
|
21592
22530
|
stlUrl: string;
|
|
21593
22531
|
rotationOffset?: number | {
|
|
@@ -21660,7 +22598,14 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
21660
22598
|
footprint?: FootprintProp | undefined;
|
|
21661
22599
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
21662
22600
|
key?: any;
|
|
21663
|
-
pinAttributes?: Record<string,
|
|
22601
|
+
pinAttributes?: Record<string, {
|
|
22602
|
+
providesPower?: boolean | undefined;
|
|
22603
|
+
requiresPower?: boolean | undefined;
|
|
22604
|
+
providesGround?: boolean | undefined;
|
|
22605
|
+
requiresGround?: boolean | undefined;
|
|
22606
|
+
providesVoltage?: string | number | undefined;
|
|
22607
|
+
requiresVoltage?: string | number | undefined;
|
|
22608
|
+
}> | undefined;
|
|
21664
22609
|
cadModel?: string | {
|
|
21665
22610
|
stlUrl: string;
|
|
21666
22611
|
rotationOffset?: number | {
|
|
@@ -22007,7 +22952,28 @@ declare const ledProps: z.ZodObject<{
|
|
|
22007
22952
|
children: z.ZodOptional<z.ZodAny>;
|
|
22008
22953
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
22009
22954
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
22010
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
22955
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
22956
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
22957
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
22958
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
22959
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
22960
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22961
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
22962
|
+
}, "strip", z.ZodTypeAny, {
|
|
22963
|
+
providesPower?: boolean | undefined;
|
|
22964
|
+
requiresPower?: boolean | undefined;
|
|
22965
|
+
providesGround?: boolean | undefined;
|
|
22966
|
+
requiresGround?: boolean | undefined;
|
|
22967
|
+
providesVoltage?: string | number | undefined;
|
|
22968
|
+
requiresVoltage?: string | number | undefined;
|
|
22969
|
+
}, {
|
|
22970
|
+
providesPower?: boolean | undefined;
|
|
22971
|
+
requiresPower?: boolean | undefined;
|
|
22972
|
+
providesGround?: boolean | undefined;
|
|
22973
|
+
requiresGround?: boolean | undefined;
|
|
22974
|
+
providesVoltage?: string | number | undefined;
|
|
22975
|
+
requiresVoltage?: string | number | undefined;
|
|
22976
|
+
}>>>;
|
|
22011
22977
|
} & {
|
|
22012
22978
|
color: z.ZodOptional<z.ZodString>;
|
|
22013
22979
|
wavelength: z.ZodOptional<z.ZodString>;
|
|
@@ -22027,7 +22993,14 @@ declare const ledProps: z.ZodObject<{
|
|
|
22027
22993
|
footprint?: FootprintProp | undefined;
|
|
22028
22994
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22029
22995
|
key?: any;
|
|
22030
|
-
pinAttributes?: Record<string,
|
|
22996
|
+
pinAttributes?: Record<string, {
|
|
22997
|
+
providesPower?: boolean | undefined;
|
|
22998
|
+
requiresPower?: boolean | undefined;
|
|
22999
|
+
providesGround?: boolean | undefined;
|
|
23000
|
+
requiresGround?: boolean | undefined;
|
|
23001
|
+
providesVoltage?: string | number | undefined;
|
|
23002
|
+
requiresVoltage?: string | number | undefined;
|
|
23003
|
+
}> | undefined;
|
|
22031
23004
|
cadModel?: string | {
|
|
22032
23005
|
stlUrl: string;
|
|
22033
23006
|
rotationOffset?: number | {
|
|
@@ -22104,7 +23077,14 @@ declare const ledProps: z.ZodObject<{
|
|
|
22104
23077
|
footprint?: FootprintProp | undefined;
|
|
22105
23078
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22106
23079
|
key?: any;
|
|
22107
|
-
pinAttributes?: Record<string,
|
|
23080
|
+
pinAttributes?: Record<string, {
|
|
23081
|
+
providesPower?: boolean | undefined;
|
|
23082
|
+
requiresPower?: boolean | undefined;
|
|
23083
|
+
providesGround?: boolean | undefined;
|
|
23084
|
+
requiresGround?: boolean | undefined;
|
|
23085
|
+
providesVoltage?: string | number | undefined;
|
|
23086
|
+
requiresVoltage?: string | number | undefined;
|
|
23087
|
+
}> | undefined;
|
|
22108
23088
|
cadModel?: string | {
|
|
22109
23089
|
stlUrl: string;
|
|
22110
23090
|
rotationOffset?: number | {
|
|
@@ -22436,7 +23416,28 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22436
23416
|
children: z.ZodOptional<z.ZodAny>;
|
|
22437
23417
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
22438
23418
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
22439
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
23419
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
23420
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
23421
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
23422
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
23423
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
23424
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23425
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23426
|
+
}, "strip", z.ZodTypeAny, {
|
|
23427
|
+
providesPower?: boolean | undefined;
|
|
23428
|
+
requiresPower?: boolean | undefined;
|
|
23429
|
+
providesGround?: boolean | undefined;
|
|
23430
|
+
requiresGround?: boolean | undefined;
|
|
23431
|
+
providesVoltage?: string | number | undefined;
|
|
23432
|
+
requiresVoltage?: string | number | undefined;
|
|
23433
|
+
}, {
|
|
23434
|
+
providesPower?: boolean | undefined;
|
|
23435
|
+
requiresPower?: boolean | undefined;
|
|
23436
|
+
providesGround?: boolean | undefined;
|
|
23437
|
+
requiresGround?: boolean | undefined;
|
|
23438
|
+
providesVoltage?: string | number | undefined;
|
|
23439
|
+
requiresVoltage?: string | number | undefined;
|
|
23440
|
+
}>>>;
|
|
22440
23441
|
} & {
|
|
22441
23442
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
22442
23443
|
isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -22458,7 +23459,14 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22458
23459
|
footprint?: FootprintProp | undefined;
|
|
22459
23460
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22460
23461
|
key?: any;
|
|
22461
|
-
pinAttributes?: Record<string,
|
|
23462
|
+
pinAttributes?: Record<string, {
|
|
23463
|
+
providesPower?: boolean | undefined;
|
|
23464
|
+
requiresPower?: boolean | undefined;
|
|
23465
|
+
providesGround?: boolean | undefined;
|
|
23466
|
+
requiresGround?: boolean | undefined;
|
|
23467
|
+
providesVoltage?: string | number | undefined;
|
|
23468
|
+
requiresVoltage?: string | number | undefined;
|
|
23469
|
+
}> | undefined;
|
|
22462
23470
|
cadModel?: string | {
|
|
22463
23471
|
stlUrl: string;
|
|
22464
23472
|
rotationOffset?: number | {
|
|
@@ -22534,7 +23542,14 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22534
23542
|
footprint?: FootprintProp | undefined;
|
|
22535
23543
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22536
23544
|
key?: any;
|
|
22537
|
-
pinAttributes?: Record<string,
|
|
23545
|
+
pinAttributes?: Record<string, {
|
|
23546
|
+
providesPower?: boolean | undefined;
|
|
23547
|
+
requiresPower?: boolean | undefined;
|
|
23548
|
+
providesGround?: boolean | undefined;
|
|
23549
|
+
requiresGround?: boolean | undefined;
|
|
23550
|
+
providesVoltage?: string | number | undefined;
|
|
23551
|
+
requiresVoltage?: string | number | undefined;
|
|
23552
|
+
}> | undefined;
|
|
22538
23553
|
cadModel?: string | {
|
|
22539
23554
|
stlUrl: string;
|
|
22540
23555
|
rotationOffset?: number | {
|
|
@@ -22611,7 +23626,14 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
22611
23626
|
footprint?: FootprintProp | undefined;
|
|
22612
23627
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
22613
23628
|
key?: any;
|
|
22614
|
-
pinAttributes?: Record<string,
|
|
23629
|
+
pinAttributes?: Record<string, {
|
|
23630
|
+
providesPower?: boolean | undefined;
|
|
23631
|
+
requiresPower?: boolean | undefined;
|
|
23632
|
+
providesGround?: boolean | undefined;
|
|
23633
|
+
requiresGround?: boolean | undefined;
|
|
23634
|
+
providesVoltage?: string | number | undefined;
|
|
23635
|
+
requiresVoltage?: string | number | undefined;
|
|
23636
|
+
}> | undefined;
|
|
22615
23637
|
cadModel?: string | {
|
|
22616
23638
|
stlUrl: string;
|
|
22617
23639
|
rotationOffset?: number | {
|
|
@@ -23221,7 +24243,28 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23221
24243
|
children: z.ZodOptional<z.ZodAny>;
|
|
23222
24244
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
23223
24245
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
23224
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
24246
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24247
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
24248
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
24249
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
24250
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
24251
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24252
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24253
|
+
}, "strip", z.ZodTypeAny, {
|
|
24254
|
+
providesPower?: boolean | undefined;
|
|
24255
|
+
requiresPower?: boolean | undefined;
|
|
24256
|
+
providesGround?: boolean | undefined;
|
|
24257
|
+
requiresGround?: boolean | undefined;
|
|
24258
|
+
providesVoltage?: string | number | undefined;
|
|
24259
|
+
requiresVoltage?: string | number | undefined;
|
|
24260
|
+
}, {
|
|
24261
|
+
providesPower?: boolean | undefined;
|
|
24262
|
+
requiresPower?: boolean | undefined;
|
|
24263
|
+
providesGround?: boolean | undefined;
|
|
24264
|
+
requiresGround?: boolean | undefined;
|
|
24265
|
+
providesVoltage?: string | number | undefined;
|
|
24266
|
+
requiresVoltage?: string | number | undefined;
|
|
24267
|
+
}>>>;
|
|
23225
24268
|
} & {
|
|
23226
24269
|
footprintVariant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
23227
24270
|
padShape: z.ZodDefault<z.ZodOptional<z.ZodEnum<["rect", "circle"]>>>;
|
|
@@ -23242,7 +24285,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23242
24285
|
footprint?: FootprintProp | undefined;
|
|
23243
24286
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23244
24287
|
key?: any;
|
|
23245
|
-
pinAttributes?: Record<string,
|
|
24288
|
+
pinAttributes?: Record<string, {
|
|
24289
|
+
providesPower?: boolean | undefined;
|
|
24290
|
+
requiresPower?: boolean | undefined;
|
|
24291
|
+
providesGround?: boolean | undefined;
|
|
24292
|
+
requiresGround?: boolean | undefined;
|
|
24293
|
+
providesVoltage?: string | number | undefined;
|
|
24294
|
+
requiresVoltage?: string | number | undefined;
|
|
24295
|
+
}> | undefined;
|
|
23246
24296
|
cadModel?: string | {
|
|
23247
24297
|
stlUrl: string;
|
|
23248
24298
|
rotationOffset?: number | {
|
|
@@ -23318,7 +24368,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23318
24368
|
footprint?: FootprintProp | undefined;
|
|
23319
24369
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23320
24370
|
key?: any;
|
|
23321
|
-
pinAttributes?: Record<string,
|
|
24371
|
+
pinAttributes?: Record<string, {
|
|
24372
|
+
providesPower?: boolean | undefined;
|
|
24373
|
+
requiresPower?: boolean | undefined;
|
|
24374
|
+
providesGround?: boolean | undefined;
|
|
24375
|
+
requiresGround?: boolean | undefined;
|
|
24376
|
+
providesVoltage?: string | number | undefined;
|
|
24377
|
+
requiresVoltage?: string | number | undefined;
|
|
24378
|
+
}> | undefined;
|
|
23322
24379
|
cadModel?: string | {
|
|
23323
24380
|
stlUrl: string;
|
|
23324
24381
|
rotationOffset?: number | {
|
|
@@ -23394,7 +24451,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23394
24451
|
footprint?: FootprintProp | undefined;
|
|
23395
24452
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23396
24453
|
key?: any;
|
|
23397
|
-
pinAttributes?: Record<string,
|
|
24454
|
+
pinAttributes?: Record<string, {
|
|
24455
|
+
providesPower?: boolean | undefined;
|
|
24456
|
+
requiresPower?: boolean | undefined;
|
|
24457
|
+
providesGround?: boolean | undefined;
|
|
24458
|
+
requiresGround?: boolean | undefined;
|
|
24459
|
+
providesVoltage?: string | number | undefined;
|
|
24460
|
+
requiresVoltage?: string | number | undefined;
|
|
24461
|
+
}> | undefined;
|
|
23398
24462
|
cadModel?: string | {
|
|
23399
24463
|
stlUrl: string;
|
|
23400
24464
|
rotationOffset?: number | {
|
|
@@ -23470,7 +24534,14 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
23470
24534
|
footprint?: FootprintProp | undefined;
|
|
23471
24535
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23472
24536
|
key?: any;
|
|
23473
|
-
pinAttributes?: Record<string,
|
|
24537
|
+
pinAttributes?: Record<string, {
|
|
24538
|
+
providesPower?: boolean | undefined;
|
|
24539
|
+
requiresPower?: boolean | undefined;
|
|
24540
|
+
providesGround?: boolean | undefined;
|
|
24541
|
+
requiresGround?: boolean | undefined;
|
|
24542
|
+
providesVoltage?: string | number | undefined;
|
|
24543
|
+
requiresVoltage?: string | number | undefined;
|
|
24544
|
+
}> | undefined;
|
|
23474
24545
|
cadModel?: string | {
|
|
23475
24546
|
stlUrl: string;
|
|
23476
24547
|
rotationOffset?: number | {
|
|
@@ -23889,7 +24960,28 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
23889
24960
|
children: z.ZodOptional<z.ZodAny>;
|
|
23890
24961
|
symbolName: z.ZodOptional<z.ZodString>;
|
|
23891
24962
|
doNotPlace: z.ZodOptional<z.ZodBoolean>;
|
|
23892
|
-
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.
|
|
24963
|
+
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
24964
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
24965
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
24966
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
24967
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
24968
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24969
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24970
|
+
}, "strip", z.ZodTypeAny, {
|
|
24971
|
+
providesPower?: boolean | undefined;
|
|
24972
|
+
requiresPower?: boolean | undefined;
|
|
24973
|
+
providesGround?: boolean | undefined;
|
|
24974
|
+
requiresGround?: boolean | undefined;
|
|
24975
|
+
providesVoltage?: string | number | undefined;
|
|
24976
|
+
requiresVoltage?: string | number | undefined;
|
|
24977
|
+
}, {
|
|
24978
|
+
providesPower?: boolean | undefined;
|
|
24979
|
+
requiresPower?: boolean | undefined;
|
|
24980
|
+
providesGround?: boolean | undefined;
|
|
24981
|
+
requiresGround?: boolean | undefined;
|
|
24982
|
+
providesVoltage?: string | number | undefined;
|
|
24983
|
+
requiresVoltage?: string | number | undefined;
|
|
24984
|
+
}>>>;
|
|
23893
24985
|
} & {
|
|
23894
24986
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
23895
24987
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -23905,7 +24997,14 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
23905
24997
|
footprint?: FootprintProp | undefined;
|
|
23906
24998
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23907
24999
|
key?: any;
|
|
23908
|
-
pinAttributes?: Record<string,
|
|
25000
|
+
pinAttributes?: Record<string, {
|
|
25001
|
+
providesPower?: boolean | undefined;
|
|
25002
|
+
requiresPower?: boolean | undefined;
|
|
25003
|
+
providesGround?: boolean | undefined;
|
|
25004
|
+
requiresGround?: boolean | undefined;
|
|
25005
|
+
providesVoltage?: string | number | undefined;
|
|
25006
|
+
requiresVoltage?: string | number | undefined;
|
|
25007
|
+
}> | undefined;
|
|
23909
25008
|
cadModel?: string | {
|
|
23910
25009
|
stlUrl: string;
|
|
23911
25010
|
rotationOffset?: number | {
|
|
@@ -23977,7 +25076,14 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
23977
25076
|
footprint?: FootprintProp | undefined;
|
|
23978
25077
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
23979
25078
|
key?: any;
|
|
23980
|
-
pinAttributes?: Record<string,
|
|
25079
|
+
pinAttributes?: Record<string, {
|
|
25080
|
+
providesPower?: boolean | undefined;
|
|
25081
|
+
requiresPower?: boolean | undefined;
|
|
25082
|
+
providesGround?: boolean | undefined;
|
|
25083
|
+
requiresGround?: boolean | undefined;
|
|
25084
|
+
providesVoltage?: string | number | undefined;
|
|
25085
|
+
requiresVoltage?: string | number | undefined;
|
|
25086
|
+
}> | undefined;
|
|
23981
25087
|
cadModel?: string | {
|
|
23982
25088
|
stlUrl: string;
|
|
23983
25089
|
rotationOffset?: number | {
|
|
@@ -24833,4 +25939,4 @@ interface PlatformConfig {
|
|
|
24833
25939
|
}
|
|
24834
25940
|
declare const platformConfig: z.ZodType<PlatformConfig>;
|
|
24835
25941
|
|
|
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 };
|
|
25942
|
+
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 };
|