@tscircuit/props 0.0.450 → 0.0.451
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/dist/index.d.ts +93 -32
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6454,6 +6454,7 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
|
|
|
6454
6454
|
*/
|
|
6455
6455
|
showAsTranslucentModel?: boolean;
|
|
6456
6456
|
mfn?: string;
|
|
6457
|
+
manufacturerPartNumber?: string;
|
|
6457
6458
|
}
|
|
6458
6459
|
declare const commonComponentProps: z.ZodObject<{
|
|
6459
6460
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -9518,6 +9519,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9518
9519
|
mustBeConnected?: boolean | undefined;
|
|
9519
9520
|
}>>>;
|
|
9520
9521
|
mfn: z.ZodOptional<z.ZodString>;
|
|
9522
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
9521
9523
|
}, "strip", z.ZodTypeAny, {
|
|
9522
9524
|
name: string;
|
|
9523
9525
|
symbol?: SymbolProp | undefined;
|
|
@@ -10012,6 +10014,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10012
10014
|
obstructsWithinBounds?: boolean | undefined;
|
|
10013
10015
|
showAsTranslucentModel?: boolean | undefined;
|
|
10014
10016
|
mfn?: string | undefined;
|
|
10017
|
+
manufacturerPartNumber?: string | undefined;
|
|
10015
10018
|
}, {
|
|
10016
10019
|
name: string;
|
|
10017
10020
|
symbol?: SymbolProp | undefined;
|
|
@@ -10508,6 +10511,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10508
10511
|
obstructsWithinBounds?: boolean | undefined;
|
|
10509
10512
|
showAsTranslucentModel?: boolean | undefined;
|
|
10510
10513
|
mfn?: string | undefined;
|
|
10514
|
+
manufacturerPartNumber?: string | undefined;
|
|
10511
10515
|
}>;
|
|
10512
10516
|
declare const componentProps: z.ZodObject<{
|
|
10513
10517
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -13572,6 +13576,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13572
13576
|
mustBeConnected?: boolean | undefined;
|
|
13573
13577
|
}>>>;
|
|
13574
13578
|
mfn: z.ZodOptional<z.ZodString>;
|
|
13579
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
13575
13580
|
}, "strip", z.ZodTypeAny, {
|
|
13576
13581
|
name: string;
|
|
13577
13582
|
symbol?: SymbolProp | undefined;
|
|
@@ -14066,6 +14071,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14066
14071
|
obstructsWithinBounds?: boolean | undefined;
|
|
14067
14072
|
showAsTranslucentModel?: boolean | undefined;
|
|
14068
14073
|
mfn?: string | undefined;
|
|
14074
|
+
manufacturerPartNumber?: string | undefined;
|
|
14069
14075
|
}, {
|
|
14070
14076
|
name: string;
|
|
14071
14077
|
symbol?: SymbolProp | undefined;
|
|
@@ -14562,6 +14568,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14562
14568
|
obstructsWithinBounds?: boolean | undefined;
|
|
14563
14569
|
showAsTranslucentModel?: boolean | undefined;
|
|
14564
14570
|
mfn?: string | undefined;
|
|
14571
|
+
manufacturerPartNumber?: string | undefined;
|
|
14565
14572
|
}>;
|
|
14566
14573
|
type ComponentProps = z.input<typeof componentProps>;
|
|
14567
14574
|
declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
|
|
@@ -27514,9 +27521,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
27514
27521
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27515
27522
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27516
27523
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27517
|
-
} & {
|
|
27518
27524
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
27519
|
-
} & {
|
|
27520
27525
|
key: z.ZodOptional<z.ZodAny>;
|
|
27521
27526
|
name: z.ZodString;
|
|
27522
27527
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -31236,6 +31241,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31236
31241
|
obstructsWithinBounds?: boolean | undefined;
|
|
31237
31242
|
showAsTranslucentModel?: boolean | undefined;
|
|
31238
31243
|
mfn?: string | undefined;
|
|
31244
|
+
manufacturerPartNumber?: string | undefined;
|
|
31239
31245
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
31240
31246
|
schPinArrangement?: {
|
|
31241
31247
|
leftSize?: number | undefined;
|
|
@@ -31276,7 +31282,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
31276
31282
|
}> | undefined;
|
|
31277
31283
|
schWidth?: number | undefined;
|
|
31278
31284
|
schHeight?: number | undefined;
|
|
31279
|
-
manufacturerPartNumber?: string | undefined;
|
|
31280
31285
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
31281
31286
|
showPinAliases?: boolean | undefined;
|
|
31282
31287
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -31809,6 +31814,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31809
31814
|
obstructsWithinBounds?: boolean | undefined;
|
|
31810
31815
|
showAsTranslucentModel?: boolean | undefined;
|
|
31811
31816
|
mfn?: string | undefined;
|
|
31817
|
+
manufacturerPartNumber?: string | undefined;
|
|
31812
31818
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
31813
31819
|
schPinArrangement?: {
|
|
31814
31820
|
leftSize?: number | undefined;
|
|
@@ -31849,7 +31855,6 @@ declare const chipProps: z.ZodObject<{
|
|
|
31849
31855
|
}> | undefined;
|
|
31850
31856
|
schWidth?: string | number | undefined;
|
|
31851
31857
|
schHeight?: string | number | undefined;
|
|
31852
|
-
manufacturerPartNumber?: string | undefined;
|
|
31853
31858
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
31854
31859
|
showPinAliases?: boolean | undefined;
|
|
31855
31860
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -31975,9 +31980,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
31975
31980
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
31976
31981
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
31977
31982
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
31978
|
-
} & {
|
|
31979
31983
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
31980
|
-
} & {
|
|
31981
31984
|
key: z.ZodOptional<z.ZodAny>;
|
|
31982
31985
|
name: z.ZodString;
|
|
31983
31986
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -35697,6 +35700,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35697
35700
|
obstructsWithinBounds?: boolean | undefined;
|
|
35698
35701
|
showAsTranslucentModel?: boolean | undefined;
|
|
35699
35702
|
mfn?: string | undefined;
|
|
35703
|
+
manufacturerPartNumber?: string | undefined;
|
|
35700
35704
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
35701
35705
|
schPinArrangement?: {
|
|
35702
35706
|
leftSize?: number | undefined;
|
|
@@ -35737,7 +35741,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
35737
35741
|
}> | undefined;
|
|
35738
35742
|
schWidth?: number | undefined;
|
|
35739
35743
|
schHeight?: number | undefined;
|
|
35740
|
-
manufacturerPartNumber?: string | undefined;
|
|
35741
35744
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
35742
35745
|
showPinAliases?: boolean | undefined;
|
|
35743
35746
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -36270,6 +36273,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36270
36273
|
obstructsWithinBounds?: boolean | undefined;
|
|
36271
36274
|
showAsTranslucentModel?: boolean | undefined;
|
|
36272
36275
|
mfn?: string | undefined;
|
|
36276
|
+
manufacturerPartNumber?: string | undefined;
|
|
36273
36277
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
36274
36278
|
schPinArrangement?: {
|
|
36275
36279
|
leftSize?: number | undefined;
|
|
@@ -36310,7 +36314,6 @@ declare const bugProps: z.ZodObject<{
|
|
|
36310
36314
|
}> | undefined;
|
|
36311
36315
|
schWidth?: string | number | undefined;
|
|
36312
36316
|
schHeight?: string | number | undefined;
|
|
36313
|
-
manufacturerPartNumber?: string | undefined;
|
|
36314
36317
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
36315
36318
|
showPinAliases?: boolean | undefined;
|
|
36316
36319
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -36435,9 +36438,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
36435
36438
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
36436
36439
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
36437
36440
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
36438
|
-
} & {
|
|
36439
36441
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
36440
|
-
} & {
|
|
36441
36442
|
key: z.ZodOptional<z.ZodAny>;
|
|
36442
36443
|
name: z.ZodString;
|
|
36443
36444
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -40157,6 +40158,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40157
40158
|
obstructsWithinBounds?: boolean | undefined;
|
|
40158
40159
|
showAsTranslucentModel?: boolean | undefined;
|
|
40159
40160
|
mfn?: string | undefined;
|
|
40161
|
+
manufacturerPartNumber?: string | undefined;
|
|
40160
40162
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
40161
40163
|
schPinArrangement?: {
|
|
40162
40164
|
leftSize?: number | undefined;
|
|
@@ -40197,7 +40199,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40197
40199
|
}> | undefined;
|
|
40198
40200
|
schWidth?: number | undefined;
|
|
40199
40201
|
schHeight?: number | undefined;
|
|
40200
|
-
manufacturerPartNumber?: string | undefined;
|
|
40201
40202
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
40202
40203
|
showPinAliases?: boolean | undefined;
|
|
40203
40204
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -40730,6 +40731,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40730
40731
|
obstructsWithinBounds?: boolean | undefined;
|
|
40731
40732
|
showAsTranslucentModel?: boolean | undefined;
|
|
40732
40733
|
mfn?: string | undefined;
|
|
40734
|
+
manufacturerPartNumber?: string | undefined;
|
|
40733
40735
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
40734
40736
|
schPinArrangement?: {
|
|
40735
40737
|
leftSize?: number | undefined;
|
|
@@ -40770,7 +40772,6 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40770
40772
|
}> | undefined;
|
|
40771
40773
|
schWidth?: string | number | undefined;
|
|
40772
40774
|
schHeight?: string | number | undefined;
|
|
40773
|
-
manufacturerPartNumber?: string | undefined;
|
|
40774
40775
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
40775
40776
|
showPinAliases?: boolean | undefined;
|
|
40776
40777
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -40927,9 +40928,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
40927
40928
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
40928
40929
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
40929
40930
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
40930
|
-
} & {
|
|
40931
40931
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
40932
|
-
} & {
|
|
40933
40932
|
key: z.ZodOptional<z.ZodAny>;
|
|
40934
40933
|
name: z.ZodString;
|
|
40935
40934
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -44638,6 +44637,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44638
44637
|
obstructsWithinBounds?: boolean | undefined;
|
|
44639
44638
|
showAsTranslucentModel?: boolean | undefined;
|
|
44640
44639
|
mfn?: string | undefined;
|
|
44640
|
+
manufacturerPartNumber?: string | undefined;
|
|
44641
44641
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
44642
44642
|
schPinArrangement?: {
|
|
44643
44643
|
leftSize?: number | undefined;
|
|
@@ -44678,7 +44678,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
44678
44678
|
}> | undefined;
|
|
44679
44679
|
schWidth?: number | undefined;
|
|
44680
44680
|
schHeight?: number | undefined;
|
|
44681
|
-
manufacturerPartNumber?: string | undefined;
|
|
44682
44681
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
44683
44682
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
44684
44683
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
@@ -45206,6 +45205,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45206
45205
|
obstructsWithinBounds?: boolean | undefined;
|
|
45207
45206
|
showAsTranslucentModel?: boolean | undefined;
|
|
45208
45207
|
mfn?: string | undefined;
|
|
45208
|
+
manufacturerPartNumber?: string | undefined;
|
|
45209
45209
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
45210
45210
|
schPinArrangement?: {
|
|
45211
45211
|
leftSize?: number | undefined;
|
|
@@ -45246,7 +45246,6 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45246
45246
|
}> | undefined;
|
|
45247
45247
|
schWidth?: string | number | undefined;
|
|
45248
45248
|
schHeight?: string | number | undefined;
|
|
45249
|
-
manufacturerPartNumber?: string | undefined;
|
|
45250
45249
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
45251
45250
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
45252
45251
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
@@ -45375,9 +45374,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
45375
45374
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
45376
45375
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
45377
45376
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
45378
|
-
} & {
|
|
45379
45377
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
45380
|
-
} & {
|
|
45381
45378
|
key: z.ZodOptional<z.ZodAny>;
|
|
45382
45379
|
name: z.ZodString;
|
|
45383
45380
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -49089,6 +49086,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49089
49086
|
obstructsWithinBounds?: boolean | undefined;
|
|
49090
49087
|
showAsTranslucentModel?: boolean | undefined;
|
|
49091
49088
|
mfn?: string | undefined;
|
|
49089
|
+
manufacturerPartNumber?: string | undefined;
|
|
49092
49090
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
49093
49091
|
schPinArrangement?: {
|
|
49094
49092
|
leftSize?: number | undefined;
|
|
@@ -49129,7 +49127,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49129
49127
|
}> | undefined;
|
|
49130
49128
|
schWidth?: number | undefined;
|
|
49131
49129
|
schHeight?: number | undefined;
|
|
49132
|
-
manufacturerPartNumber?: string | undefined;
|
|
49133
49130
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
49134
49131
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
49135
49132
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
@@ -49659,6 +49656,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49659
49656
|
obstructsWithinBounds?: boolean | undefined;
|
|
49660
49657
|
showAsTranslucentModel?: boolean | undefined;
|
|
49661
49658
|
mfn?: string | undefined;
|
|
49659
|
+
manufacturerPartNumber?: string | undefined;
|
|
49662
49660
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
49663
49661
|
schPinArrangement?: {
|
|
49664
49662
|
leftSize?: number | undefined;
|
|
@@ -49699,7 +49697,6 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49699
49697
|
}> | undefined;
|
|
49700
49698
|
schWidth?: string | number | undefined;
|
|
49701
49699
|
schHeight?: string | number | undefined;
|
|
49702
|
-
manufacturerPartNumber?: string | undefined;
|
|
49703
49700
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
49704
49701
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
49705
49702
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
@@ -49839,9 +49836,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
49839
49836
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
49840
49837
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
49841
49838
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
49842
|
-
} & {
|
|
49843
49839
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
49844
|
-
} & {
|
|
49845
49840
|
key: z.ZodOptional<z.ZodAny>;
|
|
49846
49841
|
name: z.ZodString;
|
|
49847
49842
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -53448,6 +53443,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53448
53443
|
obstructsWithinBounds?: boolean | undefined;
|
|
53449
53444
|
showAsTranslucentModel?: boolean | undefined;
|
|
53450
53445
|
mfn?: string | undefined;
|
|
53446
|
+
manufacturerPartNumber?: string | undefined;
|
|
53451
53447
|
schPinSpacing?: number | undefined;
|
|
53452
53448
|
schPinStyle?: Record<string, {
|
|
53453
53449
|
marginLeft?: number | undefined;
|
|
@@ -53461,7 +53457,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53461
53457
|
}> | undefined;
|
|
53462
53458
|
schWidth?: number | undefined;
|
|
53463
53459
|
schHeight?: number | undefined;
|
|
53464
|
-
manufacturerPartNumber?: string | undefined;
|
|
53465
53460
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
53466
53461
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
53467
53462
|
schPortArrangement?: {
|
|
@@ -53988,6 +53983,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
53988
53983
|
obstructsWithinBounds?: boolean | undefined;
|
|
53989
53984
|
showAsTranslucentModel?: boolean | undefined;
|
|
53990
53985
|
mfn?: string | undefined;
|
|
53986
|
+
manufacturerPartNumber?: string | undefined;
|
|
53991
53987
|
schPinSpacing?: string | number | undefined;
|
|
53992
53988
|
schPinStyle?: Record<string, {
|
|
53993
53989
|
marginLeft?: string | number | undefined;
|
|
@@ -54001,7 +53997,6 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54001
53997
|
}> | undefined;
|
|
54002
53998
|
schWidth?: string | number | undefined;
|
|
54003
53999
|
schHeight?: string | number | undefined;
|
|
54004
|
-
manufacturerPartNumber?: string | undefined;
|
|
54005
54000
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
54006
54001
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
54007
54002
|
schPortArrangement?: {
|
|
@@ -57106,6 +57101,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
57106
57101
|
mustBeConnected?: boolean | undefined;
|
|
57107
57102
|
}>>>;
|
|
57108
57103
|
mfn: z.ZodOptional<z.ZodString>;
|
|
57104
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
57109
57105
|
} & {
|
|
57110
57106
|
standard: z.ZodOptional<z.ZodEnum<["TSC0001_36P_XALT_2025_11", "0805", "0603", "1206"]>>;
|
|
57111
57107
|
pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
|
|
@@ -57604,6 +57600,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
57604
57600
|
obstructsWithinBounds?: boolean | undefined;
|
|
57605
57601
|
showAsTranslucentModel?: boolean | undefined;
|
|
57606
57602
|
mfn?: string | undefined;
|
|
57603
|
+
manufacturerPartNumber?: string | undefined;
|
|
57607
57604
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
57608
57605
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
57609
57606
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -58103,6 +58100,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58103
58100
|
obstructsWithinBounds?: boolean | undefined;
|
|
58104
58101
|
showAsTranslucentModel?: boolean | undefined;
|
|
58105
58102
|
mfn?: string | undefined;
|
|
58103
|
+
manufacturerPartNumber?: string | undefined;
|
|
58106
58104
|
pinLabels?: Record<string | number, string | string[]> | undefined;
|
|
58107
58105
|
internallyConnectedPins?: (string | number)[][] | undefined;
|
|
58108
58106
|
standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
|
|
@@ -61198,6 +61196,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
61198
61196
|
mustBeConnected?: boolean | undefined;
|
|
61199
61197
|
}>>>;
|
|
61200
61198
|
mfn: z.ZodOptional<z.ZodString>;
|
|
61199
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
61201
61200
|
} & {
|
|
61202
61201
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
61203
61202
|
voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
@@ -61699,6 +61698,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
61699
61698
|
obstructsWithinBounds?: boolean | undefined;
|
|
61700
61699
|
showAsTranslucentModel?: boolean | undefined;
|
|
61701
61700
|
mfn?: string | undefined;
|
|
61701
|
+
manufacturerPartNumber?: string | undefined;
|
|
61702
61702
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
61703
61703
|
voltageRating?: string | number | undefined;
|
|
61704
61704
|
schShowRatings?: boolean | undefined;
|
|
@@ -62200,6 +62200,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62200
62200
|
obstructsWithinBounds?: boolean | undefined;
|
|
62201
62201
|
showAsTranslucentModel?: boolean | undefined;
|
|
62202
62202
|
mfn?: string | undefined;
|
|
62203
|
+
manufacturerPartNumber?: string | undefined;
|
|
62203
62204
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
62204
62205
|
voltageRating?: string | number | undefined;
|
|
62205
62206
|
schShowRatings?: boolean | undefined;
|
|
@@ -66872,6 +66873,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
66872
66873
|
mustBeConnected?: boolean | undefined;
|
|
66873
66874
|
}>>>;
|
|
66874
66875
|
mfn: z.ZodOptional<z.ZodString>;
|
|
66876
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
66875
66877
|
} & {
|
|
66876
66878
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
66877
66879
|
pullupFor: z.ZodOptional<z.ZodString>;
|
|
@@ -67376,6 +67378,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67376
67378
|
obstructsWithinBounds?: boolean | undefined;
|
|
67377
67379
|
showAsTranslucentModel?: boolean | undefined;
|
|
67378
67380
|
mfn?: string | undefined;
|
|
67381
|
+
manufacturerPartNumber?: string | undefined;
|
|
67379
67382
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
67380
67383
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
67381
67384
|
pullupFor?: string | undefined;
|
|
@@ -67880,6 +67883,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
67880
67883
|
obstructsWithinBounds?: boolean | undefined;
|
|
67881
67884
|
showAsTranslucentModel?: boolean | undefined;
|
|
67882
67885
|
mfn?: string | undefined;
|
|
67886
|
+
manufacturerPartNumber?: string | undefined;
|
|
67883
67887
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
67884
67888
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
67885
67889
|
pullupFor?: string | undefined;
|
|
@@ -70958,6 +70962,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
70958
70962
|
mustBeConnected?: boolean | undefined;
|
|
70959
70963
|
}>>>;
|
|
70960
70964
|
mfn: z.ZodOptional<z.ZodString>;
|
|
70965
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
70961
70966
|
} & {
|
|
70962
70967
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
70963
70968
|
pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
|
|
@@ -71456,6 +71461,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
71456
71461
|
obstructsWithinBounds?: boolean | undefined;
|
|
71457
71462
|
showAsTranslucentModel?: boolean | undefined;
|
|
71458
71463
|
mfn?: string | undefined;
|
|
71464
|
+
manufacturerPartNumber?: string | undefined;
|
|
71459
71465
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
71460
71466
|
}, {
|
|
71461
71467
|
name: string;
|
|
@@ -71954,6 +71960,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
71954
71960
|
obstructsWithinBounds?: boolean | undefined;
|
|
71955
71961
|
showAsTranslucentModel?: boolean | undefined;
|
|
71956
71962
|
mfn?: string | undefined;
|
|
71963
|
+
manufacturerPartNumber?: string | undefined;
|
|
71957
71964
|
pinVariant?: "two_pin" | "three_pin" | undefined;
|
|
71958
71965
|
}>;
|
|
71959
71966
|
|
|
@@ -72054,9 +72061,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
72054
72061
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
72055
72062
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
72056
72063
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
72057
|
-
} & {
|
|
72058
72064
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
72059
|
-
} & {
|
|
72060
72065
|
key: z.ZodOptional<z.ZodAny>;
|
|
72061
72066
|
name: z.ZodString;
|
|
72062
72067
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -75536,8 +75541,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
75536
75541
|
obstructsWithinBounds?: boolean | undefined;
|
|
75537
75542
|
showAsTranslucentModel?: boolean | undefined;
|
|
75538
75543
|
mfn?: string | undefined;
|
|
75539
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
75540
75544
|
manufacturerPartNumber?: string | undefined;
|
|
75545
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
75541
75546
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
75542
75547
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
75543
75548
|
mpn?: string | undefined;
|
|
@@ -76039,8 +76044,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
76039
76044
|
obstructsWithinBounds?: boolean | undefined;
|
|
76040
76045
|
showAsTranslucentModel?: boolean | undefined;
|
|
76041
76046
|
mfn?: string | undefined;
|
|
76042
|
-
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
76043
76047
|
manufacturerPartNumber?: string | undefined;
|
|
76048
|
+
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
76044
76049
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
76045
76050
|
pinVariant?: "two_pin" | "four_pin" | undefined;
|
|
76046
76051
|
mpn?: string | undefined;
|
|
@@ -79115,6 +79120,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
79115
79120
|
mustBeConnected?: boolean | undefined;
|
|
79116
79121
|
}>>>;
|
|
79117
79122
|
mfn: z.ZodOptional<z.ZodString>;
|
|
79123
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
79118
79124
|
} & {
|
|
79119
79125
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
79120
79126
|
loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -79615,6 +79621,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
79615
79621
|
obstructsWithinBounds?: boolean | undefined;
|
|
79616
79622
|
showAsTranslucentModel?: boolean | undefined;
|
|
79617
79623
|
mfn?: string | undefined;
|
|
79624
|
+
manufacturerPartNumber?: string | undefined;
|
|
79618
79625
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
79619
79626
|
}, {
|
|
79620
79627
|
name: string;
|
|
@@ -80114,6 +80121,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
80114
80121
|
obstructsWithinBounds?: boolean | undefined;
|
|
80115
80122
|
showAsTranslucentModel?: boolean | undefined;
|
|
80116
80123
|
mfn?: string | undefined;
|
|
80124
|
+
manufacturerPartNumber?: string | undefined;
|
|
80117
80125
|
pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
|
|
80118
80126
|
}>;
|
|
80119
80127
|
|
|
@@ -84642,6 +84650,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
84642
84650
|
mustBeConnected?: boolean | undefined;
|
|
84643
84651
|
}>>>;
|
|
84644
84652
|
mfn: z.ZodOptional<z.ZodString>;
|
|
84653
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
84645
84654
|
} & {
|
|
84646
84655
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
84647
84656
|
maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -85152,6 +85161,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85152
85161
|
obstructsWithinBounds?: boolean | undefined;
|
|
85153
85162
|
showAsTranslucentModel?: boolean | undefined;
|
|
85154
85163
|
mfn?: string | undefined;
|
|
85164
|
+
manufacturerPartNumber?: string | undefined;
|
|
85155
85165
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
85156
85166
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
85157
85167
|
schSize?: number | "xs" | "sm" | "md" | "default" | undefined;
|
|
@@ -85658,6 +85668,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
85658
85668
|
obstructsWithinBounds?: boolean | undefined;
|
|
85659
85669
|
showAsTranslucentModel?: boolean | undefined;
|
|
85660
85670
|
mfn?: string | undefined;
|
|
85671
|
+
manufacturerPartNumber?: string | undefined;
|
|
85661
85672
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
85662
85673
|
schShowRatings?: boolean | undefined;
|
|
85663
85674
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -88766,6 +88777,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
88766
88777
|
mustBeConnected?: boolean | undefined;
|
|
88767
88778
|
}>>>;
|
|
88768
88779
|
mfn: z.ZodOptional<z.ZodString>;
|
|
88780
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
88769
88781
|
} & {
|
|
88770
88782
|
soldermaskPullback: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88771
88783
|
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -89263,6 +89275,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89263
89275
|
obstructsWithinBounds?: boolean | undefined;
|
|
89264
89276
|
showAsTranslucentModel?: boolean | undefined;
|
|
89265
89277
|
mfn?: string | undefined;
|
|
89278
|
+
manufacturerPartNumber?: string | undefined;
|
|
89266
89279
|
padDiameter?: number | undefined;
|
|
89267
89280
|
soldermaskPullback?: number | undefined;
|
|
89268
89281
|
}, {
|
|
@@ -89761,6 +89774,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
89761
89774
|
obstructsWithinBounds?: boolean | undefined;
|
|
89762
89775
|
showAsTranslucentModel?: boolean | undefined;
|
|
89763
89776
|
mfn?: string | undefined;
|
|
89777
|
+
manufacturerPartNumber?: string | undefined;
|
|
89764
89778
|
padDiameter?: string | number | undefined;
|
|
89765
89779
|
soldermaskPullback?: string | number | undefined;
|
|
89766
89780
|
}>;
|
|
@@ -96986,6 +97000,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
96986
97000
|
mustBeConnected?: boolean | undefined;
|
|
96987
97001
|
}>>>;
|
|
96988
97002
|
mfn: z.ZodOptional<z.ZodString>;
|
|
97003
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
96989
97004
|
} & {
|
|
96990
97005
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
96991
97006
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -97485,6 +97500,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
97485
97500
|
obstructsWithinBounds?: boolean | undefined;
|
|
97486
97501
|
showAsTranslucentModel?: boolean | undefined;
|
|
97487
97502
|
mfn?: string | undefined;
|
|
97503
|
+
manufacturerPartNumber?: string | undefined;
|
|
97488
97504
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
97489
97505
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
97490
97506
|
capacity?: number | undefined;
|
|
@@ -97985,6 +98001,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
97985
98001
|
obstructsWithinBounds?: boolean | undefined;
|
|
97986
98002
|
showAsTranslucentModel?: boolean | undefined;
|
|
97987
98003
|
mfn?: string | undefined;
|
|
98004
|
+
manufacturerPartNumber?: string | undefined;
|
|
97988
98005
|
standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
|
|
97989
98006
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
97990
98007
|
capacity?: string | number | undefined;
|
|
@@ -101136,6 +101153,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101136
101153
|
mustBeConnected?: boolean | undefined;
|
|
101137
101154
|
}>>>;
|
|
101138
101155
|
mfn: z.ZodOptional<z.ZodString>;
|
|
101156
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
101139
101157
|
} & {
|
|
101140
101158
|
pinCount: z.ZodNumber;
|
|
101141
101159
|
pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -101778,6 +101796,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
101778
101796
|
obstructsWithinBounds?: boolean | undefined;
|
|
101779
101797
|
showAsTranslucentModel?: boolean | undefined;
|
|
101780
101798
|
mfn?: string | undefined;
|
|
101799
|
+
manufacturerPartNumber?: string | undefined;
|
|
101781
101800
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
101782
101801
|
schPinArrangement?: {
|
|
101783
101802
|
leftSize?: number | undefined;
|
|
@@ -102326,6 +102345,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
102326
102345
|
obstructsWithinBounds?: boolean | undefined;
|
|
102327
102346
|
showAsTranslucentModel?: boolean | undefined;
|
|
102328
102347
|
mfn?: string | undefined;
|
|
102348
|
+
manufacturerPartNumber?: string | undefined;
|
|
102329
102349
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
102330
102350
|
schPinArrangement?: {
|
|
102331
102351
|
leftSize?: number | undefined;
|
|
@@ -102536,9 +102556,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
102536
102556
|
relative: z.ZodOptional<z.ZodBoolean>;
|
|
102537
102557
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
102538
102558
|
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
102539
|
-
} & {
|
|
102540
102559
|
supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
|
|
102541
|
-
} & {
|
|
102542
102560
|
key: z.ZodOptional<z.ZodAny>;
|
|
102543
102561
|
name: z.ZodString;
|
|
102544
102562
|
displayName: z.ZodOptional<z.ZodString>;
|
|
@@ -106258,6 +106276,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106258
106276
|
obstructsWithinBounds?: boolean | undefined;
|
|
106259
106277
|
showAsTranslucentModel?: boolean | undefined;
|
|
106260
106278
|
mfn?: string | undefined;
|
|
106279
|
+
manufacturerPartNumber?: string | undefined;
|
|
106261
106280
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
106262
106281
|
schPinArrangement?: {
|
|
106263
106282
|
leftSize?: number | undefined;
|
|
@@ -106298,7 +106317,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106298
106317
|
}> | undefined;
|
|
106299
106318
|
schWidth?: number | undefined;
|
|
106300
106319
|
schHeight?: number | undefined;
|
|
106301
|
-
manufacturerPartNumber?: string | undefined;
|
|
106302
106320
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
106303
106321
|
showPinAliases?: boolean | undefined;
|
|
106304
106322
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -106831,6 +106849,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106831
106849
|
obstructsWithinBounds?: boolean | undefined;
|
|
106832
106850
|
showAsTranslucentModel?: boolean | undefined;
|
|
106833
106851
|
mfn?: string | undefined;
|
|
106852
|
+
manufacturerPartNumber?: string | undefined;
|
|
106834
106853
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
106835
106854
|
schPinArrangement?: {
|
|
106836
106855
|
leftSize?: number | undefined;
|
|
@@ -106871,7 +106890,6 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
106871
106890
|
}> | undefined;
|
|
106872
106891
|
schWidth?: string | number | undefined;
|
|
106873
106892
|
schHeight?: string | number | undefined;
|
|
106874
|
-
manufacturerPartNumber?: string | undefined;
|
|
106875
106893
|
pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
106876
106894
|
showPinAliases?: boolean | undefined;
|
|
106877
106895
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
@@ -111344,6 +111362,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
111344
111362
|
mustBeConnected?: boolean | undefined;
|
|
111345
111363
|
}>>>;
|
|
111346
111364
|
mfn: z.ZodOptional<z.ZodString>;
|
|
111365
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
111347
111366
|
} & {
|
|
111348
111367
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
111349
111368
|
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">]>>>;
|
|
@@ -111842,6 +111861,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
111842
111861
|
obstructsWithinBounds?: boolean | undefined;
|
|
111843
111862
|
showAsTranslucentModel?: boolean | undefined;
|
|
111844
111863
|
mfn?: string | undefined;
|
|
111864
|
+
manufacturerPartNumber?: string | undefined;
|
|
111845
111865
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
111846
111866
|
}, {
|
|
111847
111867
|
type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
|
|
@@ -112340,6 +112360,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
112340
112360
|
obstructsWithinBounds?: boolean | undefined;
|
|
112341
112361
|
showAsTranslucentModel?: boolean | undefined;
|
|
112342
112362
|
mfn?: string | undefined;
|
|
112363
|
+
manufacturerPartNumber?: string | undefined;
|
|
112343
112364
|
connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
|
|
112344
112365
|
}>;
|
|
112345
112366
|
declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
|
|
@@ -115412,6 +115433,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
115412
115433
|
mustBeConnected?: boolean | undefined;
|
|
115413
115434
|
}>>>;
|
|
115414
115435
|
mfn: z.ZodOptional<z.ZodString>;
|
|
115436
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
115415
115437
|
} & {
|
|
115416
115438
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
115417
115439
|
mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
|
|
@@ -115911,6 +115933,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
115911
115933
|
obstructsWithinBounds?: boolean | undefined;
|
|
115912
115934
|
showAsTranslucentModel?: boolean | undefined;
|
|
115913
115935
|
mfn?: string | undefined;
|
|
115936
|
+
manufacturerPartNumber?: string | undefined;
|
|
115914
115937
|
}, {
|
|
115915
115938
|
name: string;
|
|
115916
115939
|
channelType: "n" | "p";
|
|
@@ -116409,6 +116432,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
116409
116432
|
obstructsWithinBounds?: boolean | undefined;
|
|
116410
116433
|
showAsTranslucentModel?: boolean | undefined;
|
|
116411
116434
|
mfn?: string | undefined;
|
|
116435
|
+
manufacturerPartNumber?: string | undefined;
|
|
116412
116436
|
}>;
|
|
116413
116437
|
declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
|
|
116414
116438
|
type MosfetPinLabels = (typeof mosfetPins)[number];
|
|
@@ -119487,6 +119511,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
119487
119511
|
mustBeConnected?: boolean | undefined;
|
|
119488
119512
|
}>>>;
|
|
119489
119513
|
mfn: z.ZodOptional<z.ZodString>;
|
|
119514
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
119490
119515
|
} & {
|
|
119491
119516
|
connections: z.ZodOptional<z.ZodRecord<z.ZodEnum<["inverting_input", "non_inverting_input", "output", "positive_supply", "negative_supply"]>, z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>;
|
|
119492
119517
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -119983,6 +120008,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
119983
120008
|
obstructsWithinBounds?: boolean | undefined;
|
|
119984
120009
|
showAsTranslucentModel?: boolean | undefined;
|
|
119985
120010
|
mfn?: string | undefined;
|
|
120011
|
+
manufacturerPartNumber?: string | undefined;
|
|
119986
120012
|
connections?: Partial<Record<"inverting_input" | "non_inverting_input" | "output" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
119987
120013
|
}, {
|
|
119988
120014
|
name: string;
|
|
@@ -120480,6 +120506,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
120480
120506
|
obstructsWithinBounds?: boolean | undefined;
|
|
120481
120507
|
showAsTranslucentModel?: boolean | undefined;
|
|
120482
120508
|
mfn?: string | undefined;
|
|
120509
|
+
manufacturerPartNumber?: string | undefined;
|
|
120483
120510
|
connections?: Partial<Record<"inverting_input" | "non_inverting_input" | "output" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
|
|
120484
120511
|
}>;
|
|
120485
120512
|
/**
|
|
@@ -123559,6 +123586,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
123559
123586
|
mustBeConnected?: boolean | undefined;
|
|
123560
123587
|
}>>>;
|
|
123561
123588
|
mfn: z.ZodOptional<z.ZodString>;
|
|
123589
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
123562
123590
|
} & {
|
|
123563
123591
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
123564
123592
|
maxCurrentRating: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
@@ -124059,6 +124087,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
124059
124087
|
obstructsWithinBounds?: boolean | undefined;
|
|
124060
124088
|
showAsTranslucentModel?: boolean | undefined;
|
|
124061
124089
|
mfn?: string | undefined;
|
|
124090
|
+
manufacturerPartNumber?: string | undefined;
|
|
124062
124091
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
124063
124092
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
124064
124093
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -124559,6 +124588,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
124559
124588
|
obstructsWithinBounds?: boolean | undefined;
|
|
124560
124589
|
showAsTranslucentModel?: boolean | undefined;
|
|
124561
124590
|
mfn?: string | undefined;
|
|
124591
|
+
manufacturerPartNumber?: string | undefined;
|
|
124562
124592
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
|
|
124563
124593
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
124564
124594
|
maxCurrentRating?: string | number | undefined;
|
|
@@ -127627,6 +127657,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
127627
127657
|
mustBeConnected?: boolean | undefined;
|
|
127628
127658
|
}>>>;
|
|
127629
127659
|
mfn: z.ZodOptional<z.ZodString>;
|
|
127660
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
127630
127661
|
} & {
|
|
127631
127662
|
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">]>>>;
|
|
127632
127663
|
variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "avalanche", "photo", "tvs"]>>>;
|
|
@@ -128132,6 +128163,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
128132
128163
|
obstructsWithinBounds?: boolean | undefined;
|
|
128133
128164
|
showAsTranslucentModel?: boolean | undefined;
|
|
128134
128165
|
mfn?: string | undefined;
|
|
128166
|
+
manufacturerPartNumber?: string | undefined;
|
|
128135
128167
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
128136
128168
|
standard?: boolean | undefined;
|
|
128137
128169
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -128636,6 +128668,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
128636
128668
|
obstructsWithinBounds?: boolean | undefined;
|
|
128637
128669
|
showAsTranslucentModel?: boolean | undefined;
|
|
128638
128670
|
mfn?: string | undefined;
|
|
128671
|
+
manufacturerPartNumber?: string | undefined;
|
|
128639
128672
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
128640
128673
|
standard?: boolean | undefined;
|
|
128641
128674
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -129140,6 +129173,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129140
129173
|
obstructsWithinBounds?: boolean | undefined;
|
|
129141
129174
|
showAsTranslucentModel?: boolean | undefined;
|
|
129142
129175
|
mfn?: string | undefined;
|
|
129176
|
+
manufacturerPartNumber?: string | undefined;
|
|
129143
129177
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
129144
129178
|
standard?: boolean | undefined;
|
|
129145
129179
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -129644,6 +129678,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129644
129678
|
obstructsWithinBounds?: boolean | undefined;
|
|
129645
129679
|
showAsTranslucentModel?: boolean | undefined;
|
|
129646
129680
|
mfn?: string | undefined;
|
|
129681
|
+
manufacturerPartNumber?: string | undefined;
|
|
129647
129682
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
129648
129683
|
standard?: boolean | undefined;
|
|
129649
129684
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -130154,6 +130189,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130154
130189
|
obstructsWithinBounds?: boolean | undefined;
|
|
130155
130190
|
showAsTranslucentModel?: boolean | undefined;
|
|
130156
130191
|
mfn?: string | undefined;
|
|
130192
|
+
manufacturerPartNumber?: string | undefined;
|
|
130157
130193
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
130158
130194
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
130159
130195
|
}, {
|
|
@@ -130652,6 +130688,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130652
130688
|
obstructsWithinBounds?: boolean | undefined;
|
|
130653
130689
|
showAsTranslucentModel?: boolean | undefined;
|
|
130654
130690
|
mfn?: string | undefined;
|
|
130691
|
+
manufacturerPartNumber?: string | undefined;
|
|
130655
130692
|
connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
130656
130693
|
standard?: boolean | undefined;
|
|
130657
130694
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
@@ -133748,6 +133785,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
133748
133785
|
mustBeConnected?: boolean | undefined;
|
|
133749
133786
|
}>>>;
|
|
133750
133787
|
mfn: z.ZodOptional<z.ZodString>;
|
|
133788
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
133751
133789
|
} & {
|
|
133752
133790
|
color: z.ZodOptional<z.ZodString>;
|
|
133753
133791
|
wavelength: z.ZodOptional<z.ZodString>;
|
|
@@ -134249,6 +134287,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
134249
134287
|
obstructsWithinBounds?: boolean | undefined;
|
|
134250
134288
|
showAsTranslucentModel?: boolean | undefined;
|
|
134251
134289
|
mfn?: string | undefined;
|
|
134290
|
+
manufacturerPartNumber?: string | undefined;
|
|
134252
134291
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
134253
134292
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
134254
134293
|
color?: string | undefined;
|
|
@@ -134751,6 +134790,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
134751
134790
|
obstructsWithinBounds?: boolean | undefined;
|
|
134752
134791
|
showAsTranslucentModel?: boolean | undefined;
|
|
134753
134792
|
mfn?: string | undefined;
|
|
134793
|
+
manufacturerPartNumber?: string | undefined;
|
|
134754
134794
|
connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
134755
134795
|
schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
|
|
134756
134796
|
color?: string | undefined;
|
|
@@ -137838,6 +137878,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
137838
137878
|
mustBeConnected?: boolean | undefined;
|
|
137839
137879
|
}>>>;
|
|
137840
137880
|
mfn: z.ZodOptional<z.ZodString>;
|
|
137881
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
137841
137882
|
} & {
|
|
137842
137883
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
137843
137884
|
isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -138347,6 +138388,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
138347
138388
|
obstructsWithinBounds?: boolean | undefined;
|
|
138348
138389
|
showAsTranslucentModel?: boolean | undefined;
|
|
138349
138390
|
mfn?: string | undefined;
|
|
138391
|
+
manufacturerPartNumber?: string | undefined;
|
|
138350
138392
|
connections?: Record<string, string | readonly string[] | string[]> | undefined;
|
|
138351
138393
|
spst?: boolean | undefined;
|
|
138352
138394
|
spdt?: boolean | undefined;
|
|
@@ -138854,6 +138896,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
138854
138896
|
obstructsWithinBounds?: boolean | undefined;
|
|
138855
138897
|
showAsTranslucentModel?: boolean | undefined;
|
|
138856
138898
|
mfn?: string | undefined;
|
|
138899
|
+
manufacturerPartNumber?: string | undefined;
|
|
138857
138900
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
138858
138901
|
spst?: boolean | undefined;
|
|
138859
138902
|
spdt?: boolean | undefined;
|
|
@@ -139362,6 +139405,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
139362
139405
|
obstructsWithinBounds?: boolean | undefined;
|
|
139363
139406
|
showAsTranslucentModel?: boolean | undefined;
|
|
139364
139407
|
mfn?: string | undefined;
|
|
139408
|
+
manufacturerPartNumber?: string | undefined;
|
|
139365
139409
|
connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
|
|
139366
139410
|
spst?: boolean | undefined;
|
|
139367
139411
|
spdt?: boolean | undefined;
|
|
@@ -143431,6 +143475,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
143431
143475
|
mustBeConnected?: boolean | undefined;
|
|
143432
143476
|
}>>>;
|
|
143433
143477
|
mfn: z.ZodOptional<z.ZodString>;
|
|
143478
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
143434
143479
|
} & {
|
|
143435
143480
|
connections: z.ZodOptional<z.ZodObject<{
|
|
143436
143481
|
pin1: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>;
|
|
@@ -143940,6 +143985,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
143940
143985
|
obstructsWithinBounds?: boolean | undefined;
|
|
143941
143986
|
showAsTranslucentModel?: boolean | undefined;
|
|
143942
143987
|
mfn?: string | undefined;
|
|
143988
|
+
manufacturerPartNumber?: string | undefined;
|
|
143943
143989
|
width?: number | undefined;
|
|
143944
143990
|
height?: number | undefined;
|
|
143945
143991
|
connections?: {
|
|
@@ -144444,6 +144490,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
144444
144490
|
obstructsWithinBounds?: boolean | undefined;
|
|
144445
144491
|
showAsTranslucentModel?: boolean | undefined;
|
|
144446
144492
|
mfn?: string | undefined;
|
|
144493
|
+
manufacturerPartNumber?: string | undefined;
|
|
144447
144494
|
width?: string | number | undefined;
|
|
144448
144495
|
height?: string | number | undefined;
|
|
144449
144496
|
connections?: {
|
|
@@ -144948,6 +144995,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
144948
144995
|
obstructsWithinBounds?: boolean | undefined;
|
|
144949
144996
|
showAsTranslucentModel?: boolean | undefined;
|
|
144950
144997
|
mfn?: string | undefined;
|
|
144998
|
+
manufacturerPartNumber?: string | undefined;
|
|
144951
144999
|
width?: number | undefined;
|
|
144952
145000
|
height?: number | undefined;
|
|
144953
145001
|
connections?: {
|
|
@@ -145452,6 +145500,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
145452
145500
|
obstructsWithinBounds?: boolean | undefined;
|
|
145453
145501
|
showAsTranslucentModel?: boolean | undefined;
|
|
145454
145502
|
mfn?: string | undefined;
|
|
145503
|
+
manufacturerPartNumber?: string | undefined;
|
|
145455
145504
|
width?: string | number | undefined;
|
|
145456
145505
|
height?: string | number | undefined;
|
|
145457
145506
|
connections?: {
|
|
@@ -149460,6 +149509,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
149460
149509
|
mustBeConnected?: boolean | undefined;
|
|
149461
149510
|
}>>>;
|
|
149462
149511
|
mfn: z.ZodOptional<z.ZodString>;
|
|
149512
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
149463
149513
|
} & {
|
|
149464
149514
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
149465
149515
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -149957,6 +150007,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
149957
150007
|
obstructsWithinBounds?: boolean | undefined;
|
|
149958
150008
|
showAsTranslucentModel?: boolean | undefined;
|
|
149959
150009
|
mfn?: string | undefined;
|
|
150010
|
+
manufacturerPartNumber?: string | undefined;
|
|
149960
150011
|
}, {
|
|
149961
150012
|
name: string;
|
|
149962
150013
|
voltage: string | number;
|
|
@@ -150454,6 +150505,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
150454
150505
|
obstructsWithinBounds?: boolean | undefined;
|
|
150455
150506
|
showAsTranslucentModel?: boolean | undefined;
|
|
150456
150507
|
mfn?: string | undefined;
|
|
150508
|
+
manufacturerPartNumber?: string | undefined;
|
|
150457
150509
|
}>;
|
|
150458
150510
|
type PowerSourceProps = z.input<typeof powerSourceProps>;
|
|
150459
150511
|
|
|
@@ -153532,6 +153584,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
153532
153584
|
mustBeConnected?: boolean | undefined;
|
|
153533
153585
|
}>>>;
|
|
153534
153586
|
mfn: z.ZodOptional<z.ZodString>;
|
|
153587
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
153535
153588
|
} & {
|
|
153536
153589
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
153537
153590
|
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -154034,6 +154087,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
154034
154087
|
obstructsWithinBounds?: boolean | undefined;
|
|
154035
154088
|
showAsTranslucentModel?: boolean | undefined;
|
|
154036
154089
|
mfn?: string | undefined;
|
|
154090
|
+
manufacturerPartNumber?: string | undefined;
|
|
154037
154091
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
154038
154092
|
frequency?: number | undefined;
|
|
154039
154093
|
voltage?: number | undefined;
|
|
@@ -154537,6 +154591,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
154537
154591
|
obstructsWithinBounds?: boolean | undefined;
|
|
154538
154592
|
showAsTranslucentModel?: boolean | undefined;
|
|
154539
154593
|
mfn?: string | undefined;
|
|
154594
|
+
manufacturerPartNumber?: string | undefined;
|
|
154540
154595
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
154541
154596
|
frequency?: string | number | undefined;
|
|
154542
154597
|
voltage?: string | number | undefined;
|
|
@@ -157621,6 +157676,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
157621
157676
|
mustBeConnected?: boolean | undefined;
|
|
157622
157677
|
}>>>;
|
|
157623
157678
|
mfn: z.ZodOptional<z.ZodString>;
|
|
157679
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
157624
157680
|
} & {
|
|
157625
157681
|
current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
157626
157682
|
frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -158123,6 +158179,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
158123
158179
|
obstructsWithinBounds?: boolean | undefined;
|
|
158124
158180
|
showAsTranslucentModel?: boolean | undefined;
|
|
158125
158181
|
mfn?: string | undefined;
|
|
158182
|
+
manufacturerPartNumber?: string | undefined;
|
|
158126
158183
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
158127
158184
|
frequency?: number | undefined;
|
|
158128
158185
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -158626,6 +158683,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
158626
158683
|
obstructsWithinBounds?: boolean | undefined;
|
|
158627
158684
|
showAsTranslucentModel?: boolean | undefined;
|
|
158628
158685
|
mfn?: string | undefined;
|
|
158686
|
+
manufacturerPartNumber?: string | undefined;
|
|
158629
158687
|
connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
|
|
158630
158688
|
frequency?: string | number | undefined;
|
|
158631
158689
|
waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
|
|
@@ -161705,6 +161763,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
161705
161763
|
mustBeConnected?: boolean | undefined;
|
|
161706
161764
|
}>>>;
|
|
161707
161765
|
mfn: z.ZodOptional<z.ZodString>;
|
|
161766
|
+
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
161708
161767
|
}, "name"> & {
|
|
161709
161768
|
name: z.ZodOptional<z.ZodString>;
|
|
161710
161769
|
connectsTo: z.ZodString;
|
|
@@ -162205,6 +162264,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
162205
162264
|
obstructsWithinBounds?: boolean | undefined;
|
|
162206
162265
|
showAsTranslucentModel?: boolean | undefined;
|
|
162207
162266
|
mfn?: string | undefined;
|
|
162267
|
+
manufacturerPartNumber?: string | undefined;
|
|
162208
162268
|
color?: string | undefined;
|
|
162209
162269
|
referenceTo?: string | undefined;
|
|
162210
162270
|
}, {
|
|
@@ -162704,6 +162764,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
162704
162764
|
obstructsWithinBounds?: boolean | undefined;
|
|
162705
162765
|
showAsTranslucentModel?: boolean | undefined;
|
|
162706
162766
|
mfn?: string | undefined;
|
|
162767
|
+
manufacturerPartNumber?: string | undefined;
|
|
162707
162768
|
color?: string | undefined;
|
|
162708
162769
|
referenceTo?: string | undefined;
|
|
162709
162770
|
}>;
|