@tscircuit/props 0.0.482 → 0.0.483
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +332 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +6 -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;
|
|
@@ -31237,6 +31265,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31237
31265
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
31238
31266
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31239
31267
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31268
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
31269
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31240
31270
|
}, "strip", z.ZodTypeAny, {
|
|
31241
31271
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31242
31272
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31261,6 +31291,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31261
31291
|
isUsingOpenDrain?: boolean | undefined;
|
|
31262
31292
|
canUsePushPull?: boolean | undefined;
|
|
31263
31293
|
isUsingPushPull?: boolean | undefined;
|
|
31294
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31295
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31264
31296
|
}, {
|
|
31265
31297
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31266
31298
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31285,6 +31317,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31285
31317
|
isUsingOpenDrain?: boolean | undefined;
|
|
31286
31318
|
canUsePushPull?: boolean | undefined;
|
|
31287
31319
|
isUsingPushPull?: boolean | undefined;
|
|
31320
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31321
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31288
31322
|
}>>>;
|
|
31289
31323
|
mfn: z.ZodOptional<z.ZodString>;
|
|
31290
31324
|
} & {
|
|
@@ -31665,6 +31699,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31665
31699
|
isUsingOpenDrain?: boolean | undefined;
|
|
31666
31700
|
canUsePushPull?: boolean | undefined;
|
|
31667
31701
|
isUsingPushPull?: boolean | undefined;
|
|
31702
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31703
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31668
31704
|
}> | undefined;
|
|
31669
31705
|
cadModel?: string | {
|
|
31670
31706
|
stlUrl: string;
|
|
@@ -32261,6 +32297,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
32261
32297
|
isUsingOpenDrain?: boolean | undefined;
|
|
32262
32298
|
canUsePushPull?: boolean | undefined;
|
|
32263
32299
|
isUsingPushPull?: boolean | undefined;
|
|
32300
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
32301
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
32264
32302
|
}> | undefined;
|
|
32265
32303
|
cadModel?: string | {
|
|
32266
32304
|
stlUrl: string;
|
|
@@ -35853,6 +35891,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35853
35891
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
35854
35892
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35855
35893
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35894
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
35895
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35856
35896
|
}, "strip", z.ZodTypeAny, {
|
|
35857
35897
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35858
35898
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35877,6 +35917,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35877
35917
|
isUsingOpenDrain?: boolean | undefined;
|
|
35878
35918
|
canUsePushPull?: boolean | undefined;
|
|
35879
35919
|
isUsingPushPull?: boolean | undefined;
|
|
35920
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35921
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35880
35922
|
}, {
|
|
35881
35923
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35882
35924
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35901,6 +35943,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35901
35943
|
isUsingOpenDrain?: boolean | undefined;
|
|
35902
35944
|
canUsePushPull?: boolean | undefined;
|
|
35903
35945
|
isUsingPushPull?: boolean | undefined;
|
|
35946
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35947
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35904
35948
|
}>>>;
|
|
35905
35949
|
mfn: z.ZodOptional<z.ZodString>;
|
|
35906
35950
|
} & {
|
|
@@ -36281,6 +36325,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
36281
36325
|
isUsingOpenDrain?: boolean | undefined;
|
|
36282
36326
|
canUsePushPull?: boolean | undefined;
|
|
36283
36327
|
isUsingPushPull?: boolean | undefined;
|
|
36328
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36329
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36284
36330
|
}> | undefined;
|
|
36285
36331
|
cadModel?: string | {
|
|
36286
36332
|
stlUrl: string;
|
|
@@ -36877,6 +36923,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
36877
36923
|
isUsingOpenDrain?: boolean | undefined;
|
|
36878
36924
|
canUsePushPull?: boolean | undefined;
|
|
36879
36925
|
isUsingPushPull?: boolean | undefined;
|
|
36926
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36927
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36880
36928
|
}> | undefined;
|
|
36881
36929
|
cadModel?: string | {
|
|
36882
36930
|
stlUrl: string;
|
|
@@ -40468,6 +40516,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40468
40516
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
40469
40517
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40470
40518
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40519
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
40520
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40471
40521
|
}, "strip", z.ZodTypeAny, {
|
|
40472
40522
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40473
40523
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40492,6 +40542,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40492
40542
|
isUsingOpenDrain?: boolean | undefined;
|
|
40493
40543
|
canUsePushPull?: boolean | undefined;
|
|
40494
40544
|
isUsingPushPull?: boolean | undefined;
|
|
40545
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40546
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40495
40547
|
}, {
|
|
40496
40548
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40497
40549
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40516,6 +40568,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40516
40568
|
isUsingOpenDrain?: boolean | undefined;
|
|
40517
40569
|
canUsePushPull?: boolean | undefined;
|
|
40518
40570
|
isUsingPushPull?: boolean | undefined;
|
|
40571
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40572
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40519
40573
|
}>>>;
|
|
40520
40574
|
mfn: z.ZodOptional<z.ZodString>;
|
|
40521
40575
|
} & {
|
|
@@ -40896,6 +40950,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40896
40950
|
isUsingOpenDrain?: boolean | undefined;
|
|
40897
40951
|
canUsePushPull?: boolean | undefined;
|
|
40898
40952
|
isUsingPushPull?: boolean | undefined;
|
|
40953
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40954
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40899
40955
|
}> | undefined;
|
|
40900
40956
|
cadModel?: string | {
|
|
40901
40957
|
stlUrl: string;
|
|
@@ -41492,6 +41548,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41492
41548
|
isUsingOpenDrain?: boolean | undefined;
|
|
41493
41549
|
canUsePushPull?: boolean | undefined;
|
|
41494
41550
|
isUsingPushPull?: boolean | undefined;
|
|
41551
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
41552
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
41495
41553
|
}> | undefined;
|
|
41496
41554
|
cadModel?: string | {
|
|
41497
41555
|
stlUrl: string;
|
|
@@ -45115,6 +45173,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45115
45173
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
45116
45174
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45117
45175
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45176
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
45177
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45118
45178
|
}, "strip", z.ZodTypeAny, {
|
|
45119
45179
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45120
45180
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45139,6 +45199,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45139
45199
|
isUsingOpenDrain?: boolean | undefined;
|
|
45140
45200
|
canUsePushPull?: boolean | undefined;
|
|
45141
45201
|
isUsingPushPull?: boolean | undefined;
|
|
45202
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45203
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45142
45204
|
}, {
|
|
45143
45205
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45144
45206
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45163,6 +45225,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45163
45225
|
isUsingOpenDrain?: boolean | undefined;
|
|
45164
45226
|
canUsePushPull?: boolean | undefined;
|
|
45165
45227
|
isUsingPushPull?: boolean | undefined;
|
|
45228
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45229
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45166
45230
|
}>>>;
|
|
45167
45231
|
mfn: z.ZodOptional<z.ZodString>;
|
|
45168
45232
|
} & {
|
|
@@ -45532,6 +45596,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45532
45596
|
isUsingOpenDrain?: boolean | undefined;
|
|
45533
45597
|
canUsePushPull?: boolean | undefined;
|
|
45534
45598
|
isUsingPushPull?: boolean | undefined;
|
|
45599
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45600
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45535
45601
|
}> | undefined;
|
|
45536
45602
|
cadModel?: string | {
|
|
45537
45603
|
stlUrl: string;
|
|
@@ -46123,6 +46189,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46123
46189
|
isUsingOpenDrain?: boolean | undefined;
|
|
46124
46190
|
canUsePushPull?: boolean | undefined;
|
|
46125
46191
|
isUsingPushPull?: boolean | undefined;
|
|
46192
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
46193
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
46126
46194
|
}> | undefined;
|
|
46127
46195
|
cadModel?: string | {
|
|
46128
46196
|
stlUrl: string;
|
|
@@ -49718,6 +49786,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49718
49786
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
49719
49787
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49720
49788
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49789
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
49790
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49721
49791
|
}, "strip", z.ZodTypeAny, {
|
|
49722
49792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49723
49793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49742,6 +49812,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49742
49812
|
isUsingOpenDrain?: boolean | undefined;
|
|
49743
49813
|
canUsePushPull?: boolean | undefined;
|
|
49744
49814
|
isUsingPushPull?: boolean | undefined;
|
|
49815
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49816
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49745
49817
|
}, {
|
|
49746
49818
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49747
49819
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49766,6 +49838,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49766
49838
|
isUsingOpenDrain?: boolean | undefined;
|
|
49767
49839
|
canUsePushPull?: boolean | undefined;
|
|
49768
49840
|
isUsingPushPull?: boolean | undefined;
|
|
49841
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49842
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49769
49843
|
}>>>;
|
|
49770
49844
|
mfn: z.ZodOptional<z.ZodString>;
|
|
49771
49845
|
} & {
|
|
@@ -50138,6 +50212,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50138
50212
|
isUsingOpenDrain?: boolean | undefined;
|
|
50139
50213
|
canUsePushPull?: boolean | undefined;
|
|
50140
50214
|
isUsingPushPull?: boolean | undefined;
|
|
50215
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50216
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50141
50217
|
}> | undefined;
|
|
50142
50218
|
cadModel?: string | {
|
|
50143
50219
|
stlUrl: string;
|
|
@@ -50731,6 +50807,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50731
50807
|
isUsingOpenDrain?: boolean | undefined;
|
|
50732
50808
|
canUsePushPull?: boolean | undefined;
|
|
50733
50809
|
isUsingPushPull?: boolean | undefined;
|
|
50810
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50811
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50734
50812
|
}> | undefined;
|
|
50735
50813
|
cadModel?: string | {
|
|
50736
50814
|
stlUrl: string;
|
|
@@ -54337,6 +54415,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54337
54415
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
54338
54416
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54339
54417
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54418
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
54419
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54340
54420
|
}, "strip", z.ZodTypeAny, {
|
|
54341
54421
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54342
54422
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54361,6 +54441,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54361
54441
|
isUsingOpenDrain?: boolean | undefined;
|
|
54362
54442
|
canUsePushPull?: boolean | undefined;
|
|
54363
54443
|
isUsingPushPull?: boolean | undefined;
|
|
54444
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54445
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54364
54446
|
}, {
|
|
54365
54447
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54366
54448
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54385,6 +54467,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54385
54467
|
isUsingOpenDrain?: boolean | undefined;
|
|
54386
54468
|
canUsePushPull?: boolean | undefined;
|
|
54387
54469
|
isUsingPushPull?: boolean | undefined;
|
|
54470
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54471
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54388
54472
|
}>>>;
|
|
54389
54473
|
mfn: z.ZodOptional<z.ZodString>;
|
|
54390
54474
|
} & {
|
|
@@ -54628,6 +54712,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54628
54712
|
isUsingOpenDrain?: boolean | undefined;
|
|
54629
54713
|
canUsePushPull?: boolean | undefined;
|
|
54630
54714
|
isUsingPushPull?: boolean | undefined;
|
|
54715
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54716
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54631
54717
|
}> | undefined;
|
|
54632
54718
|
cadModel?: string | {
|
|
54633
54719
|
stlUrl: string;
|
|
@@ -55191,6 +55277,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55191
55277
|
isUsingOpenDrain?: boolean | undefined;
|
|
55192
55278
|
canUsePushPull?: boolean | undefined;
|
|
55193
55279
|
isUsingPushPull?: boolean | undefined;
|
|
55280
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
55281
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
55194
55282
|
}> | undefined;
|
|
55195
55283
|
cadModel?: string | {
|
|
55196
55284
|
stlUrl: string;
|
|
@@ -58759,6 +58847,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58759
58847
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
58760
58848
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58761
58849
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58850
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
58851
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
58762
58852
|
}, "strip", z.ZodTypeAny, {
|
|
58763
58853
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58764
58854
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58783,6 +58873,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58783
58873
|
isUsingOpenDrain?: boolean | undefined;
|
|
58784
58874
|
canUsePushPull?: boolean | undefined;
|
|
58785
58875
|
isUsingPushPull?: boolean | undefined;
|
|
58876
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58877
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58786
58878
|
}, {
|
|
58787
58879
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58788
58880
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58807,6 +58899,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58807
58899
|
isUsingOpenDrain?: boolean | undefined;
|
|
58808
58900
|
canUsePushPull?: boolean | undefined;
|
|
58809
58901
|
isUsingPushPull?: boolean | undefined;
|
|
58902
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58903
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58810
58904
|
}>>>;
|
|
58811
58905
|
mfn: z.ZodOptional<z.ZodString>;
|
|
58812
58906
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -58894,6 +58988,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58894
58988
|
isUsingOpenDrain?: boolean | undefined;
|
|
58895
58989
|
canUsePushPull?: boolean | undefined;
|
|
58896
58990
|
isUsingPushPull?: boolean | undefined;
|
|
58991
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58992
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58897
58993
|
}> | undefined;
|
|
58898
58994
|
cadModel?: string | {
|
|
58899
58995
|
stlUrl: string;
|
|
@@ -59417,6 +59513,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59417
59513
|
isUsingOpenDrain?: boolean | undefined;
|
|
59418
59514
|
canUsePushPull?: boolean | undefined;
|
|
59419
59515
|
isUsingPushPull?: boolean | undefined;
|
|
59516
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59517
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59420
59518
|
}> | undefined;
|
|
59421
59519
|
cadModel?: string | {
|
|
59422
59520
|
stlUrl: string;
|
|
@@ -62963,6 +63061,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62963
63061
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
62964
63062
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
62965
63063
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63064
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
63065
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
62966
63066
|
}, "strip", z.ZodTypeAny, {
|
|
62967
63067
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62968
63068
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -62987,6 +63087,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62987
63087
|
isUsingOpenDrain?: boolean | undefined;
|
|
62988
63088
|
canUsePushPull?: boolean | undefined;
|
|
62989
63089
|
isUsingPushPull?: boolean | undefined;
|
|
63090
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63091
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
62990
63092
|
}, {
|
|
62991
63093
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62992
63094
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -63011,6 +63113,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63011
63113
|
isUsingOpenDrain?: boolean | undefined;
|
|
63012
63114
|
canUsePushPull?: boolean | undefined;
|
|
63013
63115
|
isUsingPushPull?: boolean | undefined;
|
|
63116
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63117
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63014
63118
|
}>>>;
|
|
63015
63119
|
mfn: z.ZodOptional<z.ZodString>;
|
|
63016
63120
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -63101,6 +63205,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63101
63205
|
isUsingOpenDrain?: boolean | undefined;
|
|
63102
63206
|
canUsePushPull?: boolean | undefined;
|
|
63103
63207
|
isUsingPushPull?: boolean | undefined;
|
|
63208
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63209
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63104
63210
|
}> | undefined;
|
|
63105
63211
|
cadModel?: string | {
|
|
63106
63212
|
stlUrl: string;
|
|
@@ -63626,6 +63732,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63626
63732
|
isUsingOpenDrain?: boolean | undefined;
|
|
63627
63733
|
canUsePushPull?: boolean | undefined;
|
|
63628
63734
|
isUsingPushPull?: boolean | undefined;
|
|
63735
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63736
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63629
63737
|
}> | undefined;
|
|
63630
63738
|
cadModel?: string | {
|
|
63631
63739
|
stlUrl: string;
|
|
@@ -68818,6 +68926,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68818
68926
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
68819
68927
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68820
68928
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68929
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
68930
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
68821
68931
|
}, "strip", z.ZodTypeAny, {
|
|
68822
68932
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68823
68933
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68842,6 +68952,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68842
68952
|
isUsingOpenDrain?: boolean | undefined;
|
|
68843
68953
|
canUsePushPull?: boolean | undefined;
|
|
68844
68954
|
isUsingPushPull?: boolean | undefined;
|
|
68955
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68956
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68845
68957
|
}, {
|
|
68846
68958
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68847
68959
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68866,6 +68978,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68866
68978
|
isUsingOpenDrain?: boolean | undefined;
|
|
68867
68979
|
canUsePushPull?: boolean | undefined;
|
|
68868
68980
|
isUsingPushPull?: boolean | undefined;
|
|
68981
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68982
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68869
68983
|
}>>>;
|
|
68870
68984
|
mfn: z.ZodOptional<z.ZodString>;
|
|
68871
68985
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -68960,6 +69074,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68960
69074
|
isUsingOpenDrain?: boolean | undefined;
|
|
68961
69075
|
canUsePushPull?: boolean | undefined;
|
|
68962
69076
|
isUsingPushPull?: boolean | undefined;
|
|
69077
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69078
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68963
69079
|
}> | undefined;
|
|
68964
69080
|
cadModel?: string | {
|
|
68965
69081
|
stlUrl: string;
|
|
@@ -69489,6 +69605,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69489
69605
|
isUsingOpenDrain?: boolean | undefined;
|
|
69490
69606
|
canUsePushPull?: boolean | undefined;
|
|
69491
69607
|
isUsingPushPull?: boolean | undefined;
|
|
69608
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69609
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69492
69610
|
}> | undefined;
|
|
69493
69611
|
cadModel?: string | {
|
|
69494
69612
|
stlUrl: string;
|
|
@@ -73022,6 +73140,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73022
73140
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
73023
73141
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73024
73142
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73143
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
73144
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
73025
73145
|
}, "strip", z.ZodTypeAny, {
|
|
73026
73146
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73027
73147
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73046,6 +73166,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73046
73166
|
isUsingOpenDrain?: boolean | undefined;
|
|
73047
73167
|
canUsePushPull?: boolean | undefined;
|
|
73048
73168
|
isUsingPushPull?: boolean | undefined;
|
|
73169
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73170
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73049
73171
|
}, {
|
|
73050
73172
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73051
73173
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73070,6 +73192,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73070
73192
|
isUsingOpenDrain?: boolean | undefined;
|
|
73071
73193
|
canUsePushPull?: boolean | undefined;
|
|
73072
73194
|
isUsingPushPull?: boolean | undefined;
|
|
73195
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73196
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73073
73197
|
}>>>;
|
|
73074
73198
|
mfn: z.ZodOptional<z.ZodString>;
|
|
73075
73199
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -73158,6 +73282,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73158
73282
|
isUsingOpenDrain?: boolean | undefined;
|
|
73159
73283
|
canUsePushPull?: boolean | undefined;
|
|
73160
73284
|
isUsingPushPull?: boolean | undefined;
|
|
73285
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73286
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73161
73287
|
}> | undefined;
|
|
73162
73288
|
cadModel?: string | {
|
|
73163
73289
|
stlUrl: string;
|
|
@@ -73681,6 +73807,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73681
73807
|
isUsingOpenDrain?: boolean | undefined;
|
|
73682
73808
|
canUsePushPull?: boolean | undefined;
|
|
73683
73809
|
isUsingPushPull?: boolean | undefined;
|
|
73810
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73811
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73684
73812
|
}> | undefined;
|
|
73685
73813
|
cadModel?: string | {
|
|
73686
73814
|
stlUrl: string;
|
|
@@ -77209,6 +77337,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77209
77337
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
77210
77338
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77211
77339
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77340
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
77341
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77212
77342
|
}, "strip", z.ZodTypeAny, {
|
|
77213
77343
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77214
77344
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77233,6 +77363,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77233
77363
|
isUsingOpenDrain?: boolean | undefined;
|
|
77234
77364
|
canUsePushPull?: boolean | undefined;
|
|
77235
77365
|
isUsingPushPull?: boolean | undefined;
|
|
77366
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77367
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77236
77368
|
}, {
|
|
77237
77369
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77238
77370
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77257,6 +77389,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77257
77389
|
isUsingOpenDrain?: boolean | undefined;
|
|
77258
77390
|
canUsePushPull?: boolean | undefined;
|
|
77259
77391
|
isUsingPushPull?: boolean | undefined;
|
|
77392
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77393
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77260
77394
|
}>>>;
|
|
77261
77395
|
mfn: z.ZodOptional<z.ZodString>;
|
|
77262
77396
|
} & {
|
|
@@ -77349,6 +77483,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77349
77483
|
isUsingOpenDrain?: boolean | undefined;
|
|
77350
77484
|
canUsePushPull?: boolean | undefined;
|
|
77351
77485
|
isUsingPushPull?: boolean | undefined;
|
|
77486
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77487
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77352
77488
|
}> | undefined;
|
|
77353
77489
|
cadModel?: string | {
|
|
77354
77490
|
stlUrl: string;
|
|
@@ -77875,6 +78011,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77875
78011
|
isUsingOpenDrain?: boolean | undefined;
|
|
77876
78012
|
canUsePushPull?: boolean | undefined;
|
|
77877
78013
|
isUsingPushPull?: boolean | undefined;
|
|
78014
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
78015
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77878
78016
|
}> | undefined;
|
|
77879
78017
|
cadModel?: string | {
|
|
77880
78018
|
stlUrl: string;
|
|
@@ -81401,6 +81539,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81401
81539
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
81402
81540
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81403
81541
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81542
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
81543
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
81404
81544
|
}, "strip", z.ZodTypeAny, {
|
|
81405
81545
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81406
81546
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81425,6 +81565,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81425
81565
|
isUsingOpenDrain?: boolean | undefined;
|
|
81426
81566
|
canUsePushPull?: boolean | undefined;
|
|
81427
81567
|
isUsingPushPull?: boolean | undefined;
|
|
81568
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81569
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81428
81570
|
}, {
|
|
81429
81571
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81430
81572
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81449,6 +81591,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81449
81591
|
isUsingOpenDrain?: boolean | undefined;
|
|
81450
81592
|
canUsePushPull?: boolean | undefined;
|
|
81451
81593
|
isUsingPushPull?: boolean | undefined;
|
|
81594
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81595
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81452
81596
|
}>>>;
|
|
81453
81597
|
mfn: z.ZodOptional<z.ZodString>;
|
|
81454
81598
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -81538,6 +81682,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81538
81682
|
isUsingOpenDrain?: boolean | undefined;
|
|
81539
81683
|
canUsePushPull?: boolean | undefined;
|
|
81540
81684
|
isUsingPushPull?: boolean | undefined;
|
|
81685
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81686
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81541
81687
|
}> | undefined;
|
|
81542
81688
|
cadModel?: string | {
|
|
81543
81689
|
stlUrl: string;
|
|
@@ -82061,6 +82207,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
82061
82207
|
isUsingOpenDrain?: boolean | undefined;
|
|
82062
82208
|
canUsePushPull?: boolean | undefined;
|
|
82063
82209
|
isUsingPushPull?: boolean | undefined;
|
|
82210
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
82211
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
82064
82212
|
}> | undefined;
|
|
82065
82213
|
cadModel?: string | {
|
|
82066
82214
|
stlUrl: string;
|
|
@@ -87073,6 +87221,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87073
87221
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
87074
87222
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87075
87223
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87224
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
87225
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
87076
87226
|
}, "strip", z.ZodTypeAny, {
|
|
87077
87227
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87078
87228
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87097,6 +87247,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87097
87247
|
isUsingOpenDrain?: boolean | undefined;
|
|
87098
87248
|
canUsePushPull?: boolean | undefined;
|
|
87099
87249
|
isUsingPushPull?: boolean | undefined;
|
|
87250
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87251
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87100
87252
|
}, {
|
|
87101
87253
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87102
87254
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87121,6 +87273,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87121
87273
|
isUsingOpenDrain?: boolean | undefined;
|
|
87122
87274
|
canUsePushPull?: boolean | undefined;
|
|
87123
87275
|
isUsingPushPull?: boolean | undefined;
|
|
87276
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87277
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87124
87278
|
}>>>;
|
|
87125
87279
|
mfn: z.ZodOptional<z.ZodString>;
|
|
87126
87280
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -87220,6 +87374,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87220
87374
|
isUsingOpenDrain?: boolean | undefined;
|
|
87221
87375
|
canUsePushPull?: boolean | undefined;
|
|
87222
87376
|
isUsingPushPull?: boolean | undefined;
|
|
87377
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87378
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87223
87379
|
}> | undefined;
|
|
87224
87380
|
cadModel?: string | {
|
|
87225
87381
|
stlUrl: string;
|
|
@@ -87750,6 +87906,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87750
87906
|
isUsingOpenDrain?: boolean | undefined;
|
|
87751
87907
|
canUsePushPull?: boolean | undefined;
|
|
87752
87908
|
isUsingPushPull?: boolean | undefined;
|
|
87909
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87910
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87753
87911
|
}> | undefined;
|
|
87754
87912
|
cadModel?: string | {
|
|
87755
87913
|
stlUrl: string;
|
|
@@ -91309,6 +91467,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91309
91467
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
91310
91468
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91311
91469
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91470
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
91471
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
91312
91472
|
}, "strip", z.ZodTypeAny, {
|
|
91313
91473
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91314
91474
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91333,6 +91493,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91333
91493
|
isUsingOpenDrain?: boolean | undefined;
|
|
91334
91494
|
canUsePushPull?: boolean | undefined;
|
|
91335
91495
|
isUsingPushPull?: boolean | undefined;
|
|
91496
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91497
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91336
91498
|
}, {
|
|
91337
91499
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91338
91500
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91357,6 +91519,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91357
91519
|
isUsingOpenDrain?: boolean | undefined;
|
|
91358
91520
|
canUsePushPull?: boolean | undefined;
|
|
91359
91521
|
isUsingPushPull?: boolean | undefined;
|
|
91522
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91523
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91360
91524
|
}>>>;
|
|
91361
91525
|
mfn: z.ZodOptional<z.ZodString>;
|
|
91362
91526
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -91443,6 +91607,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91443
91607
|
isUsingOpenDrain?: boolean | undefined;
|
|
91444
91608
|
canUsePushPull?: boolean | undefined;
|
|
91445
91609
|
isUsingPushPull?: boolean | undefined;
|
|
91610
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91611
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91446
91612
|
}> | undefined;
|
|
91447
91613
|
cadModel?: string | {
|
|
91448
91614
|
stlUrl: string;
|
|
@@ -91965,6 +92131,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91965
92131
|
isUsingOpenDrain?: boolean | undefined;
|
|
91966
92132
|
canUsePushPull?: boolean | undefined;
|
|
91967
92133
|
isUsingPushPull?: boolean | undefined;
|
|
92134
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
92135
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91968
92136
|
}> | undefined;
|
|
91969
92137
|
cadModel?: string | {
|
|
91970
92138
|
stlUrl: string;
|
|
@@ -100026,6 +100194,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100026
100194
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
100027
100195
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100028
100196
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100197
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
100198
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
100029
100199
|
}, "strip", z.ZodTypeAny, {
|
|
100030
100200
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100031
100201
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100050,6 +100220,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100050
100220
|
isUsingOpenDrain?: boolean | undefined;
|
|
100051
100221
|
canUsePushPull?: boolean | undefined;
|
|
100052
100222
|
isUsingPushPull?: boolean | undefined;
|
|
100223
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100224
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100053
100225
|
}, {
|
|
100054
100226
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100055
100227
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100074,6 +100246,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100074
100246
|
isUsingOpenDrain?: boolean | undefined;
|
|
100075
100247
|
canUsePushPull?: boolean | undefined;
|
|
100076
100248
|
isUsingPushPull?: boolean | undefined;
|
|
100249
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100250
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100077
100251
|
}>>>;
|
|
100078
100252
|
mfn: z.ZodOptional<z.ZodString>;
|
|
100079
100253
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -100162,6 +100336,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100162
100336
|
isUsingOpenDrain?: boolean | undefined;
|
|
100163
100337
|
canUsePushPull?: boolean | undefined;
|
|
100164
100338
|
isUsingPushPull?: boolean | undefined;
|
|
100339
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100340
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100165
100341
|
}> | undefined;
|
|
100166
100342
|
cadModel?: string | {
|
|
100167
100343
|
stlUrl: string;
|
|
@@ -100686,6 +100862,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100686
100862
|
isUsingOpenDrain?: boolean | undefined;
|
|
100687
100863
|
canUsePushPull?: boolean | undefined;
|
|
100688
100864
|
isUsingPushPull?: boolean | undefined;
|
|
100865
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100866
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100689
100867
|
}> | undefined;
|
|
100690
100868
|
cadModel?: string | {
|
|
100691
100869
|
stlUrl: string;
|
|
@@ -105889,6 +106067,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105889
106067
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
105890
106068
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
105891
106069
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106070
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
106071
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
105892
106072
|
}, "strip", z.ZodTypeAny, {
|
|
105893
106073
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105894
106074
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -105913,6 +106093,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105913
106093
|
isUsingOpenDrain?: boolean | undefined;
|
|
105914
106094
|
canUsePushPull?: boolean | undefined;
|
|
105915
106095
|
isUsingPushPull?: boolean | undefined;
|
|
106096
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106097
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
105916
106098
|
}, {
|
|
105917
106099
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105918
106100
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -105937,6 +106119,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105937
106119
|
isUsingOpenDrain?: boolean | undefined;
|
|
105938
106120
|
canUsePushPull?: boolean | undefined;
|
|
105939
106121
|
isUsingPushPull?: boolean | undefined;
|
|
106122
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106123
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
105940
106124
|
}>>>;
|
|
105941
106125
|
mfn: z.ZodOptional<z.ZodString>;
|
|
105942
106126
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -106192,6 +106376,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106192
106376
|
isUsingOpenDrain?: boolean | undefined;
|
|
106193
106377
|
canUsePushPull?: boolean | undefined;
|
|
106194
106378
|
isUsingPushPull?: boolean | undefined;
|
|
106379
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106380
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106195
106381
|
}> | undefined;
|
|
106196
106382
|
cadModel?: string | {
|
|
106197
106383
|
stlUrl: string;
|
|
@@ -106764,6 +106950,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106764
106950
|
isUsingOpenDrain?: boolean | undefined;
|
|
106765
106951
|
canUsePushPull?: boolean | undefined;
|
|
106766
106952
|
isUsingPushPull?: boolean | undefined;
|
|
106953
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106954
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106767
106955
|
}> | undefined;
|
|
106768
106956
|
cadModel?: string | {
|
|
106769
106957
|
stlUrl: string;
|
|
@@ -110401,6 +110589,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110401
110589
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
110402
110590
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110403
110591
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110592
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
110593
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
110404
110594
|
}, "strip", z.ZodTypeAny, {
|
|
110405
110595
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110406
110596
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110425,6 +110615,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110425
110615
|
isUsingOpenDrain?: boolean | undefined;
|
|
110426
110616
|
canUsePushPull?: boolean | undefined;
|
|
110427
110617
|
isUsingPushPull?: boolean | undefined;
|
|
110618
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110619
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110428
110620
|
}, {
|
|
110429
110621
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110430
110622
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110449,6 +110641,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110449
110641
|
isUsingOpenDrain?: boolean | undefined;
|
|
110450
110642
|
canUsePushPull?: boolean | undefined;
|
|
110451
110643
|
isUsingPushPull?: boolean | undefined;
|
|
110644
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110645
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110452
110646
|
}>>>;
|
|
110453
110647
|
mfn: z.ZodOptional<z.ZodString>;
|
|
110454
110648
|
} & {
|
|
@@ -110829,6 +111023,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110829
111023
|
isUsingOpenDrain?: boolean | undefined;
|
|
110830
111024
|
canUsePushPull?: boolean | undefined;
|
|
110831
111025
|
isUsingPushPull?: boolean | undefined;
|
|
111026
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111027
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110832
111028
|
}> | undefined;
|
|
110833
111029
|
cadModel?: string | {
|
|
110834
111030
|
stlUrl: string;
|
|
@@ -111425,6 +111621,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111425
111621
|
isUsingOpenDrain?: boolean | undefined;
|
|
111426
111622
|
canUsePushPull?: boolean | undefined;
|
|
111427
111623
|
isUsingPushPull?: boolean | undefined;
|
|
111624
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111625
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111428
111626
|
}> | undefined;
|
|
111429
111627
|
cadModel?: string | {
|
|
111430
111628
|
stlUrl: string;
|
|
@@ -116421,6 +116619,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116421
116619
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
116422
116620
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116423
116621
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116622
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
116623
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
116424
116624
|
}, "strip", z.ZodTypeAny, {
|
|
116425
116625
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116426
116626
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116445,6 +116645,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116445
116645
|
isUsingOpenDrain?: boolean | undefined;
|
|
116446
116646
|
canUsePushPull?: boolean | undefined;
|
|
116447
116647
|
isUsingPushPull?: boolean | undefined;
|
|
116648
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116649
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116448
116650
|
}, {
|
|
116449
116651
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116450
116652
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116469,6 +116671,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116469
116671
|
isUsingOpenDrain?: boolean | undefined;
|
|
116470
116672
|
canUsePushPull?: boolean | undefined;
|
|
116471
116673
|
isUsingPushPull?: boolean | undefined;
|
|
116674
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116675
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116472
116676
|
}>>>;
|
|
116473
116677
|
mfn: z.ZodOptional<z.ZodString>;
|
|
116474
116678
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -116556,6 +116760,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116556
116760
|
isUsingOpenDrain?: boolean | undefined;
|
|
116557
116761
|
canUsePushPull?: boolean | undefined;
|
|
116558
116762
|
isUsingPushPull?: boolean | undefined;
|
|
116763
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116764
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116559
116765
|
}> | undefined;
|
|
116560
116766
|
cadModel?: string | {
|
|
116561
116767
|
stlUrl: string;
|
|
@@ -117078,6 +117284,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117078
117284
|
isUsingOpenDrain?: boolean | undefined;
|
|
117079
117285
|
canUsePushPull?: boolean | undefined;
|
|
117080
117286
|
isUsingPushPull?: boolean | undefined;
|
|
117287
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
117288
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117081
117289
|
}> | undefined;
|
|
117082
117290
|
cadModel?: string | {
|
|
117083
117291
|
stlUrl: string;
|
|
@@ -120601,6 +120809,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120601
120809
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
120602
120810
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120603
120811
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120812
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
120813
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
120604
120814
|
}, "strip", z.ZodTypeAny, {
|
|
120605
120815
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120606
120816
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120625,6 +120835,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120625
120835
|
isUsingOpenDrain?: boolean | undefined;
|
|
120626
120836
|
canUsePushPull?: boolean | undefined;
|
|
120627
120837
|
isUsingPushPull?: boolean | undefined;
|
|
120838
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120839
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120628
120840
|
}, {
|
|
120629
120841
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120630
120842
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120649,6 +120861,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120649
120861
|
isUsingOpenDrain?: boolean | undefined;
|
|
120650
120862
|
canUsePushPull?: boolean | undefined;
|
|
120651
120863
|
isUsingPushPull?: boolean | undefined;
|
|
120864
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120865
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120652
120866
|
}>>>;
|
|
120653
120867
|
mfn: z.ZodOptional<z.ZodString>;
|
|
120654
120868
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -120737,6 +120951,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120737
120951
|
isUsingOpenDrain?: boolean | undefined;
|
|
120738
120952
|
canUsePushPull?: boolean | undefined;
|
|
120739
120953
|
isUsingPushPull?: boolean | undefined;
|
|
120954
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120955
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120740
120956
|
}> | undefined;
|
|
120741
120957
|
cadModel?: string | {
|
|
120742
120958
|
stlUrl: string;
|
|
@@ -121259,6 +121475,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121259
121475
|
isUsingOpenDrain?: boolean | undefined;
|
|
121260
121476
|
canUsePushPull?: boolean | undefined;
|
|
121261
121477
|
isUsingPushPull?: boolean | undefined;
|
|
121478
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121479
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121262
121480
|
}> | undefined;
|
|
121263
121481
|
cadModel?: string | {
|
|
121264
121482
|
stlUrl: string;
|
|
@@ -124788,6 +125006,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124788
125006
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
124789
125007
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
124790
125008
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125009
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
125010
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
124791
125011
|
}, "strip", z.ZodTypeAny, {
|
|
124792
125012
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124793
125013
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -124812,6 +125032,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124812
125032
|
isUsingOpenDrain?: boolean | undefined;
|
|
124813
125033
|
canUsePushPull?: boolean | undefined;
|
|
124814
125034
|
isUsingPushPull?: boolean | undefined;
|
|
125035
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125036
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124815
125037
|
}, {
|
|
124816
125038
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124817
125039
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -124836,6 +125058,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124836
125058
|
isUsingOpenDrain?: boolean | undefined;
|
|
124837
125059
|
canUsePushPull?: boolean | undefined;
|
|
124838
125060
|
isUsingPushPull?: boolean | undefined;
|
|
125061
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125062
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124839
125063
|
}>>>;
|
|
124840
125064
|
mfn: z.ZodOptional<z.ZodString>;
|
|
124841
125065
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -124921,6 +125145,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124921
125145
|
isUsingOpenDrain?: boolean | undefined;
|
|
124922
125146
|
canUsePushPull?: boolean | undefined;
|
|
124923
125147
|
isUsingPushPull?: boolean | undefined;
|
|
125148
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125149
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124924
125150
|
}> | undefined;
|
|
124925
125151
|
cadModel?: string | {
|
|
124926
125152
|
stlUrl: string;
|
|
@@ -125442,6 +125668,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
125442
125668
|
isUsingOpenDrain?: boolean | undefined;
|
|
125443
125669
|
canUsePushPull?: boolean | undefined;
|
|
125444
125670
|
isUsingPushPull?: boolean | undefined;
|
|
125671
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125672
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125445
125673
|
}> | undefined;
|
|
125446
125674
|
cadModel?: string | {
|
|
125447
125675
|
stlUrl: string;
|
|
@@ -128972,6 +129200,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128972
129200
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
128973
129201
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
128974
129202
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129203
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
129204
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
128975
129205
|
}, "strip", z.ZodTypeAny, {
|
|
128976
129206
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128977
129207
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -128996,6 +129226,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128996
129226
|
isUsingOpenDrain?: boolean | undefined;
|
|
128997
129227
|
canUsePushPull?: boolean | undefined;
|
|
128998
129228
|
isUsingPushPull?: boolean | undefined;
|
|
129229
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129230
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
128999
129231
|
}, {
|
|
129000
129232
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129001
129233
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -129020,6 +129252,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129020
129252
|
isUsingOpenDrain?: boolean | undefined;
|
|
129021
129253
|
canUsePushPull?: boolean | undefined;
|
|
129022
129254
|
isUsingPushPull?: boolean | undefined;
|
|
129255
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129256
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129023
129257
|
}>>>;
|
|
129024
129258
|
mfn: z.ZodOptional<z.ZodString>;
|
|
129025
129259
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -129109,6 +129343,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129109
129343
|
isUsingOpenDrain?: boolean | undefined;
|
|
129110
129344
|
canUsePushPull?: boolean | undefined;
|
|
129111
129345
|
isUsingPushPull?: boolean | undefined;
|
|
129346
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129347
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129112
129348
|
}> | undefined;
|
|
129113
129349
|
cadModel?: string | {
|
|
129114
129350
|
stlUrl: string;
|
|
@@ -129633,6 +129869,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129633
129869
|
isUsingOpenDrain?: boolean | undefined;
|
|
129634
129870
|
canUsePushPull?: boolean | undefined;
|
|
129635
129871
|
isUsingPushPull?: boolean | undefined;
|
|
129872
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129873
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129636
129874
|
}> | undefined;
|
|
129637
129875
|
cadModel?: string | {
|
|
129638
129876
|
stlUrl: string;
|
|
@@ -133152,6 +133390,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133152
133390
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
133153
133391
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133154
133392
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133393
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
133394
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
133155
133395
|
}, "strip", z.ZodTypeAny, {
|
|
133156
133396
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133157
133397
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133176,6 +133416,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133176
133416
|
isUsingOpenDrain?: boolean | undefined;
|
|
133177
133417
|
canUsePushPull?: boolean | undefined;
|
|
133178
133418
|
isUsingPushPull?: boolean | undefined;
|
|
133419
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133420
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133179
133421
|
}, {
|
|
133180
133422
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133181
133423
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133200,6 +133442,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133200
133442
|
isUsingOpenDrain?: boolean | undefined;
|
|
133201
133443
|
canUsePushPull?: boolean | undefined;
|
|
133202
133444
|
isUsingPushPull?: boolean | undefined;
|
|
133445
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133446
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133203
133447
|
}>>>;
|
|
133204
133448
|
mfn: z.ZodOptional<z.ZodString>;
|
|
133205
133449
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -133294,6 +133538,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133294
133538
|
isUsingOpenDrain?: boolean | undefined;
|
|
133295
133539
|
canUsePushPull?: boolean | undefined;
|
|
133296
133540
|
isUsingPushPull?: boolean | undefined;
|
|
133541
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133542
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133297
133543
|
}> | undefined;
|
|
133298
133544
|
cadModel?: string | {
|
|
133299
133545
|
stlUrl: string;
|
|
@@ -133822,6 +134068,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133822
134068
|
isUsingOpenDrain?: boolean | undefined;
|
|
133823
134069
|
canUsePushPull?: boolean | undefined;
|
|
133824
134070
|
isUsingPushPull?: boolean | undefined;
|
|
134071
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134072
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133825
134073
|
}> | undefined;
|
|
133826
134074
|
cadModel?: string | {
|
|
133827
134075
|
stlUrl: string;
|
|
@@ -134350,6 +134598,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134350
134598
|
isUsingOpenDrain?: boolean | undefined;
|
|
134351
134599
|
canUsePushPull?: boolean | undefined;
|
|
134352
134600
|
isUsingPushPull?: boolean | undefined;
|
|
134601
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134602
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134353
134603
|
}> | undefined;
|
|
134354
134604
|
cadModel?: string | {
|
|
134355
134605
|
stlUrl: string;
|
|
@@ -134878,6 +135128,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134878
135128
|
isUsingOpenDrain?: boolean | undefined;
|
|
134879
135129
|
canUsePushPull?: boolean | undefined;
|
|
134880
135130
|
isUsingPushPull?: boolean | undefined;
|
|
135131
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135132
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134881
135133
|
}> | undefined;
|
|
134882
135134
|
cadModel?: string | {
|
|
134883
135135
|
stlUrl: string;
|
|
@@ -135412,6 +135664,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135412
135664
|
isUsingOpenDrain?: boolean | undefined;
|
|
135413
135665
|
canUsePushPull?: boolean | undefined;
|
|
135414
135666
|
isUsingPushPull?: boolean | undefined;
|
|
135667
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135668
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135415
135669
|
}> | undefined;
|
|
135416
135670
|
cadModel?: string | {
|
|
135417
135671
|
stlUrl: string;
|
|
@@ -135934,6 +136188,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135934
136188
|
isUsingOpenDrain?: boolean | undefined;
|
|
135935
136189
|
canUsePushPull?: boolean | undefined;
|
|
135936
136190
|
isUsingPushPull?: boolean | undefined;
|
|
136191
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
136192
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135937
136193
|
}> | undefined;
|
|
135938
136194
|
cadModel?: string | {
|
|
135939
136195
|
stlUrl: string;
|
|
@@ -139481,6 +139737,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139481
139737
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
139482
139738
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139483
139739
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139740
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
139741
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
139484
139742
|
}, "strip", z.ZodTypeAny, {
|
|
139485
139743
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139486
139744
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139505,6 +139763,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139505
139763
|
isUsingOpenDrain?: boolean | undefined;
|
|
139506
139764
|
canUsePushPull?: boolean | undefined;
|
|
139507
139765
|
isUsingPushPull?: boolean | undefined;
|
|
139766
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139767
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139508
139768
|
}, {
|
|
139509
139769
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139510
139770
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139529,6 +139789,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139529
139789
|
isUsingOpenDrain?: boolean | undefined;
|
|
139530
139790
|
canUsePushPull?: boolean | undefined;
|
|
139531
139791
|
isUsingPushPull?: boolean | undefined;
|
|
139792
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139793
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139532
139794
|
}>>>;
|
|
139533
139795
|
mfn: z.ZodOptional<z.ZodString>;
|
|
139534
139796
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -139619,6 +139881,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139619
139881
|
isUsingOpenDrain?: boolean | undefined;
|
|
139620
139882
|
canUsePushPull?: boolean | undefined;
|
|
139621
139883
|
isUsingPushPull?: boolean | undefined;
|
|
139884
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139885
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139622
139886
|
}> | undefined;
|
|
139623
139887
|
cadModel?: string | {
|
|
139624
139888
|
stlUrl: string;
|
|
@@ -140145,6 +140409,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
140145
140409
|
isUsingOpenDrain?: boolean | undefined;
|
|
140146
140410
|
canUsePushPull?: boolean | undefined;
|
|
140147
140411
|
isUsingPushPull?: boolean | undefined;
|
|
140412
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140413
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140148
140414
|
}> | undefined;
|
|
140149
140415
|
cadModel?: string | {
|
|
140150
140416
|
stlUrl: string;
|
|
@@ -143683,6 +143949,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143683
143949
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
143684
143950
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143685
143951
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143952
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
143953
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
143686
143954
|
}, "strip", z.ZodTypeAny, {
|
|
143687
143955
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143688
143956
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143707,6 +143975,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143707
143975
|
isUsingOpenDrain?: boolean | undefined;
|
|
143708
143976
|
canUsePushPull?: boolean | undefined;
|
|
143709
143977
|
isUsingPushPull?: boolean | undefined;
|
|
143978
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
143979
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143710
143980
|
}, {
|
|
143711
143981
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143712
143982
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143731,6 +144001,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143731
144001
|
isUsingOpenDrain?: boolean | undefined;
|
|
143732
144002
|
canUsePushPull?: boolean | undefined;
|
|
143733
144003
|
isUsingPushPull?: boolean | undefined;
|
|
144004
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144005
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143734
144006
|
}>>>;
|
|
143735
144007
|
mfn: z.ZodOptional<z.ZodString>;
|
|
143736
144008
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -143829,6 +144101,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143829
144101
|
isUsingOpenDrain?: boolean | undefined;
|
|
143830
144102
|
canUsePushPull?: boolean | undefined;
|
|
143831
144103
|
isUsingPushPull?: boolean | undefined;
|
|
144104
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144105
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143832
144106
|
}> | undefined;
|
|
143833
144107
|
cadModel?: string | {
|
|
143834
144108
|
stlUrl: string;
|
|
@@ -144360,6 +144634,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144360
144634
|
isUsingOpenDrain?: boolean | undefined;
|
|
144361
144635
|
canUsePushPull?: boolean | undefined;
|
|
144362
144636
|
isUsingPushPull?: boolean | undefined;
|
|
144637
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144638
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144363
144639
|
}> | undefined;
|
|
144364
144640
|
cadModel?: string | {
|
|
144365
144641
|
stlUrl: string;
|
|
@@ -144892,6 +145168,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144892
145168
|
isUsingOpenDrain?: boolean | undefined;
|
|
144893
145169
|
canUsePushPull?: boolean | undefined;
|
|
144894
145170
|
isUsingPushPull?: boolean | undefined;
|
|
145171
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
145172
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144895
145173
|
}> | undefined;
|
|
144896
145174
|
cadModel?: string | {
|
|
144897
145175
|
stlUrl: string;
|
|
@@ -149442,6 +149720,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149442
149720
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
149443
149721
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149444
149722
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149723
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
149724
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
149445
149725
|
}, "strip", z.ZodTypeAny, {
|
|
149446
149726
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149447
149727
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149466,6 +149746,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149466
149746
|
isUsingOpenDrain?: boolean | undefined;
|
|
149467
149747
|
canUsePushPull?: boolean | undefined;
|
|
149468
149748
|
isUsingPushPull?: boolean | undefined;
|
|
149749
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149750
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149469
149751
|
}, {
|
|
149470
149752
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149471
149753
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149490,6 +149772,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149490
149772
|
isUsingOpenDrain?: boolean | undefined;
|
|
149491
149773
|
canUsePushPull?: boolean | undefined;
|
|
149492
149774
|
isUsingPushPull?: boolean | undefined;
|
|
149775
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149776
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149493
149777
|
}>>>;
|
|
149494
149778
|
mfn: z.ZodOptional<z.ZodString>;
|
|
149495
149779
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -149588,6 +149872,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149588
149872
|
isUsingOpenDrain?: boolean | undefined;
|
|
149589
149873
|
canUsePushPull?: boolean | undefined;
|
|
149590
149874
|
isUsingPushPull?: boolean | undefined;
|
|
149875
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149876
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149591
149877
|
}> | undefined;
|
|
149592
149878
|
cadModel?: string | {
|
|
149593
149879
|
stlUrl: string;
|
|
@@ -150116,6 +150402,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150116
150402
|
isUsingOpenDrain?: boolean | undefined;
|
|
150117
150403
|
canUsePushPull?: boolean | undefined;
|
|
150118
150404
|
isUsingPushPull?: boolean | undefined;
|
|
150405
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150406
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150119
150407
|
}> | undefined;
|
|
150120
150408
|
cadModel?: string | {
|
|
150121
150409
|
stlUrl: string;
|
|
@@ -150644,6 +150932,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150644
150932
|
isUsingOpenDrain?: boolean | undefined;
|
|
150645
150933
|
canUsePushPull?: boolean | undefined;
|
|
150646
150934
|
isUsingPushPull?: boolean | undefined;
|
|
150935
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150936
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150647
150937
|
}> | undefined;
|
|
150648
150938
|
cadModel?: string | {
|
|
150649
150939
|
stlUrl: string;
|
|
@@ -151172,6 +151462,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151172
151462
|
isUsingOpenDrain?: boolean | undefined;
|
|
151173
151463
|
canUsePushPull?: boolean | undefined;
|
|
151174
151464
|
isUsingPushPull?: boolean | undefined;
|
|
151465
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
151466
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151175
151467
|
}> | undefined;
|
|
151176
151468
|
cadModel?: string | {
|
|
151177
151469
|
stlUrl: string;
|
|
@@ -155946,6 +156238,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155946
156238
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
155947
156239
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
155948
156240
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156241
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
156242
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
155949
156243
|
}, "strip", z.ZodTypeAny, {
|
|
155950
156244
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155951
156245
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -155970,6 +156264,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155970
156264
|
isUsingOpenDrain?: boolean | undefined;
|
|
155971
156265
|
canUsePushPull?: boolean | undefined;
|
|
155972
156266
|
isUsingPushPull?: boolean | undefined;
|
|
156267
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156268
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155973
156269
|
}, {
|
|
155974
156270
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155975
156271
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -155994,6 +156290,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155994
156290
|
isUsingOpenDrain?: boolean | undefined;
|
|
155995
156291
|
canUsePushPull?: boolean | undefined;
|
|
155996
156292
|
isUsingPushPull?: boolean | undefined;
|
|
156293
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156294
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155997
156295
|
}>>>;
|
|
155998
156296
|
mfn: z.ZodOptional<z.ZodString>;
|
|
155999
156297
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -156080,6 +156378,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156080
156378
|
isUsingOpenDrain?: boolean | undefined;
|
|
156081
156379
|
canUsePushPull?: boolean | undefined;
|
|
156082
156380
|
isUsingPushPull?: boolean | undefined;
|
|
156381
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156382
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156083
156383
|
}> | undefined;
|
|
156084
156384
|
cadModel?: string | {
|
|
156085
156385
|
stlUrl: string;
|
|
@@ -156601,6 +156901,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156601
156901
|
isUsingOpenDrain?: boolean | undefined;
|
|
156602
156902
|
canUsePushPull?: boolean | undefined;
|
|
156603
156903
|
isUsingPushPull?: boolean | undefined;
|
|
156904
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156905
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156604
156906
|
}> | undefined;
|
|
156605
156907
|
cadModel?: string | {
|
|
156606
156908
|
stlUrl: string;
|
|
@@ -160130,6 +160432,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160130
160432
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
160131
160433
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160132
160434
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160435
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
160436
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
160133
160437
|
}, "strip", z.ZodTypeAny, {
|
|
160134
160438
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160135
160439
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160154,6 +160458,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160154
160458
|
isUsingOpenDrain?: boolean | undefined;
|
|
160155
160459
|
canUsePushPull?: boolean | undefined;
|
|
160156
160460
|
isUsingPushPull?: boolean | undefined;
|
|
160461
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160462
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160157
160463
|
}, {
|
|
160158
160464
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160159
160465
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160178,6 +160484,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160178
160484
|
isUsingOpenDrain?: boolean | undefined;
|
|
160179
160485
|
canUsePushPull?: boolean | undefined;
|
|
160180
160486
|
isUsingPushPull?: boolean | undefined;
|
|
160487
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160488
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160181
160489
|
}>>>;
|
|
160182
160490
|
mfn: z.ZodOptional<z.ZodString>;
|
|
160183
160491
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -160269,6 +160577,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160269
160577
|
isUsingOpenDrain?: boolean | undefined;
|
|
160270
160578
|
canUsePushPull?: boolean | undefined;
|
|
160271
160579
|
isUsingPushPull?: boolean | undefined;
|
|
160580
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160581
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160272
160582
|
}> | undefined;
|
|
160273
160583
|
cadModel?: string | {
|
|
160274
160584
|
stlUrl: string;
|
|
@@ -160796,6 +161106,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160796
161106
|
isUsingOpenDrain?: boolean | undefined;
|
|
160797
161107
|
canUsePushPull?: boolean | undefined;
|
|
160798
161108
|
isUsingPushPull?: boolean | undefined;
|
|
161109
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
161110
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160799
161111
|
}> | undefined;
|
|
160800
161112
|
cadModel?: string | {
|
|
160801
161113
|
stlUrl: string;
|
|
@@ -164331,6 +164643,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164331
164643
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
164332
164644
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164333
164645
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164646
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
164647
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
164334
164648
|
}, "strip", z.ZodTypeAny, {
|
|
164335
164649
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164336
164650
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164355,6 +164669,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164355
164669
|
isUsingOpenDrain?: boolean | undefined;
|
|
164356
164670
|
canUsePushPull?: boolean | undefined;
|
|
164357
164671
|
isUsingPushPull?: boolean | undefined;
|
|
164672
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164673
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164358
164674
|
}, {
|
|
164359
164675
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164360
164676
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164379,6 +164695,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164379
164695
|
isUsingOpenDrain?: boolean | undefined;
|
|
164380
164696
|
canUsePushPull?: boolean | undefined;
|
|
164381
164697
|
isUsingPushPull?: boolean | undefined;
|
|
164698
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164699
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164382
164700
|
}>>>;
|
|
164383
164701
|
mfn: z.ZodOptional<z.ZodString>;
|
|
164384
164702
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -164470,6 +164788,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164470
164788
|
isUsingOpenDrain?: boolean | undefined;
|
|
164471
164789
|
canUsePushPull?: boolean | undefined;
|
|
164472
164790
|
isUsingPushPull?: boolean | undefined;
|
|
164791
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164792
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164473
164793
|
}> | undefined;
|
|
164474
164794
|
cadModel?: string | {
|
|
164475
164795
|
stlUrl: string;
|
|
@@ -164997,6 +165317,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164997
165317
|
isUsingOpenDrain?: boolean | undefined;
|
|
164998
165318
|
canUsePushPull?: boolean | undefined;
|
|
164999
165319
|
isUsingPushPull?: boolean | undefined;
|
|
165320
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
165321
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165000
165322
|
}> | undefined;
|
|
165001
165323
|
cadModel?: string | {
|
|
165002
165324
|
stlUrl: string;
|
|
@@ -168527,6 +168849,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168527
168849
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
168528
168850
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168529
168851
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168852
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
168853
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
168530
168854
|
}, "strip", z.ZodTypeAny, {
|
|
168531
168855
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168532
168856
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168551,6 +168875,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168551
168875
|
isUsingOpenDrain?: boolean | undefined;
|
|
168552
168876
|
canUsePushPull?: boolean | undefined;
|
|
168553
168877
|
isUsingPushPull?: boolean | undefined;
|
|
168878
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168879
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168554
168880
|
}, {
|
|
168555
168881
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168556
168882
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168575,6 +168901,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168575
168901
|
isUsingOpenDrain?: boolean | undefined;
|
|
168576
168902
|
canUsePushPull?: boolean | undefined;
|
|
168577
168903
|
isUsingPushPull?: boolean | undefined;
|
|
168904
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168905
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168578
168906
|
}>>>;
|
|
168579
168907
|
mfn: z.ZodOptional<z.ZodString>;
|
|
168580
168908
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -168664,6 +168992,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168664
168992
|
isUsingOpenDrain?: boolean | undefined;
|
|
168665
168993
|
canUsePushPull?: boolean | undefined;
|
|
168666
168994
|
isUsingPushPull?: boolean | undefined;
|
|
168995
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168996
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168667
168997
|
}> | undefined;
|
|
168668
168998
|
cadModel?: string | {
|
|
168669
168999
|
stlUrl: string;
|
|
@@ -169187,6 +169517,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169187
169517
|
isUsingOpenDrain?: boolean | undefined;
|
|
169188
169518
|
canUsePushPull?: boolean | undefined;
|
|
169189
169519
|
isUsingPushPull?: boolean | undefined;
|
|
169520
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169521
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169190
169522
|
}> | undefined;
|
|
169191
169523
|
cadModel?: string | {
|
|
169192
169524
|
stlUrl: string;
|