@tscircuit/props 0.0.449 → 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 CHANGED
@@ -6453,6 +6453,8 @@ interface CommonComponentProps<PinLabel extends string = string> extends CommonL
6453
6453
  * Whether to show this component's CAD model as translucent in the 3D viewer.
6454
6454
  */
6455
6455
  showAsTranslucentModel?: boolean;
6456
+ mfn?: string;
6457
+ manufacturerPartNumber?: string;
6456
6458
  }
6457
6459
  declare const commonComponentProps: z.ZodObject<{
6458
6460
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -9516,6 +9518,8 @@ declare const commonComponentProps: z.ZodObject<{
9516
9518
  highlightColor?: string | undefined;
9517
9519
  mustBeConnected?: boolean | undefined;
9518
9520
  }>>>;
9521
+ mfn: z.ZodOptional<z.ZodString>;
9522
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
9519
9523
  }, "strip", z.ZodTypeAny, {
9520
9524
  name: string;
9521
9525
  symbol?: SymbolProp | undefined;
@@ -10009,6 +10013,8 @@ declare const commonComponentProps: z.ZodObject<{
10009
10013
  doNotPlace?: boolean | undefined;
10010
10014
  obstructsWithinBounds?: boolean | undefined;
10011
10015
  showAsTranslucentModel?: boolean | undefined;
10016
+ mfn?: string | undefined;
10017
+ manufacturerPartNumber?: string | undefined;
10012
10018
  }, {
10013
10019
  name: string;
10014
10020
  symbol?: SymbolProp | undefined;
@@ -10504,6 +10510,8 @@ declare const commonComponentProps: z.ZodObject<{
10504
10510
  doNotPlace?: boolean | undefined;
10505
10511
  obstructsWithinBounds?: boolean | undefined;
10506
10512
  showAsTranslucentModel?: boolean | undefined;
10513
+ mfn?: string | undefined;
10514
+ manufacturerPartNumber?: string | undefined;
10507
10515
  }>;
10508
10516
  declare const componentProps: z.ZodObject<{
10509
10517
  pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
@@ -13567,6 +13575,8 @@ declare const componentProps: z.ZodObject<{
13567
13575
  highlightColor?: string | undefined;
13568
13576
  mustBeConnected?: boolean | undefined;
13569
13577
  }>>>;
13578
+ mfn: z.ZodOptional<z.ZodString>;
13579
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
13570
13580
  }, "strip", z.ZodTypeAny, {
13571
13581
  name: string;
13572
13582
  symbol?: SymbolProp | undefined;
@@ -14060,6 +14070,8 @@ declare const componentProps: z.ZodObject<{
14060
14070
  doNotPlace?: boolean | undefined;
14061
14071
  obstructsWithinBounds?: boolean | undefined;
14062
14072
  showAsTranslucentModel?: boolean | undefined;
14073
+ mfn?: string | undefined;
14074
+ manufacturerPartNumber?: string | undefined;
14063
14075
  }, {
14064
14076
  name: string;
14065
14077
  symbol?: SymbolProp | undefined;
@@ -14555,6 +14567,8 @@ declare const componentProps: z.ZodObject<{
14555
14567
  doNotPlace?: boolean | undefined;
14556
14568
  obstructsWithinBounds?: boolean | undefined;
14557
14569
  showAsTranslucentModel?: boolean | undefined;
14570
+ mfn?: string | undefined;
14571
+ manufacturerPartNumber?: string | undefined;
14558
14572
  }>;
14559
14573
  type ComponentProps = z.input<typeof componentProps>;
14560
14574
  declare const lrPins: readonly ["pin1", "left", "pin2", "right"];
@@ -27507,9 +27521,7 @@ declare const chipProps: z.ZodObject<{
27507
27521
  relative: z.ZodOptional<z.ZodBoolean>;
27508
27522
  schRelative: z.ZodOptional<z.ZodBoolean>;
27509
27523
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
27510
- } & {
27511
27524
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
27512
- } & {
27513
27525
  key: z.ZodOptional<z.ZodAny>;
27514
27526
  name: z.ZodString;
27515
27527
  displayName: z.ZodOptional<z.ZodString>;
@@ -30484,6 +30496,7 @@ declare const chipProps: z.ZodObject<{
30484
30496
  highlightColor?: string | undefined;
30485
30497
  mustBeConnected?: boolean | undefined;
30486
30498
  }>>>;
30499
+ mfn: z.ZodOptional<z.ZodString>;
30487
30500
  } & {
30488
30501
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
30489
30502
  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">]>>>;
@@ -31227,6 +31240,8 @@ declare const chipProps: z.ZodObject<{
31227
31240
  doNotPlace?: boolean | undefined;
31228
31241
  obstructsWithinBounds?: boolean | undefined;
31229
31242
  showAsTranslucentModel?: boolean | undefined;
31243
+ mfn?: string | undefined;
31244
+ manufacturerPartNumber?: string | undefined;
31230
31245
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
31231
31246
  schPinArrangement?: {
31232
31247
  leftSize?: number | undefined;
@@ -31267,7 +31282,6 @@ declare const chipProps: z.ZodObject<{
31267
31282
  }> | undefined;
31268
31283
  schWidth?: number | undefined;
31269
31284
  schHeight?: number | undefined;
31270
- manufacturerPartNumber?: string | undefined;
31271
31285
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
31272
31286
  showPinAliases?: boolean | undefined;
31273
31287
  pcbPinLabels?: Record<string, string> | undefined;
@@ -31799,6 +31813,8 @@ declare const chipProps: z.ZodObject<{
31799
31813
  doNotPlace?: boolean | undefined;
31800
31814
  obstructsWithinBounds?: boolean | undefined;
31801
31815
  showAsTranslucentModel?: boolean | undefined;
31816
+ mfn?: string | undefined;
31817
+ manufacturerPartNumber?: string | undefined;
31802
31818
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
31803
31819
  schPinArrangement?: {
31804
31820
  leftSize?: number | undefined;
@@ -31839,7 +31855,6 @@ declare const chipProps: z.ZodObject<{
31839
31855
  }> | undefined;
31840
31856
  schWidth?: string | number | undefined;
31841
31857
  schHeight?: string | number | undefined;
31842
- manufacturerPartNumber?: string | undefined;
31843
31858
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
31844
31859
  showPinAliases?: boolean | undefined;
31845
31860
  pcbPinLabels?: Record<string, string> | undefined;
@@ -31965,9 +31980,7 @@ declare const bugProps: z.ZodObject<{
31965
31980
  relative: z.ZodOptional<z.ZodBoolean>;
31966
31981
  schRelative: z.ZodOptional<z.ZodBoolean>;
31967
31982
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
31968
- } & {
31969
31983
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
31970
- } & {
31971
31984
  key: z.ZodOptional<z.ZodAny>;
31972
31985
  name: z.ZodString;
31973
31986
  displayName: z.ZodOptional<z.ZodString>;
@@ -34942,6 +34955,7 @@ declare const bugProps: z.ZodObject<{
34942
34955
  highlightColor?: string | undefined;
34943
34956
  mustBeConnected?: boolean | undefined;
34944
34957
  }>>>;
34958
+ mfn: z.ZodOptional<z.ZodString>;
34945
34959
  } & {
34946
34960
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
34947
34961
  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">]>>>;
@@ -35685,6 +35699,8 @@ declare const bugProps: z.ZodObject<{
35685
35699
  doNotPlace?: boolean | undefined;
35686
35700
  obstructsWithinBounds?: boolean | undefined;
35687
35701
  showAsTranslucentModel?: boolean | undefined;
35702
+ mfn?: string | undefined;
35703
+ manufacturerPartNumber?: string | undefined;
35688
35704
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
35689
35705
  schPinArrangement?: {
35690
35706
  leftSize?: number | undefined;
@@ -35725,7 +35741,6 @@ declare const bugProps: z.ZodObject<{
35725
35741
  }> | undefined;
35726
35742
  schWidth?: number | undefined;
35727
35743
  schHeight?: number | undefined;
35728
- manufacturerPartNumber?: string | undefined;
35729
35744
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
35730
35745
  showPinAliases?: boolean | undefined;
35731
35746
  pcbPinLabels?: Record<string, string> | undefined;
@@ -36257,6 +36272,8 @@ declare const bugProps: z.ZodObject<{
36257
36272
  doNotPlace?: boolean | undefined;
36258
36273
  obstructsWithinBounds?: boolean | undefined;
36259
36274
  showAsTranslucentModel?: boolean | undefined;
36275
+ mfn?: string | undefined;
36276
+ manufacturerPartNumber?: string | undefined;
36260
36277
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
36261
36278
  schPinArrangement?: {
36262
36279
  leftSize?: number | undefined;
@@ -36297,7 +36314,6 @@ declare const bugProps: z.ZodObject<{
36297
36314
  }> | undefined;
36298
36315
  schWidth?: string | number | undefined;
36299
36316
  schHeight?: string | number | undefined;
36300
- manufacturerPartNumber?: string | undefined;
36301
36317
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
36302
36318
  showPinAliases?: boolean | undefined;
36303
36319
  pcbPinLabels?: Record<string, string> | undefined;
@@ -36422,9 +36438,7 @@ declare const pinoutProps: z.ZodObject<{
36422
36438
  relative: z.ZodOptional<z.ZodBoolean>;
36423
36439
  schRelative: z.ZodOptional<z.ZodBoolean>;
36424
36440
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
36425
- } & {
36426
36441
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
36427
- } & {
36428
36442
  key: z.ZodOptional<z.ZodAny>;
36429
36443
  name: z.ZodString;
36430
36444
  displayName: z.ZodOptional<z.ZodString>;
@@ -39399,6 +39413,7 @@ declare const pinoutProps: z.ZodObject<{
39399
39413
  highlightColor?: string | undefined;
39400
39414
  mustBeConnected?: boolean | undefined;
39401
39415
  }>>>;
39416
+ mfn: z.ZodOptional<z.ZodString>;
39402
39417
  } & {
39403
39418
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
39404
39419
  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">]>>>;
@@ -40142,6 +40157,8 @@ declare const pinoutProps: z.ZodObject<{
40142
40157
  doNotPlace?: boolean | undefined;
40143
40158
  obstructsWithinBounds?: boolean | undefined;
40144
40159
  showAsTranslucentModel?: boolean | undefined;
40160
+ mfn?: string | undefined;
40161
+ manufacturerPartNumber?: string | undefined;
40145
40162
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
40146
40163
  schPinArrangement?: {
40147
40164
  leftSize?: number | undefined;
@@ -40182,7 +40199,6 @@ declare const pinoutProps: z.ZodObject<{
40182
40199
  }> | undefined;
40183
40200
  schWidth?: number | undefined;
40184
40201
  schHeight?: number | undefined;
40185
- manufacturerPartNumber?: string | undefined;
40186
40202
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
40187
40203
  showPinAliases?: boolean | undefined;
40188
40204
  pcbPinLabels?: Record<string, string> | undefined;
@@ -40714,6 +40730,8 @@ declare const pinoutProps: z.ZodObject<{
40714
40730
  doNotPlace?: boolean | undefined;
40715
40731
  obstructsWithinBounds?: boolean | undefined;
40716
40732
  showAsTranslucentModel?: boolean | undefined;
40733
+ mfn?: string | undefined;
40734
+ manufacturerPartNumber?: string | undefined;
40717
40735
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
40718
40736
  schPinArrangement?: {
40719
40737
  leftSize?: number | undefined;
@@ -40754,7 +40772,6 @@ declare const pinoutProps: z.ZodObject<{
40754
40772
  }> | undefined;
40755
40773
  schWidth?: string | number | undefined;
40756
40774
  schHeight?: string | number | undefined;
40757
- manufacturerPartNumber?: string | undefined;
40758
40775
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
40759
40776
  showPinAliases?: boolean | undefined;
40760
40777
  pcbPinLabels?: Record<string, string> | undefined;
@@ -40911,9 +40928,7 @@ declare const jumperProps: z.ZodObject<{
40911
40928
  relative: z.ZodOptional<z.ZodBoolean>;
40912
40929
  schRelative: z.ZodOptional<z.ZodBoolean>;
40913
40930
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
40914
- } & {
40915
40931
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
40916
- } & {
40917
40932
  key: z.ZodOptional<z.ZodAny>;
40918
40933
  name: z.ZodString;
40919
40934
  displayName: z.ZodOptional<z.ZodString>;
@@ -43888,6 +43903,7 @@ declare const jumperProps: z.ZodObject<{
43888
43903
  highlightColor?: string | undefined;
43889
43904
  mustBeConnected?: boolean | undefined;
43890
43905
  }>>>;
43906
+ mfn: z.ZodOptional<z.ZodString>;
43891
43907
  } & {
43892
43908
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
43893
43909
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -44620,6 +44636,8 @@ declare const jumperProps: z.ZodObject<{
44620
44636
  doNotPlace?: boolean | undefined;
44621
44637
  obstructsWithinBounds?: boolean | undefined;
44622
44638
  showAsTranslucentModel?: boolean | undefined;
44639
+ mfn?: string | undefined;
44640
+ manufacturerPartNumber?: string | undefined;
44623
44641
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
44624
44642
  schPinArrangement?: {
44625
44643
  leftSize?: number | undefined;
@@ -44660,7 +44678,6 @@ declare const jumperProps: z.ZodObject<{
44660
44678
  }> | undefined;
44661
44679
  schWidth?: number | undefined;
44662
44680
  schHeight?: number | undefined;
44663
- manufacturerPartNumber?: string | undefined;
44664
44681
  pinLabels?: Record<string | number, string | string[]> | undefined;
44665
44682
  pcbPinLabels?: Record<string, string> | undefined;
44666
44683
  internallyConnectedPins?: (string | number)[][] | undefined;
@@ -45187,6 +45204,8 @@ declare const jumperProps: z.ZodObject<{
45187
45204
  doNotPlace?: boolean | undefined;
45188
45205
  obstructsWithinBounds?: boolean | undefined;
45189
45206
  showAsTranslucentModel?: boolean | undefined;
45207
+ mfn?: string | undefined;
45208
+ manufacturerPartNumber?: string | undefined;
45190
45209
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
45191
45210
  schPinArrangement?: {
45192
45211
  leftSize?: number | undefined;
@@ -45227,7 +45246,6 @@ declare const jumperProps: z.ZodObject<{
45227
45246
  }> | undefined;
45228
45247
  schWidth?: string | number | undefined;
45229
45248
  schHeight?: string | number | undefined;
45230
- manufacturerPartNumber?: string | undefined;
45231
45249
  pinLabels?: Record<string | number, string | string[]> | undefined;
45232
45250
  pcbPinLabels?: Record<string, string> | undefined;
45233
45251
  internallyConnectedPins?: (string | number)[][] | undefined;
@@ -45356,9 +45374,7 @@ declare const solderjumperProps: z.ZodObject<{
45356
45374
  relative: z.ZodOptional<z.ZodBoolean>;
45357
45375
  schRelative: z.ZodOptional<z.ZodBoolean>;
45358
45376
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
45359
- } & {
45360
45377
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
45361
- } & {
45362
45378
  key: z.ZodOptional<z.ZodAny>;
45363
45379
  name: z.ZodString;
45364
45380
  displayName: z.ZodOptional<z.ZodString>;
@@ -48333,6 +48349,7 @@ declare const solderjumperProps: z.ZodObject<{
48333
48349
  highlightColor?: string | undefined;
48334
48350
  mustBeConnected?: boolean | undefined;
48335
48351
  }>>>;
48352
+ mfn: z.ZodOptional<z.ZodString>;
48336
48353
  } & {
48337
48354
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
48338
48355
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -49068,6 +49085,8 @@ declare const solderjumperProps: z.ZodObject<{
49068
49085
  doNotPlace?: boolean | undefined;
49069
49086
  obstructsWithinBounds?: boolean | undefined;
49070
49087
  showAsTranslucentModel?: boolean | undefined;
49088
+ mfn?: string | undefined;
49089
+ manufacturerPartNumber?: string | undefined;
49071
49090
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
49072
49091
  schPinArrangement?: {
49073
49092
  leftSize?: number | undefined;
@@ -49108,7 +49127,6 @@ declare const solderjumperProps: z.ZodObject<{
49108
49127
  }> | undefined;
49109
49128
  schWidth?: number | undefined;
49110
49129
  schHeight?: number | undefined;
49111
- manufacturerPartNumber?: string | undefined;
49112
49130
  pinLabels?: Record<string | number, string | string[]> | undefined;
49113
49131
  pcbPinLabels?: Record<string, string> | undefined;
49114
49132
  internallyConnectedPins?: (string | number)[][] | undefined;
@@ -49637,6 +49655,8 @@ declare const solderjumperProps: z.ZodObject<{
49637
49655
  doNotPlace?: boolean | undefined;
49638
49656
  obstructsWithinBounds?: boolean | undefined;
49639
49657
  showAsTranslucentModel?: boolean | undefined;
49658
+ mfn?: string | undefined;
49659
+ manufacturerPartNumber?: string | undefined;
49640
49660
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
49641
49661
  schPinArrangement?: {
49642
49662
  leftSize?: number | undefined;
@@ -49677,7 +49697,6 @@ declare const solderjumperProps: z.ZodObject<{
49677
49697
  }> | undefined;
49678
49698
  schWidth?: string | number | undefined;
49679
49699
  schHeight?: string | number | undefined;
49680
- manufacturerPartNumber?: string | undefined;
49681
49700
  pinLabels?: Record<string | number, string | string[]> | undefined;
49682
49701
  pcbPinLabels?: Record<string, string> | undefined;
49683
49702
  internallyConnectedPins?: (string | number)[][] | undefined;
@@ -49817,9 +49836,7 @@ declare const connectorProps: z.ZodObject<{
49817
49836
  relative: z.ZodOptional<z.ZodBoolean>;
49818
49837
  schRelative: z.ZodOptional<z.ZodBoolean>;
49819
49838
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
49820
- } & {
49821
49839
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
49822
- } & {
49823
49840
  key: z.ZodOptional<z.ZodAny>;
49824
49841
  name: z.ZodString;
49825
49842
  displayName: z.ZodOptional<z.ZodString>;
@@ -52794,6 +52811,7 @@ declare const connectorProps: z.ZodObject<{
52794
52811
  highlightColor?: string | undefined;
52795
52812
  mustBeConnected?: boolean | undefined;
52796
52813
  }>>>;
52814
+ mfn: z.ZodOptional<z.ZodString>;
52797
52815
  } & {
52798
52816
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
52799
52817
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -53424,6 +53442,8 @@ declare const connectorProps: z.ZodObject<{
53424
53442
  doNotPlace?: boolean | undefined;
53425
53443
  obstructsWithinBounds?: boolean | undefined;
53426
53444
  showAsTranslucentModel?: boolean | undefined;
53445
+ mfn?: string | undefined;
53446
+ manufacturerPartNumber?: string | undefined;
53427
53447
  schPinSpacing?: number | undefined;
53428
53448
  schPinStyle?: Record<string, {
53429
53449
  marginLeft?: number | undefined;
@@ -53437,7 +53457,6 @@ declare const connectorProps: z.ZodObject<{
53437
53457
  }> | undefined;
53438
53458
  schWidth?: number | undefined;
53439
53459
  schHeight?: number | undefined;
53440
- manufacturerPartNumber?: string | undefined;
53441
53460
  pinLabels?: Record<string | number, string | string[]> | undefined;
53442
53461
  internallyConnectedPins?: (string | number)[][] | undefined;
53443
53462
  schPortArrangement?: {
@@ -53963,6 +53982,8 @@ declare const connectorProps: z.ZodObject<{
53963
53982
  doNotPlace?: boolean | undefined;
53964
53983
  obstructsWithinBounds?: boolean | undefined;
53965
53984
  showAsTranslucentModel?: boolean | undefined;
53985
+ mfn?: string | undefined;
53986
+ manufacturerPartNumber?: string | undefined;
53966
53987
  schPinSpacing?: string | number | undefined;
53967
53988
  schPinStyle?: Record<string, {
53968
53989
  marginLeft?: string | number | undefined;
@@ -53976,7 +53997,6 @@ declare const connectorProps: z.ZodObject<{
53976
53997
  }> | undefined;
53977
53998
  schWidth?: string | number | undefined;
53978
53999
  schHeight?: string | number | undefined;
53979
- manufacturerPartNumber?: string | undefined;
53980
54000
  pinLabels?: Record<string | number, string | string[]> | undefined;
53981
54001
  internallyConnectedPins?: (string | number)[][] | undefined;
53982
54002
  schPortArrangement?: {
@@ -57080,6 +57100,8 @@ declare const interconnectProps: z.ZodObject<{
57080
57100
  highlightColor?: string | undefined;
57081
57101
  mustBeConnected?: boolean | undefined;
57082
57102
  }>>>;
57103
+ mfn: z.ZodOptional<z.ZodString>;
57104
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
57083
57105
  } & {
57084
57106
  standard: z.ZodOptional<z.ZodEnum<["TSC0001_36P_XALT_2025_11", "0805", "0603", "1206"]>>;
57085
57107
  pinLabels: z.ZodOptional<z.ZodRecord<z.ZodUnion<[z.ZodNumber, z.ZodString]>, z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>>;
@@ -57577,6 +57599,8 @@ declare const interconnectProps: z.ZodObject<{
57577
57599
  doNotPlace?: boolean | undefined;
57578
57600
  obstructsWithinBounds?: boolean | undefined;
57579
57601
  showAsTranslucentModel?: boolean | undefined;
57602
+ mfn?: string | undefined;
57603
+ manufacturerPartNumber?: string | undefined;
57580
57604
  pinLabels?: Record<string | number, string | string[]> | undefined;
57581
57605
  internallyConnectedPins?: (string | number)[][] | undefined;
57582
57606
  standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
@@ -58075,6 +58099,8 @@ declare const interconnectProps: z.ZodObject<{
58075
58099
  doNotPlace?: boolean | undefined;
58076
58100
  obstructsWithinBounds?: boolean | undefined;
58077
58101
  showAsTranslucentModel?: boolean | undefined;
58102
+ mfn?: string | undefined;
58103
+ manufacturerPartNumber?: string | undefined;
58078
58104
  pinLabels?: Record<string | number, string | string[]> | undefined;
58079
58105
  internallyConnectedPins?: (string | number)[][] | undefined;
58080
58106
  standard?: "0603" | "0805" | "1206" | "TSC0001_36P_XALT_2025_11" | undefined;
@@ -61169,6 +61195,8 @@ declare const fuseProps: z.ZodObject<{
61169
61195
  highlightColor?: string | undefined;
61170
61196
  mustBeConnected?: boolean | undefined;
61171
61197
  }>>>;
61198
+ mfn: z.ZodOptional<z.ZodString>;
61199
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
61172
61200
  } & {
61173
61201
  currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
61174
61202
  voltageRating: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
@@ -61669,6 +61697,8 @@ declare const fuseProps: z.ZodObject<{
61669
61697
  doNotPlace?: boolean | undefined;
61670
61698
  obstructsWithinBounds?: boolean | undefined;
61671
61699
  showAsTranslucentModel?: boolean | undefined;
61700
+ mfn?: string | undefined;
61701
+ manufacturerPartNumber?: string | undefined;
61672
61702
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
61673
61703
  voltageRating?: string | number | undefined;
61674
61704
  schShowRatings?: boolean | undefined;
@@ -62169,6 +62199,8 @@ declare const fuseProps: z.ZodObject<{
62169
62199
  doNotPlace?: boolean | undefined;
62170
62200
  obstructsWithinBounds?: boolean | undefined;
62171
62201
  showAsTranslucentModel?: boolean | undefined;
62202
+ mfn?: string | undefined;
62203
+ manufacturerPartNumber?: string | undefined;
62172
62204
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
62173
62205
  voltageRating?: string | number | undefined;
62174
62206
  schShowRatings?: boolean | undefined;
@@ -66840,6 +66872,8 @@ declare const resistorProps: z.ZodObject<{
66840
66872
  highlightColor?: string | undefined;
66841
66873
  mustBeConnected?: boolean | undefined;
66842
66874
  }>>>;
66875
+ mfn: z.ZodOptional<z.ZodString>;
66876
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
66843
66877
  } & {
66844
66878
  resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
66845
66879
  pullupFor: z.ZodOptional<z.ZodString>;
@@ -67343,6 +67377,8 @@ declare const resistorProps: z.ZodObject<{
67343
67377
  doNotPlace?: boolean | undefined;
67344
67378
  obstructsWithinBounds?: boolean | undefined;
67345
67379
  showAsTranslucentModel?: boolean | undefined;
67380
+ mfn?: string | undefined;
67381
+ manufacturerPartNumber?: string | undefined;
67346
67382
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
67347
67383
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
67348
67384
  pullupFor?: string | undefined;
@@ -67846,6 +67882,8 @@ declare const resistorProps: z.ZodObject<{
67846
67882
  doNotPlace?: boolean | undefined;
67847
67883
  obstructsWithinBounds?: boolean | undefined;
67848
67884
  showAsTranslucentModel?: boolean | undefined;
67885
+ mfn?: string | undefined;
67886
+ manufacturerPartNumber?: string | undefined;
67849
67887
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
67850
67888
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
67851
67889
  pullupFor?: string | undefined;
@@ -70923,6 +70961,8 @@ declare const potentiometerProps: z.ZodObject<{
70923
70961
  highlightColor?: string | undefined;
70924
70962
  mustBeConnected?: boolean | undefined;
70925
70963
  }>>>;
70964
+ mfn: z.ZodOptional<z.ZodString>;
70965
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
70926
70966
  } & {
70927
70967
  maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
70928
70968
  pinVariant: z.ZodOptional<z.ZodEnum<["two_pin", "three_pin"]>>;
@@ -71420,6 +71460,8 @@ declare const potentiometerProps: z.ZodObject<{
71420
71460
  doNotPlace?: boolean | undefined;
71421
71461
  obstructsWithinBounds?: boolean | undefined;
71422
71462
  showAsTranslucentModel?: boolean | undefined;
71463
+ mfn?: string | undefined;
71464
+ manufacturerPartNumber?: string | undefined;
71423
71465
  pinVariant?: "two_pin" | "three_pin" | undefined;
71424
71466
  }, {
71425
71467
  name: string;
@@ -71917,6 +71959,8 @@ declare const potentiometerProps: z.ZodObject<{
71917
71959
  doNotPlace?: boolean | undefined;
71918
71960
  obstructsWithinBounds?: boolean | undefined;
71919
71961
  showAsTranslucentModel?: boolean | undefined;
71962
+ mfn?: string | undefined;
71963
+ manufacturerPartNumber?: string | undefined;
71920
71964
  pinVariant?: "two_pin" | "three_pin" | undefined;
71921
71965
  }>;
71922
71966
 
@@ -72017,9 +72061,7 @@ declare const crystalProps: z.ZodObject<{
72017
72061
  relative: z.ZodOptional<z.ZodBoolean>;
72018
72062
  schRelative: z.ZodOptional<z.ZodBoolean>;
72019
72063
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
72020
- } & {
72021
72064
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
72022
- } & {
72023
72065
  key: z.ZodOptional<z.ZodAny>;
72024
72066
  name: z.ZodString;
72025
72067
  displayName: z.ZodOptional<z.ZodString>;
@@ -74994,6 +75036,7 @@ declare const crystalProps: z.ZodObject<{
74994
75036
  highlightColor?: string | undefined;
74995
75037
  mustBeConnected?: boolean | undefined;
74996
75038
  }>>>;
75039
+ mfn: z.ZodOptional<z.ZodString>;
74997
75040
  } & {
74998
75041
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
74999
75042
  loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -75497,8 +75540,9 @@ declare const crystalProps: z.ZodObject<{
75497
75540
  doNotPlace?: boolean | undefined;
75498
75541
  obstructsWithinBounds?: boolean | undefined;
75499
75542
  showAsTranslucentModel?: boolean | undefined;
75500
- connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
75543
+ mfn?: string | undefined;
75501
75544
  manufacturerPartNumber?: string | undefined;
75545
+ connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
75502
75546
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
75503
75547
  pinVariant?: "two_pin" | "four_pin" | undefined;
75504
75548
  mpn?: string | undefined;
@@ -75999,8 +76043,9 @@ declare const crystalProps: z.ZodObject<{
75999
76043
  doNotPlace?: boolean | undefined;
76000
76044
  obstructsWithinBounds?: boolean | undefined;
76001
76045
  showAsTranslucentModel?: boolean | undefined;
76002
- connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
76046
+ mfn?: string | undefined;
76003
76047
  manufacturerPartNumber?: string | undefined;
76048
+ connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
76004
76049
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
76005
76050
  pinVariant?: "two_pin" | "four_pin" | undefined;
76006
76051
  mpn?: string | undefined;
@@ -79074,6 +79119,8 @@ declare const resonatorProps: z.ZodObject<{
79074
79119
  highlightColor?: string | undefined;
79075
79120
  mustBeConnected?: boolean | undefined;
79076
79121
  }>>>;
79122
+ mfn: z.ZodOptional<z.ZodString>;
79123
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
79077
79124
  } & {
79078
79125
  frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
79079
79126
  loadCapacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
@@ -79573,6 +79620,8 @@ declare const resonatorProps: z.ZodObject<{
79573
79620
  doNotPlace?: boolean | undefined;
79574
79621
  obstructsWithinBounds?: boolean | undefined;
79575
79622
  showAsTranslucentModel?: boolean | undefined;
79623
+ mfn?: string | undefined;
79624
+ manufacturerPartNumber?: string | undefined;
79576
79625
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
79577
79626
  }, {
79578
79627
  name: string;
@@ -80071,6 +80120,8 @@ declare const resonatorProps: z.ZodObject<{
80071
80120
  doNotPlace?: boolean | undefined;
80072
80121
  obstructsWithinBounds?: boolean | undefined;
80073
80122
  showAsTranslucentModel?: boolean | undefined;
80123
+ mfn?: string | undefined;
80124
+ manufacturerPartNumber?: string | undefined;
80074
80125
  pinVariant?: "no_ground" | "ground_pin" | "two_ground_pins" | undefined;
80075
80126
  }>;
80076
80127
 
@@ -84598,6 +84649,8 @@ declare const capacitorProps: z.ZodObject<{
84598
84649
  highlightColor?: string | undefined;
84599
84650
  mustBeConnected?: boolean | undefined;
84600
84651
  }>>>;
84652
+ mfn: z.ZodOptional<z.ZodString>;
84653
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
84601
84654
  } & {
84602
84655
  capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
84603
84656
  maxVoltageRating: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -85107,6 +85160,8 @@ declare const capacitorProps: z.ZodObject<{
85107
85160
  doNotPlace?: boolean | undefined;
85108
85161
  obstructsWithinBounds?: boolean | undefined;
85109
85162
  showAsTranslucentModel?: boolean | undefined;
85163
+ mfn?: string | undefined;
85164
+ manufacturerPartNumber?: string | undefined;
85110
85165
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
85111
85166
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
85112
85167
  schSize?: number | "xs" | "sm" | "md" | "default" | undefined;
@@ -85612,6 +85667,8 @@ declare const capacitorProps: z.ZodObject<{
85612
85667
  doNotPlace?: boolean | undefined;
85613
85668
  obstructsWithinBounds?: boolean | undefined;
85614
85669
  showAsTranslucentModel?: boolean | undefined;
85670
+ mfn?: string | undefined;
85671
+ manufacturerPartNumber?: string | undefined;
85615
85672
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
85616
85673
  schShowRatings?: boolean | undefined;
85617
85674
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -88719,6 +88776,8 @@ declare const fiducialProps: z.ZodObject<{
88719
88776
  highlightColor?: string | undefined;
88720
88777
  mustBeConnected?: boolean | undefined;
88721
88778
  }>>>;
88779
+ mfn: z.ZodOptional<z.ZodString>;
88780
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
88722
88781
  } & {
88723
88782
  soldermaskPullback: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
88724
88783
  padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -89215,6 +89274,8 @@ declare const fiducialProps: z.ZodObject<{
89215
89274
  doNotPlace?: boolean | undefined;
89216
89275
  obstructsWithinBounds?: boolean | undefined;
89217
89276
  showAsTranslucentModel?: boolean | undefined;
89277
+ mfn?: string | undefined;
89278
+ manufacturerPartNumber?: string | undefined;
89218
89279
  padDiameter?: number | undefined;
89219
89280
  soldermaskPullback?: number | undefined;
89220
89281
  }, {
@@ -89712,6 +89773,8 @@ declare const fiducialProps: z.ZodObject<{
89712
89773
  doNotPlace?: boolean | undefined;
89713
89774
  obstructsWithinBounds?: boolean | undefined;
89714
89775
  showAsTranslucentModel?: boolean | undefined;
89776
+ mfn?: string | undefined;
89777
+ manufacturerPartNumber?: string | undefined;
89715
89778
  padDiameter?: string | number | undefined;
89716
89779
  soldermaskPullback?: string | number | undefined;
89717
89780
  }>;
@@ -96936,6 +96999,8 @@ declare const batteryProps: z.ZodObject<{
96936
96999
  highlightColor?: string | undefined;
96937
97000
  mustBeConnected?: boolean | undefined;
96938
97001
  }>>>;
97002
+ mfn: z.ZodOptional<z.ZodString>;
97003
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
96939
97004
  } & {
96940
97005
  capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
96941
97006
  voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -97434,6 +97499,8 @@ declare const batteryProps: z.ZodObject<{
97434
97499
  doNotPlace?: boolean | undefined;
97435
97500
  obstructsWithinBounds?: boolean | undefined;
97436
97501
  showAsTranslucentModel?: boolean | undefined;
97502
+ mfn?: string | undefined;
97503
+ manufacturerPartNumber?: string | undefined;
97437
97504
  standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
97438
97505
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
97439
97506
  capacity?: number | undefined;
@@ -97933,6 +98000,8 @@ declare const batteryProps: z.ZodObject<{
97933
98000
  doNotPlace?: boolean | undefined;
97934
98001
  obstructsWithinBounds?: boolean | undefined;
97935
98002
  showAsTranslucentModel?: boolean | undefined;
98003
+ mfn?: string | undefined;
98004
+ manufacturerPartNumber?: string | undefined;
97936
98005
  standard?: "AA" | "AAA" | "9V" | "CR2032" | "18650" | "C" | undefined;
97937
98006
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
97938
98007
  capacity?: string | number | undefined;
@@ -101083,6 +101152,8 @@ declare const pinHeaderProps: z.ZodObject<{
101083
101152
  highlightColor?: string | undefined;
101084
101153
  mustBeConnected?: boolean | undefined;
101085
101154
  }>>>;
101155
+ mfn: z.ZodOptional<z.ZodString>;
101156
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
101086
101157
  } & {
101087
101158
  pinCount: z.ZodNumber;
101088
101159
  pitch: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -101724,6 +101795,8 @@ declare const pinHeaderProps: z.ZodObject<{
101724
101795
  doNotPlace?: boolean | undefined;
101725
101796
  obstructsWithinBounds?: boolean | undefined;
101726
101797
  showAsTranslucentModel?: boolean | undefined;
101798
+ mfn?: string | undefined;
101799
+ manufacturerPartNumber?: string | undefined;
101727
101800
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
101728
101801
  schPinArrangement?: {
101729
101802
  leftSize?: number | undefined;
@@ -102271,6 +102344,8 @@ declare const pinHeaderProps: z.ZodObject<{
102271
102344
  doNotPlace?: boolean | undefined;
102272
102345
  obstructsWithinBounds?: boolean | undefined;
102273
102346
  showAsTranslucentModel?: boolean | undefined;
102347
+ mfn?: string | undefined;
102348
+ manufacturerPartNumber?: string | undefined;
102274
102349
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
102275
102350
  schPinArrangement?: {
102276
102351
  leftSize?: number | undefined;
@@ -102481,9 +102556,7 @@ declare const pushButtonProps: z.ZodObject<{
102481
102556
  relative: z.ZodOptional<z.ZodBoolean>;
102482
102557
  schRelative: z.ZodOptional<z.ZodBoolean>;
102483
102558
  pcbRelative: z.ZodOptional<z.ZodBoolean>;
102484
- } & {
102485
102559
  supplierPartNumbers: z.ZodOptional<z.ZodRecord<z.ZodEnum<["jlcpcb", "macrofab", "pcbway", "digikey", "mouser", "lcsc"]>, z.ZodArray<z.ZodString, "many">>>;
102486
- } & {
102487
102560
  key: z.ZodOptional<z.ZodAny>;
102488
102561
  name: z.ZodString;
102489
102562
  displayName: z.ZodOptional<z.ZodString>;
@@ -105458,6 +105531,7 @@ declare const pushButtonProps: z.ZodObject<{
105458
105531
  highlightColor?: string | undefined;
105459
105532
  mustBeConnected?: boolean | undefined;
105460
105533
  }>>>;
105534
+ mfn: z.ZodOptional<z.ZodString>;
105461
105535
  } & {
105462
105536
  manufacturerPartNumber: z.ZodOptional<z.ZodString>;
105463
105537
  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">]>>>;
@@ -106201,6 +106275,8 @@ declare const pushButtonProps: z.ZodObject<{
106201
106275
  doNotPlace?: boolean | undefined;
106202
106276
  obstructsWithinBounds?: boolean | undefined;
106203
106277
  showAsTranslucentModel?: boolean | undefined;
106278
+ mfn?: string | undefined;
106279
+ manufacturerPartNumber?: string | undefined;
106204
106280
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
106205
106281
  schPinArrangement?: {
106206
106282
  leftSize?: number | undefined;
@@ -106241,7 +106317,6 @@ declare const pushButtonProps: z.ZodObject<{
106241
106317
  }> | undefined;
106242
106318
  schWidth?: number | undefined;
106243
106319
  schHeight?: number | undefined;
106244
- manufacturerPartNumber?: string | undefined;
106245
106320
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
106246
106321
  showPinAliases?: boolean | undefined;
106247
106322
  pcbPinLabels?: Record<string, string> | undefined;
@@ -106773,6 +106848,8 @@ declare const pushButtonProps: z.ZodObject<{
106773
106848
  doNotPlace?: boolean | undefined;
106774
106849
  obstructsWithinBounds?: boolean | undefined;
106775
106850
  showAsTranslucentModel?: boolean | undefined;
106851
+ mfn?: string | undefined;
106852
+ manufacturerPartNumber?: string | undefined;
106776
106853
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
106777
106854
  schPinArrangement?: {
106778
106855
  leftSize?: number | undefined;
@@ -106813,7 +106890,6 @@ declare const pushButtonProps: z.ZodObject<{
106813
106890
  }> | undefined;
106814
106891
  schWidth?: string | number | undefined;
106815
106892
  schHeight?: string | number | undefined;
106816
- manufacturerPartNumber?: string | undefined;
106817
106893
  pinLabels?: Record<string, string | readonly string[] | string[]> | undefined;
106818
106894
  showPinAliases?: boolean | undefined;
106819
106895
  pcbPinLabels?: Record<string, string> | undefined;
@@ -111285,6 +111361,8 @@ declare const transistorProps: z.ZodObject<{
111285
111361
  highlightColor?: string | undefined;
111286
111362
  mustBeConnected?: boolean | undefined;
111287
111363
  }>>>;
111364
+ mfn: z.ZodOptional<z.ZodString>;
111365
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
111288
111366
  } & {
111289
111367
  type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
111290
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">]>>>;
@@ -111782,6 +111860,8 @@ declare const transistorProps: z.ZodObject<{
111782
111860
  doNotPlace?: boolean | undefined;
111783
111861
  obstructsWithinBounds?: boolean | undefined;
111784
111862
  showAsTranslucentModel?: boolean | undefined;
111863
+ mfn?: string | undefined;
111864
+ manufacturerPartNumber?: string | undefined;
111785
111865
  connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
111786
111866
  }, {
111787
111867
  type: "npn" | "pnp" | "bjt" | "jfet" | "mosfet" | "igbt";
@@ -112279,6 +112359,8 @@ declare const transistorProps: z.ZodObject<{
112279
112359
  doNotPlace?: boolean | undefined;
112280
112360
  obstructsWithinBounds?: boolean | undefined;
112281
112361
  showAsTranslucentModel?: boolean | undefined;
112362
+ mfn?: string | undefined;
112363
+ manufacturerPartNumber?: string | undefined;
112282
112364
  connections?: Partial<Record<"pin1" | "pin2" | "pin3" | "emitter" | "collector" | "base" | "gate" | "source" | "drain", string | readonly string[] | string[]>> | undefined;
112283
112365
  }>;
112284
112366
  declare const transistorPins: readonly ["pin1", "emitter", "pin2", "collector", "pin3", "base"];
@@ -115350,6 +115432,8 @@ declare const mosfetProps: z.ZodObject<{
115350
115432
  highlightColor?: string | undefined;
115351
115433
  mustBeConnected?: boolean | undefined;
115352
115434
  }>>>;
115435
+ mfn: z.ZodOptional<z.ZodString>;
115436
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
115353
115437
  } & {
115354
115438
  channelType: z.ZodEnum<["n", "p"]>;
115355
115439
  mosfetMode: z.ZodEnum<["enhancement", "depletion"]>;
@@ -115848,6 +115932,8 @@ declare const mosfetProps: z.ZodObject<{
115848
115932
  doNotPlace?: boolean | undefined;
115849
115933
  obstructsWithinBounds?: boolean | undefined;
115850
115934
  showAsTranslucentModel?: boolean | undefined;
115935
+ mfn?: string | undefined;
115936
+ manufacturerPartNumber?: string | undefined;
115851
115937
  }, {
115852
115938
  name: string;
115853
115939
  channelType: "n" | "p";
@@ -116345,6 +116431,8 @@ declare const mosfetProps: z.ZodObject<{
116345
116431
  doNotPlace?: boolean | undefined;
116346
116432
  obstructsWithinBounds?: boolean | undefined;
116347
116433
  showAsTranslucentModel?: boolean | undefined;
116434
+ mfn?: string | undefined;
116435
+ manufacturerPartNumber?: string | undefined;
116348
116436
  }>;
116349
116437
  declare const mosfetPins: readonly ["pin1", "drain", "pin2", "source", "pin3", "gate"];
116350
116438
  type MosfetPinLabels = (typeof mosfetPins)[number];
@@ -119422,6 +119510,8 @@ declare const opampProps: z.ZodObject<{
119422
119510
  highlightColor?: string | undefined;
119423
119511
  mustBeConnected?: boolean | undefined;
119424
119512
  }>>>;
119513
+ mfn: z.ZodOptional<z.ZodString>;
119514
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
119425
119515
  } & {
119426
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">]>>>;
119427
119517
  }, "strip", z.ZodTypeAny, {
@@ -119917,6 +120007,8 @@ declare const opampProps: z.ZodObject<{
119917
120007
  doNotPlace?: boolean | undefined;
119918
120008
  obstructsWithinBounds?: boolean | undefined;
119919
120009
  showAsTranslucentModel?: boolean | undefined;
120010
+ mfn?: string | undefined;
120011
+ manufacturerPartNumber?: string | undefined;
119920
120012
  connections?: Partial<Record<"inverting_input" | "non_inverting_input" | "output" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
119921
120013
  }, {
119922
120014
  name: string;
@@ -120413,6 +120505,8 @@ declare const opampProps: z.ZodObject<{
120413
120505
  doNotPlace?: boolean | undefined;
120414
120506
  obstructsWithinBounds?: boolean | undefined;
120415
120507
  showAsTranslucentModel?: boolean | undefined;
120508
+ mfn?: string | undefined;
120509
+ manufacturerPartNumber?: string | undefined;
120416
120510
  connections?: Partial<Record<"inverting_input" | "non_inverting_input" | "output" | "positive_supply" | "negative_supply", string | readonly string[] | string[]>> | undefined;
120417
120511
  }>;
120418
120512
  /**
@@ -123491,6 +123585,8 @@ declare const inductorProps: z.ZodObject<{
123491
123585
  highlightColor?: string | undefined;
123492
123586
  mustBeConnected?: boolean | undefined;
123493
123587
  }>>>;
123588
+ mfn: z.ZodOptional<z.ZodString>;
123589
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
123494
123590
  } & {
123495
123591
  inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
123496
123592
  maxCurrentRating: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
@@ -123990,6 +124086,8 @@ declare const inductorProps: z.ZodObject<{
123990
124086
  doNotPlace?: boolean | undefined;
123991
124087
  obstructsWithinBounds?: boolean | undefined;
123992
124088
  showAsTranslucentModel?: boolean | undefined;
124089
+ mfn?: string | undefined;
124090
+ manufacturerPartNumber?: string | undefined;
123993
124091
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
123994
124092
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
123995
124093
  maxCurrentRating?: string | number | undefined;
@@ -124489,6 +124587,8 @@ declare const inductorProps: z.ZodObject<{
124489
124587
  doNotPlace?: boolean | undefined;
124490
124588
  obstructsWithinBounds?: boolean | undefined;
124491
124589
  showAsTranslucentModel?: boolean | undefined;
124590
+ mfn?: string | undefined;
124591
+ manufacturerPartNumber?: string | undefined;
124492
124592
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2", string | readonly string[] | string[]>> | undefined;
124493
124593
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
124494
124594
  maxCurrentRating?: string | number | undefined;
@@ -127556,6 +127656,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
127556
127656
  highlightColor?: string | undefined;
127557
127657
  mustBeConnected?: boolean | undefined;
127558
127658
  }>>>;
127659
+ mfn: z.ZodOptional<z.ZodString>;
127660
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
127559
127661
  } & {
127560
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">]>>>;
127561
127663
  variant: z.ZodDefault<z.ZodOptional<z.ZodEnum<["standard", "schottky", "zener", "avalanche", "photo", "tvs"]>>>;
@@ -128060,6 +128162,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
128060
128162
  doNotPlace?: boolean | undefined;
128061
128163
  obstructsWithinBounds?: boolean | undefined;
128062
128164
  showAsTranslucentModel?: boolean | undefined;
128165
+ mfn?: string | undefined;
128166
+ manufacturerPartNumber?: string | undefined;
128063
128167
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
128064
128168
  standard?: boolean | undefined;
128065
128169
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -128563,6 +128667,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
128563
128667
  doNotPlace?: boolean | undefined;
128564
128668
  obstructsWithinBounds?: boolean | undefined;
128565
128669
  showAsTranslucentModel?: boolean | undefined;
128670
+ mfn?: string | undefined;
128671
+ manufacturerPartNumber?: string | undefined;
128566
128672
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
128567
128673
  standard?: boolean | undefined;
128568
128674
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -129066,6 +129172,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
129066
129172
  doNotPlace?: boolean | undefined;
129067
129173
  obstructsWithinBounds?: boolean | undefined;
129068
129174
  showAsTranslucentModel?: boolean | undefined;
129175
+ mfn?: string | undefined;
129176
+ manufacturerPartNumber?: string | undefined;
129069
129177
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
129070
129178
  standard?: boolean | undefined;
129071
129179
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -129569,6 +129677,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
129569
129677
  doNotPlace?: boolean | undefined;
129570
129678
  obstructsWithinBounds?: boolean | undefined;
129571
129679
  showAsTranslucentModel?: boolean | undefined;
129680
+ mfn?: string | undefined;
129681
+ manufacturerPartNumber?: string | undefined;
129572
129682
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
129573
129683
  standard?: boolean | undefined;
129574
129684
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -130078,6 +130188,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
130078
130188
  doNotPlace?: boolean | undefined;
130079
130189
  obstructsWithinBounds?: boolean | undefined;
130080
130190
  showAsTranslucentModel?: boolean | undefined;
130191
+ mfn?: string | undefined;
130192
+ manufacturerPartNumber?: string | undefined;
130081
130193
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
130082
130194
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
130083
130195
  }, {
@@ -130575,6 +130687,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
130575
130687
  doNotPlace?: boolean | undefined;
130576
130688
  obstructsWithinBounds?: boolean | undefined;
130577
130689
  showAsTranslucentModel?: boolean | undefined;
130690
+ mfn?: string | undefined;
130691
+ manufacturerPartNumber?: string | undefined;
130578
130692
  connections?: Partial<Record<"pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
130579
130693
  standard?: boolean | undefined;
130580
130694
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
@@ -133670,6 +133784,8 @@ declare const ledProps: z.ZodObject<{
133670
133784
  highlightColor?: string | undefined;
133671
133785
  mustBeConnected?: boolean | undefined;
133672
133786
  }>>>;
133787
+ mfn: z.ZodOptional<z.ZodString>;
133788
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
133673
133789
  } & {
133674
133790
  color: z.ZodOptional<z.ZodString>;
133675
133791
  wavelength: z.ZodOptional<z.ZodString>;
@@ -134170,6 +134286,8 @@ declare const ledProps: z.ZodObject<{
134170
134286
  doNotPlace?: boolean | undefined;
134171
134287
  obstructsWithinBounds?: boolean | undefined;
134172
134288
  showAsTranslucentModel?: boolean | undefined;
134289
+ mfn?: string | undefined;
134290
+ manufacturerPartNumber?: string | undefined;
134173
134291
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
134174
134292
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
134175
134293
  color?: string | undefined;
@@ -134671,6 +134789,8 @@ declare const ledProps: z.ZodObject<{
134671
134789
  doNotPlace?: boolean | undefined;
134672
134790
  obstructsWithinBounds?: boolean | undefined;
134673
134791
  showAsTranslucentModel?: boolean | undefined;
134792
+ mfn?: string | undefined;
134793
+ manufacturerPartNumber?: string | undefined;
134674
134794
  connections?: Partial<Record<"left" | "right" | "pin1" | "pin2" | "anode" | "pos" | "cathode" | "neg", string | readonly string[] | string[]>> | undefined;
134675
134795
  schOrientation?: "vertical" | "horizontal" | "pos_top" | "pos_bottom" | "pos_left" | "pos_right" | "neg_top" | "neg_bottom" | "neg_left" | "neg_right" | undefined;
134676
134796
  color?: string | undefined;
@@ -137757,6 +137877,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
137757
137877
  highlightColor?: string | undefined;
137758
137878
  mustBeConnected?: boolean | undefined;
137759
137879
  }>>>;
137880
+ mfn: z.ZodOptional<z.ZodString>;
137881
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
137760
137882
  } & {
137761
137883
  type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
137762
137884
  isNormallyClosed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -138265,6 +138387,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
138265
138387
  doNotPlace?: boolean | undefined;
138266
138388
  obstructsWithinBounds?: boolean | undefined;
138267
138389
  showAsTranslucentModel?: boolean | undefined;
138390
+ mfn?: string | undefined;
138391
+ manufacturerPartNumber?: string | undefined;
138268
138392
  connections?: Record<string, string | readonly string[] | string[]> | undefined;
138269
138393
  spst?: boolean | undefined;
138270
138394
  spdt?: boolean | undefined;
@@ -138771,6 +138895,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
138771
138895
  doNotPlace?: boolean | undefined;
138772
138896
  obstructsWithinBounds?: boolean | undefined;
138773
138897
  showAsTranslucentModel?: boolean | undefined;
138898
+ mfn?: string | undefined;
138899
+ manufacturerPartNumber?: string | undefined;
138774
138900
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
138775
138901
  spst?: boolean | undefined;
138776
138902
  spdt?: boolean | undefined;
@@ -139278,6 +139404,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
139278
139404
  doNotPlace?: boolean | undefined;
139279
139405
  obstructsWithinBounds?: boolean | undefined;
139280
139406
  showAsTranslucentModel?: boolean | undefined;
139407
+ mfn?: string | undefined;
139408
+ manufacturerPartNumber?: string | undefined;
139281
139409
  connections?: Partial<Record<string, string | string[] | readonly string[]>> | undefined;
139282
139410
  spst?: boolean | undefined;
139283
139411
  spdt?: boolean | undefined;
@@ -143346,6 +143474,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
143346
143474
  highlightColor?: string | undefined;
143347
143475
  mustBeConnected?: boolean | undefined;
143348
143476
  }>>>;
143477
+ mfn: z.ZodOptional<z.ZodString>;
143478
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
143349
143479
  } & {
143350
143480
  connections: z.ZodOptional<z.ZodObject<{
143351
143481
  pin1: z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>;
@@ -143854,6 +143984,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
143854
143984
  doNotPlace?: boolean | undefined;
143855
143985
  obstructsWithinBounds?: boolean | undefined;
143856
143986
  showAsTranslucentModel?: boolean | undefined;
143987
+ mfn?: string | undefined;
143988
+ manufacturerPartNumber?: string | undefined;
143857
143989
  width?: number | undefined;
143858
143990
  height?: number | undefined;
143859
143991
  connections?: {
@@ -144357,6 +144489,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
144357
144489
  doNotPlace?: boolean | undefined;
144358
144490
  obstructsWithinBounds?: boolean | undefined;
144359
144491
  showAsTranslucentModel?: boolean | undefined;
144492
+ mfn?: string | undefined;
144493
+ manufacturerPartNumber?: string | undefined;
144360
144494
  width?: string | number | undefined;
144361
144495
  height?: string | number | undefined;
144362
144496
  connections?: {
@@ -144860,6 +144994,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
144860
144994
  doNotPlace?: boolean | undefined;
144861
144995
  obstructsWithinBounds?: boolean | undefined;
144862
144996
  showAsTranslucentModel?: boolean | undefined;
144997
+ mfn?: string | undefined;
144998
+ manufacturerPartNumber?: string | undefined;
144863
144999
  width?: number | undefined;
144864
145000
  height?: number | undefined;
144865
145001
  connections?: {
@@ -145363,6 +145499,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
145363
145499
  doNotPlace?: boolean | undefined;
145364
145500
  obstructsWithinBounds?: boolean | undefined;
145365
145501
  showAsTranslucentModel?: boolean | undefined;
145502
+ mfn?: string | undefined;
145503
+ manufacturerPartNumber?: string | undefined;
145366
145504
  width?: string | number | undefined;
145367
145505
  height?: string | number | undefined;
145368
145506
  connections?: {
@@ -149370,6 +149508,8 @@ declare const powerSourceProps: z.ZodObject<{
149370
149508
  highlightColor?: string | undefined;
149371
149509
  mustBeConnected?: boolean | undefined;
149372
149510
  }>>>;
149511
+ mfn: z.ZodOptional<z.ZodString>;
149512
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
149373
149513
  } & {
149374
149514
  voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
149375
149515
  }, "strip", z.ZodTypeAny, {
@@ -149866,6 +150006,8 @@ declare const powerSourceProps: z.ZodObject<{
149866
150006
  doNotPlace?: boolean | undefined;
149867
150007
  obstructsWithinBounds?: boolean | undefined;
149868
150008
  showAsTranslucentModel?: boolean | undefined;
150009
+ mfn?: string | undefined;
150010
+ manufacturerPartNumber?: string | undefined;
149869
150011
  }, {
149870
150012
  name: string;
149871
150013
  voltage: string | number;
@@ -150362,6 +150504,8 @@ declare const powerSourceProps: z.ZodObject<{
150362
150504
  doNotPlace?: boolean | undefined;
150363
150505
  obstructsWithinBounds?: boolean | undefined;
150364
150506
  showAsTranslucentModel?: boolean | undefined;
150507
+ mfn?: string | undefined;
150508
+ manufacturerPartNumber?: string | undefined;
150365
150509
  }>;
150366
150510
  type PowerSourceProps = z.input<typeof powerSourceProps>;
150367
150511
 
@@ -153439,6 +153583,8 @@ declare const voltageSourceProps: z.ZodObject<{
153439
153583
  highlightColor?: string | undefined;
153440
153584
  mustBeConnected?: boolean | undefined;
153441
153585
  }>>>;
153586
+ mfn: z.ZodOptional<z.ZodString>;
153587
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
153442
153588
  } & {
153443
153589
  voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
153444
153590
  frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -153940,6 +154086,8 @@ declare const voltageSourceProps: z.ZodObject<{
153940
154086
  doNotPlace?: boolean | undefined;
153941
154087
  obstructsWithinBounds?: boolean | undefined;
153942
154088
  showAsTranslucentModel?: boolean | undefined;
154089
+ mfn?: string | undefined;
154090
+ manufacturerPartNumber?: string | undefined;
153943
154091
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
153944
154092
  frequency?: number | undefined;
153945
154093
  voltage?: number | undefined;
@@ -154442,6 +154590,8 @@ declare const voltageSourceProps: z.ZodObject<{
154442
154590
  doNotPlace?: boolean | undefined;
154443
154591
  obstructsWithinBounds?: boolean | undefined;
154444
154592
  showAsTranslucentModel?: boolean | undefined;
154593
+ mfn?: string | undefined;
154594
+ manufacturerPartNumber?: string | undefined;
154445
154595
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
154446
154596
  frequency?: string | number | undefined;
154447
154597
  voltage?: string | number | undefined;
@@ -157525,6 +157675,8 @@ declare const currentSourceProps: z.ZodObject<{
157525
157675
  highlightColor?: string | undefined;
157526
157676
  mustBeConnected?: boolean | undefined;
157527
157677
  }>>>;
157678
+ mfn: z.ZodOptional<z.ZodString>;
157679
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
157528
157680
  } & {
157529
157681
  current: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
157530
157682
  frequency: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
@@ -158026,6 +158178,8 @@ declare const currentSourceProps: z.ZodObject<{
158026
158178
  doNotPlace?: boolean | undefined;
158027
158179
  obstructsWithinBounds?: boolean | undefined;
158028
158180
  showAsTranslucentModel?: boolean | undefined;
158181
+ mfn?: string | undefined;
158182
+ manufacturerPartNumber?: string | undefined;
158029
158183
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
158030
158184
  frequency?: number | undefined;
158031
158185
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -158528,6 +158682,8 @@ declare const currentSourceProps: z.ZodObject<{
158528
158682
  doNotPlace?: boolean | undefined;
158529
158683
  obstructsWithinBounds?: boolean | undefined;
158530
158684
  showAsTranslucentModel?: boolean | undefined;
158685
+ mfn?: string | undefined;
158686
+ manufacturerPartNumber?: string | undefined;
158531
158687
  connections?: Partial<Record<"pin1" | "pin2" | "pos" | "neg", string | readonly string[] | string[]>> | undefined;
158532
158688
  frequency?: string | number | undefined;
158533
158689
  waveShape?: "square" | "sinewave" | "triangle" | "sawtooth" | undefined;
@@ -161606,6 +161762,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
161606
161762
  highlightColor?: string | undefined;
161607
161763
  mustBeConnected?: boolean | undefined;
161608
161764
  }>>>;
161765
+ mfn: z.ZodOptional<z.ZodString>;
161766
+ manufacturerPartNumber: z.ZodOptional<z.ZodString>;
161609
161767
  }, "name"> & {
161610
161768
  name: z.ZodOptional<z.ZodString>;
161611
161769
  connectsTo: z.ZodString;
@@ -162105,6 +162263,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
162105
162263
  doNotPlace?: boolean | undefined;
162106
162264
  obstructsWithinBounds?: boolean | undefined;
162107
162265
  showAsTranslucentModel?: boolean | undefined;
162266
+ mfn?: string | undefined;
162267
+ manufacturerPartNumber?: string | undefined;
162108
162268
  color?: string | undefined;
162109
162269
  referenceTo?: string | undefined;
162110
162270
  }, {
@@ -162603,6 +162763,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
162603
162763
  doNotPlace?: boolean | undefined;
162604
162764
  obstructsWithinBounds?: boolean | undefined;
162605
162765
  showAsTranslucentModel?: boolean | undefined;
162766
+ mfn?: string | undefined;
162767
+ manufacturerPartNumber?: string | undefined;
162606
162768
  color?: string | undefined;
162607
162769
  referenceTo?: string | undefined;
162608
162770
  }>;