@tscircuit/props 0.0.334 → 0.0.335
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 +151 -0
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +2 -0
- package/lib/components/net.ts +2 -0
- package/lib/components/trace.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1514,6 +1514,7 @@ interface PinAttributeMap {
|
|
|
1514
1514
|
requiresVoltage?: string | number;
|
|
1515
1515
|
doNotConnect?: boolean;
|
|
1516
1516
|
includeInBoardPinout?: boolean;
|
|
1517
|
+
ratsNestColor?: string;
|
|
1517
1518
|
}
|
|
1518
1519
|
declare const pinAttributeMap: z.ZodObject<{
|
|
1519
1520
|
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1524,6 +1525,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1524
1525
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
1525
1526
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
1526
1527
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
1528
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
1527
1529
|
}, "strip", z.ZodTypeAny, {
|
|
1528
1530
|
providesPower?: boolean | undefined;
|
|
1529
1531
|
requiresPower?: boolean | undefined;
|
|
@@ -1533,6 +1535,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1533
1535
|
requiresVoltage?: string | number | undefined;
|
|
1534
1536
|
doNotConnect?: boolean | undefined;
|
|
1535
1537
|
includeInBoardPinout?: boolean | undefined;
|
|
1538
|
+
ratsNestColor?: string | undefined;
|
|
1536
1539
|
}, {
|
|
1537
1540
|
providesPower?: boolean | undefined;
|
|
1538
1541
|
requiresPower?: boolean | undefined;
|
|
@@ -1542,6 +1545,7 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
1542
1545
|
requiresVoltage?: string | number | undefined;
|
|
1543
1546
|
doNotConnect?: boolean | undefined;
|
|
1544
1547
|
includeInBoardPinout?: boolean | undefined;
|
|
1548
|
+
ratsNestColor?: string | undefined;
|
|
1545
1549
|
}>;
|
|
1546
1550
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
1547
1551
|
key?: any;
|
|
@@ -2161,6 +2165,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2161
2165
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
2162
2166
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
2163
2167
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
2168
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
2164
2169
|
}, "strip", z.ZodTypeAny, {
|
|
2165
2170
|
providesPower?: boolean | undefined;
|
|
2166
2171
|
requiresPower?: boolean | undefined;
|
|
@@ -2170,6 +2175,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2170
2175
|
requiresVoltage?: string | number | undefined;
|
|
2171
2176
|
doNotConnect?: boolean | undefined;
|
|
2172
2177
|
includeInBoardPinout?: boolean | undefined;
|
|
2178
|
+
ratsNestColor?: string | undefined;
|
|
2173
2179
|
}, {
|
|
2174
2180
|
providesPower?: boolean | undefined;
|
|
2175
2181
|
requiresPower?: boolean | undefined;
|
|
@@ -2179,6 +2185,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2179
2185
|
requiresVoltage?: string | number | undefined;
|
|
2180
2186
|
doNotConnect?: boolean | undefined;
|
|
2181
2187
|
includeInBoardPinout?: boolean | undefined;
|
|
2188
|
+
ratsNestColor?: string | undefined;
|
|
2182
2189
|
}>>>;
|
|
2183
2190
|
}, "strip", z.ZodTypeAny, {
|
|
2184
2191
|
name: string;
|
|
@@ -2218,6 +2225,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2218
2225
|
requiresVoltage?: string | number | undefined;
|
|
2219
2226
|
doNotConnect?: boolean | undefined;
|
|
2220
2227
|
includeInBoardPinout?: boolean | undefined;
|
|
2228
|
+
ratsNestColor?: string | undefined;
|
|
2221
2229
|
}> | undefined;
|
|
2222
2230
|
cadModel?: string | {
|
|
2223
2231
|
stlUrl: string;
|
|
@@ -2390,6 +2398,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
2390
2398
|
requiresVoltage?: string | number | undefined;
|
|
2391
2399
|
doNotConnect?: boolean | undefined;
|
|
2392
2400
|
includeInBoardPinout?: boolean | undefined;
|
|
2401
|
+
ratsNestColor?: string | undefined;
|
|
2393
2402
|
}> | undefined;
|
|
2394
2403
|
cadModel?: string | {
|
|
2395
2404
|
stlUrl: string;
|
|
@@ -3131,6 +3140,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3131
3140
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
3132
3141
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
3133
3142
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
3143
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
3134
3144
|
}, "strip", z.ZodTypeAny, {
|
|
3135
3145
|
providesPower?: boolean | undefined;
|
|
3136
3146
|
requiresPower?: boolean | undefined;
|
|
@@ -3140,6 +3150,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3140
3150
|
requiresVoltage?: string | number | undefined;
|
|
3141
3151
|
doNotConnect?: boolean | undefined;
|
|
3142
3152
|
includeInBoardPinout?: boolean | undefined;
|
|
3153
|
+
ratsNestColor?: string | undefined;
|
|
3143
3154
|
}, {
|
|
3144
3155
|
providesPower?: boolean | undefined;
|
|
3145
3156
|
requiresPower?: boolean | undefined;
|
|
@@ -3149,6 +3160,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3149
3160
|
requiresVoltage?: string | number | undefined;
|
|
3150
3161
|
doNotConnect?: boolean | undefined;
|
|
3151
3162
|
includeInBoardPinout?: boolean | undefined;
|
|
3163
|
+
ratsNestColor?: string | undefined;
|
|
3152
3164
|
}>>>;
|
|
3153
3165
|
}, "strip", z.ZodTypeAny, {
|
|
3154
3166
|
name: string;
|
|
@@ -3188,6 +3200,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3188
3200
|
requiresVoltage?: string | number | undefined;
|
|
3189
3201
|
doNotConnect?: boolean | undefined;
|
|
3190
3202
|
includeInBoardPinout?: boolean | undefined;
|
|
3203
|
+
ratsNestColor?: string | undefined;
|
|
3191
3204
|
}> | undefined;
|
|
3192
3205
|
cadModel?: string | {
|
|
3193
3206
|
stlUrl: string;
|
|
@@ -3360,6 +3373,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
3360
3373
|
requiresVoltage?: string | number | undefined;
|
|
3361
3374
|
doNotConnect?: boolean | undefined;
|
|
3362
3375
|
includeInBoardPinout?: boolean | undefined;
|
|
3376
|
+
ratsNestColor?: string | undefined;
|
|
3363
3377
|
}> | undefined;
|
|
3364
3378
|
cadModel?: string | {
|
|
3365
3379
|
stlUrl: string;
|
|
@@ -13842,6 +13856,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13842
13856
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13843
13857
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
13844
13858
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
13859
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
13845
13860
|
}, "strip", z.ZodTypeAny, {
|
|
13846
13861
|
providesPower?: boolean | undefined;
|
|
13847
13862
|
requiresPower?: boolean | undefined;
|
|
@@ -13851,6 +13866,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13851
13866
|
requiresVoltage?: string | number | undefined;
|
|
13852
13867
|
doNotConnect?: boolean | undefined;
|
|
13853
13868
|
includeInBoardPinout?: boolean | undefined;
|
|
13869
|
+
ratsNestColor?: string | undefined;
|
|
13854
13870
|
}, {
|
|
13855
13871
|
providesPower?: boolean | undefined;
|
|
13856
13872
|
requiresPower?: boolean | undefined;
|
|
@@ -13860,6 +13876,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
13860
13876
|
requiresVoltage?: string | number | undefined;
|
|
13861
13877
|
doNotConnect?: boolean | undefined;
|
|
13862
13878
|
includeInBoardPinout?: boolean | undefined;
|
|
13879
|
+
ratsNestColor?: string | undefined;
|
|
13863
13880
|
}>>>;
|
|
13864
13881
|
} & {
|
|
13865
13882
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -14149,6 +14166,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
14149
14166
|
requiresVoltage?: string | number | undefined;
|
|
14150
14167
|
doNotConnect?: boolean | undefined;
|
|
14151
14168
|
includeInBoardPinout?: boolean | undefined;
|
|
14169
|
+
ratsNestColor?: string | undefined;
|
|
14152
14170
|
}> | undefined;
|
|
14153
14171
|
cadModel?: string | {
|
|
14154
14172
|
stlUrl: string;
|
|
@@ -14398,6 +14416,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
14398
14416
|
requiresVoltage?: string | number | undefined;
|
|
14399
14417
|
doNotConnect?: boolean | undefined;
|
|
14400
14418
|
includeInBoardPinout?: boolean | undefined;
|
|
14419
|
+
ratsNestColor?: string | undefined;
|
|
14401
14420
|
}> | undefined;
|
|
14402
14421
|
cadModel?: string | {
|
|
14403
14422
|
stlUrl: string;
|
|
@@ -15219,6 +15238,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
15219
15238
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
15220
15239
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
15221
15240
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
15241
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
15222
15242
|
}, "strip", z.ZodTypeAny, {
|
|
15223
15243
|
providesPower?: boolean | undefined;
|
|
15224
15244
|
requiresPower?: boolean | undefined;
|
|
@@ -15228,6 +15248,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
15228
15248
|
requiresVoltage?: string | number | undefined;
|
|
15229
15249
|
doNotConnect?: boolean | undefined;
|
|
15230
15250
|
includeInBoardPinout?: boolean | undefined;
|
|
15251
|
+
ratsNestColor?: string | undefined;
|
|
15231
15252
|
}, {
|
|
15232
15253
|
providesPower?: boolean | undefined;
|
|
15233
15254
|
requiresPower?: boolean | undefined;
|
|
@@ -15237,6 +15258,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
15237
15258
|
requiresVoltage?: string | number | undefined;
|
|
15238
15259
|
doNotConnect?: boolean | undefined;
|
|
15239
15260
|
includeInBoardPinout?: boolean | undefined;
|
|
15261
|
+
ratsNestColor?: string | undefined;
|
|
15240
15262
|
}>>>;
|
|
15241
15263
|
} & {
|
|
15242
15264
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -15526,6 +15548,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
15526
15548
|
requiresVoltage?: string | number | undefined;
|
|
15527
15549
|
doNotConnect?: boolean | undefined;
|
|
15528
15550
|
includeInBoardPinout?: boolean | undefined;
|
|
15551
|
+
ratsNestColor?: string | undefined;
|
|
15529
15552
|
}> | undefined;
|
|
15530
15553
|
cadModel?: string | {
|
|
15531
15554
|
stlUrl: string;
|
|
@@ -15775,6 +15798,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
15775
15798
|
requiresVoltage?: string | number | undefined;
|
|
15776
15799
|
doNotConnect?: boolean | undefined;
|
|
15777
15800
|
includeInBoardPinout?: boolean | undefined;
|
|
15801
|
+
ratsNestColor?: string | undefined;
|
|
15778
15802
|
}> | undefined;
|
|
15779
15803
|
cadModel?: string | {
|
|
15780
15804
|
stlUrl: string;
|
|
@@ -16595,6 +16619,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16595
16619
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
16596
16620
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
16597
16621
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
16622
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
16598
16623
|
}, "strip", z.ZodTypeAny, {
|
|
16599
16624
|
providesPower?: boolean | undefined;
|
|
16600
16625
|
requiresPower?: boolean | undefined;
|
|
@@ -16604,6 +16629,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16604
16629
|
requiresVoltage?: string | number | undefined;
|
|
16605
16630
|
doNotConnect?: boolean | undefined;
|
|
16606
16631
|
includeInBoardPinout?: boolean | undefined;
|
|
16632
|
+
ratsNestColor?: string | undefined;
|
|
16607
16633
|
}, {
|
|
16608
16634
|
providesPower?: boolean | undefined;
|
|
16609
16635
|
requiresPower?: boolean | undefined;
|
|
@@ -16613,6 +16639,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16613
16639
|
requiresVoltage?: string | number | undefined;
|
|
16614
16640
|
doNotConnect?: boolean | undefined;
|
|
16615
16641
|
includeInBoardPinout?: boolean | undefined;
|
|
16642
|
+
ratsNestColor?: string | undefined;
|
|
16616
16643
|
}>>>;
|
|
16617
16644
|
} & {
|
|
16618
16645
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -16902,6 +16929,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
16902
16929
|
requiresVoltage?: string | number | undefined;
|
|
16903
16930
|
doNotConnect?: boolean | undefined;
|
|
16904
16931
|
includeInBoardPinout?: boolean | undefined;
|
|
16932
|
+
ratsNestColor?: string | undefined;
|
|
16905
16933
|
}> | undefined;
|
|
16906
16934
|
cadModel?: string | {
|
|
16907
16935
|
stlUrl: string;
|
|
@@ -17151,6 +17179,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
17151
17179
|
requiresVoltage?: string | number | undefined;
|
|
17152
17180
|
doNotConnect?: boolean | undefined;
|
|
17153
17181
|
includeInBoardPinout?: boolean | undefined;
|
|
17182
|
+
ratsNestColor?: string | undefined;
|
|
17154
17183
|
}> | undefined;
|
|
17155
17184
|
cadModel?: string | {
|
|
17156
17185
|
stlUrl: string;
|
|
@@ -18003,6 +18032,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18003
18032
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
18004
18033
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
18005
18034
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
18035
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
18006
18036
|
}, "strip", z.ZodTypeAny, {
|
|
18007
18037
|
providesPower?: boolean | undefined;
|
|
18008
18038
|
requiresPower?: boolean | undefined;
|
|
@@ -18012,6 +18042,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18012
18042
|
requiresVoltage?: string | number | undefined;
|
|
18013
18043
|
doNotConnect?: boolean | undefined;
|
|
18014
18044
|
includeInBoardPinout?: boolean | undefined;
|
|
18045
|
+
ratsNestColor?: string | undefined;
|
|
18015
18046
|
}, {
|
|
18016
18047
|
providesPower?: boolean | undefined;
|
|
18017
18048
|
requiresPower?: boolean | undefined;
|
|
@@ -18021,6 +18052,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18021
18052
|
requiresVoltage?: string | number | undefined;
|
|
18022
18053
|
doNotConnect?: boolean | undefined;
|
|
18023
18054
|
includeInBoardPinout?: boolean | undefined;
|
|
18055
|
+
ratsNestColor?: string | undefined;
|
|
18024
18056
|
}>>>;
|
|
18025
18057
|
} & {
|
|
18026
18058
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -18299,6 +18331,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18299
18331
|
requiresVoltage?: string | number | undefined;
|
|
18300
18332
|
doNotConnect?: boolean | undefined;
|
|
18301
18333
|
includeInBoardPinout?: boolean | undefined;
|
|
18334
|
+
ratsNestColor?: string | undefined;
|
|
18302
18335
|
}> | undefined;
|
|
18303
18336
|
cadModel?: string | {
|
|
18304
18337
|
stlUrl: string;
|
|
@@ -18543,6 +18576,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
18543
18576
|
requiresVoltage?: string | number | undefined;
|
|
18544
18577
|
doNotConnect?: boolean | undefined;
|
|
18545
18578
|
includeInBoardPinout?: boolean | undefined;
|
|
18579
|
+
ratsNestColor?: string | undefined;
|
|
18546
18580
|
}> | undefined;
|
|
18547
18581
|
cadModel?: string | {
|
|
18548
18582
|
stlUrl: string;
|
|
@@ -19367,6 +19401,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
19367
19401
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
19368
19402
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
19369
19403
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
19404
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
19370
19405
|
}, "strip", z.ZodTypeAny, {
|
|
19371
19406
|
providesPower?: boolean | undefined;
|
|
19372
19407
|
requiresPower?: boolean | undefined;
|
|
@@ -19376,6 +19411,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
19376
19411
|
requiresVoltage?: string | number | undefined;
|
|
19377
19412
|
doNotConnect?: boolean | undefined;
|
|
19378
19413
|
includeInBoardPinout?: boolean | undefined;
|
|
19414
|
+
ratsNestColor?: string | undefined;
|
|
19379
19415
|
}, {
|
|
19380
19416
|
providesPower?: boolean | undefined;
|
|
19381
19417
|
requiresPower?: boolean | undefined;
|
|
@@ -19385,6 +19421,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
19385
19421
|
requiresVoltage?: string | number | undefined;
|
|
19386
19422
|
doNotConnect?: boolean | undefined;
|
|
19387
19423
|
includeInBoardPinout?: boolean | undefined;
|
|
19424
|
+
ratsNestColor?: string | undefined;
|
|
19388
19425
|
}>>>;
|
|
19389
19426
|
} & {
|
|
19390
19427
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -19666,6 +19703,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
19666
19703
|
requiresVoltage?: string | number | undefined;
|
|
19667
19704
|
doNotConnect?: boolean | undefined;
|
|
19668
19705
|
includeInBoardPinout?: boolean | undefined;
|
|
19706
|
+
ratsNestColor?: string | undefined;
|
|
19669
19707
|
}> | undefined;
|
|
19670
19708
|
cadModel?: string | {
|
|
19671
19709
|
stlUrl: string;
|
|
@@ -19912,6 +19950,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
19912
19950
|
requiresVoltage?: string | number | undefined;
|
|
19913
19951
|
doNotConnect?: boolean | undefined;
|
|
19914
19952
|
includeInBoardPinout?: boolean | undefined;
|
|
19953
|
+
ratsNestColor?: string | undefined;
|
|
19915
19954
|
}> | undefined;
|
|
19916
19955
|
cadModel?: string | {
|
|
19917
19956
|
stlUrl: string;
|
|
@@ -20747,6 +20786,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
20747
20786
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
20748
20787
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
20749
20788
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
20789
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
20750
20790
|
}, "strip", z.ZodTypeAny, {
|
|
20751
20791
|
providesPower?: boolean | undefined;
|
|
20752
20792
|
requiresPower?: boolean | undefined;
|
|
@@ -20756,6 +20796,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
20756
20796
|
requiresVoltage?: string | number | undefined;
|
|
20757
20797
|
doNotConnect?: boolean | undefined;
|
|
20758
20798
|
includeInBoardPinout?: boolean | undefined;
|
|
20799
|
+
ratsNestColor?: string | undefined;
|
|
20759
20800
|
}, {
|
|
20760
20801
|
providesPower?: boolean | undefined;
|
|
20761
20802
|
requiresPower?: boolean | undefined;
|
|
@@ -20765,6 +20806,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
20765
20806
|
requiresVoltage?: string | number | undefined;
|
|
20766
20807
|
doNotConnect?: boolean | undefined;
|
|
20767
20808
|
includeInBoardPinout?: boolean | undefined;
|
|
20809
|
+
ratsNestColor?: string | undefined;
|
|
20768
20810
|
}>>>;
|
|
20769
20811
|
} & {
|
|
20770
20812
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -20941,6 +20983,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
20941
20983
|
requiresVoltage?: string | number | undefined;
|
|
20942
20984
|
doNotConnect?: boolean | undefined;
|
|
20943
20985
|
includeInBoardPinout?: boolean | undefined;
|
|
20986
|
+
ratsNestColor?: string | undefined;
|
|
20944
20987
|
}> | undefined;
|
|
20945
20988
|
cadModel?: string | {
|
|
20946
20989
|
stlUrl: string;
|
|
@@ -21157,6 +21200,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
21157
21200
|
requiresVoltage?: string | number | undefined;
|
|
21158
21201
|
doNotConnect?: boolean | undefined;
|
|
21159
21202
|
includeInBoardPinout?: boolean | undefined;
|
|
21203
|
+
ratsNestColor?: string | undefined;
|
|
21160
21204
|
}> | undefined;
|
|
21161
21205
|
cadModel?: string | {
|
|
21162
21206
|
stlUrl: string;
|
|
@@ -21970,6 +22014,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
21970
22014
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
21971
22015
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
21972
22016
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
22017
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
21973
22018
|
}, "strip", z.ZodTypeAny, {
|
|
21974
22019
|
providesPower?: boolean | undefined;
|
|
21975
22020
|
requiresPower?: boolean | undefined;
|
|
@@ -21979,6 +22024,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
21979
22024
|
requiresVoltage?: string | number | undefined;
|
|
21980
22025
|
doNotConnect?: boolean | undefined;
|
|
21981
22026
|
includeInBoardPinout?: boolean | undefined;
|
|
22027
|
+
ratsNestColor?: string | undefined;
|
|
21982
22028
|
}, {
|
|
21983
22029
|
providesPower?: boolean | undefined;
|
|
21984
22030
|
requiresPower?: boolean | undefined;
|
|
@@ -21988,6 +22034,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
21988
22034
|
requiresVoltage?: string | number | undefined;
|
|
21989
22035
|
doNotConnect?: boolean | undefined;
|
|
21990
22036
|
includeInBoardPinout?: boolean | undefined;
|
|
22037
|
+
ratsNestColor?: string | undefined;
|
|
21991
22038
|
}>>>;
|
|
21992
22039
|
} & {
|
|
21993
22040
|
currentRating: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
@@ -22034,6 +22081,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
22034
22081
|
requiresVoltage?: string | number | undefined;
|
|
22035
22082
|
doNotConnect?: boolean | undefined;
|
|
22036
22083
|
includeInBoardPinout?: boolean | undefined;
|
|
22084
|
+
ratsNestColor?: string | undefined;
|
|
22037
22085
|
}> | undefined;
|
|
22038
22086
|
cadModel?: string | {
|
|
22039
22087
|
stlUrl: string;
|
|
@@ -22211,6 +22259,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
22211
22259
|
requiresVoltage?: string | number | undefined;
|
|
22212
22260
|
doNotConnect?: boolean | undefined;
|
|
22213
22261
|
includeInBoardPinout?: boolean | undefined;
|
|
22262
|
+
ratsNestColor?: string | undefined;
|
|
22214
22263
|
}> | undefined;
|
|
22215
22264
|
cadModel?: string | {
|
|
22216
22265
|
stlUrl: string;
|
|
@@ -23667,6 +23716,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
23667
23716
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
23668
23717
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
23669
23718
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
23719
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
23670
23720
|
}, "strip", z.ZodTypeAny, {
|
|
23671
23721
|
providesPower?: boolean | undefined;
|
|
23672
23722
|
requiresPower?: boolean | undefined;
|
|
@@ -23676,6 +23726,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
23676
23726
|
requiresVoltage?: string | number | undefined;
|
|
23677
23727
|
doNotConnect?: boolean | undefined;
|
|
23678
23728
|
includeInBoardPinout?: boolean | undefined;
|
|
23729
|
+
ratsNestColor?: string | undefined;
|
|
23679
23730
|
}, {
|
|
23680
23731
|
providesPower?: boolean | undefined;
|
|
23681
23732
|
requiresPower?: boolean | undefined;
|
|
@@ -23685,6 +23736,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
23685
23736
|
requiresVoltage?: string | number | undefined;
|
|
23686
23737
|
doNotConnect?: boolean | undefined;
|
|
23687
23738
|
includeInBoardPinout?: boolean | undefined;
|
|
23739
|
+
ratsNestColor?: string | undefined;
|
|
23688
23740
|
}>>>;
|
|
23689
23741
|
} & {
|
|
23690
23742
|
resistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -23733,6 +23785,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
23733
23785
|
requiresVoltage?: string | number | undefined;
|
|
23734
23786
|
doNotConnect?: boolean | undefined;
|
|
23735
23787
|
includeInBoardPinout?: boolean | undefined;
|
|
23788
|
+
ratsNestColor?: string | undefined;
|
|
23736
23789
|
}> | undefined;
|
|
23737
23790
|
cadModel?: string | {
|
|
23738
23791
|
stlUrl: string;
|
|
@@ -23912,6 +23965,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
23912
23965
|
requiresVoltage?: string | number | undefined;
|
|
23913
23966
|
doNotConnect?: boolean | undefined;
|
|
23914
23967
|
includeInBoardPinout?: boolean | undefined;
|
|
23968
|
+
ratsNestColor?: string | undefined;
|
|
23915
23969
|
}> | undefined;
|
|
23916
23970
|
cadModel?: string | {
|
|
23917
23971
|
stlUrl: string;
|
|
@@ -24666,6 +24720,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
24666
24720
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
24667
24721
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
24668
24722
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
24723
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
24669
24724
|
}, "strip", z.ZodTypeAny, {
|
|
24670
24725
|
providesPower?: boolean | undefined;
|
|
24671
24726
|
requiresPower?: boolean | undefined;
|
|
@@ -24675,6 +24730,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
24675
24730
|
requiresVoltage?: string | number | undefined;
|
|
24676
24731
|
doNotConnect?: boolean | undefined;
|
|
24677
24732
|
includeInBoardPinout?: boolean | undefined;
|
|
24733
|
+
ratsNestColor?: string | undefined;
|
|
24678
24734
|
}, {
|
|
24679
24735
|
providesPower?: boolean | undefined;
|
|
24680
24736
|
requiresPower?: boolean | undefined;
|
|
@@ -24684,6 +24740,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
24684
24740
|
requiresVoltage?: string | number | undefined;
|
|
24685
24741
|
doNotConnect?: boolean | undefined;
|
|
24686
24742
|
includeInBoardPinout?: boolean | undefined;
|
|
24743
|
+
ratsNestColor?: string | undefined;
|
|
24687
24744
|
}>>>;
|
|
24688
24745
|
} & {
|
|
24689
24746
|
maxResistance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -24727,6 +24784,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
24727
24784
|
requiresVoltage?: string | number | undefined;
|
|
24728
24785
|
doNotConnect?: boolean | undefined;
|
|
24729
24786
|
includeInBoardPinout?: boolean | undefined;
|
|
24787
|
+
ratsNestColor?: string | undefined;
|
|
24730
24788
|
}> | undefined;
|
|
24731
24789
|
cadModel?: string | {
|
|
24732
24790
|
stlUrl: string;
|
|
@@ -24901,6 +24959,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
24901
24959
|
requiresVoltage?: string | number | undefined;
|
|
24902
24960
|
doNotConnect?: boolean | undefined;
|
|
24903
24961
|
includeInBoardPinout?: boolean | undefined;
|
|
24962
|
+
ratsNestColor?: string | undefined;
|
|
24904
24963
|
}> | undefined;
|
|
24905
24964
|
cadModel?: string | {
|
|
24906
24965
|
stlUrl: string;
|
|
@@ -25656,6 +25715,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
25656
25715
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
25657
25716
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
25658
25717
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
25718
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
25659
25719
|
}, "strip", z.ZodTypeAny, {
|
|
25660
25720
|
providesPower?: boolean | undefined;
|
|
25661
25721
|
requiresPower?: boolean | undefined;
|
|
@@ -25665,6 +25725,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
25665
25725
|
requiresVoltage?: string | number | undefined;
|
|
25666
25726
|
doNotConnect?: boolean | undefined;
|
|
25667
25727
|
includeInBoardPinout?: boolean | undefined;
|
|
25728
|
+
ratsNestColor?: string | undefined;
|
|
25668
25729
|
}, {
|
|
25669
25730
|
providesPower?: boolean | undefined;
|
|
25670
25731
|
requiresPower?: boolean | undefined;
|
|
@@ -25674,6 +25735,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
25674
25735
|
requiresVoltage?: string | number | undefined;
|
|
25675
25736
|
doNotConnect?: boolean | undefined;
|
|
25676
25737
|
includeInBoardPinout?: boolean | undefined;
|
|
25738
|
+
ratsNestColor?: string | undefined;
|
|
25677
25739
|
}>>>;
|
|
25678
25740
|
} & {
|
|
25679
25741
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -25723,6 +25785,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
25723
25785
|
requiresVoltage?: string | number | undefined;
|
|
25724
25786
|
doNotConnect?: boolean | undefined;
|
|
25725
25787
|
includeInBoardPinout?: boolean | undefined;
|
|
25788
|
+
ratsNestColor?: string | undefined;
|
|
25726
25789
|
}> | undefined;
|
|
25727
25790
|
cadModel?: string | {
|
|
25728
25791
|
stlUrl: string;
|
|
@@ -25902,6 +25965,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
25902
25965
|
requiresVoltage?: string | number | undefined;
|
|
25903
25966
|
doNotConnect?: boolean | undefined;
|
|
25904
25967
|
includeInBoardPinout?: boolean | undefined;
|
|
25968
|
+
ratsNestColor?: string | undefined;
|
|
25905
25969
|
}> | undefined;
|
|
25906
25970
|
cadModel?: string | {
|
|
25907
25971
|
stlUrl: string;
|
|
@@ -26655,6 +26719,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
26655
26719
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
26656
26720
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
26657
26721
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
26722
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
26658
26723
|
}, "strip", z.ZodTypeAny, {
|
|
26659
26724
|
providesPower?: boolean | undefined;
|
|
26660
26725
|
requiresPower?: boolean | undefined;
|
|
@@ -26664,6 +26729,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
26664
26729
|
requiresVoltage?: string | number | undefined;
|
|
26665
26730
|
doNotConnect?: boolean | undefined;
|
|
26666
26731
|
includeInBoardPinout?: boolean | undefined;
|
|
26732
|
+
ratsNestColor?: string | undefined;
|
|
26667
26733
|
}, {
|
|
26668
26734
|
providesPower?: boolean | undefined;
|
|
26669
26735
|
requiresPower?: boolean | undefined;
|
|
@@ -26673,6 +26739,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
26673
26739
|
requiresVoltage?: string | number | undefined;
|
|
26674
26740
|
doNotConnect?: boolean | undefined;
|
|
26675
26741
|
includeInBoardPinout?: boolean | undefined;
|
|
26742
|
+
ratsNestColor?: string | undefined;
|
|
26676
26743
|
}>>>;
|
|
26677
26744
|
} & {
|
|
26678
26745
|
frequency: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -26718,6 +26785,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
26718
26785
|
requiresVoltage?: string | number | undefined;
|
|
26719
26786
|
doNotConnect?: boolean | undefined;
|
|
26720
26787
|
includeInBoardPinout?: boolean | undefined;
|
|
26788
|
+
ratsNestColor?: string | undefined;
|
|
26721
26789
|
}> | undefined;
|
|
26722
26790
|
cadModel?: string | {
|
|
26723
26791
|
stlUrl: string;
|
|
@@ -26893,6 +26961,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
26893
26961
|
requiresVoltage?: string | number | undefined;
|
|
26894
26962
|
doNotConnect?: boolean | undefined;
|
|
26895
26963
|
includeInBoardPinout?: boolean | undefined;
|
|
26964
|
+
ratsNestColor?: string | undefined;
|
|
26896
26965
|
}> | undefined;
|
|
26897
26966
|
cadModel?: string | {
|
|
26898
26967
|
stlUrl: string;
|
|
@@ -28959,6 +29028,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
28959
29028
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
28960
29029
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
28961
29030
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
29031
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
28962
29032
|
}, "strip", z.ZodTypeAny, {
|
|
28963
29033
|
providesPower?: boolean | undefined;
|
|
28964
29034
|
requiresPower?: boolean | undefined;
|
|
@@ -28968,6 +29038,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
28968
29038
|
requiresVoltage?: string | number | undefined;
|
|
28969
29039
|
doNotConnect?: boolean | undefined;
|
|
28970
29040
|
includeInBoardPinout?: boolean | undefined;
|
|
29041
|
+
ratsNestColor?: string | undefined;
|
|
28971
29042
|
}, {
|
|
28972
29043
|
providesPower?: boolean | undefined;
|
|
28973
29044
|
requiresPower?: boolean | undefined;
|
|
@@ -28977,6 +29048,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
28977
29048
|
requiresVoltage?: string | number | undefined;
|
|
28978
29049
|
doNotConnect?: boolean | undefined;
|
|
28979
29050
|
includeInBoardPinout?: boolean | undefined;
|
|
29051
|
+
ratsNestColor?: string | undefined;
|
|
28980
29052
|
}>>>;
|
|
28981
29053
|
} & {
|
|
28982
29054
|
capacitance: z.ZodEffects<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, number, string | number>;
|
|
@@ -29031,6 +29103,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
29031
29103
|
requiresVoltage?: string | number | undefined;
|
|
29032
29104
|
doNotConnect?: boolean | undefined;
|
|
29033
29105
|
includeInBoardPinout?: boolean | undefined;
|
|
29106
|
+
ratsNestColor?: string | undefined;
|
|
29034
29107
|
}> | undefined;
|
|
29035
29108
|
cadModel?: string | {
|
|
29036
29109
|
stlUrl: string;
|
|
@@ -29212,6 +29285,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
29212
29285
|
requiresVoltage?: string | number | undefined;
|
|
29213
29286
|
doNotConnect?: boolean | undefined;
|
|
29214
29287
|
includeInBoardPinout?: boolean | undefined;
|
|
29288
|
+
ratsNestColor?: string | undefined;
|
|
29215
29289
|
}> | undefined;
|
|
29216
29290
|
cadModel?: string | {
|
|
29217
29291
|
stlUrl: string;
|
|
@@ -29360,15 +29434,19 @@ declare const capacitorPins: readonly ["pin1", "left", "anode", "pos", "pin2", "
|
|
|
29360
29434
|
interface NetProps {
|
|
29361
29435
|
name: string;
|
|
29362
29436
|
connectsTo?: string | string[];
|
|
29437
|
+
ratsNestColor?: string;
|
|
29363
29438
|
}
|
|
29364
29439
|
declare const netProps: z.ZodObject<{
|
|
29365
29440
|
name: z.ZodString;
|
|
29366
29441
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
29442
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
29367
29443
|
}, "strip", z.ZodTypeAny, {
|
|
29368
29444
|
name: string;
|
|
29445
|
+
ratsNestColor?: string | undefined;
|
|
29369
29446
|
connectsTo?: string | string[] | undefined;
|
|
29370
29447
|
}, {
|
|
29371
29448
|
name: string;
|
|
29449
|
+
ratsNestColor?: string | undefined;
|
|
29372
29450
|
connectsTo?: string | string[] | undefined;
|
|
29373
29451
|
}>;
|
|
29374
29452
|
|
|
@@ -31253,6 +31331,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31253
31331
|
}>, "many">>;
|
|
31254
31332
|
schDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
31255
31333
|
schStroke: z.ZodOptional<z.ZodString>;
|
|
31334
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
31256
31335
|
maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
31257
31336
|
} & {
|
|
31258
31337
|
path: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
@@ -31265,6 +31344,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31265
31344
|
getPortSelector: () => string;
|
|
31266
31345
|
})[];
|
|
31267
31346
|
key?: string | undefined;
|
|
31347
|
+
ratsNestColor?: string | undefined;
|
|
31268
31348
|
maxLength?: number | undefined;
|
|
31269
31349
|
thickness?: number | undefined;
|
|
31270
31350
|
schematicRouteHints?: {
|
|
@@ -31290,6 +31370,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31290
31370
|
getPortSelector: () => string;
|
|
31291
31371
|
})[];
|
|
31292
31372
|
key?: string | undefined;
|
|
31373
|
+
ratsNestColor?: string | undefined;
|
|
31293
31374
|
maxLength?: string | number | undefined;
|
|
31294
31375
|
thickness?: string | number | undefined;
|
|
31295
31376
|
schematicRouteHints?: {
|
|
@@ -31367,6 +31448,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31367
31448
|
}>, "many">>;
|
|
31368
31449
|
schDisplayLabel: z.ZodOptional<z.ZodString>;
|
|
31369
31450
|
schStroke: z.ZodOptional<z.ZodString>;
|
|
31451
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
31370
31452
|
maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
31371
31453
|
} & {
|
|
31372
31454
|
from: z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
@@ -31387,6 +31469,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31387
31469
|
getPortSelector: () => string;
|
|
31388
31470
|
};
|
|
31389
31471
|
key?: string | undefined;
|
|
31472
|
+
ratsNestColor?: string | undefined;
|
|
31390
31473
|
maxLength?: number | undefined;
|
|
31391
31474
|
thickness?: number | undefined;
|
|
31392
31475
|
schematicRouteHints?: {
|
|
@@ -31415,6 +31498,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
31415
31498
|
getPortSelector: () => string;
|
|
31416
31499
|
};
|
|
31417
31500
|
key?: string | undefined;
|
|
31501
|
+
ratsNestColor?: string | undefined;
|
|
31418
31502
|
maxLength?: string | number | undefined;
|
|
31419
31503
|
thickness?: string | number | undefined;
|
|
31420
31504
|
schematicRouteHints?: {
|
|
@@ -32104,6 +32188,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32104
32188
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
32105
32189
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
32106
32190
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
32191
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
32107
32192
|
}, "strip", z.ZodTypeAny, {
|
|
32108
32193
|
providesPower?: boolean | undefined;
|
|
32109
32194
|
requiresPower?: boolean | undefined;
|
|
@@ -32113,6 +32198,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32113
32198
|
requiresVoltage?: string | number | undefined;
|
|
32114
32199
|
doNotConnect?: boolean | undefined;
|
|
32115
32200
|
includeInBoardPinout?: boolean | undefined;
|
|
32201
|
+
ratsNestColor?: string | undefined;
|
|
32116
32202
|
}, {
|
|
32117
32203
|
providesPower?: boolean | undefined;
|
|
32118
32204
|
requiresPower?: boolean | undefined;
|
|
@@ -32122,6 +32208,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32122
32208
|
requiresVoltage?: string | number | undefined;
|
|
32123
32209
|
doNotConnect?: boolean | undefined;
|
|
32124
32210
|
includeInBoardPinout?: boolean | undefined;
|
|
32211
|
+
ratsNestColor?: string | undefined;
|
|
32125
32212
|
}>>>;
|
|
32126
32213
|
} & {
|
|
32127
32214
|
capacity: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodNumber, z.ZodString]>, number, string | number>>;
|
|
@@ -32166,6 +32253,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32166
32253
|
requiresVoltage?: string | number | undefined;
|
|
32167
32254
|
doNotConnect?: boolean | undefined;
|
|
32168
32255
|
includeInBoardPinout?: boolean | undefined;
|
|
32256
|
+
ratsNestColor?: string | undefined;
|
|
32169
32257
|
}> | undefined;
|
|
32170
32258
|
cadModel?: string | {
|
|
32171
32259
|
stlUrl: string;
|
|
@@ -32342,6 +32430,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
32342
32430
|
requiresVoltage?: string | number | undefined;
|
|
32343
32431
|
doNotConnect?: boolean | undefined;
|
|
32344
32432
|
includeInBoardPinout?: boolean | undefined;
|
|
32433
|
+
ratsNestColor?: string | undefined;
|
|
32345
32434
|
}> | undefined;
|
|
32346
32435
|
cadModel?: string | {
|
|
32347
32436
|
stlUrl: string;
|
|
@@ -33170,6 +33259,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
33170
33259
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
33171
33260
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
33172
33261
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
33262
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
33173
33263
|
}, "strip", z.ZodTypeAny, {
|
|
33174
33264
|
providesPower?: boolean | undefined;
|
|
33175
33265
|
requiresPower?: boolean | undefined;
|
|
@@ -33179,6 +33269,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
33179
33269
|
requiresVoltage?: string | number | undefined;
|
|
33180
33270
|
doNotConnect?: boolean | undefined;
|
|
33181
33271
|
includeInBoardPinout?: boolean | undefined;
|
|
33272
|
+
ratsNestColor?: string | undefined;
|
|
33182
33273
|
}, {
|
|
33183
33274
|
providesPower?: boolean | undefined;
|
|
33184
33275
|
requiresPower?: boolean | undefined;
|
|
@@ -33188,6 +33279,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
33188
33279
|
requiresVoltage?: string | number | undefined;
|
|
33189
33280
|
doNotConnect?: boolean | undefined;
|
|
33190
33281
|
includeInBoardPinout?: boolean | undefined;
|
|
33282
|
+
ratsNestColor?: string | undefined;
|
|
33191
33283
|
}>>>;
|
|
33192
33284
|
} & {
|
|
33193
33285
|
pinCount: z.ZodNumber;
|
|
@@ -33375,6 +33467,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
33375
33467
|
requiresVoltage?: string | number | undefined;
|
|
33376
33468
|
doNotConnect?: boolean | undefined;
|
|
33377
33469
|
includeInBoardPinout?: boolean | undefined;
|
|
33470
|
+
ratsNestColor?: string | undefined;
|
|
33378
33471
|
}> | undefined;
|
|
33379
33472
|
cadModel?: string | {
|
|
33380
33473
|
stlUrl: string;
|
|
@@ -33599,6 +33692,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
33599
33692
|
requiresVoltage?: string | number | undefined;
|
|
33600
33693
|
doNotConnect?: boolean | undefined;
|
|
33601
33694
|
includeInBoardPinout?: boolean | undefined;
|
|
33695
|
+
ratsNestColor?: string | undefined;
|
|
33602
33696
|
}> | undefined;
|
|
33603
33697
|
cadModel?: string | {
|
|
33604
33698
|
stlUrl: string;
|
|
@@ -34464,6 +34558,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
34464
34558
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
34465
34559
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
34466
34560
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
34561
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
34467
34562
|
}, "strip", z.ZodTypeAny, {
|
|
34468
34563
|
providesPower?: boolean | undefined;
|
|
34469
34564
|
requiresPower?: boolean | undefined;
|
|
@@ -34473,6 +34568,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
34473
34568
|
requiresVoltage?: string | number | undefined;
|
|
34474
34569
|
doNotConnect?: boolean | undefined;
|
|
34475
34570
|
includeInBoardPinout?: boolean | undefined;
|
|
34571
|
+
ratsNestColor?: string | undefined;
|
|
34476
34572
|
}, {
|
|
34477
34573
|
providesPower?: boolean | undefined;
|
|
34478
34574
|
requiresPower?: boolean | undefined;
|
|
@@ -34482,6 +34578,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
34482
34578
|
requiresVoltage?: string | number | undefined;
|
|
34483
34579
|
doNotConnect?: boolean | undefined;
|
|
34484
34580
|
includeInBoardPinout?: boolean | undefined;
|
|
34581
|
+
ratsNestColor?: string | undefined;
|
|
34485
34582
|
}>>>;
|
|
34486
34583
|
} & {
|
|
34487
34584
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -34771,6 +34868,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
34771
34868
|
requiresVoltage?: string | number | undefined;
|
|
34772
34869
|
doNotConnect?: boolean | undefined;
|
|
34773
34870
|
includeInBoardPinout?: boolean | undefined;
|
|
34871
|
+
ratsNestColor?: string | undefined;
|
|
34774
34872
|
}> | undefined;
|
|
34775
34873
|
cadModel?: string | {
|
|
34776
34874
|
stlUrl: string;
|
|
@@ -35020,6 +35118,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
35020
35118
|
requiresVoltage?: string | number | undefined;
|
|
35021
35119
|
doNotConnect?: boolean | undefined;
|
|
35022
35120
|
includeInBoardPinout?: boolean | undefined;
|
|
35121
|
+
ratsNestColor?: string | undefined;
|
|
35023
35122
|
}> | undefined;
|
|
35024
35123
|
cadModel?: string | {
|
|
35025
35124
|
stlUrl: string;
|
|
@@ -37080,6 +37179,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37080
37179
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
37081
37180
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
37082
37181
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
37182
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
37083
37183
|
}, "strip", z.ZodTypeAny, {
|
|
37084
37184
|
providesPower?: boolean | undefined;
|
|
37085
37185
|
requiresPower?: boolean | undefined;
|
|
@@ -37089,6 +37189,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37089
37189
|
requiresVoltage?: string | number | undefined;
|
|
37090
37190
|
doNotConnect?: boolean | undefined;
|
|
37091
37191
|
includeInBoardPinout?: boolean | undefined;
|
|
37192
|
+
ratsNestColor?: string | undefined;
|
|
37092
37193
|
}, {
|
|
37093
37194
|
providesPower?: boolean | undefined;
|
|
37094
37195
|
requiresPower?: boolean | undefined;
|
|
@@ -37098,6 +37199,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37098
37199
|
requiresVoltage?: string | number | undefined;
|
|
37099
37200
|
doNotConnect?: boolean | undefined;
|
|
37100
37201
|
includeInBoardPinout?: boolean | undefined;
|
|
37202
|
+
ratsNestColor?: string | undefined;
|
|
37101
37203
|
}>>>;
|
|
37102
37204
|
} & {
|
|
37103
37205
|
type: z.ZodEnum<["npn", "pnp", "bjt", "jfet", "mosfet", "igbt"]>;
|
|
@@ -37141,6 +37243,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37141
37243
|
requiresVoltage?: string | number | undefined;
|
|
37142
37244
|
doNotConnect?: boolean | undefined;
|
|
37143
37245
|
includeInBoardPinout?: boolean | undefined;
|
|
37246
|
+
ratsNestColor?: string | undefined;
|
|
37144
37247
|
}> | undefined;
|
|
37145
37248
|
cadModel?: string | {
|
|
37146
37249
|
stlUrl: string;
|
|
@@ -37315,6 +37418,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
37315
37418
|
requiresVoltage?: string | number | undefined;
|
|
37316
37419
|
doNotConnect?: boolean | undefined;
|
|
37317
37420
|
includeInBoardPinout?: boolean | undefined;
|
|
37421
|
+
ratsNestColor?: string | undefined;
|
|
37318
37422
|
}> | undefined;
|
|
37319
37423
|
cadModel?: string | {
|
|
37320
37424
|
stlUrl: string;
|
|
@@ -38064,6 +38168,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38064
38168
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
38065
38169
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
38066
38170
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
38171
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
38067
38172
|
}, "strip", z.ZodTypeAny, {
|
|
38068
38173
|
providesPower?: boolean | undefined;
|
|
38069
38174
|
requiresPower?: boolean | undefined;
|
|
@@ -38073,6 +38178,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38073
38178
|
requiresVoltage?: string | number | undefined;
|
|
38074
38179
|
doNotConnect?: boolean | undefined;
|
|
38075
38180
|
includeInBoardPinout?: boolean | undefined;
|
|
38181
|
+
ratsNestColor?: string | undefined;
|
|
38076
38182
|
}, {
|
|
38077
38183
|
providesPower?: boolean | undefined;
|
|
38078
38184
|
requiresPower?: boolean | undefined;
|
|
@@ -38082,6 +38188,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38082
38188
|
requiresVoltage?: string | number | undefined;
|
|
38083
38189
|
doNotConnect?: boolean | undefined;
|
|
38084
38190
|
includeInBoardPinout?: boolean | undefined;
|
|
38191
|
+
ratsNestColor?: string | undefined;
|
|
38085
38192
|
}>>>;
|
|
38086
38193
|
} & {
|
|
38087
38194
|
channelType: z.ZodEnum<["n", "p"]>;
|
|
@@ -38126,6 +38233,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38126
38233
|
requiresVoltage?: string | number | undefined;
|
|
38127
38234
|
doNotConnect?: boolean | undefined;
|
|
38128
38235
|
includeInBoardPinout?: boolean | undefined;
|
|
38236
|
+
ratsNestColor?: string | undefined;
|
|
38129
38237
|
}> | undefined;
|
|
38130
38238
|
cadModel?: string | {
|
|
38131
38239
|
stlUrl: string;
|
|
@@ -38300,6 +38408,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
38300
38408
|
requiresVoltage?: string | number | undefined;
|
|
38301
38409
|
doNotConnect?: boolean | undefined;
|
|
38302
38410
|
includeInBoardPinout?: boolean | undefined;
|
|
38411
|
+
ratsNestColor?: string | undefined;
|
|
38303
38412
|
}> | undefined;
|
|
38304
38413
|
cadModel?: string | {
|
|
38305
38414
|
stlUrl: string;
|
|
@@ -39052,6 +39161,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39052
39161
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
39053
39162
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
39054
39163
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
39164
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
39055
39165
|
}, "strip", z.ZodTypeAny, {
|
|
39056
39166
|
providesPower?: boolean | undefined;
|
|
39057
39167
|
requiresPower?: boolean | undefined;
|
|
@@ -39061,6 +39171,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39061
39171
|
requiresVoltage?: string | number | undefined;
|
|
39062
39172
|
doNotConnect?: boolean | undefined;
|
|
39063
39173
|
includeInBoardPinout?: boolean | undefined;
|
|
39174
|
+
ratsNestColor?: string | undefined;
|
|
39064
39175
|
}, {
|
|
39065
39176
|
providesPower?: boolean | undefined;
|
|
39066
39177
|
requiresPower?: boolean | undefined;
|
|
@@ -39070,6 +39181,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39070
39181
|
requiresVoltage?: string | number | undefined;
|
|
39071
39182
|
doNotConnect?: boolean | undefined;
|
|
39072
39183
|
includeInBoardPinout?: boolean | undefined;
|
|
39184
|
+
ratsNestColor?: string | undefined;
|
|
39073
39185
|
}>>>;
|
|
39074
39186
|
} & {
|
|
39075
39187
|
inductance: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -39115,6 +39227,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39115
39227
|
requiresVoltage?: string | number | undefined;
|
|
39116
39228
|
doNotConnect?: boolean | undefined;
|
|
39117
39229
|
includeInBoardPinout?: boolean | undefined;
|
|
39230
|
+
ratsNestColor?: string | undefined;
|
|
39118
39231
|
}> | undefined;
|
|
39119
39232
|
cadModel?: string | {
|
|
39120
39233
|
stlUrl: string;
|
|
@@ -39291,6 +39404,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
39291
39404
|
requiresVoltage?: string | number | undefined;
|
|
39292
39405
|
doNotConnect?: boolean | undefined;
|
|
39293
39406
|
includeInBoardPinout?: boolean | undefined;
|
|
39407
|
+
ratsNestColor?: string | undefined;
|
|
39294
39408
|
}> | undefined;
|
|
39295
39409
|
cadModel?: string | {
|
|
39296
39410
|
stlUrl: string;
|
|
@@ -40036,6 +40150,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40036
40150
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40037
40151
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
40038
40152
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
40153
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
40039
40154
|
}, "strip", z.ZodTypeAny, {
|
|
40040
40155
|
providesPower?: boolean | undefined;
|
|
40041
40156
|
requiresPower?: boolean | undefined;
|
|
@@ -40045,6 +40160,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40045
40160
|
requiresVoltage?: string | number | undefined;
|
|
40046
40161
|
doNotConnect?: boolean | undefined;
|
|
40047
40162
|
includeInBoardPinout?: boolean | undefined;
|
|
40163
|
+
ratsNestColor?: string | undefined;
|
|
40048
40164
|
}, {
|
|
40049
40165
|
providesPower?: boolean | undefined;
|
|
40050
40166
|
requiresPower?: boolean | undefined;
|
|
@@ -40054,6 +40170,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40054
40170
|
requiresVoltage?: string | number | undefined;
|
|
40055
40171
|
doNotConnect?: boolean | undefined;
|
|
40056
40172
|
includeInBoardPinout?: boolean | undefined;
|
|
40173
|
+
ratsNestColor?: string | undefined;
|
|
40057
40174
|
}>>>;
|
|
40058
40175
|
} & {
|
|
40059
40176
|
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">]>>>;
|
|
@@ -40104,6 +40221,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40104
40221
|
requiresVoltage?: string | number | undefined;
|
|
40105
40222
|
doNotConnect?: boolean | undefined;
|
|
40106
40223
|
includeInBoardPinout?: boolean | undefined;
|
|
40224
|
+
ratsNestColor?: string | undefined;
|
|
40107
40225
|
}> | undefined;
|
|
40108
40226
|
cadModel?: string | {
|
|
40109
40227
|
stlUrl: string;
|
|
@@ -40284,6 +40402,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40284
40402
|
requiresVoltage?: string | number | undefined;
|
|
40285
40403
|
doNotConnect?: boolean | undefined;
|
|
40286
40404
|
includeInBoardPinout?: boolean | undefined;
|
|
40405
|
+
ratsNestColor?: string | undefined;
|
|
40287
40406
|
}> | undefined;
|
|
40288
40407
|
cadModel?: string | {
|
|
40289
40408
|
stlUrl: string;
|
|
@@ -40464,6 +40583,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40464
40583
|
requiresVoltage?: string | number | undefined;
|
|
40465
40584
|
doNotConnect?: boolean | undefined;
|
|
40466
40585
|
includeInBoardPinout?: boolean | undefined;
|
|
40586
|
+
ratsNestColor?: string | undefined;
|
|
40467
40587
|
}> | undefined;
|
|
40468
40588
|
cadModel?: string | {
|
|
40469
40589
|
stlUrl: string;
|
|
@@ -40644,6 +40764,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40644
40764
|
requiresVoltage?: string | number | undefined;
|
|
40645
40765
|
doNotConnect?: boolean | undefined;
|
|
40646
40766
|
includeInBoardPinout?: boolean | undefined;
|
|
40767
|
+
ratsNestColor?: string | undefined;
|
|
40647
40768
|
}> | undefined;
|
|
40648
40769
|
cadModel?: string | {
|
|
40649
40770
|
stlUrl: string;
|
|
@@ -40830,6 +40951,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
40830
40951
|
requiresVoltage?: string | number | undefined;
|
|
40831
40952
|
doNotConnect?: boolean | undefined;
|
|
40832
40953
|
includeInBoardPinout?: boolean | undefined;
|
|
40954
|
+
ratsNestColor?: string | undefined;
|
|
40833
40955
|
}> | undefined;
|
|
40834
40956
|
cadModel?: string | {
|
|
40835
40957
|
stlUrl: string;
|
|
@@ -41004,6 +41126,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
41004
41126
|
requiresVoltage?: string | number | undefined;
|
|
41005
41127
|
doNotConnect?: boolean | undefined;
|
|
41006
41128
|
includeInBoardPinout?: boolean | undefined;
|
|
41129
|
+
ratsNestColor?: string | undefined;
|
|
41007
41130
|
}> | undefined;
|
|
41008
41131
|
cadModel?: string | {
|
|
41009
41132
|
stlUrl: string;
|
|
@@ -41777,6 +41900,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
41777
41900
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
41778
41901
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
41779
41902
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
41903
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
41780
41904
|
}, "strip", z.ZodTypeAny, {
|
|
41781
41905
|
providesPower?: boolean | undefined;
|
|
41782
41906
|
requiresPower?: boolean | undefined;
|
|
@@ -41786,6 +41910,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
41786
41910
|
requiresVoltage?: string | number | undefined;
|
|
41787
41911
|
doNotConnect?: boolean | undefined;
|
|
41788
41912
|
includeInBoardPinout?: boolean | undefined;
|
|
41913
|
+
ratsNestColor?: string | undefined;
|
|
41789
41914
|
}, {
|
|
41790
41915
|
providesPower?: boolean | undefined;
|
|
41791
41916
|
requiresPower?: boolean | undefined;
|
|
@@ -41795,6 +41920,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
41795
41920
|
requiresVoltage?: string | number | undefined;
|
|
41796
41921
|
doNotConnect?: boolean | undefined;
|
|
41797
41922
|
includeInBoardPinout?: boolean | undefined;
|
|
41923
|
+
ratsNestColor?: string | undefined;
|
|
41798
41924
|
}>>>;
|
|
41799
41925
|
} & {
|
|
41800
41926
|
color: z.ZodOptional<z.ZodString>;
|
|
@@ -41841,6 +41967,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
41841
41967
|
requiresVoltage?: string | number | undefined;
|
|
41842
41968
|
doNotConnect?: boolean | undefined;
|
|
41843
41969
|
includeInBoardPinout?: boolean | undefined;
|
|
41970
|
+
ratsNestColor?: string | undefined;
|
|
41844
41971
|
}> | undefined;
|
|
41845
41972
|
cadModel?: string | {
|
|
41846
41973
|
stlUrl: string;
|
|
@@ -42019,6 +42146,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
42019
42146
|
requiresVoltage?: string | number | undefined;
|
|
42020
42147
|
doNotConnect?: boolean | undefined;
|
|
42021
42148
|
includeInBoardPinout?: boolean | undefined;
|
|
42149
|
+
ratsNestColor?: string | undefined;
|
|
42022
42150
|
}> | undefined;
|
|
42023
42151
|
cadModel?: string | {
|
|
42024
42152
|
stlUrl: string;
|
|
@@ -42777,6 +42905,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
42777
42905
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
42778
42906
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
42779
42907
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
42908
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
42780
42909
|
}, "strip", z.ZodTypeAny, {
|
|
42781
42910
|
providesPower?: boolean | undefined;
|
|
42782
42911
|
requiresPower?: boolean | undefined;
|
|
@@ -42786,6 +42915,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
42786
42915
|
requiresVoltage?: string | number | undefined;
|
|
42787
42916
|
doNotConnect?: boolean | undefined;
|
|
42788
42917
|
includeInBoardPinout?: boolean | undefined;
|
|
42918
|
+
ratsNestColor?: string | undefined;
|
|
42789
42919
|
}, {
|
|
42790
42920
|
providesPower?: boolean | undefined;
|
|
42791
42921
|
requiresPower?: boolean | undefined;
|
|
@@ -42795,6 +42925,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
42795
42925
|
requiresVoltage?: string | number | undefined;
|
|
42796
42926
|
doNotConnect?: boolean | undefined;
|
|
42797
42927
|
includeInBoardPinout?: boolean | undefined;
|
|
42928
|
+
ratsNestColor?: string | undefined;
|
|
42798
42929
|
}>>>;
|
|
42799
42930
|
} & {
|
|
42800
42931
|
type: z.ZodOptional<z.ZodEnum<["spst", "spdt", "dpst", "dpdt"]>>;
|
|
@@ -42843,6 +42974,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
42843
42974
|
requiresVoltage?: string | number | undefined;
|
|
42844
42975
|
doNotConnect?: boolean | undefined;
|
|
42845
42976
|
includeInBoardPinout?: boolean | undefined;
|
|
42977
|
+
ratsNestColor?: string | undefined;
|
|
42846
42978
|
}> | undefined;
|
|
42847
42979
|
cadModel?: string | {
|
|
42848
42980
|
stlUrl: string;
|
|
@@ -43020,6 +43152,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43020
43152
|
requiresVoltage?: string | number | undefined;
|
|
43021
43153
|
doNotConnect?: boolean | undefined;
|
|
43022
43154
|
includeInBoardPinout?: boolean | undefined;
|
|
43155
|
+
ratsNestColor?: string | undefined;
|
|
43023
43156
|
}> | undefined;
|
|
43024
43157
|
cadModel?: string | {
|
|
43025
43158
|
stlUrl: string;
|
|
@@ -43198,6 +43331,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
43198
43331
|
requiresVoltage?: string | number | undefined;
|
|
43199
43332
|
doNotConnect?: boolean | undefined;
|
|
43200
43333
|
includeInBoardPinout?: boolean | undefined;
|
|
43334
|
+
ratsNestColor?: string | undefined;
|
|
43201
43335
|
}> | undefined;
|
|
43202
43336
|
cadModel?: string | {
|
|
43203
43337
|
stlUrl: string;
|
|
@@ -44339,6 +44473,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44339
44473
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
44340
44474
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
44341
44475
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
44476
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
44342
44477
|
}, "strip", z.ZodTypeAny, {
|
|
44343
44478
|
providesPower?: boolean | undefined;
|
|
44344
44479
|
requiresPower?: boolean | undefined;
|
|
@@ -44348,6 +44483,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44348
44483
|
requiresVoltage?: string | number | undefined;
|
|
44349
44484
|
doNotConnect?: boolean | undefined;
|
|
44350
44485
|
includeInBoardPinout?: boolean | undefined;
|
|
44486
|
+
ratsNestColor?: string | undefined;
|
|
44351
44487
|
}, {
|
|
44352
44488
|
providesPower?: boolean | undefined;
|
|
44353
44489
|
requiresPower?: boolean | undefined;
|
|
@@ -44357,6 +44493,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44357
44493
|
requiresVoltage?: string | number | undefined;
|
|
44358
44494
|
doNotConnect?: boolean | undefined;
|
|
44359
44495
|
includeInBoardPinout?: boolean | undefined;
|
|
44496
|
+
ratsNestColor?: string | undefined;
|
|
44360
44497
|
}>>>;
|
|
44361
44498
|
} & {
|
|
44362
44499
|
footprintVariant: z.ZodOptional<z.ZodEnum<["pad", "through_hole"]>>;
|
|
@@ -44404,6 +44541,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44404
44541
|
requiresVoltage?: string | number | undefined;
|
|
44405
44542
|
doNotConnect?: boolean | undefined;
|
|
44406
44543
|
includeInBoardPinout?: boolean | undefined;
|
|
44544
|
+
ratsNestColor?: string | undefined;
|
|
44407
44545
|
}> | undefined;
|
|
44408
44546
|
cadModel?: string | {
|
|
44409
44547
|
stlUrl: string;
|
|
@@ -44581,6 +44719,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44581
44719
|
requiresVoltage?: string | number | undefined;
|
|
44582
44720
|
doNotConnect?: boolean | undefined;
|
|
44583
44721
|
includeInBoardPinout?: boolean | undefined;
|
|
44722
|
+
ratsNestColor?: string | undefined;
|
|
44584
44723
|
}> | undefined;
|
|
44585
44724
|
cadModel?: string | {
|
|
44586
44725
|
stlUrl: string;
|
|
@@ -44758,6 +44897,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44758
44897
|
requiresVoltage?: string | number | undefined;
|
|
44759
44898
|
doNotConnect?: boolean | undefined;
|
|
44760
44899
|
includeInBoardPinout?: boolean | undefined;
|
|
44900
|
+
ratsNestColor?: string | undefined;
|
|
44761
44901
|
}> | undefined;
|
|
44762
44902
|
cadModel?: string | {
|
|
44763
44903
|
stlUrl: string;
|
|
@@ -44935,6 +45075,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
44935
45075
|
requiresVoltage?: string | number | undefined;
|
|
44936
45076
|
doNotConnect?: boolean | undefined;
|
|
44937
45077
|
includeInBoardPinout?: boolean | undefined;
|
|
45078
|
+
ratsNestColor?: string | undefined;
|
|
44938
45079
|
}> | undefined;
|
|
44939
45080
|
cadModel?: string | {
|
|
44940
45081
|
stlUrl: string;
|
|
@@ -46033,6 +46174,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46033
46174
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
46034
46175
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
46035
46176
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
46177
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
46036
46178
|
}, "strip", z.ZodTypeAny, {
|
|
46037
46179
|
providesPower?: boolean | undefined;
|
|
46038
46180
|
requiresPower?: boolean | undefined;
|
|
@@ -46042,6 +46184,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46042
46184
|
requiresVoltage?: string | number | undefined;
|
|
46043
46185
|
doNotConnect?: boolean | undefined;
|
|
46044
46186
|
includeInBoardPinout?: boolean | undefined;
|
|
46187
|
+
ratsNestColor?: string | undefined;
|
|
46045
46188
|
}, {
|
|
46046
46189
|
providesPower?: boolean | undefined;
|
|
46047
46190
|
requiresPower?: boolean | undefined;
|
|
@@ -46051,6 +46194,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46051
46194
|
requiresVoltage?: string | number | undefined;
|
|
46052
46195
|
doNotConnect?: boolean | undefined;
|
|
46053
46196
|
includeInBoardPinout?: boolean | undefined;
|
|
46197
|
+
ratsNestColor?: string | undefined;
|
|
46054
46198
|
}>>>;
|
|
46055
46199
|
} & {
|
|
46056
46200
|
voltage: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
@@ -46093,6 +46237,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46093
46237
|
requiresVoltage?: string | number | undefined;
|
|
46094
46238
|
doNotConnect?: boolean | undefined;
|
|
46095
46239
|
includeInBoardPinout?: boolean | undefined;
|
|
46240
|
+
ratsNestColor?: string | undefined;
|
|
46096
46241
|
}> | undefined;
|
|
46097
46242
|
cadModel?: string | {
|
|
46098
46243
|
stlUrl: string;
|
|
@@ -46266,6 +46411,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
46266
46411
|
requiresVoltage?: string | number | undefined;
|
|
46267
46412
|
doNotConnect?: boolean | undefined;
|
|
46268
46413
|
includeInBoardPinout?: boolean | undefined;
|
|
46414
|
+
ratsNestColor?: string | undefined;
|
|
46269
46415
|
}> | undefined;
|
|
46270
46416
|
cadModel?: string | {
|
|
46271
46417
|
stlUrl: string;
|
|
@@ -47021,6 +47167,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47021
47167
|
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
47022
47168
|
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
47023
47169
|
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
47170
|
+
ratsNestColor: z.ZodOptional<z.ZodString>;
|
|
47024
47171
|
}, "strip", z.ZodTypeAny, {
|
|
47025
47172
|
providesPower?: boolean | undefined;
|
|
47026
47173
|
requiresPower?: boolean | undefined;
|
|
@@ -47030,6 +47177,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47030
47177
|
requiresVoltage?: string | number | undefined;
|
|
47031
47178
|
doNotConnect?: boolean | undefined;
|
|
47032
47179
|
includeInBoardPinout?: boolean | undefined;
|
|
47180
|
+
ratsNestColor?: string | undefined;
|
|
47033
47181
|
}, {
|
|
47034
47182
|
providesPower?: boolean | undefined;
|
|
47035
47183
|
requiresPower?: boolean | undefined;
|
|
@@ -47039,6 +47187,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47039
47187
|
requiresVoltage?: string | number | undefined;
|
|
47040
47188
|
doNotConnect?: boolean | undefined;
|
|
47041
47189
|
includeInBoardPinout?: boolean | undefined;
|
|
47190
|
+
ratsNestColor?: string | undefined;
|
|
47042
47191
|
}>>>;
|
|
47043
47192
|
} & {
|
|
47044
47193
|
voltage: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -47086,6 +47235,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47086
47235
|
requiresVoltage?: string | number | undefined;
|
|
47087
47236
|
doNotConnect?: boolean | undefined;
|
|
47088
47237
|
includeInBoardPinout?: boolean | undefined;
|
|
47238
|
+
ratsNestColor?: string | undefined;
|
|
47089
47239
|
}> | undefined;
|
|
47090
47240
|
cadModel?: string | {
|
|
47091
47241
|
stlUrl: string;
|
|
@@ -47265,6 +47415,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
47265
47415
|
requiresVoltage?: string | number | undefined;
|
|
47266
47416
|
doNotConnect?: boolean | undefined;
|
|
47267
47417
|
includeInBoardPinout?: boolean | undefined;
|
|
47418
|
+
ratsNestColor?: string | undefined;
|
|
47268
47419
|
}> | undefined;
|
|
47269
47420
|
cadModel?: string | {
|
|
47270
47421
|
stlUrl: string;
|