@tscircuit/props 0.0.490 → 0.0.492
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 +548 -109
- package/dist/index.js +882 -863
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +1 -123
- package/lib/common/pinAttributeMap.ts +77 -0
- package/lib/components/platedhole.ts +53 -3
- package/lib/index.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6032,6 +6032,119 @@ declare const pcbSxValue: z.ZodObject<{
|
|
|
6032
6032
|
}>;
|
|
6033
6033
|
declare const pcbSx: z.ZodType<PcbSx>;
|
|
6034
6034
|
|
|
6035
|
+
declare const pinCapability: z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>;
|
|
6036
|
+
type PinCapability = z.input<typeof pinCapability>;
|
|
6037
|
+
interface PinAttributeMap {
|
|
6038
|
+
capabilities?: Array<PinCapability>;
|
|
6039
|
+
activeCapabilities?: Array<PinCapability>;
|
|
6040
|
+
activeCapability?: PinCapability;
|
|
6041
|
+
providesPower?: boolean;
|
|
6042
|
+
requiresPower?: boolean;
|
|
6043
|
+
providesGround?: boolean;
|
|
6044
|
+
requiresGround?: boolean;
|
|
6045
|
+
providesVoltage?: string | number;
|
|
6046
|
+
requiresVoltage?: string | number;
|
|
6047
|
+
doNotConnect?: boolean;
|
|
6048
|
+
includeInBoardPinout?: boolean;
|
|
6049
|
+
highlightColor?: string;
|
|
6050
|
+
mustBeConnected?: boolean;
|
|
6051
|
+
canUseInternalPullup?: boolean;
|
|
6052
|
+
isUsingInternalPullup?: boolean;
|
|
6053
|
+
needsExternalPullup?: boolean;
|
|
6054
|
+
canUseInternalPulldown?: boolean;
|
|
6055
|
+
isUsingInternalPulldown?: boolean;
|
|
6056
|
+
needsExternalPulldown?: boolean;
|
|
6057
|
+
canUseOpenDrain?: boolean;
|
|
6058
|
+
isUsingOpenDrain?: boolean;
|
|
6059
|
+
canUsePushPull?: boolean;
|
|
6060
|
+
isUsingPushPull?: boolean;
|
|
6061
|
+
shouldHaveDecouplingCapacitor?: boolean;
|
|
6062
|
+
recommendedDecouplingCapacitorCapacitance?: string | number;
|
|
6063
|
+
isGpio?: boolean;
|
|
6064
|
+
}
|
|
6065
|
+
declare const pinAttributeMap: z.ZodObject<{
|
|
6066
|
+
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6067
|
+
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6068
|
+
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
6069
|
+
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
6070
|
+
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
6071
|
+
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
6072
|
+
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
6073
|
+
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6074
|
+
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6075
|
+
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
6076
|
+
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
6077
|
+
highlightColor: z.ZodOptional<z.ZodString>;
|
|
6078
|
+
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
6079
|
+
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6080
|
+
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6081
|
+
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6082
|
+
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6083
|
+
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6084
|
+
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6085
|
+
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6086
|
+
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6087
|
+
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6088
|
+
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6089
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
6090
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6091
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
6092
|
+
}, "strip", z.ZodTypeAny, {
|
|
6093
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6094
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6095
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6096
|
+
providesPower?: boolean | undefined;
|
|
6097
|
+
requiresPower?: boolean | undefined;
|
|
6098
|
+
providesGround?: boolean | undefined;
|
|
6099
|
+
requiresGround?: boolean | undefined;
|
|
6100
|
+
providesVoltage?: string | number | undefined;
|
|
6101
|
+
requiresVoltage?: string | number | undefined;
|
|
6102
|
+
doNotConnect?: boolean | undefined;
|
|
6103
|
+
includeInBoardPinout?: boolean | undefined;
|
|
6104
|
+
highlightColor?: string | undefined;
|
|
6105
|
+
mustBeConnected?: boolean | undefined;
|
|
6106
|
+
canUseInternalPullup?: boolean | undefined;
|
|
6107
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
6108
|
+
needsExternalPullup?: boolean | undefined;
|
|
6109
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
6110
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
6111
|
+
needsExternalPulldown?: boolean | undefined;
|
|
6112
|
+
canUseOpenDrain?: boolean | undefined;
|
|
6113
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
6114
|
+
canUsePushPull?: boolean | undefined;
|
|
6115
|
+
isUsingPushPull?: boolean | undefined;
|
|
6116
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6117
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6118
|
+
isGpio?: boolean | undefined;
|
|
6119
|
+
}, {
|
|
6120
|
+
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6121
|
+
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6122
|
+
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6123
|
+
providesPower?: boolean | undefined;
|
|
6124
|
+
requiresPower?: boolean | undefined;
|
|
6125
|
+
providesGround?: boolean | undefined;
|
|
6126
|
+
requiresGround?: boolean | undefined;
|
|
6127
|
+
providesVoltage?: string | number | undefined;
|
|
6128
|
+
requiresVoltage?: string | number | undefined;
|
|
6129
|
+
doNotConnect?: boolean | undefined;
|
|
6130
|
+
includeInBoardPinout?: boolean | undefined;
|
|
6131
|
+
highlightColor?: string | undefined;
|
|
6132
|
+
mustBeConnected?: boolean | undefined;
|
|
6133
|
+
canUseInternalPullup?: boolean | undefined;
|
|
6134
|
+
isUsingInternalPullup?: boolean | undefined;
|
|
6135
|
+
needsExternalPullup?: boolean | undefined;
|
|
6136
|
+
canUseInternalPulldown?: boolean | undefined;
|
|
6137
|
+
isUsingInternalPulldown?: boolean | undefined;
|
|
6138
|
+
needsExternalPulldown?: boolean | undefined;
|
|
6139
|
+
canUseOpenDrain?: boolean | undefined;
|
|
6140
|
+
isUsingOpenDrain?: boolean | undefined;
|
|
6141
|
+
canUsePushPull?: boolean | undefined;
|
|
6142
|
+
isUsingPushPull?: boolean | undefined;
|
|
6143
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6144
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6145
|
+
isGpio?: boolean | undefined;
|
|
6146
|
+
}>;
|
|
6147
|
+
|
|
6035
6148
|
interface SchStyle {
|
|
6036
6149
|
defaultPassiveSize?: "xs" | "sm" | "md" | string | number;
|
|
6037
6150
|
defaultCapacitorOrientation?: "vertical" | "none";
|
|
@@ -6475,112 +6588,6 @@ declare const supplierProps: z.ZodObject<{
|
|
|
6475
6588
|
}, {
|
|
6476
6589
|
supplierPartNumbers?: Partial<Record<"jlcpcb" | "macrofab" | "pcbway" | "digikey" | "mouser" | "lcsc", string[]>> | undefined;
|
|
6477
6590
|
}>;
|
|
6478
|
-
interface PinAttributeMap {
|
|
6479
|
-
capabilities?: Array<"i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx">;
|
|
6480
|
-
activeCapabilities?: Array<"i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx">;
|
|
6481
|
-
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx";
|
|
6482
|
-
providesPower?: boolean;
|
|
6483
|
-
requiresPower?: boolean;
|
|
6484
|
-
providesGround?: boolean;
|
|
6485
|
-
requiresGround?: boolean;
|
|
6486
|
-
providesVoltage?: string | number;
|
|
6487
|
-
requiresVoltage?: string | number;
|
|
6488
|
-
doNotConnect?: boolean;
|
|
6489
|
-
includeInBoardPinout?: boolean;
|
|
6490
|
-
highlightColor?: string;
|
|
6491
|
-
mustBeConnected?: boolean;
|
|
6492
|
-
canUseInternalPullup?: boolean;
|
|
6493
|
-
isUsingInternalPullup?: boolean;
|
|
6494
|
-
needsExternalPullup?: boolean;
|
|
6495
|
-
canUseInternalPulldown?: boolean;
|
|
6496
|
-
isUsingInternalPulldown?: boolean;
|
|
6497
|
-
needsExternalPulldown?: boolean;
|
|
6498
|
-
canUseOpenDrain?: boolean;
|
|
6499
|
-
isUsingOpenDrain?: boolean;
|
|
6500
|
-
canUsePushPull?: boolean;
|
|
6501
|
-
isUsingPushPull?: boolean;
|
|
6502
|
-
shouldHaveDecouplingCapacitor?: boolean;
|
|
6503
|
-
recommendedDecouplingCapacitorCapacitance?: string | number;
|
|
6504
|
-
}
|
|
6505
|
-
declare const pinAttributeMap: z.ZodObject<{
|
|
6506
|
-
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6507
|
-
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
6508
|
-
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
6509
|
-
providesPower: z.ZodOptional<z.ZodBoolean>;
|
|
6510
|
-
requiresPower: z.ZodOptional<z.ZodBoolean>;
|
|
6511
|
-
providesGround: z.ZodOptional<z.ZodBoolean>;
|
|
6512
|
-
requiresGround: z.ZodOptional<z.ZodBoolean>;
|
|
6513
|
-
providesVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6514
|
-
requiresVoltage: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6515
|
-
doNotConnect: z.ZodOptional<z.ZodBoolean>;
|
|
6516
|
-
includeInBoardPinout: z.ZodOptional<z.ZodBoolean>;
|
|
6517
|
-
highlightColor: z.ZodOptional<z.ZodString>;
|
|
6518
|
-
mustBeConnected: z.ZodOptional<z.ZodBoolean>;
|
|
6519
|
-
canUseInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6520
|
-
isUsingInternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6521
|
-
needsExternalPullup: z.ZodOptional<z.ZodBoolean>;
|
|
6522
|
-
canUseInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6523
|
-
isUsingInternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6524
|
-
needsExternalPulldown: z.ZodOptional<z.ZodBoolean>;
|
|
6525
|
-
canUseOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6526
|
-
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6527
|
-
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6528
|
-
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6529
|
-
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
6530
|
-
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6531
|
-
}, "strip", z.ZodTypeAny, {
|
|
6532
|
-
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6533
|
-
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6534
|
-
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6535
|
-
providesPower?: boolean | undefined;
|
|
6536
|
-
requiresPower?: boolean | undefined;
|
|
6537
|
-
providesGround?: boolean | undefined;
|
|
6538
|
-
requiresGround?: boolean | undefined;
|
|
6539
|
-
providesVoltage?: string | number | undefined;
|
|
6540
|
-
requiresVoltage?: string | number | undefined;
|
|
6541
|
-
doNotConnect?: boolean | undefined;
|
|
6542
|
-
includeInBoardPinout?: boolean | undefined;
|
|
6543
|
-
highlightColor?: string | undefined;
|
|
6544
|
-
mustBeConnected?: boolean | undefined;
|
|
6545
|
-
canUseInternalPullup?: boolean | undefined;
|
|
6546
|
-
isUsingInternalPullup?: boolean | undefined;
|
|
6547
|
-
needsExternalPullup?: boolean | undefined;
|
|
6548
|
-
canUseInternalPulldown?: boolean | undefined;
|
|
6549
|
-
isUsingInternalPulldown?: boolean | undefined;
|
|
6550
|
-
needsExternalPulldown?: boolean | undefined;
|
|
6551
|
-
canUseOpenDrain?: boolean | undefined;
|
|
6552
|
-
isUsingOpenDrain?: boolean | undefined;
|
|
6553
|
-
canUsePushPull?: boolean | undefined;
|
|
6554
|
-
isUsingPushPull?: boolean | undefined;
|
|
6555
|
-
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6556
|
-
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6557
|
-
}, {
|
|
6558
|
-
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6559
|
-
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6560
|
-
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
6561
|
-
providesPower?: boolean | undefined;
|
|
6562
|
-
requiresPower?: boolean | undefined;
|
|
6563
|
-
providesGround?: boolean | undefined;
|
|
6564
|
-
requiresGround?: boolean | undefined;
|
|
6565
|
-
providesVoltage?: string | number | undefined;
|
|
6566
|
-
requiresVoltage?: string | number | undefined;
|
|
6567
|
-
doNotConnect?: boolean | undefined;
|
|
6568
|
-
includeInBoardPinout?: boolean | undefined;
|
|
6569
|
-
highlightColor?: string | undefined;
|
|
6570
|
-
mustBeConnected?: boolean | undefined;
|
|
6571
|
-
canUseInternalPullup?: boolean | undefined;
|
|
6572
|
-
isUsingInternalPullup?: boolean | undefined;
|
|
6573
|
-
needsExternalPullup?: boolean | undefined;
|
|
6574
|
-
canUseInternalPulldown?: boolean | undefined;
|
|
6575
|
-
isUsingInternalPulldown?: boolean | undefined;
|
|
6576
|
-
needsExternalPulldown?: boolean | undefined;
|
|
6577
|
-
canUseOpenDrain?: boolean | undefined;
|
|
6578
|
-
isUsingOpenDrain?: boolean | undefined;
|
|
6579
|
-
canUsePushPull?: boolean | undefined;
|
|
6580
|
-
isUsingPushPull?: boolean | undefined;
|
|
6581
|
-
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6582
|
-
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6583
|
-
}>;
|
|
6584
6591
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
6585
6592
|
key?: any;
|
|
6586
6593
|
name: string;
|
|
@@ -9689,6 +9696,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9689
9696
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9690
9697
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
9691
9698
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9699
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
9692
9700
|
}, "strip", z.ZodTypeAny, {
|
|
9693
9701
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9694
9702
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9715,6 +9723,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9715
9723
|
isUsingPushPull?: boolean | undefined;
|
|
9716
9724
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9717
9725
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9726
|
+
isGpio?: boolean | undefined;
|
|
9718
9727
|
}, {
|
|
9719
9728
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9720
9729
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9741,6 +9750,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9741
9750
|
isUsingPushPull?: boolean | undefined;
|
|
9742
9751
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9743
9752
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9753
|
+
isGpio?: boolean | undefined;
|
|
9744
9754
|
}>>>;
|
|
9745
9755
|
mfn: z.ZodOptional<z.ZodString>;
|
|
9746
9756
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -9826,6 +9836,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9826
9836
|
isUsingPushPull?: boolean | undefined;
|
|
9827
9837
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9828
9838
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9839
|
+
isGpio?: boolean | undefined;
|
|
9829
9840
|
}> | undefined;
|
|
9830
9841
|
cadModel?: string | {
|
|
9831
9842
|
stlUrl: string;
|
|
@@ -10348,6 +10359,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10348
10359
|
isUsingPushPull?: boolean | undefined;
|
|
10349
10360
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
10350
10361
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
10362
|
+
isGpio?: boolean | undefined;
|
|
10351
10363
|
}> | undefined;
|
|
10352
10364
|
cadModel?: string | {
|
|
10353
10365
|
stlUrl: string;
|
|
@@ -13865,6 +13877,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13865
13877
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13866
13878
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
13867
13879
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13880
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
13868
13881
|
}, "strip", z.ZodTypeAny, {
|
|
13869
13882
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13870
13883
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13891,6 +13904,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13891
13904
|
isUsingPushPull?: boolean | undefined;
|
|
13892
13905
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13893
13906
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13907
|
+
isGpio?: boolean | undefined;
|
|
13894
13908
|
}, {
|
|
13895
13909
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13896
13910
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13917,6 +13931,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13917
13931
|
isUsingPushPull?: boolean | undefined;
|
|
13918
13932
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13919
13933
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13934
|
+
isGpio?: boolean | undefined;
|
|
13920
13935
|
}>>>;
|
|
13921
13936
|
mfn: z.ZodOptional<z.ZodString>;
|
|
13922
13937
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -14002,6 +14017,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14002
14017
|
isUsingPushPull?: boolean | undefined;
|
|
14003
14018
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14004
14019
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
14020
|
+
isGpio?: boolean | undefined;
|
|
14005
14021
|
}> | undefined;
|
|
14006
14022
|
cadModel?: string | {
|
|
14007
14023
|
stlUrl: string;
|
|
@@ -14524,6 +14540,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14524
14540
|
isUsingPushPull?: boolean | undefined;
|
|
14525
14541
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14526
14542
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
14543
|
+
isGpio?: boolean | undefined;
|
|
14527
14544
|
}> | undefined;
|
|
14528
14545
|
cadModel?: string | {
|
|
14529
14546
|
stlUrl: string;
|
|
@@ -31278,6 +31295,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31278
31295
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31279
31296
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
31280
31297
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31298
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
31281
31299
|
}, "strip", z.ZodTypeAny, {
|
|
31282
31300
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31283
31301
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31304,6 +31322,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31304
31322
|
isUsingPushPull?: boolean | undefined;
|
|
31305
31323
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31306
31324
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31325
|
+
isGpio?: boolean | undefined;
|
|
31307
31326
|
}, {
|
|
31308
31327
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31309
31328
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31330,6 +31349,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31330
31349
|
isUsingPushPull?: boolean | undefined;
|
|
31331
31350
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31332
31351
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31352
|
+
isGpio?: boolean | undefined;
|
|
31333
31353
|
}>>>;
|
|
31334
31354
|
mfn: z.ZodOptional<z.ZodString>;
|
|
31335
31355
|
} & {
|
|
@@ -31712,6 +31732,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31712
31732
|
isUsingPushPull?: boolean | undefined;
|
|
31713
31733
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31714
31734
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31735
|
+
isGpio?: boolean | undefined;
|
|
31715
31736
|
}> | undefined;
|
|
31716
31737
|
cadModel?: string | {
|
|
31717
31738
|
stlUrl: string;
|
|
@@ -32310,6 +32331,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
32310
32331
|
isUsingPushPull?: boolean | undefined;
|
|
32311
32332
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
32312
32333
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
32334
|
+
isGpio?: boolean | undefined;
|
|
32313
32335
|
}> | undefined;
|
|
32314
32336
|
cadModel?: string | {
|
|
32315
32337
|
stlUrl: string;
|
|
@@ -35904,6 +35926,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35904
35926
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35905
35927
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
35906
35928
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35929
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
35907
35930
|
}, "strip", z.ZodTypeAny, {
|
|
35908
35931
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35909
35932
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35930,6 +35953,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35930
35953
|
isUsingPushPull?: boolean | undefined;
|
|
35931
35954
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35932
35955
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35956
|
+
isGpio?: boolean | undefined;
|
|
35933
35957
|
}, {
|
|
35934
35958
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35935
35959
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35956,6 +35980,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
35956
35980
|
isUsingPushPull?: boolean | undefined;
|
|
35957
35981
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35958
35982
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35983
|
+
isGpio?: boolean | undefined;
|
|
35959
35984
|
}>>>;
|
|
35960
35985
|
mfn: z.ZodOptional<z.ZodString>;
|
|
35961
35986
|
} & {
|
|
@@ -36338,6 +36363,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36338
36363
|
isUsingPushPull?: boolean | undefined;
|
|
36339
36364
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36340
36365
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36366
|
+
isGpio?: boolean | undefined;
|
|
36341
36367
|
}> | undefined;
|
|
36342
36368
|
cadModel?: string | {
|
|
36343
36369
|
stlUrl: string;
|
|
@@ -36936,6 +36962,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36936
36962
|
isUsingPushPull?: boolean | undefined;
|
|
36937
36963
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36938
36964
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36965
|
+
isGpio?: boolean | undefined;
|
|
36939
36966
|
}> | undefined;
|
|
36940
36967
|
cadModel?: string | {
|
|
36941
36968
|
stlUrl: string;
|
|
@@ -40529,6 +40556,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40529
40556
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40530
40557
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
40531
40558
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40559
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
40532
40560
|
}, "strip", z.ZodTypeAny, {
|
|
40533
40561
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40534
40562
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40555,6 +40583,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40555
40583
|
isUsingPushPull?: boolean | undefined;
|
|
40556
40584
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40557
40585
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40586
|
+
isGpio?: boolean | undefined;
|
|
40558
40587
|
}, {
|
|
40559
40588
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40560
40589
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40581,6 +40610,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40581
40610
|
isUsingPushPull?: boolean | undefined;
|
|
40582
40611
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40583
40612
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40613
|
+
isGpio?: boolean | undefined;
|
|
40584
40614
|
}>>>;
|
|
40585
40615
|
mfn: z.ZodOptional<z.ZodString>;
|
|
40586
40616
|
} & {
|
|
@@ -40963,6 +40993,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40963
40993
|
isUsingPushPull?: boolean | undefined;
|
|
40964
40994
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40965
40995
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40996
|
+
isGpio?: boolean | undefined;
|
|
40966
40997
|
}> | undefined;
|
|
40967
40998
|
cadModel?: string | {
|
|
40968
40999
|
stlUrl: string;
|
|
@@ -41561,6 +41592,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41561
41592
|
isUsingPushPull?: boolean | undefined;
|
|
41562
41593
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
41563
41594
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
41595
|
+
isGpio?: boolean | undefined;
|
|
41564
41596
|
}> | undefined;
|
|
41565
41597
|
cadModel?: string | {
|
|
41566
41598
|
stlUrl: string;
|
|
@@ -45186,6 +45218,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45186
45218
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45187
45219
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
45188
45220
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45221
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
45189
45222
|
}, "strip", z.ZodTypeAny, {
|
|
45190
45223
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45191
45224
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45212,6 +45245,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45212
45245
|
isUsingPushPull?: boolean | undefined;
|
|
45213
45246
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45214
45247
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45248
|
+
isGpio?: boolean | undefined;
|
|
45215
45249
|
}, {
|
|
45216
45250
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45217
45251
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45238,6 +45272,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45238
45272
|
isUsingPushPull?: boolean | undefined;
|
|
45239
45273
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45240
45274
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45275
|
+
isGpio?: boolean | undefined;
|
|
45241
45276
|
}>>>;
|
|
45242
45277
|
mfn: z.ZodOptional<z.ZodString>;
|
|
45243
45278
|
} & {
|
|
@@ -45609,6 +45644,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45609
45644
|
isUsingPushPull?: boolean | undefined;
|
|
45610
45645
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45611
45646
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45647
|
+
isGpio?: boolean | undefined;
|
|
45612
45648
|
}> | undefined;
|
|
45613
45649
|
cadModel?: string | {
|
|
45614
45650
|
stlUrl: string;
|
|
@@ -46202,6 +46238,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46202
46238
|
isUsingPushPull?: boolean | undefined;
|
|
46203
46239
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
46204
46240
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
46241
|
+
isGpio?: boolean | undefined;
|
|
46205
46242
|
}> | undefined;
|
|
46206
46243
|
cadModel?: string | {
|
|
46207
46244
|
stlUrl: string;
|
|
@@ -49799,6 +49836,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49799
49836
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49800
49837
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
49801
49838
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49839
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
49802
49840
|
}, "strip", z.ZodTypeAny, {
|
|
49803
49841
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49804
49842
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49825,6 +49863,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49825
49863
|
isUsingPushPull?: boolean | undefined;
|
|
49826
49864
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49827
49865
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49866
|
+
isGpio?: boolean | undefined;
|
|
49828
49867
|
}, {
|
|
49829
49868
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49830
49869
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49851,6 +49890,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49851
49890
|
isUsingPushPull?: boolean | undefined;
|
|
49852
49891
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49853
49892
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49893
|
+
isGpio?: boolean | undefined;
|
|
49854
49894
|
}>>>;
|
|
49855
49895
|
mfn: z.ZodOptional<z.ZodString>;
|
|
49856
49896
|
} & {
|
|
@@ -50225,6 +50265,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50225
50265
|
isUsingPushPull?: boolean | undefined;
|
|
50226
50266
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50227
50267
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50268
|
+
isGpio?: boolean | undefined;
|
|
50228
50269
|
}> | undefined;
|
|
50229
50270
|
cadModel?: string | {
|
|
50230
50271
|
stlUrl: string;
|
|
@@ -50820,6 +50861,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50820
50861
|
isUsingPushPull?: boolean | undefined;
|
|
50821
50862
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50822
50863
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50864
|
+
isGpio?: boolean | undefined;
|
|
50823
50865
|
}> | undefined;
|
|
50824
50866
|
cadModel?: string | {
|
|
50825
50867
|
stlUrl: string;
|
|
@@ -54428,6 +54470,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54428
54470
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54429
54471
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
54430
54472
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54473
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
54431
54474
|
}, "strip", z.ZodTypeAny, {
|
|
54432
54475
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54433
54476
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54454,6 +54497,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54454
54497
|
isUsingPushPull?: boolean | undefined;
|
|
54455
54498
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54456
54499
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54500
|
+
isGpio?: boolean | undefined;
|
|
54457
54501
|
}, {
|
|
54458
54502
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54459
54503
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54480,6 +54524,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54480
54524
|
isUsingPushPull?: boolean | undefined;
|
|
54481
54525
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54482
54526
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54527
|
+
isGpio?: boolean | undefined;
|
|
54483
54528
|
}>>>;
|
|
54484
54529
|
mfn: z.ZodOptional<z.ZodString>;
|
|
54485
54530
|
} & {
|
|
@@ -54725,6 +54770,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54725
54770
|
isUsingPushPull?: boolean | undefined;
|
|
54726
54771
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54727
54772
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54773
|
+
isGpio?: boolean | undefined;
|
|
54728
54774
|
}> | undefined;
|
|
54729
54775
|
cadModel?: string | {
|
|
54730
54776
|
stlUrl: string;
|
|
@@ -55290,6 +55336,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55290
55336
|
isUsingPushPull?: boolean | undefined;
|
|
55291
55337
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
55292
55338
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
55339
|
+
isGpio?: boolean | undefined;
|
|
55293
55340
|
}> | undefined;
|
|
55294
55341
|
cadModel?: string | {
|
|
55295
55342
|
stlUrl: string;
|
|
@@ -58860,6 +58907,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58860
58907
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58861
58908
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
58862
58909
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
58910
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
58863
58911
|
}, "strip", z.ZodTypeAny, {
|
|
58864
58912
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58865
58913
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58886,6 +58934,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58886
58934
|
isUsingPushPull?: boolean | undefined;
|
|
58887
58935
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58888
58936
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58937
|
+
isGpio?: boolean | undefined;
|
|
58889
58938
|
}, {
|
|
58890
58939
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58891
58940
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58912,6 +58961,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58912
58961
|
isUsingPushPull?: boolean | undefined;
|
|
58913
58962
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58914
58963
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58964
|
+
isGpio?: boolean | undefined;
|
|
58915
58965
|
}>>>;
|
|
58916
58966
|
mfn: z.ZodOptional<z.ZodString>;
|
|
58917
58967
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -59001,6 +59051,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59001
59051
|
isUsingPushPull?: boolean | undefined;
|
|
59002
59052
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59003
59053
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59054
|
+
isGpio?: boolean | undefined;
|
|
59004
59055
|
}> | undefined;
|
|
59005
59056
|
cadModel?: string | {
|
|
59006
59057
|
stlUrl: string;
|
|
@@ -59526,6 +59577,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59526
59577
|
isUsingPushPull?: boolean | undefined;
|
|
59527
59578
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59528
59579
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59580
|
+
isGpio?: boolean | undefined;
|
|
59529
59581
|
}> | undefined;
|
|
59530
59582
|
cadModel?: string | {
|
|
59531
59583
|
stlUrl: string;
|
|
@@ -63074,6 +63126,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63074
63126
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63075
63127
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
63076
63128
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
63129
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
63077
63130
|
}, "strip", z.ZodTypeAny, {
|
|
63078
63131
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63079
63132
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -63100,6 +63153,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63100
63153
|
isUsingPushPull?: boolean | undefined;
|
|
63101
63154
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63102
63155
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63156
|
+
isGpio?: boolean | undefined;
|
|
63103
63157
|
}, {
|
|
63104
63158
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
63105
63159
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -63126,6 +63180,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63126
63180
|
isUsingPushPull?: boolean | undefined;
|
|
63127
63181
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63128
63182
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63183
|
+
isGpio?: boolean | undefined;
|
|
63129
63184
|
}>>>;
|
|
63130
63185
|
mfn: z.ZodOptional<z.ZodString>;
|
|
63131
63186
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -63218,6 +63273,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63218
63273
|
isUsingPushPull?: boolean | undefined;
|
|
63219
63274
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63220
63275
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63276
|
+
isGpio?: boolean | undefined;
|
|
63221
63277
|
}> | undefined;
|
|
63222
63278
|
cadModel?: string | {
|
|
63223
63279
|
stlUrl: string;
|
|
@@ -63745,6 +63801,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63745
63801
|
isUsingPushPull?: boolean | undefined;
|
|
63746
63802
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63747
63803
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63804
|
+
isGpio?: boolean | undefined;
|
|
63748
63805
|
}> | undefined;
|
|
63749
63806
|
cadModel?: string | {
|
|
63750
63807
|
stlUrl: string;
|
|
@@ -64284,7 +64341,7 @@ interface HoleWithPolygonPadPlatedHoleProps extends Omit<PcbLayoutProps, "pcbRot
|
|
|
64284
64341
|
coveredWithSolderMask?: boolean;
|
|
64285
64342
|
}
|
|
64286
64343
|
type PlatedHoleProps = CirclePlatedHoleProps | OvalPlatedHoleProps | PillPlatedHoleProps | CircularHoleWithRectPlatedProps | PillWithRectPadPlatedHoleProps | HoleWithPolygonPadPlatedHoleProps;
|
|
64287
|
-
declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
64344
|
+
declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
64288
64345
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
64289
64346
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
64290
64347
|
pcbLeftEdgeX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -65846,7 +65903,277 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65846
65903
|
coveredWithSolderMask?: boolean | undefined;
|
|
65847
65904
|
holeWidth?: string | number | undefined;
|
|
65848
65905
|
holeHeight?: string | number | undefined;
|
|
65849
|
-
}
|
|
65906
|
+
}>, {
|
|
65907
|
+
shape: "circle";
|
|
65908
|
+
holeDiameter: number;
|
|
65909
|
+
outerDiameter: number;
|
|
65910
|
+
name?: string | undefined;
|
|
65911
|
+
pcbX?: string | number | undefined;
|
|
65912
|
+
pcbY?: string | number | undefined;
|
|
65913
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
65914
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
65915
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
65916
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
65917
|
+
pcbOffsetX?: number | undefined;
|
|
65918
|
+
pcbOffsetY?: number | undefined;
|
|
65919
|
+
pcbPositionAnchor?: string | undefined;
|
|
65920
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65921
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65922
|
+
pcbMarginTop?: number | undefined;
|
|
65923
|
+
pcbMarginRight?: number | undefined;
|
|
65924
|
+
pcbMarginBottom?: number | undefined;
|
|
65925
|
+
pcbMarginLeft?: number | undefined;
|
|
65926
|
+
pcbMarginX?: number | undefined;
|
|
65927
|
+
pcbMarginY?: number | undefined;
|
|
65928
|
+
pcbStyle?: {
|
|
65929
|
+
silkscreenFontSize?: number | undefined;
|
|
65930
|
+
viaPadDiameter?: number | undefined;
|
|
65931
|
+
viaHoleDiameter?: number | undefined;
|
|
65932
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
65933
|
+
offsetX: number;
|
|
65934
|
+
offsetY: number;
|
|
65935
|
+
} | undefined;
|
|
65936
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
65937
|
+
} | undefined;
|
|
65938
|
+
pcbSx?: PcbSx | undefined;
|
|
65939
|
+
pcbRelative?: boolean | undefined;
|
|
65940
|
+
relative?: boolean | undefined;
|
|
65941
|
+
connectsTo?: string | string[] | undefined;
|
|
65942
|
+
padDiameter?: number | undefined;
|
|
65943
|
+
portHints?: (string | number)[] | undefined;
|
|
65944
|
+
solderMaskMargin?: number | undefined;
|
|
65945
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
65946
|
+
} | {
|
|
65947
|
+
shape: "oval";
|
|
65948
|
+
outerWidth: number;
|
|
65949
|
+
outerHeight: number;
|
|
65950
|
+
name?: string | undefined;
|
|
65951
|
+
pcbX?: string | number | undefined;
|
|
65952
|
+
pcbY?: string | number | undefined;
|
|
65953
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
65954
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
65955
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
65956
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
65957
|
+
pcbOffsetX?: number | undefined;
|
|
65958
|
+
pcbOffsetY?: number | undefined;
|
|
65959
|
+
pcbRotation?: number | undefined;
|
|
65960
|
+
pcbPositionAnchor?: string | undefined;
|
|
65961
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65962
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65963
|
+
pcbMarginTop?: number | undefined;
|
|
65964
|
+
pcbMarginRight?: number | undefined;
|
|
65965
|
+
pcbMarginBottom?: number | undefined;
|
|
65966
|
+
pcbMarginLeft?: number | undefined;
|
|
65967
|
+
pcbMarginX?: number | undefined;
|
|
65968
|
+
pcbMarginY?: number | undefined;
|
|
65969
|
+
pcbStyle?: {
|
|
65970
|
+
silkscreenFontSize?: number | undefined;
|
|
65971
|
+
viaPadDiameter?: number | undefined;
|
|
65972
|
+
viaHoleDiameter?: number | undefined;
|
|
65973
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
65974
|
+
offsetX: number;
|
|
65975
|
+
offsetY: number;
|
|
65976
|
+
} | undefined;
|
|
65977
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
65978
|
+
} | undefined;
|
|
65979
|
+
pcbSx?: PcbSx | undefined;
|
|
65980
|
+
pcbRelative?: boolean | undefined;
|
|
65981
|
+
relative?: boolean | undefined;
|
|
65982
|
+
connectsTo?: string | string[] | undefined;
|
|
65983
|
+
portHints?: (string | number)[] | undefined;
|
|
65984
|
+
solderMaskMargin?: number | undefined;
|
|
65985
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
65986
|
+
holeWidth?: number | undefined;
|
|
65987
|
+
holeHeight?: number | undefined;
|
|
65988
|
+
innerWidth?: number | undefined;
|
|
65989
|
+
innerHeight?: number | undefined;
|
|
65990
|
+
} | {
|
|
65991
|
+
shape: "pill";
|
|
65992
|
+
outerWidth: number;
|
|
65993
|
+
outerHeight: number;
|
|
65994
|
+
name?: string | undefined;
|
|
65995
|
+
pcbX?: string | number | undefined;
|
|
65996
|
+
pcbY?: string | number | undefined;
|
|
65997
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
65998
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
65999
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
66000
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
66001
|
+
pcbOffsetX?: number | undefined;
|
|
66002
|
+
pcbOffsetY?: number | undefined;
|
|
66003
|
+
pcbRotation?: number | undefined;
|
|
66004
|
+
pcbPositionAnchor?: string | undefined;
|
|
66005
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
66006
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
66007
|
+
pcbMarginTop?: number | undefined;
|
|
66008
|
+
pcbMarginRight?: number | undefined;
|
|
66009
|
+
pcbMarginBottom?: number | undefined;
|
|
66010
|
+
pcbMarginLeft?: number | undefined;
|
|
66011
|
+
pcbMarginX?: number | undefined;
|
|
66012
|
+
pcbMarginY?: number | undefined;
|
|
66013
|
+
pcbStyle?: {
|
|
66014
|
+
silkscreenFontSize?: number | undefined;
|
|
66015
|
+
viaPadDiameter?: number | undefined;
|
|
66016
|
+
viaHoleDiameter?: number | undefined;
|
|
66017
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66018
|
+
offsetX: number;
|
|
66019
|
+
offsetY: number;
|
|
66020
|
+
} | undefined;
|
|
66021
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66022
|
+
} | undefined;
|
|
66023
|
+
pcbSx?: PcbSx | undefined;
|
|
66024
|
+
pcbRelative?: boolean | undefined;
|
|
66025
|
+
relative?: boolean | undefined;
|
|
66026
|
+
connectsTo?: string | string[] | undefined;
|
|
66027
|
+
portHints?: (string | number)[] | undefined;
|
|
66028
|
+
solderMaskMargin?: number | undefined;
|
|
66029
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
66030
|
+
holeWidth?: number | undefined;
|
|
66031
|
+
holeHeight?: number | undefined;
|
|
66032
|
+
innerWidth?: number | undefined;
|
|
66033
|
+
innerHeight?: number | undefined;
|
|
66034
|
+
rectPad?: boolean | undefined;
|
|
66035
|
+
holeOffsetX?: number | undefined;
|
|
66036
|
+
holeOffsetY?: number | undefined;
|
|
66037
|
+
} | {
|
|
66038
|
+
shape: "circular_hole_with_rect_pad";
|
|
66039
|
+
holeDiameter: number;
|
|
66040
|
+
rectPadWidth: number;
|
|
66041
|
+
rectPadHeight: number;
|
|
66042
|
+
name?: string | undefined;
|
|
66043
|
+
pcbX?: string | number | undefined;
|
|
66044
|
+
pcbY?: string | number | undefined;
|
|
66045
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
66046
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
66047
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
66048
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
66049
|
+
pcbOffsetX?: number | undefined;
|
|
66050
|
+
pcbOffsetY?: number | undefined;
|
|
66051
|
+
pcbRotation?: number | undefined;
|
|
66052
|
+
pcbPositionAnchor?: string | undefined;
|
|
66053
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
66054
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
66055
|
+
pcbMarginTop?: number | undefined;
|
|
66056
|
+
pcbMarginRight?: number | undefined;
|
|
66057
|
+
pcbMarginBottom?: number | undefined;
|
|
66058
|
+
pcbMarginLeft?: number | undefined;
|
|
66059
|
+
pcbMarginX?: number | undefined;
|
|
66060
|
+
pcbMarginY?: number | undefined;
|
|
66061
|
+
pcbStyle?: {
|
|
66062
|
+
silkscreenFontSize?: number | undefined;
|
|
66063
|
+
viaPadDiameter?: number | undefined;
|
|
66064
|
+
viaHoleDiameter?: number | undefined;
|
|
66065
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66066
|
+
offsetX: number;
|
|
66067
|
+
offsetY: number;
|
|
66068
|
+
} | undefined;
|
|
66069
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66070
|
+
} | undefined;
|
|
66071
|
+
pcbSx?: PcbSx | undefined;
|
|
66072
|
+
pcbRelative?: boolean | undefined;
|
|
66073
|
+
relative?: boolean | undefined;
|
|
66074
|
+
connectsTo?: string | string[] | undefined;
|
|
66075
|
+
portHints?: (string | number)[] | undefined;
|
|
66076
|
+
solderMaskMargin?: number | undefined;
|
|
66077
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
66078
|
+
holeOffsetX?: number | undefined;
|
|
66079
|
+
holeOffsetY?: number | undefined;
|
|
66080
|
+
rectBorderRadius?: number | undefined;
|
|
66081
|
+
holeShape?: "circle" | undefined;
|
|
66082
|
+
padShape?: "rect" | undefined;
|
|
66083
|
+
} | {
|
|
66084
|
+
shape: "pill_hole_with_rect_pad";
|
|
66085
|
+
holeWidth: number;
|
|
66086
|
+
holeHeight: number;
|
|
66087
|
+
rectPadWidth: number;
|
|
66088
|
+
rectPadHeight: number;
|
|
66089
|
+
name?: string | undefined;
|
|
66090
|
+
pcbX?: string | number | undefined;
|
|
66091
|
+
pcbY?: string | number | undefined;
|
|
66092
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
66093
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
66094
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
66095
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
66096
|
+
pcbOffsetX?: number | undefined;
|
|
66097
|
+
pcbOffsetY?: number | undefined;
|
|
66098
|
+
pcbRotation?: number | undefined;
|
|
66099
|
+
pcbPositionAnchor?: string | undefined;
|
|
66100
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
66101
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
66102
|
+
pcbMarginTop?: number | undefined;
|
|
66103
|
+
pcbMarginRight?: number | undefined;
|
|
66104
|
+
pcbMarginBottom?: number | undefined;
|
|
66105
|
+
pcbMarginLeft?: number | undefined;
|
|
66106
|
+
pcbMarginX?: number | undefined;
|
|
66107
|
+
pcbMarginY?: number | undefined;
|
|
66108
|
+
pcbStyle?: {
|
|
66109
|
+
silkscreenFontSize?: number | undefined;
|
|
66110
|
+
viaPadDiameter?: number | undefined;
|
|
66111
|
+
viaHoleDiameter?: number | undefined;
|
|
66112
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66113
|
+
offsetX: number;
|
|
66114
|
+
offsetY: number;
|
|
66115
|
+
} | undefined;
|
|
66116
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66117
|
+
} | undefined;
|
|
66118
|
+
pcbSx?: PcbSx | undefined;
|
|
66119
|
+
pcbRelative?: boolean | undefined;
|
|
66120
|
+
relative?: boolean | undefined;
|
|
66121
|
+
connectsTo?: string | string[] | undefined;
|
|
66122
|
+
portHints?: (string | number)[] | undefined;
|
|
66123
|
+
solderMaskMargin?: number | undefined;
|
|
66124
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
66125
|
+
holeOffsetX?: number | undefined;
|
|
66126
|
+
holeOffsetY?: number | undefined;
|
|
66127
|
+
holeShape?: "pill" | undefined;
|
|
66128
|
+
padShape?: "rect" | undefined;
|
|
66129
|
+
} | {
|
|
66130
|
+
shape: "hole_with_polygon_pad";
|
|
66131
|
+
holeOffsetX: number;
|
|
66132
|
+
holeOffsetY: number;
|
|
66133
|
+
holeShape: "circle" | "oval" | "pill" | "rotated_pill";
|
|
66134
|
+
padOutline: {
|
|
66135
|
+
x: number;
|
|
66136
|
+
y: number;
|
|
66137
|
+
}[];
|
|
66138
|
+
name?: string | undefined;
|
|
66139
|
+
pcbX?: string | number | undefined;
|
|
66140
|
+
pcbY?: string | number | undefined;
|
|
66141
|
+
pcbLeftEdgeX?: string | number | undefined;
|
|
66142
|
+
pcbRightEdgeX?: string | number | undefined;
|
|
66143
|
+
pcbTopEdgeY?: string | number | undefined;
|
|
66144
|
+
pcbBottomEdgeY?: string | number | undefined;
|
|
66145
|
+
pcbOffsetX?: number | undefined;
|
|
66146
|
+
pcbOffsetY?: number | undefined;
|
|
66147
|
+
pcbPositionAnchor?: string | undefined;
|
|
66148
|
+
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
66149
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
66150
|
+
pcbMarginTop?: number | undefined;
|
|
66151
|
+
pcbMarginRight?: number | undefined;
|
|
66152
|
+
pcbMarginBottom?: number | undefined;
|
|
66153
|
+
pcbMarginLeft?: number | undefined;
|
|
66154
|
+
pcbMarginX?: number | undefined;
|
|
66155
|
+
pcbMarginY?: number | undefined;
|
|
66156
|
+
pcbStyle?: {
|
|
66157
|
+
silkscreenFontSize?: number | undefined;
|
|
66158
|
+
viaPadDiameter?: number | undefined;
|
|
66159
|
+
viaHoleDiameter?: number | undefined;
|
|
66160
|
+
silkscreenTextPosition?: "centered" | "outside" | "none" | {
|
|
66161
|
+
offsetX: number;
|
|
66162
|
+
offsetY: number;
|
|
66163
|
+
} | undefined;
|
|
66164
|
+
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
66165
|
+
} | undefined;
|
|
66166
|
+
pcbSx?: PcbSx | undefined;
|
|
66167
|
+
pcbRelative?: boolean | undefined;
|
|
66168
|
+
relative?: boolean | undefined;
|
|
66169
|
+
connectsTo?: string | string[] | undefined;
|
|
66170
|
+
holeDiameter?: number | undefined;
|
|
66171
|
+
portHints?: (string | number)[] | undefined;
|
|
66172
|
+
solderMaskMargin?: number | undefined;
|
|
66173
|
+
coveredWithSolderMask?: boolean | undefined;
|
|
66174
|
+
holeWidth?: number | undefined;
|
|
66175
|
+
holeHeight?: number | undefined;
|
|
66176
|
+
}, unknown>;
|
|
65850
66177
|
|
|
65851
66178
|
declare const resistorPinLabels: readonly ["pin1", "pin2", "pos", "neg"];
|
|
65852
66179
|
type ResistorPinLabels = (typeof resistorPinLabels)[number];
|
|
@@ -68939,6 +69266,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68939
69266
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68940
69267
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
68941
69268
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
69269
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
68942
69270
|
}, "strip", z.ZodTypeAny, {
|
|
68943
69271
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68944
69272
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68965,6 +69293,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68965
69293
|
isUsingPushPull?: boolean | undefined;
|
|
68966
69294
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68967
69295
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69296
|
+
isGpio?: boolean | undefined;
|
|
68968
69297
|
}, {
|
|
68969
69298
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68970
69299
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68991,6 +69320,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68991
69320
|
isUsingPushPull?: boolean | undefined;
|
|
68992
69321
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68993
69322
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69323
|
+
isGpio?: boolean | undefined;
|
|
68994
69324
|
}>>>;
|
|
68995
69325
|
mfn: z.ZodOptional<z.ZodString>;
|
|
68996
69326
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -69087,6 +69417,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69087
69417
|
isUsingPushPull?: boolean | undefined;
|
|
69088
69418
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69089
69419
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69420
|
+
isGpio?: boolean | undefined;
|
|
69090
69421
|
}> | undefined;
|
|
69091
69422
|
cadModel?: string | {
|
|
69092
69423
|
stlUrl: string;
|
|
@@ -69618,6 +69949,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69618
69949
|
isUsingPushPull?: boolean | undefined;
|
|
69619
69950
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69620
69951
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69952
|
+
isGpio?: boolean | undefined;
|
|
69621
69953
|
}> | undefined;
|
|
69622
69954
|
cadModel?: string | {
|
|
69623
69955
|
stlUrl: string;
|
|
@@ -73153,6 +73485,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73153
73485
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73154
73486
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
73155
73487
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
73488
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
73156
73489
|
}, "strip", z.ZodTypeAny, {
|
|
73157
73490
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73158
73491
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73179,6 +73512,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73179
73512
|
isUsingPushPull?: boolean | undefined;
|
|
73180
73513
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73181
73514
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73515
|
+
isGpio?: boolean | undefined;
|
|
73182
73516
|
}, {
|
|
73183
73517
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
73184
73518
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -73205,6 +73539,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73205
73539
|
isUsingPushPull?: boolean | undefined;
|
|
73206
73540
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73207
73541
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73542
|
+
isGpio?: boolean | undefined;
|
|
73208
73543
|
}>>>;
|
|
73209
73544
|
mfn: z.ZodOptional<z.ZodString>;
|
|
73210
73545
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -73295,6 +73630,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73295
73630
|
isUsingPushPull?: boolean | undefined;
|
|
73296
73631
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73297
73632
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73633
|
+
isGpio?: boolean | undefined;
|
|
73298
73634
|
}> | undefined;
|
|
73299
73635
|
cadModel?: string | {
|
|
73300
73636
|
stlUrl: string;
|
|
@@ -73820,6 +74156,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73820
74156
|
isUsingPushPull?: boolean | undefined;
|
|
73821
74157
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73822
74158
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
74159
|
+
isGpio?: boolean | undefined;
|
|
73823
74160
|
}> | undefined;
|
|
73824
74161
|
cadModel?: string | {
|
|
73825
74162
|
stlUrl: string;
|
|
@@ -77350,6 +77687,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77350
77687
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77351
77688
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
77352
77689
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77690
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
77353
77691
|
}, "strip", z.ZodTypeAny, {
|
|
77354
77692
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77355
77693
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77376,6 +77714,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77376
77714
|
isUsingPushPull?: boolean | undefined;
|
|
77377
77715
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77378
77716
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77717
|
+
isGpio?: boolean | undefined;
|
|
77379
77718
|
}, {
|
|
77380
77719
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77381
77720
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77402,6 +77741,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77402
77741
|
isUsingPushPull?: boolean | undefined;
|
|
77403
77742
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77404
77743
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77744
|
+
isGpio?: boolean | undefined;
|
|
77405
77745
|
}>>>;
|
|
77406
77746
|
mfn: z.ZodOptional<z.ZodString>;
|
|
77407
77747
|
} & {
|
|
@@ -77496,6 +77836,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77496
77836
|
isUsingPushPull?: boolean | undefined;
|
|
77497
77837
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77498
77838
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77839
|
+
isGpio?: boolean | undefined;
|
|
77499
77840
|
}> | undefined;
|
|
77500
77841
|
cadModel?: string | {
|
|
77501
77842
|
stlUrl: string;
|
|
@@ -78024,6 +78365,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
78024
78365
|
isUsingPushPull?: boolean | undefined;
|
|
78025
78366
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
78026
78367
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
78368
|
+
isGpio?: boolean | undefined;
|
|
78027
78369
|
}> | undefined;
|
|
78028
78370
|
cadModel?: string | {
|
|
78029
78371
|
stlUrl: string;
|
|
@@ -81552,6 +81894,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81552
81894
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81553
81895
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
81554
81896
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
81897
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
81555
81898
|
}, "strip", z.ZodTypeAny, {
|
|
81556
81899
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81557
81900
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81578,6 +81921,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81578
81921
|
isUsingPushPull?: boolean | undefined;
|
|
81579
81922
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81580
81923
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81924
|
+
isGpio?: boolean | undefined;
|
|
81581
81925
|
}, {
|
|
81582
81926
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81583
81927
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81604,6 +81948,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81604
81948
|
isUsingPushPull?: boolean | undefined;
|
|
81605
81949
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81606
81950
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81951
|
+
isGpio?: boolean | undefined;
|
|
81607
81952
|
}>>>;
|
|
81608
81953
|
mfn: z.ZodOptional<z.ZodString>;
|
|
81609
81954
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -81695,6 +82040,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81695
82040
|
isUsingPushPull?: boolean | undefined;
|
|
81696
82041
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81697
82042
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
82043
|
+
isGpio?: boolean | undefined;
|
|
81698
82044
|
}> | undefined;
|
|
81699
82045
|
cadModel?: string | {
|
|
81700
82046
|
stlUrl: string;
|
|
@@ -82220,6 +82566,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
82220
82566
|
isUsingPushPull?: boolean | undefined;
|
|
82221
82567
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
82222
82568
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
82569
|
+
isGpio?: boolean | undefined;
|
|
82223
82570
|
}> | undefined;
|
|
82224
82571
|
cadModel?: string | {
|
|
82225
82572
|
stlUrl: string;
|
|
@@ -87234,6 +87581,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87234
87581
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87235
87582
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
87236
87583
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
87584
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
87237
87585
|
}, "strip", z.ZodTypeAny, {
|
|
87238
87586
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87239
87587
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87260,6 +87608,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87260
87608
|
isUsingPushPull?: boolean | undefined;
|
|
87261
87609
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87262
87610
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87611
|
+
isGpio?: boolean | undefined;
|
|
87263
87612
|
}, {
|
|
87264
87613
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
87265
87614
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87286,6 +87635,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87286
87635
|
isUsingPushPull?: boolean | undefined;
|
|
87287
87636
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87288
87637
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87638
|
+
isGpio?: boolean | undefined;
|
|
87289
87639
|
}>>>;
|
|
87290
87640
|
mfn: z.ZodOptional<z.ZodString>;
|
|
87291
87641
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -87387,6 +87737,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87387
87737
|
isUsingPushPull?: boolean | undefined;
|
|
87388
87738
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87389
87739
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87740
|
+
isGpio?: boolean | undefined;
|
|
87390
87741
|
}> | undefined;
|
|
87391
87742
|
cadModel?: string | {
|
|
87392
87743
|
stlUrl: string;
|
|
@@ -87919,6 +88270,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87919
88270
|
isUsingPushPull?: boolean | undefined;
|
|
87920
88271
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87921
88272
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
88273
|
+
isGpio?: boolean | undefined;
|
|
87922
88274
|
}> | undefined;
|
|
87923
88275
|
cadModel?: string | {
|
|
87924
88276
|
stlUrl: string;
|
|
@@ -91480,6 +91832,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91480
91832
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91481
91833
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
91482
91834
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
91835
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
91483
91836
|
}, "strip", z.ZodTypeAny, {
|
|
91484
91837
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91485
91838
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91506,6 +91859,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91506
91859
|
isUsingPushPull?: boolean | undefined;
|
|
91507
91860
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91508
91861
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91862
|
+
isGpio?: boolean | undefined;
|
|
91509
91863
|
}, {
|
|
91510
91864
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91511
91865
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91532,6 +91886,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91532
91886
|
isUsingPushPull?: boolean | undefined;
|
|
91533
91887
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91534
91888
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91889
|
+
isGpio?: boolean | undefined;
|
|
91535
91890
|
}>>>;
|
|
91536
91891
|
mfn: z.ZodOptional<z.ZodString>;
|
|
91537
91892
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -91620,6 +91975,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91620
91975
|
isUsingPushPull?: boolean | undefined;
|
|
91621
91976
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91622
91977
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91978
|
+
isGpio?: boolean | undefined;
|
|
91623
91979
|
}> | undefined;
|
|
91624
91980
|
cadModel?: string | {
|
|
91625
91981
|
stlUrl: string;
|
|
@@ -92144,6 +92500,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
92144
92500
|
isUsingPushPull?: boolean | undefined;
|
|
92145
92501
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
92146
92502
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
92503
|
+
isGpio?: boolean | undefined;
|
|
92147
92504
|
}> | undefined;
|
|
92148
92505
|
cadModel?: string | {
|
|
92149
92506
|
stlUrl: string;
|
|
@@ -100207,6 +100564,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100207
100564
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100208
100565
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
100209
100566
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
100567
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
100210
100568
|
}, "strip", z.ZodTypeAny, {
|
|
100211
100569
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100212
100570
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100233,6 +100591,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100233
100591
|
isUsingPushPull?: boolean | undefined;
|
|
100234
100592
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100235
100593
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100594
|
+
isGpio?: boolean | undefined;
|
|
100236
100595
|
}, {
|
|
100237
100596
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100238
100597
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -100259,6 +100618,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100259
100618
|
isUsingPushPull?: boolean | undefined;
|
|
100260
100619
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100261
100620
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100621
|
+
isGpio?: boolean | undefined;
|
|
100262
100622
|
}>>>;
|
|
100263
100623
|
mfn: z.ZodOptional<z.ZodString>;
|
|
100264
100624
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -100349,6 +100709,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100349
100709
|
isUsingPushPull?: boolean | undefined;
|
|
100350
100710
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100351
100711
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100712
|
+
isGpio?: boolean | undefined;
|
|
100352
100713
|
}> | undefined;
|
|
100353
100714
|
cadModel?: string | {
|
|
100354
100715
|
stlUrl: string;
|
|
@@ -100875,6 +101236,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100875
101236
|
isUsingPushPull?: boolean | undefined;
|
|
100876
101237
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100877
101238
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
101239
|
+
isGpio?: boolean | undefined;
|
|
100878
101240
|
}> | undefined;
|
|
100879
101241
|
cadModel?: string | {
|
|
100880
101242
|
stlUrl: string;
|
|
@@ -106080,6 +106442,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106080
106442
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106081
106443
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
106082
106444
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
106445
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
106083
106446
|
}, "strip", z.ZodTypeAny, {
|
|
106084
106447
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106085
106448
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -106106,6 +106469,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106106
106469
|
isUsingPushPull?: boolean | undefined;
|
|
106107
106470
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106108
106471
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106472
|
+
isGpio?: boolean | undefined;
|
|
106109
106473
|
}, {
|
|
106110
106474
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106111
106475
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -106132,6 +106496,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106132
106496
|
isUsingPushPull?: boolean | undefined;
|
|
106133
106497
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106134
106498
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106499
|
+
isGpio?: boolean | undefined;
|
|
106135
106500
|
}>>>;
|
|
106136
106501
|
mfn: z.ZodOptional<z.ZodString>;
|
|
106137
106502
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -106389,6 +106754,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106389
106754
|
isUsingPushPull?: boolean | undefined;
|
|
106390
106755
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106391
106756
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106757
|
+
isGpio?: boolean | undefined;
|
|
106392
106758
|
}> | undefined;
|
|
106393
106759
|
cadModel?: string | {
|
|
106394
106760
|
stlUrl: string;
|
|
@@ -106963,6 +107329,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106963
107329
|
isUsingPushPull?: boolean | undefined;
|
|
106964
107330
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106965
107331
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
107332
|
+
isGpio?: boolean | undefined;
|
|
106966
107333
|
}> | undefined;
|
|
106967
107334
|
cadModel?: string | {
|
|
106968
107335
|
stlUrl: string;
|
|
@@ -110602,6 +110969,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110602
110969
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110603
110970
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
110604
110971
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
110972
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
110605
110973
|
}, "strip", z.ZodTypeAny, {
|
|
110606
110974
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110607
110975
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110628,6 +110996,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110628
110996
|
isUsingPushPull?: boolean | undefined;
|
|
110629
110997
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110630
110998
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110999
|
+
isGpio?: boolean | undefined;
|
|
110631
111000
|
}, {
|
|
110632
111001
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110633
111002
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110654,6 +111023,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110654
111023
|
isUsingPushPull?: boolean | undefined;
|
|
110655
111024
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110656
111025
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111026
|
+
isGpio?: boolean | undefined;
|
|
110657
111027
|
}>>>;
|
|
110658
111028
|
mfn: z.ZodOptional<z.ZodString>;
|
|
110659
111029
|
} & {
|
|
@@ -111036,6 +111406,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111036
111406
|
isUsingPushPull?: boolean | undefined;
|
|
111037
111407
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111038
111408
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111409
|
+
isGpio?: boolean | undefined;
|
|
111039
111410
|
}> | undefined;
|
|
111040
111411
|
cadModel?: string | {
|
|
111041
111412
|
stlUrl: string;
|
|
@@ -111634,6 +112005,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111634
112005
|
isUsingPushPull?: boolean | undefined;
|
|
111635
112006
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111636
112007
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
112008
|
+
isGpio?: boolean | undefined;
|
|
111637
112009
|
}> | undefined;
|
|
111638
112010
|
cadModel?: string | {
|
|
111639
112011
|
stlUrl: string;
|
|
@@ -116632,6 +117004,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116632
117004
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116633
117005
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
116634
117006
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
117007
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
116635
117008
|
}, "strip", z.ZodTypeAny, {
|
|
116636
117009
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116637
117010
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116658,6 +117031,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116658
117031
|
isUsingPushPull?: boolean | undefined;
|
|
116659
117032
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116660
117033
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117034
|
+
isGpio?: boolean | undefined;
|
|
116661
117035
|
}, {
|
|
116662
117036
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116663
117037
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116684,6 +117058,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116684
117058
|
isUsingPushPull?: boolean | undefined;
|
|
116685
117059
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116686
117060
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117061
|
+
isGpio?: boolean | undefined;
|
|
116687
117062
|
}>>>;
|
|
116688
117063
|
mfn: z.ZodOptional<z.ZodString>;
|
|
116689
117064
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -116773,6 +117148,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116773
117148
|
isUsingPushPull?: boolean | undefined;
|
|
116774
117149
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116775
117150
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117151
|
+
isGpio?: boolean | undefined;
|
|
116776
117152
|
}> | undefined;
|
|
116777
117153
|
cadModel?: string | {
|
|
116778
117154
|
stlUrl: string;
|
|
@@ -117297,6 +117673,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
117297
117673
|
isUsingPushPull?: boolean | undefined;
|
|
117298
117674
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
117299
117675
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
117676
|
+
isGpio?: boolean | undefined;
|
|
117300
117677
|
}> | undefined;
|
|
117301
117678
|
cadModel?: string | {
|
|
117302
117679
|
stlUrl: string;
|
|
@@ -120822,6 +121199,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120822
121199
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120823
121200
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
120824
121201
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
121202
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
120825
121203
|
}, "strip", z.ZodTypeAny, {
|
|
120826
121204
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120827
121205
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120848,6 +121226,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120848
121226
|
isUsingPushPull?: boolean | undefined;
|
|
120849
121227
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120850
121228
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121229
|
+
isGpio?: boolean | undefined;
|
|
120851
121230
|
}, {
|
|
120852
121231
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120853
121232
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120874,6 +121253,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120874
121253
|
isUsingPushPull?: boolean | undefined;
|
|
120875
121254
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120876
121255
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121256
|
+
isGpio?: boolean | undefined;
|
|
120877
121257
|
}>>>;
|
|
120878
121258
|
mfn: z.ZodOptional<z.ZodString>;
|
|
120879
121259
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -120964,6 +121344,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120964
121344
|
isUsingPushPull?: boolean | undefined;
|
|
120965
121345
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120966
121346
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121347
|
+
isGpio?: boolean | undefined;
|
|
120967
121348
|
}> | undefined;
|
|
120968
121349
|
cadModel?: string | {
|
|
120969
121350
|
stlUrl: string;
|
|
@@ -121488,6 +121869,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121488
121869
|
isUsingPushPull?: boolean | undefined;
|
|
121489
121870
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121490
121871
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121872
|
+
isGpio?: boolean | undefined;
|
|
121491
121873
|
}> | undefined;
|
|
121492
121874
|
cadModel?: string | {
|
|
121493
121875
|
stlUrl: string;
|
|
@@ -125019,6 +125401,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125019
125401
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125020
125402
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
125021
125403
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
125404
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
125022
125405
|
}, "strip", z.ZodTypeAny, {
|
|
125023
125406
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
125024
125407
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -125045,6 +125428,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125045
125428
|
isUsingPushPull?: boolean | undefined;
|
|
125046
125429
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125047
125430
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125431
|
+
isGpio?: boolean | undefined;
|
|
125048
125432
|
}, {
|
|
125049
125433
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
125050
125434
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -125071,6 +125455,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125071
125455
|
isUsingPushPull?: boolean | undefined;
|
|
125072
125456
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125073
125457
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125458
|
+
isGpio?: boolean | undefined;
|
|
125074
125459
|
}>>>;
|
|
125075
125460
|
mfn: z.ZodOptional<z.ZodString>;
|
|
125076
125461
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -125158,6 +125543,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125158
125543
|
isUsingPushPull?: boolean | undefined;
|
|
125159
125544
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125160
125545
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125546
|
+
isGpio?: boolean | undefined;
|
|
125161
125547
|
}> | undefined;
|
|
125162
125548
|
cadModel?: string | {
|
|
125163
125549
|
stlUrl: string;
|
|
@@ -125681,6 +126067,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125681
126067
|
isUsingPushPull?: boolean | undefined;
|
|
125682
126068
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125683
126069
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
126070
|
+
isGpio?: boolean | undefined;
|
|
125684
126071
|
}> | undefined;
|
|
125685
126072
|
cadModel?: string | {
|
|
125686
126073
|
stlUrl: string;
|
|
@@ -129213,6 +129600,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129213
129600
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129214
129601
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
129215
129602
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
129603
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
129216
129604
|
}, "strip", z.ZodTypeAny, {
|
|
129217
129605
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129218
129606
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -129239,6 +129627,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129239
129627
|
isUsingPushPull?: boolean | undefined;
|
|
129240
129628
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129241
129629
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129630
|
+
isGpio?: boolean | undefined;
|
|
129242
129631
|
}, {
|
|
129243
129632
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
129244
129633
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -129265,6 +129654,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129265
129654
|
isUsingPushPull?: boolean | undefined;
|
|
129266
129655
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129267
129656
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129657
|
+
isGpio?: boolean | undefined;
|
|
129268
129658
|
}>>>;
|
|
129269
129659
|
mfn: z.ZodOptional<z.ZodString>;
|
|
129270
129660
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -129356,6 +129746,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129356
129746
|
isUsingPushPull?: boolean | undefined;
|
|
129357
129747
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129358
129748
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129749
|
+
isGpio?: boolean | undefined;
|
|
129359
129750
|
}> | undefined;
|
|
129360
129751
|
cadModel?: string | {
|
|
129361
129752
|
stlUrl: string;
|
|
@@ -129882,6 +130273,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129882
130273
|
isUsingPushPull?: boolean | undefined;
|
|
129883
130274
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129884
130275
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
130276
|
+
isGpio?: boolean | undefined;
|
|
129885
130277
|
}> | undefined;
|
|
129886
130278
|
cadModel?: string | {
|
|
129887
130279
|
stlUrl: string;
|
|
@@ -133403,6 +133795,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133403
133795
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133404
133796
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
133405
133797
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
133798
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
133406
133799
|
}, "strip", z.ZodTypeAny, {
|
|
133407
133800
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133408
133801
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133429,6 +133822,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133429
133822
|
isUsingPushPull?: boolean | undefined;
|
|
133430
133823
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133431
133824
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133825
|
+
isGpio?: boolean | undefined;
|
|
133432
133826
|
}, {
|
|
133433
133827
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
133434
133828
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -133455,6 +133849,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133455
133849
|
isUsingPushPull?: boolean | undefined;
|
|
133456
133850
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133457
133851
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133852
|
+
isGpio?: boolean | undefined;
|
|
133458
133853
|
}>>>;
|
|
133459
133854
|
mfn: z.ZodOptional<z.ZodString>;
|
|
133460
133855
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -133551,6 +133946,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133551
133946
|
isUsingPushPull?: boolean | undefined;
|
|
133552
133947
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133553
133948
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133949
|
+
isGpio?: boolean | undefined;
|
|
133554
133950
|
}> | undefined;
|
|
133555
133951
|
cadModel?: string | {
|
|
133556
133952
|
stlUrl: string;
|
|
@@ -134081,6 +134477,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134081
134477
|
isUsingPushPull?: boolean | undefined;
|
|
134082
134478
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134083
134479
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134480
|
+
isGpio?: boolean | undefined;
|
|
134084
134481
|
}> | undefined;
|
|
134085
134482
|
cadModel?: string | {
|
|
134086
134483
|
stlUrl: string;
|
|
@@ -134611,6 +135008,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134611
135008
|
isUsingPushPull?: boolean | undefined;
|
|
134612
135009
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134613
135010
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135011
|
+
isGpio?: boolean | undefined;
|
|
134614
135012
|
}> | undefined;
|
|
134615
135013
|
cadModel?: string | {
|
|
134616
135014
|
stlUrl: string;
|
|
@@ -135141,6 +135539,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135141
135539
|
isUsingPushPull?: boolean | undefined;
|
|
135142
135540
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135143
135541
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135542
|
+
isGpio?: boolean | undefined;
|
|
135144
135543
|
}> | undefined;
|
|
135145
135544
|
cadModel?: string | {
|
|
135146
135545
|
stlUrl: string;
|
|
@@ -135677,6 +136076,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135677
136076
|
isUsingPushPull?: boolean | undefined;
|
|
135678
136077
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135679
136078
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
136079
|
+
isGpio?: boolean | undefined;
|
|
135680
136080
|
}> | undefined;
|
|
135681
136081
|
cadModel?: string | {
|
|
135682
136082
|
stlUrl: string;
|
|
@@ -136201,6 +136601,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136201
136601
|
isUsingPushPull?: boolean | undefined;
|
|
136202
136602
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
136203
136603
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
136604
|
+
isGpio?: boolean | undefined;
|
|
136204
136605
|
}> | undefined;
|
|
136205
136606
|
cadModel?: string | {
|
|
136206
136607
|
stlUrl: string;
|
|
@@ -139750,6 +140151,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139750
140151
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139751
140152
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
139752
140153
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
140154
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
139753
140155
|
}, "strip", z.ZodTypeAny, {
|
|
139754
140156
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139755
140157
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139776,6 +140178,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139776
140178
|
isUsingPushPull?: boolean | undefined;
|
|
139777
140179
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139778
140180
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140181
|
+
isGpio?: boolean | undefined;
|
|
139779
140182
|
}, {
|
|
139780
140183
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139781
140184
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139802,6 +140205,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139802
140205
|
isUsingPushPull?: boolean | undefined;
|
|
139803
140206
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139804
140207
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140208
|
+
isGpio?: boolean | undefined;
|
|
139805
140209
|
}>>>;
|
|
139806
140210
|
mfn: z.ZodOptional<z.ZodString>;
|
|
139807
140211
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -139894,6 +140298,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139894
140298
|
isUsingPushPull?: boolean | undefined;
|
|
139895
140299
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139896
140300
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140301
|
+
isGpio?: boolean | undefined;
|
|
139897
140302
|
}> | undefined;
|
|
139898
140303
|
cadModel?: string | {
|
|
139899
140304
|
stlUrl: string;
|
|
@@ -140422,6 +140827,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
140422
140827
|
isUsingPushPull?: boolean | undefined;
|
|
140423
140828
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140424
140829
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
140830
|
+
isGpio?: boolean | undefined;
|
|
140425
140831
|
}> | undefined;
|
|
140426
140832
|
cadModel?: string | {
|
|
140427
140833
|
stlUrl: string;
|
|
@@ -143962,6 +144368,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143962
144368
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143963
144369
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
143964
144370
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
144371
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
143965
144372
|
}, "strip", z.ZodTypeAny, {
|
|
143966
144373
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143967
144374
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143988,6 +144395,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143988
144395
|
isUsingPushPull?: boolean | undefined;
|
|
143989
144396
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
143990
144397
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144398
|
+
isGpio?: boolean | undefined;
|
|
143991
144399
|
}, {
|
|
143992
144400
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143993
144401
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -144014,6 +144422,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144014
144422
|
isUsingPushPull?: boolean | undefined;
|
|
144015
144423
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144016
144424
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144425
|
+
isGpio?: boolean | undefined;
|
|
144017
144426
|
}>>>;
|
|
144018
144427
|
mfn: z.ZodOptional<z.ZodString>;
|
|
144019
144428
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -144114,6 +144523,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144114
144523
|
isUsingPushPull?: boolean | undefined;
|
|
144115
144524
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144116
144525
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144526
|
+
isGpio?: boolean | undefined;
|
|
144117
144527
|
}> | undefined;
|
|
144118
144528
|
cadModel?: string | {
|
|
144119
144529
|
stlUrl: string;
|
|
@@ -144647,6 +145057,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144647
145057
|
isUsingPushPull?: boolean | undefined;
|
|
144648
145058
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144649
145059
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
145060
|
+
isGpio?: boolean | undefined;
|
|
144650
145061
|
}> | undefined;
|
|
144651
145062
|
cadModel?: string | {
|
|
144652
145063
|
stlUrl: string;
|
|
@@ -145181,6 +145592,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
145181
145592
|
isUsingPushPull?: boolean | undefined;
|
|
145182
145593
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
145183
145594
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
145595
|
+
isGpio?: boolean | undefined;
|
|
145184
145596
|
}> | undefined;
|
|
145185
145597
|
cadModel?: string | {
|
|
145186
145598
|
stlUrl: string;
|
|
@@ -149733,6 +150145,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149733
150145
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149734
150146
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
149735
150147
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
150148
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
149736
150149
|
}, "strip", z.ZodTypeAny, {
|
|
149737
150150
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149738
150151
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149759,6 +150172,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149759
150172
|
isUsingPushPull?: boolean | undefined;
|
|
149760
150173
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149761
150174
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150175
|
+
isGpio?: boolean | undefined;
|
|
149762
150176
|
}, {
|
|
149763
150177
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149764
150178
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149785,6 +150199,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149785
150199
|
isUsingPushPull?: boolean | undefined;
|
|
149786
150200
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149787
150201
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150202
|
+
isGpio?: boolean | undefined;
|
|
149788
150203
|
}>>>;
|
|
149789
150204
|
mfn: z.ZodOptional<z.ZodString>;
|
|
149790
150205
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -149885,6 +150300,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149885
150300
|
isUsingPushPull?: boolean | undefined;
|
|
149886
150301
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149887
150302
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150303
|
+
isGpio?: boolean | undefined;
|
|
149888
150304
|
}> | undefined;
|
|
149889
150305
|
cadModel?: string | {
|
|
149890
150306
|
stlUrl: string;
|
|
@@ -150415,6 +150831,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150415
150831
|
isUsingPushPull?: boolean | undefined;
|
|
150416
150832
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150417
150833
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150834
|
+
isGpio?: boolean | undefined;
|
|
150418
150835
|
}> | undefined;
|
|
150419
150836
|
cadModel?: string | {
|
|
150420
150837
|
stlUrl: string;
|
|
@@ -150945,6 +151362,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150945
151362
|
isUsingPushPull?: boolean | undefined;
|
|
150946
151363
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150947
151364
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151365
|
+
isGpio?: boolean | undefined;
|
|
150948
151366
|
}> | undefined;
|
|
150949
151367
|
cadModel?: string | {
|
|
150950
151368
|
stlUrl: string;
|
|
@@ -151475,6 +151893,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
151475
151893
|
isUsingPushPull?: boolean | undefined;
|
|
151476
151894
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
151477
151895
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151896
|
+
isGpio?: boolean | undefined;
|
|
151478
151897
|
}> | undefined;
|
|
151479
151898
|
cadModel?: string | {
|
|
151480
151899
|
stlUrl: string;
|
|
@@ -156251,6 +156670,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156251
156670
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156252
156671
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
156253
156672
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
156673
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
156254
156674
|
}, "strip", z.ZodTypeAny, {
|
|
156255
156675
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156256
156676
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -156277,6 +156697,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156277
156697
|
isUsingPushPull?: boolean | undefined;
|
|
156278
156698
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156279
156699
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156700
|
+
isGpio?: boolean | undefined;
|
|
156280
156701
|
}, {
|
|
156281
156702
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156282
156703
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -156303,6 +156724,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156303
156724
|
isUsingPushPull?: boolean | undefined;
|
|
156304
156725
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156305
156726
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156727
|
+
isGpio?: boolean | undefined;
|
|
156306
156728
|
}>>>;
|
|
156307
156729
|
mfn: z.ZodOptional<z.ZodString>;
|
|
156308
156730
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -156391,6 +156813,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156391
156813
|
isUsingPushPull?: boolean | undefined;
|
|
156392
156814
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156393
156815
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156816
|
+
isGpio?: boolean | undefined;
|
|
156394
156817
|
}> | undefined;
|
|
156395
156818
|
cadModel?: string | {
|
|
156396
156819
|
stlUrl: string;
|
|
@@ -156914,6 +157337,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156914
157337
|
isUsingPushPull?: boolean | undefined;
|
|
156915
157338
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156916
157339
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
157340
|
+
isGpio?: boolean | undefined;
|
|
156917
157341
|
}> | undefined;
|
|
156918
157342
|
cadModel?: string | {
|
|
156919
157343
|
stlUrl: string;
|
|
@@ -160445,6 +160869,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160445
160869
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160446
160870
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
160447
160871
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
160872
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
160448
160873
|
}, "strip", z.ZodTypeAny, {
|
|
160449
160874
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160450
160875
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160471,6 +160896,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160471
160896
|
isUsingPushPull?: boolean | undefined;
|
|
160472
160897
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160473
160898
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160899
|
+
isGpio?: boolean | undefined;
|
|
160474
160900
|
}, {
|
|
160475
160901
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
160476
160902
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -160497,6 +160923,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160497
160923
|
isUsingPushPull?: boolean | undefined;
|
|
160498
160924
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160499
160925
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160926
|
+
isGpio?: boolean | undefined;
|
|
160500
160927
|
}>>>;
|
|
160501
160928
|
mfn: z.ZodOptional<z.ZodString>;
|
|
160502
160929
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -160590,6 +161017,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160590
161017
|
isUsingPushPull?: boolean | undefined;
|
|
160591
161018
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160592
161019
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161020
|
+
isGpio?: boolean | undefined;
|
|
160593
161021
|
}> | undefined;
|
|
160594
161022
|
cadModel?: string | {
|
|
160595
161023
|
stlUrl: string;
|
|
@@ -161119,6 +161547,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
161119
161547
|
isUsingPushPull?: boolean | undefined;
|
|
161120
161548
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
161121
161549
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161550
|
+
isGpio?: boolean | undefined;
|
|
161122
161551
|
}> | undefined;
|
|
161123
161552
|
cadModel?: string | {
|
|
161124
161553
|
stlUrl: string;
|
|
@@ -164656,6 +165085,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164656
165085
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164657
165086
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
164658
165087
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
165088
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
164659
165089
|
}, "strip", z.ZodTypeAny, {
|
|
164660
165090
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164661
165091
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164682,6 +165112,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164682
165112
|
isUsingPushPull?: boolean | undefined;
|
|
164683
165113
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164684
165114
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165115
|
+
isGpio?: boolean | undefined;
|
|
164685
165116
|
}, {
|
|
164686
165117
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164687
165118
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164708,6 +165139,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164708
165139
|
isUsingPushPull?: boolean | undefined;
|
|
164709
165140
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164710
165141
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165142
|
+
isGpio?: boolean | undefined;
|
|
164711
165143
|
}>>>;
|
|
164712
165144
|
mfn: z.ZodOptional<z.ZodString>;
|
|
164713
165145
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -164801,6 +165233,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164801
165233
|
isUsingPushPull?: boolean | undefined;
|
|
164802
165234
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164803
165235
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165236
|
+
isGpio?: boolean | undefined;
|
|
164804
165237
|
}> | undefined;
|
|
164805
165238
|
cadModel?: string | {
|
|
164806
165239
|
stlUrl: string;
|
|
@@ -165330,6 +165763,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
165330
165763
|
isUsingPushPull?: boolean | undefined;
|
|
165331
165764
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
165332
165765
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
165766
|
+
isGpio?: boolean | undefined;
|
|
165333
165767
|
}> | undefined;
|
|
165334
165768
|
cadModel?: string | {
|
|
165335
165769
|
stlUrl: string;
|
|
@@ -168862,6 +169296,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168862
169296
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168863
169297
|
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
168864
169298
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
169299
|
+
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
168865
169300
|
}, "strip", z.ZodTypeAny, {
|
|
168866
169301
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168867
169302
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168888,6 +169323,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168888
169323
|
isUsingPushPull?: boolean | undefined;
|
|
168889
169324
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168890
169325
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169326
|
+
isGpio?: boolean | undefined;
|
|
168891
169327
|
}, {
|
|
168892
169328
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168893
169329
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168914,6 +169350,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168914
169350
|
isUsingPushPull?: boolean | undefined;
|
|
168915
169351
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168916
169352
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169353
|
+
isGpio?: boolean | undefined;
|
|
168917
169354
|
}>>>;
|
|
168918
169355
|
mfn: z.ZodOptional<z.ZodString>;
|
|
168919
169356
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -169005,6 +169442,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169005
169442
|
isUsingPushPull?: boolean | undefined;
|
|
169006
169443
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169007
169444
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169445
|
+
isGpio?: boolean | undefined;
|
|
169008
169446
|
}> | undefined;
|
|
169009
169447
|
cadModel?: string | {
|
|
169010
169448
|
stlUrl: string;
|
|
@@ -169530,6 +169968,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
169530
169968
|
isUsingPushPull?: boolean | undefined;
|
|
169531
169969
|
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169532
169970
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
169971
|
+
isGpio?: boolean | undefined;
|
|
169533
169972
|
}> | undefined;
|
|
169534
169973
|
cadModel?: string | {
|
|
169535
169974
|
stlUrl: string;
|
|
@@ -172809,4 +173248,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
172809
173248
|
}
|
|
172810
173249
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
172811
173250
|
|
|
172812
|
-
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
173251
|
+
export { type AnalogSimulationProps, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelBase, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CutoutProps, type CutoutPropsInput, type DiodePinLabels, type DiodeProps, type Direction, type DirectionAlongEdge, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FiducialProps, type FootprintFileParserEntry, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalPlatedHoleProps, type PanelProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillHoleProps, type PillPlatedHoleProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectHoleProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedRectSmtPadProps, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type Selectors, type SilkscreenCircleProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, analogSimulationProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, componentProps, connectorProps, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, cutoutProps, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fiducialProps, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|