@tscircuit/props 0.0.482 → 0.0.484
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/index.d.ts +339 -0
- package/dist/index.js +5 -2
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +6 -0
- package/lib/components/panel.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6495,6 +6495,8 @@ interface PinAttributeMap {
|
|
|
6495
6495
|
isUsingOpenDrain?: boolean;
|
|
6496
6496
|
canUsePushPull?: boolean;
|
|
6497
6497
|
isUsingPushPull?: boolean;
|
|
6498
|
+
shouldHaveDecouplingCapacitor?: boolean;
|
|
6499
|
+
recommendedDecouplingCapacitorCapacitance?: string | number;
|
|
6498
6500
|
}
|
|
6499
6501
|
declare const pinAttributeMap: z.ZodObject<{
|
|
6500
6502
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
@@ -6520,6 +6522,8 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6520
6522
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6521
6523
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6522
6524
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6525
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
6526
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6523
6527
|
}, "strip", z.ZodTypeAny, {
|
|
6524
6528
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6525
6529
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -6544,6 +6548,8 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6544
6548
|
isUsingOpenDrain?: boolean | undefined;
|
|
6545
6549
|
canUsePushPull?: boolean | undefined;
|
|
6546
6550
|
isUsingPushPull?: boolean | undefined;
|
|
6551
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6552
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6547
6553
|
}, {
|
|
6548
6554
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6549
6555
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -6568,6 +6574,8 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6568
6574
|
isUsingOpenDrain?: boolean | undefined;
|
|
6569
6575
|
canUsePushPull?: boolean | undefined;
|
|
6570
6576
|
isUsingPushPull?: boolean | undefined;
|
|
6577
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6578
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6571
6579
|
}>;
|
|
6572
6580
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
6573
6581
|
key?: any;
|
|
@@ -9675,6 +9683,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9675
9683
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
9676
9684
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9677
9685
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9686
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
9687
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9678
9688
|
}, "strip", z.ZodTypeAny, {
|
|
9679
9689
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9680
9690
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9699,6 +9709,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9699
9709
|
isUsingOpenDrain?: boolean | undefined;
|
|
9700
9710
|
canUsePushPull?: boolean | undefined;
|
|
9701
9711
|
isUsingPushPull?: boolean | undefined;
|
|
9712
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9713
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9702
9714
|
}, {
|
|
9703
9715
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9704
9716
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9723,6 +9735,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9723
9735
|
isUsingOpenDrain?: boolean | undefined;
|
|
9724
9736
|
canUsePushPull?: boolean | undefined;
|
|
9725
9737
|
isUsingPushPull?: boolean | undefined;
|
|
9738
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9739
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9726
9740
|
}>>>;
|
|
9727
9741
|
mfn: z.ZodOptional<z.ZodString>;
|
|
9728
9742
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -9806,6 +9820,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9806
9820
|
isUsingOpenDrain?: boolean | undefined;
|
|
9807
9821
|
canUsePushPull?: boolean | undefined;
|
|
9808
9822
|
isUsingPushPull?: boolean | undefined;
|
|
9823
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9824
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9809
9825
|
}> | undefined;
|
|
9810
9826
|
cadModel?: string | {
|
|
9811
9827
|
stlUrl: string;
|
|
@@ -10326,6 +10342,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10326
10342
|
isUsingOpenDrain?: boolean | undefined;
|
|
10327
10343
|
canUsePushPull?: boolean | undefined;
|
|
10328
10344
|
isUsingPushPull?: boolean | undefined;
|
|
10345
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
10346
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
10329
10347
|
}> | undefined;
|
|
10330
10348
|
cadModel?: string | {
|
|
10331
10349
|
stlUrl: string;
|
|
@@ -13841,6 +13859,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13841
13859
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
13842
13860
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13843
13861
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13862
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
13863
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13844
13864
|
}, "strip", z.ZodTypeAny, {
|
|
13845
13865
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13846
13866
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13865,6 +13885,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13865
13885
|
isUsingOpenDrain?: boolean | undefined;
|
|
13866
13886
|
canUsePushPull?: boolean | undefined;
|
|
13867
13887
|
isUsingPushPull?: boolean | undefined;
|
|
13888
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13889
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13868
13890
|
}, {
|
|
13869
13891
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13870
13892
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13889,6 +13911,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13889
13911
|
isUsingOpenDrain?: boolean | undefined;
|
|
13890
13912
|
canUsePushPull?: boolean | undefined;
|
|
13891
13913
|
isUsingPushPull?: boolean | undefined;
|
|
13914
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13915
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13892
13916
|
}>>>;
|
|
13893
13917
|
mfn: z.ZodOptional<z.ZodString>;
|
|
13894
13918
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -13972,6 +13996,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13972
13996
|
isUsingOpenDrain?: boolean | undefined;
|
|
13973
13997
|
canUsePushPull?: boolean | undefined;
|
|
13974
13998
|
isUsingPushPull?: boolean | undefined;
|
|
13999
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14000
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13975
14001
|
}> | undefined;
|
|
13976
14002
|
cadModel?: string | {
|
|
13977
14003
|
stlUrl: string;
|
|
@@ -14492,6 +14518,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
14492
14518
|
isUsingOpenDrain?: boolean | undefined;
|
|
14493
14519
|
canUsePushPull?: boolean | undefined;
|
|
14494
14520
|
isUsingPushPull?: boolean | undefined;
|
|
14521
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14522
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
14495
14523
|
}> | undefined;
|
|
14496
14524
|
cadModel?: string | {
|
|
14497
14525
|
stlUrl: string;
|
|
@@ -24446,6 +24474,7 @@ interface PanelProps extends Omit<BaseGroupProps, "height" | "layoutMode" | "wid
|
|
|
24446
24474
|
edgePaddingRight?: Distance;
|
|
24447
24475
|
edgePaddingTop?: Distance;
|
|
24448
24476
|
edgePaddingBottom?: Distance;
|
|
24477
|
+
_subcircuitCachingEnabled?: boolean;
|
|
24449
24478
|
}
|
|
24450
24479
|
declare const panelProps: z.ZodObject<Omit<{
|
|
24451
24480
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -25028,6 +25057,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25028
25057
|
edgePaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25029
25058
|
edgePaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25030
25059
|
edgePaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25060
|
+
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
25031
25061
|
}, "strip", z.ZodTypeAny, {
|
|
25032
25062
|
symbol?: SymbolProp | undefined;
|
|
25033
25063
|
key?: any;
|
|
@@ -25286,6 +25316,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25286
25316
|
schGap?: string | number | undefined;
|
|
25287
25317
|
schPack?: boolean | undefined;
|
|
25288
25318
|
schMatchAdapt?: boolean | undefined;
|
|
25319
|
+
_subcircuitCachingEnabled?: boolean | undefined;
|
|
25289
25320
|
anchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25290
25321
|
noSolderMask?: boolean | undefined;
|
|
25291
25322
|
panelizationMethod?: "none" | "tab-routing" | undefined;
|
|
@@ -25561,6 +25592,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25561
25592
|
schGap?: string | number | undefined;
|
|
25562
25593
|
schPack?: boolean | undefined;
|
|
25563
25594
|
schMatchAdapt?: boolean | undefined;
|
|
25595
|
+
_subcircuitCachingEnabled?: boolean | undefined;
|
|
25564
25596
|
anchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
25565
25597
|
noSolderMask?: boolean | undefined;
|
|
25566
25598
|
panelizationMethod?: "none" | "tab-routing" | undefined;
|
|
@@ -26161,6 +26193,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26161
26193
|
edgePaddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26162
26194
|
edgePaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26163
26195
|
edgePaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26196
|
+
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
26164
26197
|
}, "strip", z.ZodTypeAny, {
|
|
26165
26198
|
symbol?: SymbolProp | undefined;
|
|
26166
26199
|
key?: any;
|
|
@@ -26419,6 +26452,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26419
26452
|
schGap?: string | number | undefined;
|
|
26420
26453
|
schPack?: boolean | undefined;
|
|
26421
26454
|
schMatchAdapt?: boolean | undefined;
|
|
26455
|
+
_subcircuitCachingEnabled?: boolean | undefined;
|
|
26422
26456
|
anchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
26423
26457
|
noSolderMask?: boolean | undefined;
|
|
26424
26458
|
panelizationMethod?: "none" | "tab-routing" | undefined;
|
|
@@ -26694,6 +26728,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26694
26728
|
schGap?: string | number | undefined;
|
|
26695
26729
|
schPack?: boolean | undefined;
|
|
26696
26730
|
schMatchAdapt?: boolean | undefined;
|
|
26731
|
+
_subcircuitCachingEnabled?: boolean | undefined;
|
|
26697
26732
|
anchorAlignment?: "top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right" | undefined;
|
|
26698
26733
|
noSolderMask?: boolean | undefined;
|
|
26699
26734
|
panelizationMethod?: "none" | "tab-routing" | undefined;
|
|
@@ -31237,6 +31272,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31237
31272
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
31238
31273
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31239
31274
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31275
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
31276
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31240
31277
|
}, "strip", z.ZodTypeAny, {
|
|
31241
31278
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31242
31279
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31261,6 +31298,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31261
31298
|
isUsingOpenDrain?: boolean | undefined;
|
|
31262
31299
|
canUsePushPull?: boolean | undefined;
|
|
31263
31300
|
isUsingPushPull?: boolean | undefined;
|
|
31301
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31302
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31264
31303
|
}, {
|
|
31265
31304
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31266
31305
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31285,6 +31324,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31285
31324
|
isUsingOpenDrain?: boolean | undefined;
|
|
31286
31325
|
canUsePushPull?: boolean | undefined;
|
|
31287
31326
|
isUsingPushPull?: boolean | undefined;
|
|
31327
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31328
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31288
31329
|
}>>>;
|
|
31289
31330
|
mfn: z.ZodOptional<z.ZodString>;
|
|
31290
31331
|
} & {
|
|
@@ -31665,6 +31706,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31665
31706
|
isUsingOpenDrain?: boolean | undefined;
|
|
31666
31707
|
canUsePushPull?: boolean | undefined;
|
|
31667
31708
|
isUsingPushPull?: boolean | undefined;
|
|
31709
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31710
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31668
31711
|
}> | undefined;
|
|
31669
31712
|
cadModel?: string | {
|
|
31670
31713
|
stlUrl: string;
|
|
@@ -32261,6 +32304,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
32261
32304
|
isUsingOpenDrain?: boolean | undefined;
|
|
32262
32305
|
canUsePushPull?: boolean | undefined;
|
|
32263
32306
|
isUsingPushPull?: boolean | undefined;
|
|
32307
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
32308
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
32264
32309
|
}> | undefined;
|
|
32265
32310
|
cadModel?: string | {
|
|
32266
32311
|
stlUrl: string;
|
|
@@ -35853,6 +35898,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35853
35898
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
35854
35899
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35855
35900
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35901
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
35902
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35856
35903
|
}, "strip", z.ZodTypeAny, {
|
|
35857
35904
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35858
35905
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35877,6 +35924,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35877
35924
|
isUsingOpenDrain?: boolean | undefined;
|
|
35878
35925
|
canUsePushPull?: boolean | undefined;
|
|
35879
35926
|
isUsingPushPull?: boolean | undefined;
|
|
35927
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35928
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35880
35929
|
}, {
|
|
35881
35930
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35882
35931
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35901,6 +35950,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35901
35950
|
isUsingOpenDrain?: boolean | undefined;
|
|
35902
35951
|
canUsePushPull?: boolean | undefined;
|
|
35903
35952
|
isUsingPushPull?: boolean | undefined;
|
|
35953
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35954
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35904
35955
|
}>>>;
|
|
35905
35956
|
mfn: z.ZodOptional<z.ZodString>;
|
|
35906
35957
|
} & {
|
|
@@ -36281,6 +36332,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
36281
36332
|
isUsingOpenDrain?: boolean | undefined;
|
|
36282
36333
|
canUsePushPull?: boolean | undefined;
|
|
36283
36334
|
isUsingPushPull?: boolean | undefined;
|
|
36335
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36336
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36284
36337
|
}> | undefined;
|
|
36285
36338
|
cadModel?: string | {
|
|
36286
36339
|
stlUrl: string;
|
|
@@ -36877,6 +36930,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
36877
36930
|
isUsingOpenDrain?: boolean | undefined;
|
|
36878
36931
|
canUsePushPull?: boolean | undefined;
|
|
36879
36932
|
isUsingPushPull?: boolean | undefined;
|
|
36933
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36934
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36880
36935
|
}> | undefined;
|
|
36881
36936
|
cadModel?: string | {
|
|
36882
36937
|
stlUrl: string;
|
|
@@ -40468,6 +40523,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40468
40523
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
40469
40524
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40470
40525
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40526
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
40527
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40471
40528
|
}, "strip", z.ZodTypeAny, {
|
|
40472
40529
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40473
40530
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40492,6 +40549,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40492
40549
|
isUsingOpenDrain?: boolean | undefined;
|
|
40493
40550
|
canUsePushPull?: boolean | undefined;
|
|
40494
40551
|
isUsingPushPull?: boolean | undefined;
|
|
40552
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40553
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40495
40554
|
}, {
|
|
40496
40555
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40497
40556
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40516,6 +40575,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40516
40575
|
isUsingOpenDrain?: boolean | undefined;
|
|
40517
40576
|
canUsePushPull?: boolean | undefined;
|
|
40518
40577
|
isUsingPushPull?: boolean | undefined;
|
|
40578
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40579
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40519
40580
|
}>>>;
|
|
40520
40581
|
mfn: z.ZodOptional<z.ZodString>;
|
|
40521
40582
|
} & {
|
|
@@ -40896,6 +40957,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40896
40957
|
isUsingOpenDrain?: boolean | undefined;
|
|
40897
40958
|
canUsePushPull?: boolean | undefined;
|
|
40898
40959
|
isUsingPushPull?: boolean | undefined;
|
|
40960
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40961
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40899
40962
|
}> | undefined;
|
|
40900
40963
|
cadModel?: string | {
|
|
40901
40964
|
stlUrl: string;
|
|
@@ -41492,6 +41555,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41492
41555
|
isUsingOpenDrain?: boolean | undefined;
|
|
41493
41556
|
canUsePushPull?: boolean | undefined;
|
|
41494
41557
|
isUsingPushPull?: boolean | undefined;
|
|
41558
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
41559
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
41495
41560
|
}> | undefined;
|
|
41496
41561
|
cadModel?: string | {
|
|
41497
41562
|
stlUrl: string;
|
|
@@ -45115,6 +45180,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45115
45180
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
45116
45181
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45117
45182
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45183
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
45184
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45118
45185
|
}, "strip", z.ZodTypeAny, {
|
|
45119
45186
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45120
45187
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45139,6 +45206,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45139
45206
|
isUsingOpenDrain?: boolean | undefined;
|
|
45140
45207
|
canUsePushPull?: boolean | undefined;
|
|
45141
45208
|
isUsingPushPull?: boolean | undefined;
|
|
45209
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45210
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45142
45211
|
}, {
|
|
45143
45212
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45144
45213
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45163,6 +45232,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45163
45232
|
isUsingOpenDrain?: boolean | undefined;
|
|
45164
45233
|
canUsePushPull?: boolean | undefined;
|
|
45165
45234
|
isUsingPushPull?: boolean | undefined;
|
|
45235
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45236
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45166
45237
|
}>>>;
|
|
45167
45238
|
mfn: z.ZodOptional<z.ZodString>;
|
|
45168
45239
|
} & {
|
|
@@ -45532,6 +45603,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45532
45603
|
isUsingOpenDrain?: boolean | undefined;
|
|
45533
45604
|
canUsePushPull?: boolean | undefined;
|
|
45534
45605
|
isUsingPushPull?: boolean | undefined;
|
|
45606
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45607
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45535
45608
|
}> | undefined;
|
|
45536
45609
|
cadModel?: string | {
|
|
45537
45610
|
stlUrl: string;
|
|
@@ -46123,6 +46196,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46123
46196
|
isUsingOpenDrain?: boolean | undefined;
|
|
46124
46197
|
canUsePushPull?: boolean | undefined;
|
|
46125
46198
|
isUsingPushPull?: boolean | undefined;
|
|
46199
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
46200
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
46126
46201
|
}> | undefined;
|
|
46127
46202
|
cadModel?: string | {
|
|
46128
46203
|
stlUrl: string;
|
|
@@ -49718,6 +49793,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49718
49793
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
49719
49794
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49720
49795
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49796
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
49797
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49721
49798
|
}, "strip", z.ZodTypeAny, {
|
|
49722
49799
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49723
49800
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49742,6 +49819,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49742
49819
|
isUsingOpenDrain?: boolean | undefined;
|
|
49743
49820
|
canUsePushPull?: boolean | undefined;
|
|
49744
49821
|
isUsingPushPull?: boolean | undefined;
|
|
49822
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49823
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49745
49824
|
}, {
|
|
49746
49825
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49747
49826
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49766,6 +49845,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49766
49845
|
isUsingOpenDrain?: boolean | undefined;
|
|
49767
49846
|
canUsePushPull?: boolean | undefined;
|
|
49768
49847
|
isUsingPushPull?: boolean | undefined;
|
|
49848
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49849
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49769
49850
|
}>>>;
|
|
49770
49851
|
mfn: z.ZodOptional<z.ZodString>;
|
|
49771
49852
|
} & {
|
|
@@ -50138,6 +50219,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50138
50219
|
isUsingOpenDrain?: boolean | undefined;
|
|
50139
50220
|
canUsePushPull?: boolean | undefined;
|
|
50140
50221
|
isUsingPushPull?: boolean | undefined;
|
|
50222
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50223
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50141
50224
|
}> | undefined;
|
|
50142
50225
|
cadModel?: string | {
|
|
50143
50226
|
stlUrl: string;
|
|
@@ -50731,6 +50814,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50731
50814
|
isUsingOpenDrain?: boolean | undefined;
|
|
50732
50815
|
canUsePushPull?: boolean | undefined;
|
|
50733
50816
|
isUsingPushPull?: boolean | undefined;
|
|
50817
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50818
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50734
50819
|
}> | undefined;
|
|
50735
50820
|
cadModel?: string | {
|
|
50736
50821
|
stlUrl: string;
|
|
@@ -54337,6 +54422,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54337
54422
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
54338
54423
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54339
54424
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54425
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
54426
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54340
54427
|
}, "strip", z.ZodTypeAny, {
|
|
54341
54428
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54342
54429
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54361,6 +54448,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54361
54448
|
isUsingOpenDrain?: boolean | undefined;
|
|
54362
54449
|
canUsePushPull?: boolean | undefined;
|
|
54363
54450
|
isUsingPushPull?: boolean | undefined;
|
|
54451
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54452
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54364
54453
|
}, {
|
|
54365
54454
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54366
54455
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54385,6 +54474,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54385
54474
|
isUsingOpenDrain?: boolean | undefined;
|
|
54386
54475
|
canUsePushPull?: boolean | undefined;
|
|
54387
54476
|
isUsingPushPull?: boolean | undefined;
|
|
54477
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54478
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54388
54479
|
}>>>;
|
|
54389
54480
|
mfn: z.ZodOptional<z.ZodString>;
|
|
54390
54481
|
} & {
|
|
@@ -54628,6 +54719,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54628
54719
|
isUsingOpenDrain?: boolean | undefined;
|
|
54629
54720
|
canUsePushPull?: boolean | undefined;
|
|
54630
54721
|
isUsingPushPull?: boolean | undefined;
|
|
54722
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54723
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54631
54724
|
}> | undefined;
|
|
54632
54725
|
cadModel?: string | {
|
|
54633
54726
|
stlUrl: string;
|
|
@@ -55191,6 +55284,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55191
55284
|
isUsingOpenDrain?: boolean | undefined;
|
|
55192
55285
|
canUsePushPull?: boolean | undefined;
|
|
55193
55286
|
isUsingPushPull?: boolean | undefined;
|
|
55287
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
55288
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
55194
55289
|
}> | undefined;
|
|
55195
55290
|
cadModel?: string | {
|
|
55196
55291
|
stlUrl: string;
|
|
@@ -58759,6 +58854,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58759
58854
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
58760
58855
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58761
58856
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58857
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
58858
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
58762
58859
|
}, "strip", z.ZodTypeAny, {
|
|
58763
58860
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58764
58861
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58783,6 +58880,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58783
58880
|
isUsingOpenDrain?: boolean | undefined;
|
|
58784
58881
|
canUsePushPull?: boolean | undefined;
|
|
58785
58882
|
isUsingPushPull?: boolean | undefined;
|
|
58883
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58884
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58786
58885
|
}, {
|
|
58787
58886
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58788
58887
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58807,6 +58906,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58807
58906
|
isUsingOpenDrain?: boolean | undefined;
|
|
58808
58907
|
canUsePushPull?: boolean | undefined;
|
|
58809
58908
|
isUsingPushPull?: boolean | undefined;
|
|
58909
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58910
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58810
58911
|
}>>>;
|
|
58811
58912
|
mfn: z.ZodOptional<z.ZodString>;
|
|
58812
58913
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -58894,6 +58995,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58894
58995
|
isUsingOpenDrain?: boolean | undefined;
|
|
58895
58996
|
canUsePushPull?: boolean | undefined;
|
|
58896
58997
|
isUsingPushPull?: boolean | undefined;
|
|
58998
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58999
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58897
59000
|
}> | undefined;
|
|
58898
59001
|
cadModel?: string | {
|
|
58899
59002
|
stlUrl: string;
|
|
@@ -59417,6 +59520,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59417
59520
|
isUsingOpenDrain?: boolean | undefined;
|
|
59418
59521
|
canUsePushPull?: boolean | undefined;
|
|
59419
59522
|
isUsingPushPull?: boolean | undefined;
|
|
59523
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59524
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59420
59525
|
}> | undefined;
|
|
59421
59526
|
cadModel?: string | {
|
|
59422
59527
|
stlUrl: string;
|
|
@@ -62963,6 +63068,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62963
63068
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
62964
63069
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
62965
63070
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63071
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
63072
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
62966
63073
|
}, "strip", z.ZodTypeAny, {
|
|
62967
63074
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62968
63075
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -62987,6 +63094,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62987
63094
|
isUsingOpenDrain?: boolean | undefined;
|
|
62988
63095
|
canUsePushPull?: boolean | undefined;
|
|
62989
63096
|
isUsingPushPull?: boolean | undefined;
|
|
63097
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63098
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
62990
63099
|
}, {
|
|
62991
63100
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62992
63101
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -63011,6 +63120,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63011
63120
|
isUsingOpenDrain?: boolean | undefined;
|
|
63012
63121
|
canUsePushPull?: boolean | undefined;
|
|
63013
63122
|
isUsingPushPull?: boolean | undefined;
|
|
63123
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63124
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63014
63125
|
}>>>;
|
|
63015
63126
|
mfn: z.ZodOptional<z.ZodString>;
|
|
63016
63127
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -63101,6 +63212,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63101
63212
|
isUsingOpenDrain?: boolean | undefined;
|
|
63102
63213
|
canUsePushPull?: boolean | undefined;
|
|
63103
63214
|
isUsingPushPull?: boolean | undefined;
|
|
63215
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63216
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63104
63217
|
}> | undefined;
|
|
63105
63218
|
cadModel?: string | {
|
|
63106
63219
|
stlUrl: string;
|
|
@@ -63626,6 +63739,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63626
63739
|
isUsingOpenDrain?: boolean | undefined;
|
|
63627
63740
|
canUsePushPull?: boolean | undefined;
|
|
63628
63741
|
isUsingPushPull?: boolean | undefined;
|
|
63742
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63743
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63629
63744
|
}> | undefined;
|
|
63630
63745
|
cadModel?: string | {
|
|
63631
63746
|
stlUrl: string;
|
|
@@ -68818,6 +68933,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68818
68933
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
68819
68934
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68820
68935
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68936
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
68937
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
68821
68938
|
}, "strip", z.ZodTypeAny, {
|
|
68822
68939
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68823
68940
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68842,6 +68959,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68842
68959
|
isUsingOpenDrain?: boolean | undefined;
|
|
68843
68960
|
canUsePushPull?: boolean | undefined;
|
|
68844
68961
|
isUsingPushPull?: boolean | undefined;
|
|
68962
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68963
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68845
68964
|
}, {
|
|
68846
68965
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68847
68966
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68866,6 +68985,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68866
68985
|
isUsingOpenDrain?: boolean | undefined;
|
|
68867
68986
|
canUsePushPull?: boolean | undefined;
|
|
68868
68987
|
isUsingPushPull?: boolean | undefined;
|
|
68988
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68989
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68869
68990
|
}>>>;
|
|
68870
68991
|
mfn: z.ZodOptional<z.ZodString>;
|
|
68871
68992
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -68960,6 +69081,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68960
69081
|
isUsingOpenDrain?: boolean | undefined;
|
|
68961
69082
|
canUsePushPull?: boolean | undefined;
|
|
68962
69083
|
isUsingPushPull?: boolean | undefined;
|
|
69084
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69085
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68963
69086
|
}> | undefined;
|
|
68964
69087
|
cadModel?: string | {
|
|
68965
69088
|
stlUrl: string;
|
|
@@ -69489,6 +69612,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69489
69612
|
isUsingOpenDrain?: boolean | undefined;
|
|
69490
69613
|
canUsePushPull?: boolean | undefined;
|
|
69491
69614
|
isUsingPushPull?: boolean | undefined;
|
|
69615
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69616
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69492
69617
|
}> | undefined;
|
|
69493
69618
|
cadModel?: string | {
|
|
69494
69619
|
stlUrl: string;
|
|
@@ -73022,6 +73147,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73022
73147
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
73023
73148
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73024
73149
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73150
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
73151
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
73025
73152
|
}, "strip", z.ZodTypeAny, {
|
|
73026
73153
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73027
73154
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73046,6 +73173,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73046
73173
|
isUsingOpenDrain?: boolean | undefined;
|
|
73047
73174
|
canUsePushPull?: boolean | undefined;
|
|
73048
73175
|
isUsingPushPull?: boolean | undefined;
|
|
73176
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73177
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73049
73178
|
}, {
|
|
73050
73179
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73051
73180
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73070,6 +73199,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73070
73199
|
isUsingOpenDrain?: boolean | undefined;
|
|
73071
73200
|
canUsePushPull?: boolean | undefined;
|
|
73072
73201
|
isUsingPushPull?: boolean | undefined;
|
|
73202
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73203
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73073
73204
|
}>>>;
|
|
73074
73205
|
mfn: z.ZodOptional<z.ZodString>;
|
|
73075
73206
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -73158,6 +73289,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73158
73289
|
isUsingOpenDrain?: boolean | undefined;
|
|
73159
73290
|
canUsePushPull?: boolean | undefined;
|
|
73160
73291
|
isUsingPushPull?: boolean | undefined;
|
|
73292
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73293
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73161
73294
|
}> | undefined;
|
|
73162
73295
|
cadModel?: string | {
|
|
73163
73296
|
stlUrl: string;
|
|
@@ -73681,6 +73814,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73681
73814
|
isUsingOpenDrain?: boolean | undefined;
|
|
73682
73815
|
canUsePushPull?: boolean | undefined;
|
|
73683
73816
|
isUsingPushPull?: boolean | undefined;
|
|
73817
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73818
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73684
73819
|
}> | undefined;
|
|
73685
73820
|
cadModel?: string | {
|
|
73686
73821
|
stlUrl: string;
|
|
@@ -77209,6 +77344,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77209
77344
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
77210
77345
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77211
77346
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77347
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
77348
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77212
77349
|
}, "strip", z.ZodTypeAny, {
|
|
77213
77350
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77214
77351
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77233,6 +77370,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77233
77370
|
isUsingOpenDrain?: boolean | undefined;
|
|
77234
77371
|
canUsePushPull?: boolean | undefined;
|
|
77235
77372
|
isUsingPushPull?: boolean | undefined;
|
|
77373
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77374
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77236
77375
|
}, {
|
|
77237
77376
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77238
77377
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77257,6 +77396,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77257
77396
|
isUsingOpenDrain?: boolean | undefined;
|
|
77258
77397
|
canUsePushPull?: boolean | undefined;
|
|
77259
77398
|
isUsingPushPull?: boolean | undefined;
|
|
77399
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77400
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77260
77401
|
}>>>;
|
|
77261
77402
|
mfn: z.ZodOptional<z.ZodString>;
|
|
77262
77403
|
} & {
|
|
@@ -77349,6 +77490,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77349
77490
|
isUsingOpenDrain?: boolean | undefined;
|
|
77350
77491
|
canUsePushPull?: boolean | undefined;
|
|
77351
77492
|
isUsingPushPull?: boolean | undefined;
|
|
77493
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77494
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77352
77495
|
}> | undefined;
|
|
77353
77496
|
cadModel?: string | {
|
|
77354
77497
|
stlUrl: string;
|
|
@@ -77875,6 +78018,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77875
78018
|
isUsingOpenDrain?: boolean | undefined;
|
|
77876
78019
|
canUsePushPull?: boolean | undefined;
|
|
77877
78020
|
isUsingPushPull?: boolean | undefined;
|
|
78021
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
78022
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77878
78023
|
}> | undefined;
|
|
77879
78024
|
cadModel?: string | {
|
|
77880
78025
|
stlUrl: string;
|
|
@@ -81401,6 +81546,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81401
81546
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
81402
81547
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81403
81548
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81549
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
81550
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
81404
81551
|
}, "strip", z.ZodTypeAny, {
|
|
81405
81552
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81406
81553
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81425,6 +81572,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81425
81572
|
isUsingOpenDrain?: boolean | undefined;
|
|
81426
81573
|
canUsePushPull?: boolean | undefined;
|
|
81427
81574
|
isUsingPushPull?: boolean | undefined;
|
|
81575
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81576
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81428
81577
|
}, {
|
|
81429
81578
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81430
81579
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81449,6 +81598,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81449
81598
|
isUsingOpenDrain?: boolean | undefined;
|
|
81450
81599
|
canUsePushPull?: boolean | undefined;
|
|
81451
81600
|
isUsingPushPull?: boolean | undefined;
|
|
81601
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81602
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81452
81603
|
}>>>;
|
|
81453
81604
|
mfn: z.ZodOptional<z.ZodString>;
|
|
81454
81605
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -81538,6 +81689,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81538
81689
|
isUsingOpenDrain?: boolean | undefined;
|
|
81539
81690
|
canUsePushPull?: boolean | undefined;
|
|
81540
81691
|
isUsingPushPull?: boolean | undefined;
|
|
81692
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81693
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81541
81694
|
}> | undefined;
|
|
81542
81695
|
cadModel?: string | {
|
|
81543
81696
|
stlUrl: string;
|
|
@@ -82061,6 +82214,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
82061
82214
|
isUsingOpenDrain?: boolean | undefined;
|
|
82062
82215
|
canUsePushPull?: boolean | undefined;
|
|
82063
82216
|
isUsingPushPull?: boolean | undefined;
|
|
82217
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
82218
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
82064
82219
|
}> | undefined;
|
|
82065
82220
|
cadModel?: string | {
|
|
82066
82221
|
stlUrl: string;
|
|
@@ -87073,6 +87228,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87073
87228
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
87074
87229
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87075
87230
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87231
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
87232
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
87076
87233
|
}, "strip", z.ZodTypeAny, {
|
|
87077
87234
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87078
87235
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87097,6 +87254,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87097
87254
|
isUsingOpenDrain?: boolean | undefined;
|
|
87098
87255
|
canUsePushPull?: boolean | undefined;
|
|
87099
87256
|
isUsingPushPull?: boolean | undefined;
|
|
87257
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87258
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87100
87259
|
}, {
|
|
87101
87260
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87102
87261
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87121,6 +87280,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87121
87280
|
isUsingOpenDrain?: boolean | undefined;
|
|
87122
87281
|
canUsePushPull?: boolean | undefined;
|
|
87123
87282
|
isUsingPushPull?: boolean | undefined;
|
|
87283
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87284
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87124
87285
|
}>>>;
|
|
87125
87286
|
mfn: z.ZodOptional<z.ZodString>;
|
|
87126
87287
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -87220,6 +87381,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87220
87381
|
isUsingOpenDrain?: boolean | undefined;
|
|
87221
87382
|
canUsePushPull?: boolean | undefined;
|
|
87222
87383
|
isUsingPushPull?: boolean | undefined;
|
|
87384
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87385
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87223
87386
|
}> | undefined;
|
|
87224
87387
|
cadModel?: string | {
|
|
87225
87388
|
stlUrl: string;
|
|
@@ -87750,6 +87913,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87750
87913
|
isUsingOpenDrain?: boolean | undefined;
|
|
87751
87914
|
canUsePushPull?: boolean | undefined;
|
|
87752
87915
|
isUsingPushPull?: boolean | undefined;
|
|
87916
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87917
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87753
87918
|
}> | undefined;
|
|
87754
87919
|
cadModel?: string | {
|
|
87755
87920
|
stlUrl: string;
|
|
@@ -91309,6 +91474,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91309
91474
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
91310
91475
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91311
91476
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91477
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
91478
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
91312
91479
|
}, "strip", z.ZodTypeAny, {
|
|
91313
91480
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91314
91481
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91333,6 +91500,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91333
91500
|
isUsingOpenDrain?: boolean | undefined;
|
|
91334
91501
|
canUsePushPull?: boolean | undefined;
|
|
91335
91502
|
isUsingPushPull?: boolean | undefined;
|
|
91503
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91504
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91336
91505
|
}, {
|
|
91337
91506
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91338
91507
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91357,6 +91526,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91357
91526
|
isUsingOpenDrain?: boolean | undefined;
|
|
91358
91527
|
canUsePushPull?: boolean | undefined;
|
|
91359
91528
|
isUsingPushPull?: boolean | undefined;
|
|
91529
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91530
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91360
91531
|
}>>>;
|
|
91361
91532
|
mfn: z.ZodOptional<z.ZodString>;
|
|
91362
91533
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -91443,6 +91614,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91443
91614
|
isUsingOpenDrain?: boolean | undefined;
|
|
91444
91615
|
canUsePushPull?: boolean | undefined;
|
|
91445
91616
|
isUsingPushPull?: boolean | undefined;
|
|
91617
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91618
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91446
91619
|
}> | undefined;
|
|
91447
91620
|
cadModel?: string | {
|
|
91448
91621
|
stlUrl: string;
|
|
@@ -91965,6 +92138,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91965
92138
|
isUsingOpenDrain?: boolean | undefined;
|
|
91966
92139
|
canUsePushPull?: boolean | undefined;
|
|
91967
92140
|
isUsingPushPull?: boolean | undefined;
|
|
92141
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
92142
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91968
92143
|
}> | undefined;
|
|
91969
92144
|
cadModel?: string | {
|
|
91970
92145
|
stlUrl: string;
|
|
@@ -100026,6 +100201,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100026
100201
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
100027
100202
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100028
100203
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100204
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
100205
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
100029
100206
|
}, "strip", z.ZodTypeAny, {
|
|
100030
100207
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100031
100208
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100050,6 +100227,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100050
100227
|
isUsingOpenDrain?: boolean | undefined;
|
|
100051
100228
|
canUsePushPull?: boolean | undefined;
|
|
100052
100229
|
isUsingPushPull?: boolean | undefined;
|
|
100230
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100231
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100053
100232
|
}, {
|
|
100054
100233
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100055
100234
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100074,6 +100253,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100074
100253
|
isUsingOpenDrain?: boolean | undefined;
|
|
100075
100254
|
canUsePushPull?: boolean | undefined;
|
|
100076
100255
|
isUsingPushPull?: boolean | undefined;
|
|
100256
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100257
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100077
100258
|
}>>>;
|
|
100078
100259
|
mfn: z.ZodOptional<z.ZodString>;
|
|
100079
100260
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -100162,6 +100343,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100162
100343
|
isUsingOpenDrain?: boolean | undefined;
|
|
100163
100344
|
canUsePushPull?: boolean | undefined;
|
|
100164
100345
|
isUsingPushPull?: boolean | undefined;
|
|
100346
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100347
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100165
100348
|
}> | undefined;
|
|
100166
100349
|
cadModel?: string | {
|
|
100167
100350
|
stlUrl: string;
|
|
@@ -100686,6 +100869,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100686
100869
|
isUsingOpenDrain?: boolean | undefined;
|
|
100687
100870
|
canUsePushPull?: boolean | undefined;
|
|
100688
100871
|
isUsingPushPull?: boolean | undefined;
|
|
100872
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100873
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100689
100874
|
}> | undefined;
|
|
100690
100875
|
cadModel?: string | {
|
|
100691
100876
|
stlUrl: string;
|
|
@@ -105889,6 +106074,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105889
106074
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
105890
106075
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
105891
106076
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106077
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
106078
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
105892
106079
|
}, "strip", z.ZodTypeAny, {
|
|
105893
106080
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105894
106081
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -105913,6 +106100,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105913
106100
|
isUsingOpenDrain?: boolean | undefined;
|
|
105914
106101
|
canUsePushPull?: boolean | undefined;
|
|
105915
106102
|
isUsingPushPull?: boolean | undefined;
|
|
106103
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106104
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
105916
106105
|
}, {
|
|
105917
106106
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105918
106107
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -105937,6 +106126,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105937
106126
|
isUsingOpenDrain?: boolean | undefined;
|
|
105938
106127
|
canUsePushPull?: boolean | undefined;
|
|
105939
106128
|
isUsingPushPull?: boolean | undefined;
|
|
106129
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106130
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
105940
106131
|
}>>>;
|
|
105941
106132
|
mfn: z.ZodOptional<z.ZodString>;
|
|
105942
106133
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -106192,6 +106383,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106192
106383
|
isUsingOpenDrain?: boolean | undefined;
|
|
106193
106384
|
canUsePushPull?: boolean | undefined;
|
|
106194
106385
|
isUsingPushPull?: boolean | undefined;
|
|
106386
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106387
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106195
106388
|
}> | undefined;
|
|
106196
106389
|
cadModel?: string | {
|
|
106197
106390
|
stlUrl: string;
|
|
@@ -106764,6 +106957,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106764
106957
|
isUsingOpenDrain?: boolean | undefined;
|
|
106765
106958
|
canUsePushPull?: boolean | undefined;
|
|
106766
106959
|
isUsingPushPull?: boolean | undefined;
|
|
106960
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106961
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106767
106962
|
}> | undefined;
|
|
106768
106963
|
cadModel?: string | {
|
|
106769
106964
|
stlUrl: string;
|
|
@@ -110401,6 +110596,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110401
110596
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
110402
110597
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110403
110598
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110599
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
110600
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
110404
110601
|
}, "strip", z.ZodTypeAny, {
|
|
110405
110602
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110406
110603
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110425,6 +110622,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110425
110622
|
isUsingOpenDrain?: boolean | undefined;
|
|
110426
110623
|
canUsePushPull?: boolean | undefined;
|
|
110427
110624
|
isUsingPushPull?: boolean | undefined;
|
|
110625
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110626
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110428
110627
|
}, {
|
|
110429
110628
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110430
110629
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110449,6 +110648,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110449
110648
|
isUsingOpenDrain?: boolean | undefined;
|
|
110450
110649
|
canUsePushPull?: boolean | undefined;
|
|
110451
110650
|
isUsingPushPull?: boolean | undefined;
|
|
110651
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110652
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110452
110653
|
}>>>;
|
|
110453
110654
|
mfn: z.ZodOptional<z.ZodString>;
|
|
110454
110655
|
} & {
|
|
@@ -110829,6 +111030,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110829
111030
|
isUsingOpenDrain?: boolean | undefined;
|
|
110830
111031
|
canUsePushPull?: boolean | undefined;
|
|
110831
111032
|
isUsingPushPull?: boolean | undefined;
|
|
111033
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111034
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110832
111035
|
}> | undefined;
|
|
110833
111036
|
cadModel?: string | {
|
|
110834
111037
|
stlUrl: string;
|
|
@@ -111425,6 +111628,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111425
111628
|
isUsingOpenDrain?: boolean | undefined;
|
|
111426
111629
|
canUsePushPull?: boolean | undefined;
|
|
111427
111630
|
isUsingPushPull?: boolean | undefined;
|
|
111631
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111632
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111428
111633
|
}> | undefined;
|
|
111429
111634
|
cadModel?: string | {
|
|
111430
111635
|
stlUrl: string;
|
|
@@ -116421,6 +116626,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116421
116626
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
116422
116627
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116423
116628
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116629
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
116630
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
116424
116631
|
}, "strip", z.ZodTypeAny, {
|
|
116425
116632
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116426
116633
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116445,6 +116652,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116445
116652
|
isUsingOpenDrain?: boolean | undefined;
|
|
116446
116653
|
canUsePushPull?: boolean | undefined;
|
|
116447
116654
|
isUsingPushPull?: boolean | undefined;
|
|
116655
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116656
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116448
116657
|
}, {
|
|
116449
116658
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116450
116659
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116469,6 +116678,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116469
116678
|
isUsingOpenDrain?: boolean | undefined;
|
|
116470
116679
|
canUsePushPull?: boolean | undefined;
|
|
116471
116680
|
isUsingPushPull?: boolean | undefined;
|
|
116681
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116682
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116472
116683
|
}>>>;
|
|
116473
116684
|
mfn: z.ZodOptional<z.ZodString>;
|
|
116474
116685
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -116556,6 +116767,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116556
116767
|
isUsingOpenDrain?: boolean | undefined;
|
|
116557
116768
|
canUsePushPull?: boolean | undefined;
|
|
116558
116769
|
isUsingPushPull?: boolean | undefined;
|
|
116770
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116771
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116559
116772
|
}> | undefined;
|
|
116560
116773
|
cadModel?: string | {
|
|
116561
116774
|
stlUrl: string;
|
|
@@ -117078,6 +117291,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117078
117291
|
isUsingOpenDrain?: boolean | undefined;
|
|
117079
117292
|
canUsePushPull?: boolean | undefined;
|
|
117080
117293
|
isUsingPushPull?: boolean | undefined;
|
|
117294
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
117295
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117081
117296
|
}> | undefined;
|
|
117082
117297
|
cadModel?: string | {
|
|
117083
117298
|
stlUrl: string;
|
|
@@ -120601,6 +120816,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120601
120816
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
120602
120817
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120603
120818
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120819
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
120820
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
120604
120821
|
}, "strip", z.ZodTypeAny, {
|
|
120605
120822
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120606
120823
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120625,6 +120842,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120625
120842
|
isUsingOpenDrain?: boolean | undefined;
|
|
120626
120843
|
canUsePushPull?: boolean | undefined;
|
|
120627
120844
|
isUsingPushPull?: boolean | undefined;
|
|
120845
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120846
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120628
120847
|
}, {
|
|
120629
120848
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120630
120849
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120649,6 +120868,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120649
120868
|
isUsingOpenDrain?: boolean | undefined;
|
|
120650
120869
|
canUsePushPull?: boolean | undefined;
|
|
120651
120870
|
isUsingPushPull?: boolean | undefined;
|
|
120871
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120872
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120652
120873
|
}>>>;
|
|
120653
120874
|
mfn: z.ZodOptional<z.ZodString>;
|
|
120654
120875
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -120737,6 +120958,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120737
120958
|
isUsingOpenDrain?: boolean | undefined;
|
|
120738
120959
|
canUsePushPull?: boolean | undefined;
|
|
120739
120960
|
isUsingPushPull?: boolean | undefined;
|
|
120961
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120962
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120740
120963
|
}> | undefined;
|
|
120741
120964
|
cadModel?: string | {
|
|
120742
120965
|
stlUrl: string;
|
|
@@ -121259,6 +121482,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121259
121482
|
isUsingOpenDrain?: boolean | undefined;
|
|
121260
121483
|
canUsePushPull?: boolean | undefined;
|
|
121261
121484
|
isUsingPushPull?: boolean | undefined;
|
|
121485
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121486
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121262
121487
|
}> | undefined;
|
|
121263
121488
|
cadModel?: string | {
|
|
121264
121489
|
stlUrl: string;
|
|
@@ -124788,6 +125013,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124788
125013
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
124789
125014
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
124790
125015
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125016
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
125017
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
124791
125018
|
}, "strip", z.ZodTypeAny, {
|
|
124792
125019
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124793
125020
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -124812,6 +125039,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124812
125039
|
isUsingOpenDrain?: boolean | undefined;
|
|
124813
125040
|
canUsePushPull?: boolean | undefined;
|
|
124814
125041
|
isUsingPushPull?: boolean | undefined;
|
|
125042
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125043
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124815
125044
|
}, {
|
|
124816
125045
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124817
125046
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -124836,6 +125065,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124836
125065
|
isUsingOpenDrain?: boolean | undefined;
|
|
124837
125066
|
canUsePushPull?: boolean | undefined;
|
|
124838
125067
|
isUsingPushPull?: boolean | undefined;
|
|
125068
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125069
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124839
125070
|
}>>>;
|
|
124840
125071
|
mfn: z.ZodOptional<z.ZodString>;
|
|
124841
125072
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -124921,6 +125152,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124921
125152
|
isUsingOpenDrain?: boolean | undefined;
|
|
124922
125153
|
canUsePushPull?: boolean | undefined;
|
|
124923
125154
|
isUsingPushPull?: boolean | undefined;
|
|
125155
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125156
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124924
125157
|
}> | undefined;
|
|
124925
125158
|
cadModel?: string | {
|
|
124926
125159
|
stlUrl: string;
|
|
@@ -125442,6 +125675,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
125442
125675
|
isUsingOpenDrain?: boolean | undefined;
|
|
125443
125676
|
canUsePushPull?: boolean | undefined;
|
|
125444
125677
|
isUsingPushPull?: boolean | undefined;
|
|
125678
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125679
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125445
125680
|
}> | undefined;
|
|
125446
125681
|
cadModel?: string | {
|
|
125447
125682
|
stlUrl: string;
|
|
@@ -128972,6 +129207,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128972
129207
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
128973
129208
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
128974
129209
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129210
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
129211
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
128975
129212
|
}, "strip", z.ZodTypeAny, {
|
|
128976
129213
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128977
129214
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -128996,6 +129233,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128996
129233
|
isUsingOpenDrain?: boolean | undefined;
|
|
128997
129234
|
canUsePushPull?: boolean | undefined;
|
|
128998
129235
|
isUsingPushPull?: boolean | undefined;
|
|
129236
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129237
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
128999
129238
|
}, {
|
|
129000
129239
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129001
129240
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -129020,6 +129259,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129020
129259
|
isUsingOpenDrain?: boolean | undefined;
|
|
129021
129260
|
canUsePushPull?: boolean | undefined;
|
|
129022
129261
|
isUsingPushPull?: boolean | undefined;
|
|
129262
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129263
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129023
129264
|
}>>>;
|
|
129024
129265
|
mfn: z.ZodOptional<z.ZodString>;
|
|
129025
129266
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -129109,6 +129350,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129109
129350
|
isUsingOpenDrain?: boolean | undefined;
|
|
129110
129351
|
canUsePushPull?: boolean | undefined;
|
|
129111
129352
|
isUsingPushPull?: boolean | undefined;
|
|
129353
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129354
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129112
129355
|
}> | undefined;
|
|
129113
129356
|
cadModel?: string | {
|
|
129114
129357
|
stlUrl: string;
|
|
@@ -129633,6 +129876,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129633
129876
|
isUsingOpenDrain?: boolean | undefined;
|
|
129634
129877
|
canUsePushPull?: boolean | undefined;
|
|
129635
129878
|
isUsingPushPull?: boolean | undefined;
|
|
129879
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129880
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129636
129881
|
}> | undefined;
|
|
129637
129882
|
cadModel?: string | {
|
|
129638
129883
|
stlUrl: string;
|
|
@@ -133152,6 +133397,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133152
133397
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
133153
133398
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133154
133399
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133400
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
133401
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
133155
133402
|
}, "strip", z.ZodTypeAny, {
|
|
133156
133403
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133157
133404
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133176,6 +133423,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133176
133423
|
isUsingOpenDrain?: boolean | undefined;
|
|
133177
133424
|
canUsePushPull?: boolean | undefined;
|
|
133178
133425
|
isUsingPushPull?: boolean | undefined;
|
|
133426
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133427
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133179
133428
|
}, {
|
|
133180
133429
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133181
133430
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133200,6 +133449,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133200
133449
|
isUsingOpenDrain?: boolean | undefined;
|
|
133201
133450
|
canUsePushPull?: boolean | undefined;
|
|
133202
133451
|
isUsingPushPull?: boolean | undefined;
|
|
133452
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133453
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133203
133454
|
}>>>;
|
|
133204
133455
|
mfn: z.ZodOptional<z.ZodString>;
|
|
133205
133456
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -133294,6 +133545,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133294
133545
|
isUsingOpenDrain?: boolean | undefined;
|
|
133295
133546
|
canUsePushPull?: boolean | undefined;
|
|
133296
133547
|
isUsingPushPull?: boolean | undefined;
|
|
133548
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133549
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133297
133550
|
}> | undefined;
|
|
133298
133551
|
cadModel?: string | {
|
|
133299
133552
|
stlUrl: string;
|
|
@@ -133822,6 +134075,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133822
134075
|
isUsingOpenDrain?: boolean | undefined;
|
|
133823
134076
|
canUsePushPull?: boolean | undefined;
|
|
133824
134077
|
isUsingPushPull?: boolean | undefined;
|
|
134078
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134079
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133825
134080
|
}> | undefined;
|
|
133826
134081
|
cadModel?: string | {
|
|
133827
134082
|
stlUrl: string;
|
|
@@ -134350,6 +134605,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134350
134605
|
isUsingOpenDrain?: boolean | undefined;
|
|
134351
134606
|
canUsePushPull?: boolean | undefined;
|
|
134352
134607
|
isUsingPushPull?: boolean | undefined;
|
|
134608
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134609
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134353
134610
|
}> | undefined;
|
|
134354
134611
|
cadModel?: string | {
|
|
134355
134612
|
stlUrl: string;
|
|
@@ -134878,6 +135135,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134878
135135
|
isUsingOpenDrain?: boolean | undefined;
|
|
134879
135136
|
canUsePushPull?: boolean | undefined;
|
|
134880
135137
|
isUsingPushPull?: boolean | undefined;
|
|
135138
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135139
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134881
135140
|
}> | undefined;
|
|
134882
135141
|
cadModel?: string | {
|
|
134883
135142
|
stlUrl: string;
|
|
@@ -135412,6 +135671,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135412
135671
|
isUsingOpenDrain?: boolean | undefined;
|
|
135413
135672
|
canUsePushPull?: boolean | undefined;
|
|
135414
135673
|
isUsingPushPull?: boolean | undefined;
|
|
135674
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135675
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135415
135676
|
}> | undefined;
|
|
135416
135677
|
cadModel?: string | {
|
|
135417
135678
|
stlUrl: string;
|
|
@@ -135934,6 +136195,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135934
136195
|
isUsingOpenDrain?: boolean | undefined;
|
|
135935
136196
|
canUsePushPull?: boolean | undefined;
|
|
135936
136197
|
isUsingPushPull?: boolean | undefined;
|
|
136198
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
136199
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135937
136200
|
}> | undefined;
|
|
135938
136201
|
cadModel?: string | {
|
|
135939
136202
|
stlUrl: string;
|
|
@@ -139481,6 +139744,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139481
139744
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
139482
139745
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139483
139746
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139747
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
139748
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
139484
139749
|
}, "strip", z.ZodTypeAny, {
|
|
139485
139750
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139486
139751
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139505,6 +139770,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139505
139770
|
isUsingOpenDrain?: boolean | undefined;
|
|
139506
139771
|
canUsePushPull?: boolean | undefined;
|
|
139507
139772
|
isUsingPushPull?: boolean | undefined;
|
|
139773
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139774
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139508
139775
|
}, {
|
|
139509
139776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139510
139777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139529,6 +139796,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139529
139796
|
isUsingOpenDrain?: boolean | undefined;
|
|
139530
139797
|
canUsePushPull?: boolean | undefined;
|
|
139531
139798
|
isUsingPushPull?: boolean | undefined;
|
|
139799
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139800
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139532
139801
|
}>>>;
|
|
139533
139802
|
mfn: z.ZodOptional<z.ZodString>;
|
|
139534
139803
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -139619,6 +139888,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139619
139888
|
isUsingOpenDrain?: boolean | undefined;
|
|
139620
139889
|
canUsePushPull?: boolean | undefined;
|
|
139621
139890
|
isUsingPushPull?: boolean | undefined;
|
|
139891
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139892
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139622
139893
|
}> | undefined;
|
|
139623
139894
|
cadModel?: string | {
|
|
139624
139895
|
stlUrl: string;
|
|
@@ -140145,6 +140416,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
140145
140416
|
isUsingOpenDrain?: boolean | undefined;
|
|
140146
140417
|
canUsePushPull?: boolean | undefined;
|
|
140147
140418
|
isUsingPushPull?: boolean | undefined;
|
|
140419
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140420
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140148
140421
|
}> | undefined;
|
|
140149
140422
|
cadModel?: string | {
|
|
140150
140423
|
stlUrl: string;
|
|
@@ -143683,6 +143956,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143683
143956
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
143684
143957
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143685
143958
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143959
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
143960
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
143686
143961
|
}, "strip", z.ZodTypeAny, {
|
|
143687
143962
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143688
143963
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143707,6 +143982,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143707
143982
|
isUsingOpenDrain?: boolean | undefined;
|
|
143708
143983
|
canUsePushPull?: boolean | undefined;
|
|
143709
143984
|
isUsingPushPull?: boolean | undefined;
|
|
143985
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
143986
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143710
143987
|
}, {
|
|
143711
143988
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143712
143989
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143731,6 +144008,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143731
144008
|
isUsingOpenDrain?: boolean | undefined;
|
|
143732
144009
|
canUsePushPull?: boolean | undefined;
|
|
143733
144010
|
isUsingPushPull?: boolean | undefined;
|
|
144011
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144012
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143734
144013
|
}>>>;
|
|
143735
144014
|
mfn: z.ZodOptional<z.ZodString>;
|
|
143736
144015
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -143829,6 +144108,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143829
144108
|
isUsingOpenDrain?: boolean | undefined;
|
|
143830
144109
|
canUsePushPull?: boolean | undefined;
|
|
143831
144110
|
isUsingPushPull?: boolean | undefined;
|
|
144111
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144112
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143832
144113
|
}> | undefined;
|
|
143833
144114
|
cadModel?: string | {
|
|
143834
144115
|
stlUrl: string;
|
|
@@ -144360,6 +144641,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144360
144641
|
isUsingOpenDrain?: boolean | undefined;
|
|
144361
144642
|
canUsePushPull?: boolean | undefined;
|
|
144362
144643
|
isUsingPushPull?: boolean | undefined;
|
|
144644
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144645
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144363
144646
|
}> | undefined;
|
|
144364
144647
|
cadModel?: string | {
|
|
144365
144648
|
stlUrl: string;
|
|
@@ -144892,6 +145175,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144892
145175
|
isUsingOpenDrain?: boolean | undefined;
|
|
144893
145176
|
canUsePushPull?: boolean | undefined;
|
|
144894
145177
|
isUsingPushPull?: boolean | undefined;
|
|
145178
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
145179
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144895
145180
|
}> | undefined;
|
|
144896
145181
|
cadModel?: string | {
|
|
144897
145182
|
stlUrl: string;
|
|
@@ -149442,6 +149727,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149442
149727
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
149443
149728
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149444
149729
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149730
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
149731
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
149445
149732
|
}, "strip", z.ZodTypeAny, {
|
|
149446
149733
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149447
149734
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149466,6 +149753,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149466
149753
|
isUsingOpenDrain?: boolean | undefined;
|
|
149467
149754
|
canUsePushPull?: boolean | undefined;
|
|
149468
149755
|
isUsingPushPull?: boolean | undefined;
|
|
149756
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149757
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149469
149758
|
}, {
|
|
149470
149759
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149471
149760
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149490,6 +149779,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149490
149779
|
isUsingOpenDrain?: boolean | undefined;
|
|
149491
149780
|
canUsePushPull?: boolean | undefined;
|
|
149492
149781
|
isUsingPushPull?: boolean | undefined;
|
|
149782
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149783
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149493
149784
|
}>>>;
|
|
149494
149785
|
mfn: z.ZodOptional<z.ZodString>;
|
|
149495
149786
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -149588,6 +149879,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149588
149879
|
isUsingOpenDrain?: boolean | undefined;
|
|
149589
149880
|
canUsePushPull?: boolean | undefined;
|
|
149590
149881
|
isUsingPushPull?: boolean | undefined;
|
|
149882
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149883
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149591
149884
|
}> | undefined;
|
|
149592
149885
|
cadModel?: string | {
|
|
149593
149886
|
stlUrl: string;
|
|
@@ -150116,6 +150409,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150116
150409
|
isUsingOpenDrain?: boolean | undefined;
|
|
150117
150410
|
canUsePushPull?: boolean | undefined;
|
|
150118
150411
|
isUsingPushPull?: boolean | undefined;
|
|
150412
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150413
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150119
150414
|
}> | undefined;
|
|
150120
150415
|
cadModel?: string | {
|
|
150121
150416
|
stlUrl: string;
|
|
@@ -150644,6 +150939,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150644
150939
|
isUsingOpenDrain?: boolean | undefined;
|
|
150645
150940
|
canUsePushPull?: boolean | undefined;
|
|
150646
150941
|
isUsingPushPull?: boolean | undefined;
|
|
150942
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150943
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150647
150944
|
}> | undefined;
|
|
150648
150945
|
cadModel?: string | {
|
|
150649
150946
|
stlUrl: string;
|
|
@@ -151172,6 +151469,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151172
151469
|
isUsingOpenDrain?: boolean | undefined;
|
|
151173
151470
|
canUsePushPull?: boolean | undefined;
|
|
151174
151471
|
isUsingPushPull?: boolean | undefined;
|
|
151472
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
151473
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151175
151474
|
}> | undefined;
|
|
151176
151475
|
cadModel?: string | {
|
|
151177
151476
|
stlUrl: string;
|
|
@@ -155946,6 +156245,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155946
156245
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
155947
156246
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
155948
156247
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156248
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
156249
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
155949
156250
|
}, "strip", z.ZodTypeAny, {
|
|
155950
156251
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155951
156252
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -155970,6 +156271,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155970
156271
|
isUsingOpenDrain?: boolean | undefined;
|
|
155971
156272
|
canUsePushPull?: boolean | undefined;
|
|
155972
156273
|
isUsingPushPull?: boolean | undefined;
|
|
156274
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156275
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155973
156276
|
}, {
|
|
155974
156277
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155975
156278
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -155994,6 +156297,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155994
156297
|
isUsingOpenDrain?: boolean | undefined;
|
|
155995
156298
|
canUsePushPull?: boolean | undefined;
|
|
155996
156299
|
isUsingPushPull?: boolean | undefined;
|
|
156300
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156301
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155997
156302
|
}>>>;
|
|
155998
156303
|
mfn: z.ZodOptional<z.ZodString>;
|
|
155999
156304
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -156080,6 +156385,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156080
156385
|
isUsingOpenDrain?: boolean | undefined;
|
|
156081
156386
|
canUsePushPull?: boolean | undefined;
|
|
156082
156387
|
isUsingPushPull?: boolean | undefined;
|
|
156388
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156389
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156083
156390
|
}> | undefined;
|
|
156084
156391
|
cadModel?: string | {
|
|
156085
156392
|
stlUrl: string;
|
|
@@ -156601,6 +156908,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156601
156908
|
isUsingOpenDrain?: boolean | undefined;
|
|
156602
156909
|
canUsePushPull?: boolean | undefined;
|
|
156603
156910
|
isUsingPushPull?: boolean | undefined;
|
|
156911
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156912
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156604
156913
|
}> | undefined;
|
|
156605
156914
|
cadModel?: string | {
|
|
156606
156915
|
stlUrl: string;
|
|
@@ -160130,6 +160439,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160130
160439
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
160131
160440
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160132
160441
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160442
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
160443
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
160133
160444
|
}, "strip", z.ZodTypeAny, {
|
|
160134
160445
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160135
160446
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160154,6 +160465,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160154
160465
|
isUsingOpenDrain?: boolean | undefined;
|
|
160155
160466
|
canUsePushPull?: boolean | undefined;
|
|
160156
160467
|
isUsingPushPull?: boolean | undefined;
|
|
160468
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160469
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160157
160470
|
}, {
|
|
160158
160471
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160159
160472
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160178,6 +160491,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160178
160491
|
isUsingOpenDrain?: boolean | undefined;
|
|
160179
160492
|
canUsePushPull?: boolean | undefined;
|
|
160180
160493
|
isUsingPushPull?: boolean | undefined;
|
|
160494
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160495
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160181
160496
|
}>>>;
|
|
160182
160497
|
mfn: z.ZodOptional<z.ZodString>;
|
|
160183
160498
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -160269,6 +160584,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160269
160584
|
isUsingOpenDrain?: boolean | undefined;
|
|
160270
160585
|
canUsePushPull?: boolean | undefined;
|
|
160271
160586
|
isUsingPushPull?: boolean | undefined;
|
|
160587
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160588
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160272
160589
|
}> | undefined;
|
|
160273
160590
|
cadModel?: string | {
|
|
160274
160591
|
stlUrl: string;
|
|
@@ -160796,6 +161113,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160796
161113
|
isUsingOpenDrain?: boolean | undefined;
|
|
160797
161114
|
canUsePushPull?: boolean | undefined;
|
|
160798
161115
|
isUsingPushPull?: boolean | undefined;
|
|
161116
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
161117
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160799
161118
|
}> | undefined;
|
|
160800
161119
|
cadModel?: string | {
|
|
160801
161120
|
stlUrl: string;
|
|
@@ -164331,6 +164650,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164331
164650
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
164332
164651
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164333
164652
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164653
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
164654
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
164334
164655
|
}, "strip", z.ZodTypeAny, {
|
|
164335
164656
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164336
164657
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164355,6 +164676,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164355
164676
|
isUsingOpenDrain?: boolean | undefined;
|
|
164356
164677
|
canUsePushPull?: boolean | undefined;
|
|
164357
164678
|
isUsingPushPull?: boolean | undefined;
|
|
164679
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164680
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164358
164681
|
}, {
|
|
164359
164682
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164360
164683
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164379,6 +164702,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164379
164702
|
isUsingOpenDrain?: boolean | undefined;
|
|
164380
164703
|
canUsePushPull?: boolean | undefined;
|
|
164381
164704
|
isUsingPushPull?: boolean | undefined;
|
|
164705
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164706
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164382
164707
|
}>>>;
|
|
164383
164708
|
mfn: z.ZodOptional<z.ZodString>;
|
|
164384
164709
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -164470,6 +164795,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164470
164795
|
isUsingOpenDrain?: boolean | undefined;
|
|
164471
164796
|
canUsePushPull?: boolean | undefined;
|
|
164472
164797
|
isUsingPushPull?: boolean | undefined;
|
|
164798
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164799
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164473
164800
|
}> | undefined;
|
|
164474
164801
|
cadModel?: string | {
|
|
164475
164802
|
stlUrl: string;
|
|
@@ -164997,6 +165324,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164997
165324
|
isUsingOpenDrain?: boolean | undefined;
|
|
164998
165325
|
canUsePushPull?: boolean | undefined;
|
|
164999
165326
|
isUsingPushPull?: boolean | undefined;
|
|
165327
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
165328
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165000
165329
|
}> | undefined;
|
|
165001
165330
|
cadModel?: string | {
|
|
165002
165331
|
stlUrl: string;
|
|
@@ -168527,6 +168856,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168527
168856
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
168528
168857
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168529
168858
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168859
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
168860
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
168530
168861
|
}, "strip", z.ZodTypeAny, {
|
|
168531
168862
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168532
168863
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168551,6 +168882,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168551
168882
|
isUsingOpenDrain?: boolean | undefined;
|
|
168552
168883
|
canUsePushPull?: boolean | undefined;
|
|
168553
168884
|
isUsingPushPull?: boolean | undefined;
|
|
168885
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168886
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168554
168887
|
}, {
|
|
168555
168888
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168556
168889
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168575,6 +168908,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168575
168908
|
isUsingOpenDrain?: boolean | undefined;
|
|
168576
168909
|
canUsePushPull?: boolean | undefined;
|
|
168577
168910
|
isUsingPushPull?: boolean | undefined;
|
|
168911
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168912
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168578
168913
|
}>>>;
|
|
168579
168914
|
mfn: z.ZodOptional<z.ZodString>;
|
|
168580
168915
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -168664,6 +168999,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168664
168999
|
isUsingOpenDrain?: boolean | undefined;
|
|
168665
169000
|
canUsePushPull?: boolean | undefined;
|
|
168666
169001
|
isUsingPushPull?: boolean | undefined;
|
|
169002
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169003
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168667
169004
|
}> | undefined;
|
|
168668
169005
|
cadModel?: string | {
|
|
168669
169006
|
stlUrl: string;
|
|
@@ -169187,6 +169524,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169187
169524
|
isUsingOpenDrain?: boolean | undefined;
|
|
169188
169525
|
canUsePushPull?: boolean | undefined;
|
|
169189
169526
|
isUsingPushPull?: boolean | undefined;
|
|
169527
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169528
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169190
169529
|
}> | undefined;
|
|
169191
169530
|
cadModel?: string | {
|
|
169192
169531
|
stlUrl: string;
|