@tscircuit/props 0.0.648 → 0.0.650
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -1
- package/dist/index.d.ts +1817 -2
- package/dist/index.js +12 -7
- package/dist/index.js.map +1 -1
- package/lib/common/fanoutTracePath.ts +6 -11
- package/lib/common/pinAttributeMap.ts +30 -0
- package/lib/components/breakout.ts +3 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8251,6 +8251,26 @@ declare const pcbSx: z.ZodType<PcbSx>;
|
|
|
8251
8251
|
declare const pinCapability: z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>;
|
|
8252
8252
|
type PinCapability = z.input<typeof pinCapability>;
|
|
8253
8253
|
interface PinAttributeMap {
|
|
8254
|
+
/** Whether the pin accepts a signal. */
|
|
8255
|
+
isInput?: boolean;
|
|
8256
|
+
/** Whether the pin drives a signal. */
|
|
8257
|
+
isOutput?: boolean;
|
|
8258
|
+
/** Whether the pin can both accept and drive signals. */
|
|
8259
|
+
isBidirectional?: boolean;
|
|
8260
|
+
/** Whether the pin is a passive component terminal. */
|
|
8261
|
+
isPassive?: boolean;
|
|
8262
|
+
/** Whether the pin supports a high-impedance output state. */
|
|
8263
|
+
canUseTriState?: boolean;
|
|
8264
|
+
/** Whether the pin is configured for tri-state operation, not its instantaneous impedance. */
|
|
8265
|
+
isUsingTriState?: boolean;
|
|
8266
|
+
/** Whether the pin supports an open-collector output. */
|
|
8267
|
+
canUseOpenCollector?: boolean;
|
|
8268
|
+
/** Whether the pin is configured as an open-collector output. */
|
|
8269
|
+
isUsingOpenCollector?: boolean;
|
|
8270
|
+
/** Whether the pin supports an open-emitter output. */
|
|
8271
|
+
canUseOpenEmitter?: boolean;
|
|
8272
|
+
/** Whether the pin is configured as an open-emitter output. */
|
|
8273
|
+
isUsingOpenEmitter?: boolean;
|
|
8254
8274
|
capabilities?: Array<PinCapability>;
|
|
8255
8275
|
activeCapabilities?: Array<PinCapability>;
|
|
8256
8276
|
activeCapability?: PinCapability;
|
|
@@ -8279,6 +8299,16 @@ interface PinAttributeMap {
|
|
|
8279
8299
|
isGpio?: boolean;
|
|
8280
8300
|
}
|
|
8281
8301
|
declare const pinAttributeMap: z.ZodObject<{
|
|
8302
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
8303
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
8304
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
8305
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
8306
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
8307
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
8308
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
8309
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
8310
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
8311
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
8282
8312
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
8283
8313
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
8284
8314
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -8306,6 +8336,16 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
8306
8336
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
8307
8337
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
8308
8338
|
}, "strip", z.ZodTypeAny, {
|
|
8339
|
+
isInput?: boolean | undefined;
|
|
8340
|
+
isOutput?: boolean | undefined;
|
|
8341
|
+
isBidirectional?: boolean | undefined;
|
|
8342
|
+
isPassive?: boolean | undefined;
|
|
8343
|
+
canUseTriState?: boolean | undefined;
|
|
8344
|
+
isUsingTriState?: boolean | undefined;
|
|
8345
|
+
canUseOpenCollector?: boolean | undefined;
|
|
8346
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
8347
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
8348
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
8309
8349
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8310
8350
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8311
8351
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -8333,6 +8373,16 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
8333
8373
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
8334
8374
|
isGpio?: boolean | undefined;
|
|
8335
8375
|
}, {
|
|
8376
|
+
isInput?: boolean | undefined;
|
|
8377
|
+
isOutput?: boolean | undefined;
|
|
8378
|
+
isBidirectional?: boolean | undefined;
|
|
8379
|
+
isPassive?: boolean | undefined;
|
|
8380
|
+
canUseTriState?: boolean | undefined;
|
|
8381
|
+
isUsingTriState?: boolean | undefined;
|
|
8382
|
+
canUseOpenCollector?: boolean | undefined;
|
|
8383
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
8384
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
8385
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
8336
8386
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8337
8387
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
8338
8388
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -12636,6 +12686,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
12636
12686
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
12637
12687
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
12638
12688
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
12689
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
12690
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
12691
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
12692
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
12693
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
12694
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
12695
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
12696
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
12697
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
12698
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
12639
12699
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
12640
12700
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
12641
12701
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -12663,6 +12723,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
12663
12723
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
12664
12724
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
12665
12725
|
}, "strip", z.ZodTypeAny, {
|
|
12726
|
+
isInput?: boolean | undefined;
|
|
12727
|
+
isOutput?: boolean | undefined;
|
|
12728
|
+
isBidirectional?: boolean | undefined;
|
|
12729
|
+
isPassive?: boolean | undefined;
|
|
12730
|
+
canUseTriState?: boolean | undefined;
|
|
12731
|
+
isUsingTriState?: boolean | undefined;
|
|
12732
|
+
canUseOpenCollector?: boolean | undefined;
|
|
12733
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
12734
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
12735
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
12666
12736
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12667
12737
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12668
12738
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -12690,6 +12760,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
12690
12760
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
12691
12761
|
isGpio?: boolean | undefined;
|
|
12692
12762
|
}, {
|
|
12763
|
+
isInput?: boolean | undefined;
|
|
12764
|
+
isOutput?: boolean | undefined;
|
|
12765
|
+
isBidirectional?: boolean | undefined;
|
|
12766
|
+
isPassive?: boolean | undefined;
|
|
12767
|
+
canUseTriState?: boolean | undefined;
|
|
12768
|
+
isUsingTriState?: boolean | undefined;
|
|
12769
|
+
canUseOpenCollector?: boolean | undefined;
|
|
12770
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
12771
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
12772
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
12693
12773
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12694
12774
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
12695
12775
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -13057,6 +13137,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
13057
13137
|
displayName?: string | undefined;
|
|
13058
13138
|
datasheetUrl?: string | undefined;
|
|
13059
13139
|
pinAttributes?: Record<string, {
|
|
13140
|
+
isInput?: boolean | undefined;
|
|
13141
|
+
isOutput?: boolean | undefined;
|
|
13142
|
+
isBidirectional?: boolean | undefined;
|
|
13143
|
+
isPassive?: boolean | undefined;
|
|
13144
|
+
canUseTriState?: boolean | undefined;
|
|
13145
|
+
isUsingTriState?: boolean | undefined;
|
|
13146
|
+
canUseOpenCollector?: boolean | undefined;
|
|
13147
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
13148
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
13149
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
13060
13150
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13061
13151
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13062
13152
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -13721,6 +13811,16 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
13721
13811
|
displayName?: string | undefined;
|
|
13722
13812
|
datasheetUrl?: string | undefined;
|
|
13723
13813
|
pinAttributes?: Record<string, {
|
|
13814
|
+
isInput?: boolean | undefined;
|
|
13815
|
+
isOutput?: boolean | undefined;
|
|
13816
|
+
isBidirectional?: boolean | undefined;
|
|
13817
|
+
isPassive?: boolean | undefined;
|
|
13818
|
+
canUseTriState?: boolean | undefined;
|
|
13819
|
+
isUsingTriState?: boolean | undefined;
|
|
13820
|
+
canUseOpenCollector?: boolean | undefined;
|
|
13821
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
13822
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
13823
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
13724
13824
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13725
13825
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13726
13826
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -17840,6 +17940,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
17840
17940
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
17841
17941
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
17842
17942
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
17943
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
17944
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
17945
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
17946
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
17947
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
17948
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
17949
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
17950
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
17951
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
17952
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
17843
17953
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
17844
17954
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
17845
17955
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -17867,6 +17977,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
17867
17977
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
17868
17978
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
17869
17979
|
}, "strip", z.ZodTypeAny, {
|
|
17980
|
+
isInput?: boolean | undefined;
|
|
17981
|
+
isOutput?: boolean | undefined;
|
|
17982
|
+
isBidirectional?: boolean | undefined;
|
|
17983
|
+
isPassive?: boolean | undefined;
|
|
17984
|
+
canUseTriState?: boolean | undefined;
|
|
17985
|
+
isUsingTriState?: boolean | undefined;
|
|
17986
|
+
canUseOpenCollector?: boolean | undefined;
|
|
17987
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
17988
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
17989
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
17870
17990
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17871
17991
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17872
17992
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -17894,6 +18014,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
17894
18014
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
17895
18015
|
isGpio?: boolean | undefined;
|
|
17896
18016
|
}, {
|
|
18017
|
+
isInput?: boolean | undefined;
|
|
18018
|
+
isOutput?: boolean | undefined;
|
|
18019
|
+
isBidirectional?: boolean | undefined;
|
|
18020
|
+
isPassive?: boolean | undefined;
|
|
18021
|
+
canUseTriState?: boolean | undefined;
|
|
18022
|
+
isUsingTriState?: boolean | undefined;
|
|
18023
|
+
canUseOpenCollector?: boolean | undefined;
|
|
18024
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
18025
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
18026
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
17897
18027
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17898
18028
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
17899
18029
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -18261,6 +18391,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
18261
18391
|
displayName?: string | undefined;
|
|
18262
18392
|
datasheetUrl?: string | undefined;
|
|
18263
18393
|
pinAttributes?: Record<string, {
|
|
18394
|
+
isInput?: boolean | undefined;
|
|
18395
|
+
isOutput?: boolean | undefined;
|
|
18396
|
+
isBidirectional?: boolean | undefined;
|
|
18397
|
+
isPassive?: boolean | undefined;
|
|
18398
|
+
canUseTriState?: boolean | undefined;
|
|
18399
|
+
isUsingTriState?: boolean | undefined;
|
|
18400
|
+
canUseOpenCollector?: boolean | undefined;
|
|
18401
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
18402
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
18403
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
18264
18404
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18265
18405
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18266
18406
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -18925,6 +19065,16 @@ declare const componentProps: z.ZodObject<{
|
|
|
18925
19065
|
displayName?: string | undefined;
|
|
18926
19066
|
datasheetUrl?: string | undefined;
|
|
18927
19067
|
pinAttributes?: Record<string, {
|
|
19068
|
+
isInput?: boolean | undefined;
|
|
19069
|
+
isOutput?: boolean | undefined;
|
|
19070
|
+
isBidirectional?: boolean | undefined;
|
|
19071
|
+
isPassive?: boolean | undefined;
|
|
19072
|
+
canUseTriState?: boolean | undefined;
|
|
19073
|
+
isUsingTriState?: boolean | undefined;
|
|
19074
|
+
canUseOpenCollector?: boolean | undefined;
|
|
19075
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
19076
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
19077
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
18928
19078
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18929
19079
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
18930
19080
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -31614,7 +31764,10 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
31614
31764
|
* fanout's local PCB frame, in mm: +X right, +Y up, right-handed with +Z
|
|
31615
31765
|
* above the board. They are points (placement adds translation), not
|
|
31616
31766
|
* directions. Numeric distances are mm; unit strings are parsed to mm.
|
|
31617
|
-
* Layers are physical board layers, independent of placement.
|
|
31767
|
+
* Layers are physical board layers, independent of placement. Either endpoint
|
|
31768
|
+
* may be a via: the initial layer is its from_layer and the final layer is its
|
|
31769
|
+
* to_layer. Placement legality (including allowViaInPad) is checked by core,
|
|
31770
|
+
* since this schema has no pad geometry or inherited routing configuration.
|
|
31618
31771
|
*/
|
|
31619
31772
|
declare const fanoutTracePath: z.ZodObject<{
|
|
31620
31773
|
connection: z.ZodString;
|
|
@@ -32036,7 +32189,9 @@ interface BreakoutProps extends Omit<SubcircuitGroupProps, "subcircuit">, Fanout
|
|
|
32036
32189
|
* Saved port-to-exit wire/via routes in the fanout's local PCB frame.
|
|
32037
32190
|
* Numeric distances are mm; unit strings are normalized to mm. Each route
|
|
32038
32191
|
* must start at its selected port and end at its fanout exit. Layers name
|
|
32039
|
-
* physical board layers.
|
|
32192
|
+
* physical board layers. Either endpoint may be a via when permitted by
|
|
32193
|
+
* the circuit's routing rules (e.g. allowViaInPad for a via at a pad).
|
|
32194
|
+
* Core creates the exits and preserves saved copper.
|
|
32040
32195
|
* When supplied, replaces automatic routing (including `autorouter`) for
|
|
32041
32196
|
* this fanout and must cover all its routing connections. Do not also add
|
|
32042
32197
|
* a breakoutpoint/fanoutpoint for the same port. Omitted by default; existing
|
|
@@ -37639,6 +37794,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37639
37794
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
37640
37795
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
37641
37796
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
37797
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
37798
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
37799
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
37800
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
37801
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
37802
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
37803
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
37804
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
37805
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
37806
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
37642
37807
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
37643
37808
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
37644
37809
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -37666,6 +37831,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37666
37831
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
37667
37832
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
37668
37833
|
}, "strip", z.ZodTypeAny, {
|
|
37834
|
+
isInput?: boolean | undefined;
|
|
37835
|
+
isOutput?: boolean | undefined;
|
|
37836
|
+
isBidirectional?: boolean | undefined;
|
|
37837
|
+
isPassive?: boolean | undefined;
|
|
37838
|
+
canUseTriState?: boolean | undefined;
|
|
37839
|
+
isUsingTriState?: boolean | undefined;
|
|
37840
|
+
canUseOpenCollector?: boolean | undefined;
|
|
37841
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
37842
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
37843
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
37669
37844
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37670
37845
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37671
37846
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -37693,6 +37868,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37693
37868
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
37694
37869
|
isGpio?: boolean | undefined;
|
|
37695
37870
|
}, {
|
|
37871
|
+
isInput?: boolean | undefined;
|
|
37872
|
+
isOutput?: boolean | undefined;
|
|
37873
|
+
isBidirectional?: boolean | undefined;
|
|
37874
|
+
isPassive?: boolean | undefined;
|
|
37875
|
+
canUseTriState?: boolean | undefined;
|
|
37876
|
+
isUsingTriState?: boolean | undefined;
|
|
37877
|
+
canUseOpenCollector?: boolean | undefined;
|
|
37878
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
37879
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
37880
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
37696
37881
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37697
37882
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37698
37883
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -38362,6 +38547,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
38362
38547
|
displayName?: string | undefined;
|
|
38363
38548
|
datasheetUrl?: string | undefined;
|
|
38364
38549
|
pinAttributes?: Record<string, {
|
|
38550
|
+
isInput?: boolean | undefined;
|
|
38551
|
+
isOutput?: boolean | undefined;
|
|
38552
|
+
isBidirectional?: boolean | undefined;
|
|
38553
|
+
isPassive?: boolean | undefined;
|
|
38554
|
+
canUseTriState?: boolean | undefined;
|
|
38555
|
+
isUsingTriState?: boolean | undefined;
|
|
38556
|
+
canUseOpenCollector?: boolean | undefined;
|
|
38557
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
38558
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
38559
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
38365
38560
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
38366
38561
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
38367
38562
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -39105,6 +39300,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
39105
39300
|
displayName?: string | undefined;
|
|
39106
39301
|
datasheetUrl?: string | undefined;
|
|
39107
39302
|
pinAttributes?: Record<string, {
|
|
39303
|
+
isInput?: boolean | undefined;
|
|
39304
|
+
isOutput?: boolean | undefined;
|
|
39305
|
+
isBidirectional?: boolean | undefined;
|
|
39306
|
+
isPassive?: boolean | undefined;
|
|
39307
|
+
canUseTriState?: boolean | undefined;
|
|
39308
|
+
isUsingTriState?: boolean | undefined;
|
|
39309
|
+
canUseOpenCollector?: boolean | undefined;
|
|
39310
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
39311
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
39312
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
39108
39313
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
39109
39314
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
39110
39315
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -43305,6 +43510,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43305
43510
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
43306
43511
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
43307
43512
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43513
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
43514
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
43515
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
43516
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
43517
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
43518
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
43519
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
43520
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
43521
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
43522
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
43308
43523
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
43309
43524
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
43310
43525
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -43332,6 +43547,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43332
43547
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
43333
43548
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
43334
43549
|
}, "strip", z.ZodTypeAny, {
|
|
43550
|
+
isInput?: boolean | undefined;
|
|
43551
|
+
isOutput?: boolean | undefined;
|
|
43552
|
+
isBidirectional?: boolean | undefined;
|
|
43553
|
+
isPassive?: boolean | undefined;
|
|
43554
|
+
canUseTriState?: boolean | undefined;
|
|
43555
|
+
isUsingTriState?: boolean | undefined;
|
|
43556
|
+
canUseOpenCollector?: boolean | undefined;
|
|
43557
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
43558
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
43559
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
43335
43560
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43336
43561
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43337
43562
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -43359,6 +43584,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43359
43584
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
43360
43585
|
isGpio?: boolean | undefined;
|
|
43361
43586
|
}, {
|
|
43587
|
+
isInput?: boolean | undefined;
|
|
43588
|
+
isOutput?: boolean | undefined;
|
|
43589
|
+
isBidirectional?: boolean | undefined;
|
|
43590
|
+
isPassive?: boolean | undefined;
|
|
43591
|
+
canUseTriState?: boolean | undefined;
|
|
43592
|
+
isUsingTriState?: boolean | undefined;
|
|
43593
|
+
canUseOpenCollector?: boolean | undefined;
|
|
43594
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
43595
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
43596
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
43362
43597
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43363
43598
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43364
43599
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -44028,6 +44263,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
44028
44263
|
displayName?: string | undefined;
|
|
44029
44264
|
datasheetUrl?: string | undefined;
|
|
44030
44265
|
pinAttributes?: Record<string, {
|
|
44266
|
+
isInput?: boolean | undefined;
|
|
44267
|
+
isOutput?: boolean | undefined;
|
|
44268
|
+
isBidirectional?: boolean | undefined;
|
|
44269
|
+
isPassive?: boolean | undefined;
|
|
44270
|
+
canUseTriState?: boolean | undefined;
|
|
44271
|
+
isUsingTriState?: boolean | undefined;
|
|
44272
|
+
canUseOpenCollector?: boolean | undefined;
|
|
44273
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
44274
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
44275
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
44031
44276
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44032
44277
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44033
44278
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -44771,6 +45016,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
44771
45016
|
displayName?: string | undefined;
|
|
44772
45017
|
datasheetUrl?: string | undefined;
|
|
44773
45018
|
pinAttributes?: Record<string, {
|
|
45019
|
+
isInput?: boolean | undefined;
|
|
45020
|
+
isOutput?: boolean | undefined;
|
|
45021
|
+
isBidirectional?: boolean | undefined;
|
|
45022
|
+
isPassive?: boolean | undefined;
|
|
45023
|
+
canUseTriState?: boolean | undefined;
|
|
45024
|
+
isUsingTriState?: boolean | undefined;
|
|
45025
|
+
canUseOpenCollector?: boolean | undefined;
|
|
45026
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
45027
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
45028
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
44774
45029
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44775
45030
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44776
45031
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -48970,6 +49225,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
48970
49225
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
48971
49226
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
48972
49227
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49228
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
49229
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
49230
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
49231
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
49232
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
49233
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
49234
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
49235
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
49236
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
49237
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
48973
49238
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
48974
49239
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
48975
49240
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -48997,6 +49262,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
48997
49262
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
48998
49263
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
48999
49264
|
}, "strip", z.ZodTypeAny, {
|
|
49265
|
+
isInput?: boolean | undefined;
|
|
49266
|
+
isOutput?: boolean | undefined;
|
|
49267
|
+
isBidirectional?: boolean | undefined;
|
|
49268
|
+
isPassive?: boolean | undefined;
|
|
49269
|
+
canUseTriState?: boolean | undefined;
|
|
49270
|
+
isUsingTriState?: boolean | undefined;
|
|
49271
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49272
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49273
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49274
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49000
49275
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49001
49276
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49002
49277
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -49024,6 +49299,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49024
49299
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49025
49300
|
isGpio?: boolean | undefined;
|
|
49026
49301
|
}, {
|
|
49302
|
+
isInput?: boolean | undefined;
|
|
49303
|
+
isOutput?: boolean | undefined;
|
|
49304
|
+
isBidirectional?: boolean | undefined;
|
|
49305
|
+
isPassive?: boolean | undefined;
|
|
49306
|
+
canUseTriState?: boolean | undefined;
|
|
49307
|
+
isUsingTriState?: boolean | undefined;
|
|
49308
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49309
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49310
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49311
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49027
49312
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49028
49313
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49029
49314
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -49693,6 +49978,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49693
49978
|
displayName?: string | undefined;
|
|
49694
49979
|
datasheetUrl?: string | undefined;
|
|
49695
49980
|
pinAttributes?: Record<string, {
|
|
49981
|
+
isInput?: boolean | undefined;
|
|
49982
|
+
isOutput?: boolean | undefined;
|
|
49983
|
+
isBidirectional?: boolean | undefined;
|
|
49984
|
+
isPassive?: boolean | undefined;
|
|
49985
|
+
canUseTriState?: boolean | undefined;
|
|
49986
|
+
isUsingTriState?: boolean | undefined;
|
|
49987
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49988
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49989
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49990
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49696
49991
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49697
49992
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49698
49993
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -50436,6 +50731,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
50436
50731
|
displayName?: string | undefined;
|
|
50437
50732
|
datasheetUrl?: string | undefined;
|
|
50438
50733
|
pinAttributes?: Record<string, {
|
|
50734
|
+
isInput?: boolean | undefined;
|
|
50735
|
+
isOutput?: boolean | undefined;
|
|
50736
|
+
isBidirectional?: boolean | undefined;
|
|
50737
|
+
isPassive?: boolean | undefined;
|
|
50738
|
+
canUseTriState?: boolean | undefined;
|
|
50739
|
+
isUsingTriState?: boolean | undefined;
|
|
50740
|
+
canUseOpenCollector?: boolean | undefined;
|
|
50741
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
50742
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
50743
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
50439
50744
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50440
50745
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50441
50746
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -54668,6 +54973,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54668
54973
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
54669
54974
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
54670
54975
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
54976
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
54977
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
54978
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
54979
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
54980
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
54981
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
54982
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
54983
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
54984
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
54985
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
54671
54986
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54672
54987
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54673
54988
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -54695,6 +55010,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54695
55010
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54696
55011
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
54697
55012
|
}, "strip", z.ZodTypeAny, {
|
|
55013
|
+
isInput?: boolean | undefined;
|
|
55014
|
+
isOutput?: boolean | undefined;
|
|
55015
|
+
isBidirectional?: boolean | undefined;
|
|
55016
|
+
isPassive?: boolean | undefined;
|
|
55017
|
+
canUseTriState?: boolean | undefined;
|
|
55018
|
+
isUsingTriState?: boolean | undefined;
|
|
55019
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55020
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55021
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55022
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
54698
55023
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54699
55024
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54700
55025
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -54722,6 +55047,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54722
55047
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54723
55048
|
isGpio?: boolean | undefined;
|
|
54724
55049
|
}, {
|
|
55050
|
+
isInput?: boolean | undefined;
|
|
55051
|
+
isOutput?: boolean | undefined;
|
|
55052
|
+
isBidirectional?: boolean | undefined;
|
|
55053
|
+
isPassive?: boolean | undefined;
|
|
55054
|
+
canUseTriState?: boolean | undefined;
|
|
55055
|
+
isUsingTriState?: boolean | undefined;
|
|
55056
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55057
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55058
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55059
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
54725
55060
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54726
55061
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54727
55062
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -55375,6 +55710,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
55375
55710
|
displayName?: string | undefined;
|
|
55376
55711
|
datasheetUrl?: string | undefined;
|
|
55377
55712
|
pinAttributes?: Record<string, {
|
|
55713
|
+
isInput?: boolean | undefined;
|
|
55714
|
+
isOutput?: boolean | undefined;
|
|
55715
|
+
isBidirectional?: boolean | undefined;
|
|
55716
|
+
isPassive?: boolean | undefined;
|
|
55717
|
+
canUseTriState?: boolean | undefined;
|
|
55718
|
+
isUsingTriState?: boolean | undefined;
|
|
55719
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55720
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55721
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55722
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
55378
55723
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55379
55724
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55380
55725
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -56110,6 +56455,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
56110
56455
|
displayName?: string | undefined;
|
|
56111
56456
|
datasheetUrl?: string | undefined;
|
|
56112
56457
|
pinAttributes?: Record<string, {
|
|
56458
|
+
isInput?: boolean | undefined;
|
|
56459
|
+
isOutput?: boolean | undefined;
|
|
56460
|
+
isBidirectional?: boolean | undefined;
|
|
56461
|
+
isPassive?: boolean | undefined;
|
|
56462
|
+
canUseTriState?: boolean | undefined;
|
|
56463
|
+
isUsingTriState?: boolean | undefined;
|
|
56464
|
+
canUseOpenCollector?: boolean | undefined;
|
|
56465
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
56466
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
56467
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
56113
56468
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
56114
56469
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
56115
56470
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -60309,6 +60664,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60309
60664
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
60310
60665
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
60311
60666
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
60667
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
60668
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
60669
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
60670
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
60671
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
60672
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
60673
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
60674
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
60675
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
60676
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
60312
60677
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
60313
60678
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
60314
60679
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -60336,6 +60701,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60336
60701
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
60337
60702
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
60338
60703
|
}, "strip", z.ZodTypeAny, {
|
|
60704
|
+
isInput?: boolean | undefined;
|
|
60705
|
+
isOutput?: boolean | undefined;
|
|
60706
|
+
isBidirectional?: boolean | undefined;
|
|
60707
|
+
isPassive?: boolean | undefined;
|
|
60708
|
+
canUseTriState?: boolean | undefined;
|
|
60709
|
+
isUsingTriState?: boolean | undefined;
|
|
60710
|
+
canUseOpenCollector?: boolean | undefined;
|
|
60711
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
60712
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
60713
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
60339
60714
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60340
60715
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60341
60716
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -60363,6 +60738,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60363
60738
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
60364
60739
|
isGpio?: boolean | undefined;
|
|
60365
60740
|
}, {
|
|
60741
|
+
isInput?: boolean | undefined;
|
|
60742
|
+
isOutput?: boolean | undefined;
|
|
60743
|
+
isBidirectional?: boolean | undefined;
|
|
60744
|
+
isPassive?: boolean | undefined;
|
|
60745
|
+
canUseTriState?: boolean | undefined;
|
|
60746
|
+
isUsingTriState?: boolean | undefined;
|
|
60747
|
+
canUseOpenCollector?: boolean | undefined;
|
|
60748
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
60749
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
60750
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
60366
60751
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60367
60752
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60368
60753
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -61019,6 +61404,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
61019
61404
|
displayName?: string | undefined;
|
|
61020
61405
|
datasheetUrl?: string | undefined;
|
|
61021
61406
|
pinAttributes?: Record<string, {
|
|
61407
|
+
isInput?: boolean | undefined;
|
|
61408
|
+
isOutput?: boolean | undefined;
|
|
61409
|
+
isBidirectional?: boolean | undefined;
|
|
61410
|
+
isPassive?: boolean | undefined;
|
|
61411
|
+
canUseTriState?: boolean | undefined;
|
|
61412
|
+
isUsingTriState?: boolean | undefined;
|
|
61413
|
+
canUseOpenCollector?: boolean | undefined;
|
|
61414
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
61415
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
61416
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
61022
61417
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61023
61418
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61024
61419
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -61756,6 +62151,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
61756
62151
|
displayName?: string | undefined;
|
|
61757
62152
|
datasheetUrl?: string | undefined;
|
|
61758
62153
|
pinAttributes?: Record<string, {
|
|
62154
|
+
isInput?: boolean | undefined;
|
|
62155
|
+
isOutput?: boolean | undefined;
|
|
62156
|
+
isBidirectional?: boolean | undefined;
|
|
62157
|
+
isPassive?: boolean | undefined;
|
|
62158
|
+
canUseTriState?: boolean | undefined;
|
|
62159
|
+
isUsingTriState?: boolean | undefined;
|
|
62160
|
+
canUseOpenCollector?: boolean | undefined;
|
|
62161
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
62162
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
62163
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
61759
62164
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61760
62165
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61761
62166
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -65959,6 +66364,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
65959
66364
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
65960
66365
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
65961
66366
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
66367
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
66368
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
66369
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
66370
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
66371
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
66372
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
66373
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
66374
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
66375
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
66376
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
65962
66377
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
65963
66378
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
65964
66379
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -65986,6 +66401,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
65986
66401
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
65987
66402
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
65988
66403
|
}, "strip", z.ZodTypeAny, {
|
|
66404
|
+
isInput?: boolean | undefined;
|
|
66405
|
+
isOutput?: boolean | undefined;
|
|
66406
|
+
isBidirectional?: boolean | undefined;
|
|
66407
|
+
isPassive?: boolean | undefined;
|
|
66408
|
+
canUseTriState?: boolean | undefined;
|
|
66409
|
+
isUsingTriState?: boolean | undefined;
|
|
66410
|
+
canUseOpenCollector?: boolean | undefined;
|
|
66411
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
66412
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
66413
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
65989
66414
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
65990
66415
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
65991
66416
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -66013,6 +66438,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
66013
66438
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
66014
66439
|
isGpio?: boolean | undefined;
|
|
66015
66440
|
}, {
|
|
66441
|
+
isInput?: boolean | undefined;
|
|
66442
|
+
isOutput?: boolean | undefined;
|
|
66443
|
+
isBidirectional?: boolean | undefined;
|
|
66444
|
+
isPassive?: boolean | undefined;
|
|
66445
|
+
canUseTriState?: boolean | undefined;
|
|
66446
|
+
isUsingTriState?: boolean | undefined;
|
|
66447
|
+
canUseOpenCollector?: boolean | undefined;
|
|
66448
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
66449
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
66450
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
66016
66451
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66017
66452
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66018
66453
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -66685,6 +67120,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
66685
67120
|
displayName?: string | undefined;
|
|
66686
67121
|
datasheetUrl?: string | undefined;
|
|
66687
67122
|
pinAttributes?: Record<string, {
|
|
67123
|
+
isInput?: boolean | undefined;
|
|
67124
|
+
isOutput?: boolean | undefined;
|
|
67125
|
+
isBidirectional?: boolean | undefined;
|
|
67126
|
+
isPassive?: boolean | undefined;
|
|
67127
|
+
canUseTriState?: boolean | undefined;
|
|
67128
|
+
isUsingTriState?: boolean | undefined;
|
|
67129
|
+
canUseOpenCollector?: boolean | undefined;
|
|
67130
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
67131
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
67132
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
66688
67133
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66689
67134
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66690
67135
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -67430,6 +67875,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
67430
67875
|
displayName?: string | undefined;
|
|
67431
67876
|
datasheetUrl?: string | undefined;
|
|
67432
67877
|
pinAttributes?: Record<string, {
|
|
67878
|
+
isInput?: boolean | undefined;
|
|
67879
|
+
isOutput?: boolean | undefined;
|
|
67880
|
+
isBidirectional?: boolean | undefined;
|
|
67881
|
+
isPassive?: boolean | undefined;
|
|
67882
|
+
canUseTriState?: boolean | undefined;
|
|
67883
|
+
isUsingTriState?: boolean | undefined;
|
|
67884
|
+
canUseOpenCollector?: boolean | undefined;
|
|
67885
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
67886
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
67887
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
67433
67888
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
67434
67889
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
67435
67890
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -71641,6 +72096,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71641
72096
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
71642
72097
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
71643
72098
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
72099
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
72100
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
72101
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
72102
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
72103
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
72104
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
72105
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
72106
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
72107
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
72108
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
71644
72109
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
71645
72110
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
71646
72111
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -71668,6 +72133,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71668
72133
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
71669
72134
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
71670
72135
|
}, "strip", z.ZodTypeAny, {
|
|
72136
|
+
isInput?: boolean | undefined;
|
|
72137
|
+
isOutput?: boolean | undefined;
|
|
72138
|
+
isBidirectional?: boolean | undefined;
|
|
72139
|
+
isPassive?: boolean | undefined;
|
|
72140
|
+
canUseTriState?: boolean | undefined;
|
|
72141
|
+
isUsingTriState?: boolean | undefined;
|
|
72142
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72143
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72144
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72145
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
71671
72146
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71672
72147
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71673
72148
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -71695,6 +72170,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71695
72170
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
71696
72171
|
isGpio?: boolean | undefined;
|
|
71697
72172
|
}, {
|
|
72173
|
+
isInput?: boolean | undefined;
|
|
72174
|
+
isOutput?: boolean | undefined;
|
|
72175
|
+
isBidirectional?: boolean | undefined;
|
|
72176
|
+
isPassive?: boolean | undefined;
|
|
72177
|
+
canUseTriState?: boolean | undefined;
|
|
72178
|
+
isUsingTriState?: boolean | undefined;
|
|
72179
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72180
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72181
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72182
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
71698
72183
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71699
72184
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71700
72185
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -72066,6 +72551,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
72066
72551
|
displayName?: string | undefined;
|
|
72067
72552
|
datasheetUrl?: string | undefined;
|
|
72068
72553
|
pinAttributes?: Record<string, {
|
|
72554
|
+
isInput?: boolean | undefined;
|
|
72555
|
+
isOutput?: boolean | undefined;
|
|
72556
|
+
isBidirectional?: boolean | undefined;
|
|
72557
|
+
isPassive?: boolean | undefined;
|
|
72558
|
+
canUseTriState?: boolean | undefined;
|
|
72559
|
+
isUsingTriState?: boolean | undefined;
|
|
72560
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72561
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72562
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72563
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
72069
72564
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72070
72565
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72071
72566
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -72733,6 +73228,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
72733
73228
|
displayName?: string | undefined;
|
|
72734
73229
|
datasheetUrl?: string | undefined;
|
|
72735
73230
|
pinAttributes?: Record<string, {
|
|
73231
|
+
isInput?: boolean | undefined;
|
|
73232
|
+
isOutput?: boolean | undefined;
|
|
73233
|
+
isBidirectional?: boolean | undefined;
|
|
73234
|
+
isPassive?: boolean | undefined;
|
|
73235
|
+
canUseTriState?: boolean | undefined;
|
|
73236
|
+
isUsingTriState?: boolean | undefined;
|
|
73237
|
+
canUseOpenCollector?: boolean | undefined;
|
|
73238
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
73239
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
73240
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
72736
73241
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72737
73242
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72738
73243
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -76883,6 +77388,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76883
77388
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
76884
77389
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
76885
77390
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
77391
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
77392
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
77393
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
77394
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
77395
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
77396
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
77397
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
77398
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
77399
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
77400
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
76886
77401
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
76887
77402
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
76888
77403
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -76910,6 +77425,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76910
77425
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
76911
77426
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
76912
77427
|
}, "strip", z.ZodTypeAny, {
|
|
77428
|
+
isInput?: boolean | undefined;
|
|
77429
|
+
isOutput?: boolean | undefined;
|
|
77430
|
+
isBidirectional?: boolean | undefined;
|
|
77431
|
+
isPassive?: boolean | undefined;
|
|
77432
|
+
canUseTriState?: boolean | undefined;
|
|
77433
|
+
isUsingTriState?: boolean | undefined;
|
|
77434
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77435
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77436
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77437
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
76913
77438
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76914
77439
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76915
77440
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -76937,6 +77462,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76937
77462
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
76938
77463
|
isGpio?: boolean | undefined;
|
|
76939
77464
|
}, {
|
|
77465
|
+
isInput?: boolean | undefined;
|
|
77466
|
+
isOutput?: boolean | undefined;
|
|
77467
|
+
isBidirectional?: boolean | undefined;
|
|
77468
|
+
isPassive?: boolean | undefined;
|
|
77469
|
+
canUseTriState?: boolean | undefined;
|
|
77470
|
+
isUsingTriState?: boolean | undefined;
|
|
77471
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77472
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77473
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77474
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
76940
77475
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76941
77476
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76942
77477
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -77311,6 +77846,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
77311
77846
|
displayName?: string | undefined;
|
|
77312
77847
|
datasheetUrl?: string | undefined;
|
|
77313
77848
|
pinAttributes?: Record<string, {
|
|
77849
|
+
isInput?: boolean | undefined;
|
|
77850
|
+
isOutput?: boolean | undefined;
|
|
77851
|
+
isBidirectional?: boolean | undefined;
|
|
77852
|
+
isPassive?: boolean | undefined;
|
|
77853
|
+
canUseTriState?: boolean | undefined;
|
|
77854
|
+
isUsingTriState?: boolean | undefined;
|
|
77855
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77856
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77857
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77858
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
77314
77859
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77315
77860
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77316
77861
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -77980,6 +78525,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
77980
78525
|
displayName?: string | undefined;
|
|
77981
78526
|
datasheetUrl?: string | undefined;
|
|
77982
78527
|
pinAttributes?: Record<string, {
|
|
78528
|
+
isInput?: boolean | undefined;
|
|
78529
|
+
isOutput?: boolean | undefined;
|
|
78530
|
+
isBidirectional?: boolean | undefined;
|
|
78531
|
+
isPassive?: boolean | undefined;
|
|
78532
|
+
canUseTriState?: boolean | undefined;
|
|
78533
|
+
isUsingTriState?: boolean | undefined;
|
|
78534
|
+
canUseOpenCollector?: boolean | undefined;
|
|
78535
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
78536
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
78537
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
77983
78538
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77984
78539
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77985
78540
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84050,6 +84605,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84050
84605
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
84051
84606
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
84052
84607
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84608
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
84609
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
84610
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
84611
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
84612
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
84613
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
84614
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
84615
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
84616
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
84617
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
84053
84618
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
84054
84619
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
84055
84620
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -84077,6 +84642,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84077
84642
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
84078
84643
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
84079
84644
|
}, "strip", z.ZodTypeAny, {
|
|
84645
|
+
isInput?: boolean | undefined;
|
|
84646
|
+
isOutput?: boolean | undefined;
|
|
84647
|
+
isBidirectional?: boolean | undefined;
|
|
84648
|
+
isPassive?: boolean | undefined;
|
|
84649
|
+
canUseTriState?: boolean | undefined;
|
|
84650
|
+
isUsingTriState?: boolean | undefined;
|
|
84651
|
+
canUseOpenCollector?: boolean | undefined;
|
|
84652
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
84653
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
84654
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84080
84655
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84081
84656
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84082
84657
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84104,6 +84679,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84104
84679
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
84105
84680
|
isGpio?: boolean | undefined;
|
|
84106
84681
|
}, {
|
|
84682
|
+
isInput?: boolean | undefined;
|
|
84683
|
+
isOutput?: boolean | undefined;
|
|
84684
|
+
isBidirectional?: boolean | undefined;
|
|
84685
|
+
isPassive?: boolean | undefined;
|
|
84686
|
+
canUseTriState?: boolean | undefined;
|
|
84687
|
+
isUsingTriState?: boolean | undefined;
|
|
84688
|
+
canUseOpenCollector?: boolean | undefined;
|
|
84689
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
84690
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
84691
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84107
84692
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84108
84693
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84109
84694
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84483,6 +85068,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84483
85068
|
displayName?: string | undefined;
|
|
84484
85069
|
datasheetUrl?: string | undefined;
|
|
84485
85070
|
pinAttributes?: Record<string, {
|
|
85071
|
+
isInput?: boolean | undefined;
|
|
85072
|
+
isOutput?: boolean | undefined;
|
|
85073
|
+
isBidirectional?: boolean | undefined;
|
|
85074
|
+
isPassive?: boolean | undefined;
|
|
85075
|
+
canUseTriState?: boolean | undefined;
|
|
85076
|
+
isUsingTriState?: boolean | undefined;
|
|
85077
|
+
canUseOpenCollector?: boolean | undefined;
|
|
85078
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
85079
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
85080
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84486
85081
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84487
85082
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84488
85083
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -85156,6 +85751,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
85156
85751
|
displayName?: string | undefined;
|
|
85157
85752
|
datasheetUrl?: string | undefined;
|
|
85158
85753
|
pinAttributes?: Record<string, {
|
|
85754
|
+
isInput?: boolean | undefined;
|
|
85755
|
+
isOutput?: boolean | undefined;
|
|
85756
|
+
isBidirectional?: boolean | undefined;
|
|
85757
|
+
isPassive?: boolean | undefined;
|
|
85758
|
+
canUseTriState?: boolean | undefined;
|
|
85759
|
+
isUsingTriState?: boolean | undefined;
|
|
85760
|
+
canUseOpenCollector?: boolean | undefined;
|
|
85761
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
85762
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
85763
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
85159
85764
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
85160
85765
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
85161
85766
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89293,6 +89898,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89293
89898
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
89294
89899
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
89295
89900
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
89901
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
89902
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
89903
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
89904
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
89905
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
89906
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
89907
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
89908
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
89909
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
89910
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
89296
89911
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
89297
89912
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
89298
89913
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -89320,6 +89935,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89320
89935
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
89321
89936
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
89322
89937
|
}, "strip", z.ZodTypeAny, {
|
|
89938
|
+
isInput?: boolean | undefined;
|
|
89939
|
+
isOutput?: boolean | undefined;
|
|
89940
|
+
isBidirectional?: boolean | undefined;
|
|
89941
|
+
isPassive?: boolean | undefined;
|
|
89942
|
+
canUseTriState?: boolean | undefined;
|
|
89943
|
+
isUsingTriState?: boolean | undefined;
|
|
89944
|
+
canUseOpenCollector?: boolean | undefined;
|
|
89945
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
89946
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
89947
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89323
89948
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89324
89949
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89325
89950
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89347,6 +89972,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89347
89972
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
89348
89973
|
isGpio?: boolean | undefined;
|
|
89349
89974
|
}, {
|
|
89975
|
+
isInput?: boolean | undefined;
|
|
89976
|
+
isOutput?: boolean | undefined;
|
|
89977
|
+
isBidirectional?: boolean | undefined;
|
|
89978
|
+
isPassive?: boolean | undefined;
|
|
89979
|
+
canUseTriState?: boolean | undefined;
|
|
89980
|
+
isUsingTriState?: boolean | undefined;
|
|
89981
|
+
canUseOpenCollector?: boolean | undefined;
|
|
89982
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
89983
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
89984
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89350
89985
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89351
89986
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89352
89987
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89719,6 +90354,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89719
90354
|
displayName?: string | undefined;
|
|
89720
90355
|
datasheetUrl?: string | undefined;
|
|
89721
90356
|
pinAttributes?: Record<string, {
|
|
90357
|
+
isInput?: boolean | undefined;
|
|
90358
|
+
isOutput?: boolean | undefined;
|
|
90359
|
+
isBidirectional?: boolean | undefined;
|
|
90360
|
+
isPassive?: boolean | undefined;
|
|
90361
|
+
canUseTriState?: boolean | undefined;
|
|
90362
|
+
isUsingTriState?: boolean | undefined;
|
|
90363
|
+
canUseOpenCollector?: boolean | undefined;
|
|
90364
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
90365
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
90366
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89722
90367
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89723
90368
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89724
90369
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -90386,6 +91031,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
90386
91031
|
displayName?: string | undefined;
|
|
90387
91032
|
datasheetUrl?: string | undefined;
|
|
90388
91033
|
pinAttributes?: Record<string, {
|
|
91034
|
+
isInput?: boolean | undefined;
|
|
91035
|
+
isOutput?: boolean | undefined;
|
|
91036
|
+
isBidirectional?: boolean | undefined;
|
|
91037
|
+
isPassive?: boolean | undefined;
|
|
91038
|
+
canUseTriState?: boolean | undefined;
|
|
91039
|
+
isUsingTriState?: boolean | undefined;
|
|
91040
|
+
canUseOpenCollector?: boolean | undefined;
|
|
91041
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
91042
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
91043
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
90389
91044
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
90390
91045
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
90391
91046
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94520,6 +95175,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94520
95175
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
94521
95176
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
94522
95177
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
95178
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
95179
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
95180
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
95181
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
95182
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
95183
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
95184
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
95185
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
95186
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
95187
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
94523
95188
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
94524
95189
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
94525
95190
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -94547,6 +95212,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94547
95212
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
94548
95213
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
94549
95214
|
}, "strip", z.ZodTypeAny, {
|
|
95215
|
+
isInput?: boolean | undefined;
|
|
95216
|
+
isOutput?: boolean | undefined;
|
|
95217
|
+
isBidirectional?: boolean | undefined;
|
|
95218
|
+
isPassive?: boolean | undefined;
|
|
95219
|
+
canUseTriState?: boolean | undefined;
|
|
95220
|
+
isUsingTriState?: boolean | undefined;
|
|
95221
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95222
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95223
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95224
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94550
95225
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94551
95226
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94552
95227
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94574,6 +95249,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94574
95249
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
94575
95250
|
isGpio?: boolean | undefined;
|
|
94576
95251
|
}, {
|
|
95252
|
+
isInput?: boolean | undefined;
|
|
95253
|
+
isOutput?: boolean | undefined;
|
|
95254
|
+
isBidirectional?: boolean | undefined;
|
|
95255
|
+
isPassive?: boolean | undefined;
|
|
95256
|
+
canUseTriState?: boolean | undefined;
|
|
95257
|
+
isUsingTriState?: boolean | undefined;
|
|
95258
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95259
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95260
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95261
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94577
95262
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94578
95263
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94579
95264
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94951,6 +95636,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94951
95636
|
displayName?: string | undefined;
|
|
94952
95637
|
datasheetUrl?: string | undefined;
|
|
94953
95638
|
pinAttributes?: Record<string, {
|
|
95639
|
+
isInput?: boolean | undefined;
|
|
95640
|
+
isOutput?: boolean | undefined;
|
|
95641
|
+
isBidirectional?: boolean | undefined;
|
|
95642
|
+
isPassive?: boolean | undefined;
|
|
95643
|
+
canUseTriState?: boolean | undefined;
|
|
95644
|
+
isUsingTriState?: boolean | undefined;
|
|
95645
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95646
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95647
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95648
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94954
95649
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94955
95650
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94956
95651
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -95622,6 +96317,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
95622
96317
|
displayName?: string | undefined;
|
|
95623
96318
|
datasheetUrl?: string | undefined;
|
|
95624
96319
|
pinAttributes?: Record<string, {
|
|
96320
|
+
isInput?: boolean | undefined;
|
|
96321
|
+
isOutput?: boolean | undefined;
|
|
96322
|
+
isBidirectional?: boolean | undefined;
|
|
96323
|
+
isPassive?: boolean | undefined;
|
|
96324
|
+
canUseTriState?: boolean | undefined;
|
|
96325
|
+
isUsingTriState?: boolean | undefined;
|
|
96326
|
+
canUseOpenCollector?: boolean | undefined;
|
|
96327
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
96328
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
96329
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
95625
96330
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
95626
96331
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
95627
96332
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -99753,6 +100458,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99753
100458
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
99754
100459
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
99755
100460
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
100461
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
100462
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
100463
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
100464
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
100465
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
100466
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
100467
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
100468
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
100469
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
100470
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
99756
100471
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99757
100472
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99758
100473
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -99780,6 +100495,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99780
100495
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
99781
100496
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
99782
100497
|
}, "strip", z.ZodTypeAny, {
|
|
100498
|
+
isInput?: boolean | undefined;
|
|
100499
|
+
isOutput?: boolean | undefined;
|
|
100500
|
+
isBidirectional?: boolean | undefined;
|
|
100501
|
+
isPassive?: boolean | undefined;
|
|
100502
|
+
canUseTriState?: boolean | undefined;
|
|
100503
|
+
isUsingTriState?: boolean | undefined;
|
|
100504
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100505
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100506
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100507
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
99783
100508
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99784
100509
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99785
100510
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -99807,6 +100532,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99807
100532
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
99808
100533
|
isGpio?: boolean | undefined;
|
|
99809
100534
|
}, {
|
|
100535
|
+
isInput?: boolean | undefined;
|
|
100536
|
+
isOutput?: boolean | undefined;
|
|
100537
|
+
isBidirectional?: boolean | undefined;
|
|
100538
|
+
isPassive?: boolean | undefined;
|
|
100539
|
+
canUseTriState?: boolean | undefined;
|
|
100540
|
+
isUsingTriState?: boolean | undefined;
|
|
100541
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100542
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100543
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100544
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
99810
100545
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99811
100546
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99812
100547
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -100180,6 +100915,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
100180
100915
|
displayName?: string | undefined;
|
|
100181
100916
|
datasheetUrl?: string | undefined;
|
|
100182
100917
|
pinAttributes?: Record<string, {
|
|
100918
|
+
isInput?: boolean | undefined;
|
|
100919
|
+
isOutput?: boolean | undefined;
|
|
100920
|
+
isBidirectional?: boolean | undefined;
|
|
100921
|
+
isPassive?: boolean | undefined;
|
|
100922
|
+
canUseTriState?: boolean | undefined;
|
|
100923
|
+
isUsingTriState?: boolean | undefined;
|
|
100924
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100925
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100926
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100927
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
100183
100928
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100184
100929
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100185
100930
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -100847,6 +101592,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
100847
101592
|
displayName?: string | undefined;
|
|
100848
101593
|
datasheetUrl?: string | undefined;
|
|
100849
101594
|
pinAttributes?: Record<string, {
|
|
101595
|
+
isInput?: boolean | undefined;
|
|
101596
|
+
isOutput?: boolean | undefined;
|
|
101597
|
+
isBidirectional?: boolean | undefined;
|
|
101598
|
+
isPassive?: boolean | undefined;
|
|
101599
|
+
canUseTriState?: boolean | undefined;
|
|
101600
|
+
isUsingTriState?: boolean | undefined;
|
|
101601
|
+
canUseOpenCollector?: boolean | undefined;
|
|
101602
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
101603
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
101604
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
100850
101605
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100851
101606
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100852
101607
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106541,6 +107296,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106541
107296
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
106542
107297
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
106543
107298
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
107299
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
107300
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
107301
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
107302
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
107303
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
107304
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
107305
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
107306
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
107307
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
107308
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
106544
107309
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
106545
107310
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
106546
107311
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -106568,6 +107333,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106568
107333
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
106569
107334
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
106570
107335
|
}, "strip", z.ZodTypeAny, {
|
|
107336
|
+
isInput?: boolean | undefined;
|
|
107337
|
+
isOutput?: boolean | undefined;
|
|
107338
|
+
isBidirectional?: boolean | undefined;
|
|
107339
|
+
isPassive?: boolean | undefined;
|
|
107340
|
+
canUseTriState?: boolean | undefined;
|
|
107341
|
+
isUsingTriState?: boolean | undefined;
|
|
107342
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107343
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107344
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107345
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106571
107346
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106572
107347
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106573
107348
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106595,6 +107370,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106595
107370
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106596
107371
|
isGpio?: boolean | undefined;
|
|
106597
107372
|
}, {
|
|
107373
|
+
isInput?: boolean | undefined;
|
|
107374
|
+
isOutput?: boolean | undefined;
|
|
107375
|
+
isBidirectional?: boolean | undefined;
|
|
107376
|
+
isPassive?: boolean | undefined;
|
|
107377
|
+
canUseTriState?: boolean | undefined;
|
|
107378
|
+
isUsingTriState?: boolean | undefined;
|
|
107379
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107380
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107381
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107382
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106598
107383
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106599
107384
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106600
107385
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106978,6 +107763,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106978
107763
|
displayName?: string | undefined;
|
|
106979
107764
|
datasheetUrl?: string | undefined;
|
|
106980
107765
|
pinAttributes?: Record<string, {
|
|
107766
|
+
isInput?: boolean | undefined;
|
|
107767
|
+
isOutput?: boolean | undefined;
|
|
107768
|
+
isBidirectional?: boolean | undefined;
|
|
107769
|
+
isPassive?: boolean | undefined;
|
|
107770
|
+
canUseTriState?: boolean | undefined;
|
|
107771
|
+
isUsingTriState?: boolean | undefined;
|
|
107772
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107773
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107774
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107775
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106981
107776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106982
107777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106983
107778
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -107652,6 +108447,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
107652
108447
|
displayName?: string | undefined;
|
|
107653
108448
|
datasheetUrl?: string | undefined;
|
|
107654
108449
|
pinAttributes?: Record<string, {
|
|
108450
|
+
isInput?: boolean | undefined;
|
|
108451
|
+
isOutput?: boolean | undefined;
|
|
108452
|
+
isBidirectional?: boolean | undefined;
|
|
108453
|
+
isPassive?: boolean | undefined;
|
|
108454
|
+
canUseTriState?: boolean | undefined;
|
|
108455
|
+
isUsingTriState?: boolean | undefined;
|
|
108456
|
+
canUseOpenCollector?: boolean | undefined;
|
|
108457
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
108458
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
108459
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
107655
108460
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
107656
108461
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
107657
108462
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -111823,6 +112628,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111823
112628
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
111824
112629
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
111825
112630
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
112631
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
112632
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
112633
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
112634
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
112635
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
112636
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
112637
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
112638
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
112639
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
112640
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
111826
112641
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
111827
112642
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
111828
112643
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -111850,6 +112665,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111850
112665
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
111851
112666
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
111852
112667
|
}, "strip", z.ZodTypeAny, {
|
|
112668
|
+
isInput?: boolean | undefined;
|
|
112669
|
+
isOutput?: boolean | undefined;
|
|
112670
|
+
isBidirectional?: boolean | undefined;
|
|
112671
|
+
isPassive?: boolean | undefined;
|
|
112672
|
+
canUseTriState?: boolean | undefined;
|
|
112673
|
+
isUsingTriState?: boolean | undefined;
|
|
112674
|
+
canUseOpenCollector?: boolean | undefined;
|
|
112675
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
112676
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
112677
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
111853
112678
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111854
112679
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111855
112680
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -111877,6 +112702,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111877
112702
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111878
112703
|
isGpio?: boolean | undefined;
|
|
111879
112704
|
}, {
|
|
112705
|
+
isInput?: boolean | undefined;
|
|
112706
|
+
isOutput?: boolean | undefined;
|
|
112707
|
+
isBidirectional?: boolean | undefined;
|
|
112708
|
+
isPassive?: boolean | undefined;
|
|
112709
|
+
canUseTriState?: boolean | undefined;
|
|
112710
|
+
isUsingTriState?: boolean | undefined;
|
|
112711
|
+
canUseOpenCollector?: boolean | undefined;
|
|
112712
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
112713
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
112714
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
111880
112715
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111881
112716
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111882
112717
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -112248,6 +113083,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
112248
113083
|
displayName?: string | undefined;
|
|
112249
113084
|
datasheetUrl?: string | undefined;
|
|
112250
113085
|
pinAttributes?: Record<string, {
|
|
113086
|
+
isInput?: boolean | undefined;
|
|
113087
|
+
isOutput?: boolean | undefined;
|
|
113088
|
+
isBidirectional?: boolean | undefined;
|
|
113089
|
+
isPassive?: boolean | undefined;
|
|
113090
|
+
canUseTriState?: boolean | undefined;
|
|
113091
|
+
isUsingTriState?: boolean | undefined;
|
|
113092
|
+
canUseOpenCollector?: boolean | undefined;
|
|
113093
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
113094
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
113095
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
112251
113096
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112252
113097
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112253
113098
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -112914,6 +113759,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
112914
113759
|
displayName?: string | undefined;
|
|
112915
113760
|
datasheetUrl?: string | undefined;
|
|
112916
113761
|
pinAttributes?: Record<string, {
|
|
113762
|
+
isInput?: boolean | undefined;
|
|
113763
|
+
isOutput?: boolean | undefined;
|
|
113764
|
+
isBidirectional?: boolean | undefined;
|
|
113765
|
+
isPassive?: boolean | undefined;
|
|
113766
|
+
canUseTriState?: boolean | undefined;
|
|
113767
|
+
isUsingTriState?: boolean | undefined;
|
|
113768
|
+
canUseOpenCollector?: boolean | undefined;
|
|
113769
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
113770
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
113771
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
112917
113772
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112918
113773
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112919
113774
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -121536,6 +122391,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121536
122391
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
121537
122392
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
121538
122393
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
122394
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
122395
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
122396
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
122397
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
122398
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
122399
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
122400
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
122401
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
122402
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
122403
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
121539
122404
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
121540
122405
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
121541
122406
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -121563,6 +122428,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121563
122428
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
121564
122429
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
121565
122430
|
}, "strip", z.ZodTypeAny, {
|
|
122431
|
+
isInput?: boolean | undefined;
|
|
122432
|
+
isOutput?: boolean | undefined;
|
|
122433
|
+
isBidirectional?: boolean | undefined;
|
|
122434
|
+
isPassive?: boolean | undefined;
|
|
122435
|
+
canUseTriState?: boolean | undefined;
|
|
122436
|
+
isUsingTriState?: boolean | undefined;
|
|
122437
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122438
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122439
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122440
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
121566
122441
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121567
122442
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121568
122443
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -121590,6 +122465,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121590
122465
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121591
122466
|
isGpio?: boolean | undefined;
|
|
121592
122467
|
}, {
|
|
122468
|
+
isInput?: boolean | undefined;
|
|
122469
|
+
isOutput?: boolean | undefined;
|
|
122470
|
+
isBidirectional?: boolean | undefined;
|
|
122471
|
+
isPassive?: boolean | undefined;
|
|
122472
|
+
canUseTriState?: boolean | undefined;
|
|
122473
|
+
isUsingTriState?: boolean | undefined;
|
|
122474
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122475
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122476
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122477
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
121593
122478
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121594
122479
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121595
122480
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -122016,6 +122901,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
122016
122901
|
displayName?: string | undefined;
|
|
122017
122902
|
datasheetUrl?: string | undefined;
|
|
122018
122903
|
pinAttributes?: Record<string, {
|
|
122904
|
+
isInput?: boolean | undefined;
|
|
122905
|
+
isOutput?: boolean | undefined;
|
|
122906
|
+
isBidirectional?: boolean | undefined;
|
|
122907
|
+
isPassive?: boolean | undefined;
|
|
122908
|
+
canUseTriState?: boolean | undefined;
|
|
122909
|
+
isUsingTriState?: boolean | undefined;
|
|
122910
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122911
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122912
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122913
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
122019
122914
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122020
122915
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122021
122916
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -122689,6 +123584,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
122689
123584
|
displayName?: string | undefined;
|
|
122690
123585
|
datasheetUrl?: string | undefined;
|
|
122691
123586
|
pinAttributes?: Record<string, {
|
|
123587
|
+
isInput?: boolean | undefined;
|
|
123588
|
+
isOutput?: boolean | undefined;
|
|
123589
|
+
isBidirectional?: boolean | undefined;
|
|
123590
|
+
isPassive?: boolean | undefined;
|
|
123591
|
+
canUseTriState?: boolean | undefined;
|
|
123592
|
+
isUsingTriState?: boolean | undefined;
|
|
123593
|
+
canUseOpenCollector?: boolean | undefined;
|
|
123594
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
123595
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
123596
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
122692
123597
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122693
123598
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122694
123599
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -127850,6 +128755,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127850
128755
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
127851
128756
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
127852
128757
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
128758
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
128759
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
128760
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
128761
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
128762
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
128763
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
128764
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
128765
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
128766
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
128767
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
127853
128768
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
127854
128769
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
127855
128770
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -127877,6 +128792,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127877
128792
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
127878
128793
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
127879
128794
|
}, "strip", z.ZodTypeAny, {
|
|
128795
|
+
isInput?: boolean | undefined;
|
|
128796
|
+
isOutput?: boolean | undefined;
|
|
128797
|
+
isBidirectional?: boolean | undefined;
|
|
128798
|
+
isPassive?: boolean | undefined;
|
|
128799
|
+
canUseTriState?: boolean | undefined;
|
|
128800
|
+
isUsingTriState?: boolean | undefined;
|
|
128801
|
+
canUseOpenCollector?: boolean | undefined;
|
|
128802
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
128803
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
128804
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
127880
128805
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127881
128806
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127882
128807
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -127904,6 +128829,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127904
128829
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
127905
128830
|
isGpio?: boolean | undefined;
|
|
127906
128831
|
}, {
|
|
128832
|
+
isInput?: boolean | undefined;
|
|
128833
|
+
isOutput?: boolean | undefined;
|
|
128834
|
+
isBidirectional?: boolean | undefined;
|
|
128835
|
+
isPassive?: boolean | undefined;
|
|
128836
|
+
canUseTriState?: boolean | undefined;
|
|
128837
|
+
isUsingTriState?: boolean | undefined;
|
|
128838
|
+
canUseOpenCollector?: boolean | undefined;
|
|
128839
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
128840
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
128841
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
127907
128842
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127908
128843
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127909
128844
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -128277,6 +129212,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
128277
129212
|
displayName?: string | undefined;
|
|
128278
129213
|
datasheetUrl?: string | undefined;
|
|
128279
129214
|
pinAttributes?: Record<string, {
|
|
129215
|
+
isInput?: boolean | undefined;
|
|
129216
|
+
isOutput?: boolean | undefined;
|
|
129217
|
+
isBidirectional?: boolean | undefined;
|
|
129218
|
+
isPassive?: boolean | undefined;
|
|
129219
|
+
canUseTriState?: boolean | undefined;
|
|
129220
|
+
isUsingTriState?: boolean | undefined;
|
|
129221
|
+
canUseOpenCollector?: boolean | undefined;
|
|
129222
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
129223
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
129224
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
128280
129225
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128281
129226
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128282
129227
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -128946,6 +129891,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
128946
129891
|
displayName?: string | undefined;
|
|
128947
129892
|
datasheetUrl?: string | undefined;
|
|
128948
129893
|
pinAttributes?: Record<string, {
|
|
129894
|
+
isInput?: boolean | undefined;
|
|
129895
|
+
isOutput?: boolean | undefined;
|
|
129896
|
+
isBidirectional?: boolean | undefined;
|
|
129897
|
+
isPassive?: boolean | undefined;
|
|
129898
|
+
canUseTriState?: boolean | undefined;
|
|
129899
|
+
isUsingTriState?: boolean | undefined;
|
|
129900
|
+
canUseOpenCollector?: boolean | undefined;
|
|
129901
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
129902
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
129903
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
128949
129904
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128950
129905
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128951
129906
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -134808,6 +135763,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134808
135763
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
134809
135764
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
134810
135765
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
135766
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
135767
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
135768
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
135769
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
135770
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
135771
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
135772
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
135773
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
135774
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
135775
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
134811
135776
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
134812
135777
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
134813
135778
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -134835,6 +135800,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134835
135800
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
134836
135801
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
134837
135802
|
}, "strip", z.ZodTypeAny, {
|
|
135803
|
+
isInput?: boolean | undefined;
|
|
135804
|
+
isOutput?: boolean | undefined;
|
|
135805
|
+
isBidirectional?: boolean | undefined;
|
|
135806
|
+
isPassive?: boolean | undefined;
|
|
135807
|
+
canUseTriState?: boolean | undefined;
|
|
135808
|
+
isUsingTriState?: boolean | undefined;
|
|
135809
|
+
canUseOpenCollector?: boolean | undefined;
|
|
135810
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
135811
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
135812
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
134838
135813
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134839
135814
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134840
135815
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -134862,6 +135837,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134862
135837
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134863
135838
|
isGpio?: boolean | undefined;
|
|
134864
135839
|
}, {
|
|
135840
|
+
isInput?: boolean | undefined;
|
|
135841
|
+
isOutput?: boolean | undefined;
|
|
135842
|
+
isBidirectional?: boolean | undefined;
|
|
135843
|
+
isPassive?: boolean | undefined;
|
|
135844
|
+
canUseTriState?: boolean | undefined;
|
|
135845
|
+
isUsingTriState?: boolean | undefined;
|
|
135846
|
+
canUseOpenCollector?: boolean | undefined;
|
|
135847
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
135848
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
135849
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
134865
135850
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134866
135851
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134867
135852
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -135403,6 +136388,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135403
136388
|
displayName?: string | undefined;
|
|
135404
136389
|
datasheetUrl?: string | undefined;
|
|
135405
136390
|
pinAttributes?: Record<string, {
|
|
136391
|
+
isInput?: boolean | undefined;
|
|
136392
|
+
isOutput?: boolean | undefined;
|
|
136393
|
+
isBidirectional?: boolean | undefined;
|
|
136394
|
+
isPassive?: boolean | undefined;
|
|
136395
|
+
canUseTriState?: boolean | undefined;
|
|
136396
|
+
isUsingTriState?: boolean | undefined;
|
|
136397
|
+
canUseOpenCollector?: boolean | undefined;
|
|
136398
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
136399
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
136400
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
135406
136401
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135407
136402
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135408
136403
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -136121,6 +137116,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136121
137116
|
displayName?: string | undefined;
|
|
136122
137117
|
datasheetUrl?: string | undefined;
|
|
136123
137118
|
pinAttributes?: Record<string, {
|
|
137119
|
+
isInput?: boolean | undefined;
|
|
137120
|
+
isOutput?: boolean | undefined;
|
|
137121
|
+
isBidirectional?: boolean | undefined;
|
|
137122
|
+
isPassive?: boolean | undefined;
|
|
137123
|
+
canUseTriState?: boolean | undefined;
|
|
137124
|
+
isUsingTriState?: boolean | undefined;
|
|
137125
|
+
canUseOpenCollector?: boolean | undefined;
|
|
137126
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
137127
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
137128
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
136124
137129
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136125
137130
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136126
137131
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -136839,6 +137844,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136839
137844
|
displayName?: string | undefined;
|
|
136840
137845
|
datasheetUrl?: string | undefined;
|
|
136841
137846
|
pinAttributes?: Record<string, {
|
|
137847
|
+
isInput?: boolean | undefined;
|
|
137848
|
+
isOutput?: boolean | undefined;
|
|
137849
|
+
isBidirectional?: boolean | undefined;
|
|
137850
|
+
isPassive?: boolean | undefined;
|
|
137851
|
+
canUseTriState?: boolean | undefined;
|
|
137852
|
+
isUsingTriState?: boolean | undefined;
|
|
137853
|
+
canUseOpenCollector?: boolean | undefined;
|
|
137854
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
137855
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
137856
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
136842
137857
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136843
137858
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136844
137859
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -137557,6 +138572,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
137557
138572
|
displayName?: string | undefined;
|
|
137558
138573
|
datasheetUrl?: string | undefined;
|
|
137559
138574
|
pinAttributes?: Record<string, {
|
|
138575
|
+
isInput?: boolean | undefined;
|
|
138576
|
+
isOutput?: boolean | undefined;
|
|
138577
|
+
isBidirectional?: boolean | undefined;
|
|
138578
|
+
isPassive?: boolean | undefined;
|
|
138579
|
+
canUseTriState?: boolean | undefined;
|
|
138580
|
+
isUsingTriState?: boolean | undefined;
|
|
138581
|
+
canUseOpenCollector?: boolean | undefined;
|
|
138582
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
138583
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
138584
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
137560
138585
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
137561
138586
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
137562
138587
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -138275,6 +139300,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
138275
139300
|
displayName?: string | undefined;
|
|
138276
139301
|
datasheetUrl?: string | undefined;
|
|
138277
139302
|
pinAttributes?: Record<string, {
|
|
139303
|
+
isInput?: boolean | undefined;
|
|
139304
|
+
isOutput?: boolean | undefined;
|
|
139305
|
+
isBidirectional?: boolean | undefined;
|
|
139306
|
+
isPassive?: boolean | undefined;
|
|
139307
|
+
canUseTriState?: boolean | undefined;
|
|
139308
|
+
isUsingTriState?: boolean | undefined;
|
|
139309
|
+
canUseOpenCollector?: boolean | undefined;
|
|
139310
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
139311
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
139312
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
138278
139313
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138279
139314
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138280
139315
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -138993,6 +140028,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
138993
140028
|
displayName?: string | undefined;
|
|
138994
140029
|
datasheetUrl?: string | undefined;
|
|
138995
140030
|
pinAttributes?: Record<string, {
|
|
140031
|
+
isInput?: boolean | undefined;
|
|
140032
|
+
isOutput?: boolean | undefined;
|
|
140033
|
+
isBidirectional?: boolean | undefined;
|
|
140034
|
+
isPassive?: boolean | undefined;
|
|
140035
|
+
canUseTriState?: boolean | undefined;
|
|
140036
|
+
isUsingTriState?: boolean | undefined;
|
|
140037
|
+
canUseOpenCollector?: boolean | undefined;
|
|
140038
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
140039
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
140040
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
138996
140041
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138997
140042
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138998
140043
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143245,6 +144290,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143245
144290
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
143246
144291
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
143247
144292
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
144293
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
144294
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
144295
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
144296
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
144297
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
144298
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
144299
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
144300
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
144301
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
144302
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
143248
144303
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143249
144304
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143250
144305
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -143272,6 +144327,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143272
144327
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
143273
144328
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
143274
144329
|
}, "strip", z.ZodTypeAny, {
|
|
144330
|
+
isInput?: boolean | undefined;
|
|
144331
|
+
isOutput?: boolean | undefined;
|
|
144332
|
+
isBidirectional?: boolean | undefined;
|
|
144333
|
+
isPassive?: boolean | undefined;
|
|
144334
|
+
canUseTriState?: boolean | undefined;
|
|
144335
|
+
isUsingTriState?: boolean | undefined;
|
|
144336
|
+
canUseOpenCollector?: boolean | undefined;
|
|
144337
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
144338
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
144339
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143275
144340
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143276
144341
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143277
144342
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143299,6 +144364,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143299
144364
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143300
144365
|
isGpio?: boolean | undefined;
|
|
143301
144366
|
}, {
|
|
144367
|
+
isInput?: boolean | undefined;
|
|
144368
|
+
isOutput?: boolean | undefined;
|
|
144369
|
+
isBidirectional?: boolean | undefined;
|
|
144370
|
+
isPassive?: boolean | undefined;
|
|
144371
|
+
canUseTriState?: boolean | undefined;
|
|
144372
|
+
isUsingTriState?: boolean | undefined;
|
|
144373
|
+
canUseOpenCollector?: boolean | undefined;
|
|
144374
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
144375
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
144376
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143302
144377
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143303
144378
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143304
144379
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143968,6 +145043,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143968
145043
|
displayName?: string | undefined;
|
|
143969
145044
|
datasheetUrl?: string | undefined;
|
|
143970
145045
|
pinAttributes?: Record<string, {
|
|
145046
|
+
isInput?: boolean | undefined;
|
|
145047
|
+
isOutput?: boolean | undefined;
|
|
145048
|
+
isBidirectional?: boolean | undefined;
|
|
145049
|
+
isPassive?: boolean | undefined;
|
|
145050
|
+
canUseTriState?: boolean | undefined;
|
|
145051
|
+
isUsingTriState?: boolean | undefined;
|
|
145052
|
+
canUseOpenCollector?: boolean | undefined;
|
|
145053
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
145054
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
145055
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143971
145056
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143972
145057
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143973
145058
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -144711,6 +145796,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
144711
145796
|
displayName?: string | undefined;
|
|
144712
145797
|
datasheetUrl?: string | undefined;
|
|
144713
145798
|
pinAttributes?: Record<string, {
|
|
145799
|
+
isInput?: boolean | undefined;
|
|
145800
|
+
isOutput?: boolean | undefined;
|
|
145801
|
+
isBidirectional?: boolean | undefined;
|
|
145802
|
+
isPassive?: boolean | undefined;
|
|
145803
|
+
canUseTriState?: boolean | undefined;
|
|
145804
|
+
isUsingTriState?: boolean | undefined;
|
|
145805
|
+
canUseOpenCollector?: boolean | undefined;
|
|
145806
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
145807
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
145808
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
144714
145809
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144715
145810
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144716
145811
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151377,6 +152472,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151377
152472
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
151378
152473
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
151379
152474
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
152475
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
152476
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
152477
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
152478
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
152479
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
152480
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
152481
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
152482
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
152483
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
152484
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
151380
152485
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
151381
152486
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
151382
152487
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -151404,6 +152509,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151404
152509
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
151405
152510
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
151406
152511
|
}, "strip", z.ZodTypeAny, {
|
|
152512
|
+
isInput?: boolean | undefined;
|
|
152513
|
+
isOutput?: boolean | undefined;
|
|
152514
|
+
isBidirectional?: boolean | undefined;
|
|
152515
|
+
isPassive?: boolean | undefined;
|
|
152516
|
+
canUseTriState?: boolean | undefined;
|
|
152517
|
+
isUsingTriState?: boolean | undefined;
|
|
152518
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152519
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152520
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152521
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151407
152522
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151408
152523
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151409
152524
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151431,6 +152546,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151431
152546
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151432
152547
|
isGpio?: boolean | undefined;
|
|
151433
152548
|
}, {
|
|
152549
|
+
isInput?: boolean | undefined;
|
|
152550
|
+
isOutput?: boolean | undefined;
|
|
152551
|
+
isBidirectional?: boolean | undefined;
|
|
152552
|
+
isPassive?: boolean | undefined;
|
|
152553
|
+
canUseTriState?: boolean | undefined;
|
|
152554
|
+
isUsingTriState?: boolean | undefined;
|
|
152555
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152556
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152557
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152558
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151434
152559
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151435
152560
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151436
152561
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151802,6 +152927,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151802
152927
|
displayName?: string | undefined;
|
|
151803
152928
|
datasheetUrl?: string | undefined;
|
|
151804
152929
|
pinAttributes?: Record<string, {
|
|
152930
|
+
isInput?: boolean | undefined;
|
|
152931
|
+
isOutput?: boolean | undefined;
|
|
152932
|
+
isBidirectional?: boolean | undefined;
|
|
152933
|
+
isPassive?: boolean | undefined;
|
|
152934
|
+
canUseTriState?: boolean | undefined;
|
|
152935
|
+
isUsingTriState?: boolean | undefined;
|
|
152936
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152937
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152938
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152939
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151805
152940
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151806
152941
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151807
152942
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -152468,6 +153603,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
152468
153603
|
displayName?: string | undefined;
|
|
152469
153604
|
datasheetUrl?: string | undefined;
|
|
152470
153605
|
pinAttributes?: Record<string, {
|
|
153606
|
+
isInput?: boolean | undefined;
|
|
153607
|
+
isOutput?: boolean | undefined;
|
|
153608
|
+
isBidirectional?: boolean | undefined;
|
|
153609
|
+
isPassive?: boolean | undefined;
|
|
153610
|
+
canUseTriState?: boolean | undefined;
|
|
153611
|
+
isUsingTriState?: boolean | undefined;
|
|
153612
|
+
canUseOpenCollector?: boolean | undefined;
|
|
153613
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
153614
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
153615
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
152471
153616
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
152472
153617
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
152473
153618
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -156604,6 +157749,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156604
157749
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
156605
157750
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
156606
157751
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
157752
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
157753
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
157754
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
157755
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
157756
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
157757
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
157758
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
157759
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
157760
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
157761
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
156607
157762
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
156608
157763
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
156609
157764
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -156631,6 +157786,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156631
157786
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
156632
157787
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
156633
157788
|
}, "strip", z.ZodTypeAny, {
|
|
157789
|
+
isInput?: boolean | undefined;
|
|
157790
|
+
isOutput?: boolean | undefined;
|
|
157791
|
+
isBidirectional?: boolean | undefined;
|
|
157792
|
+
isPassive?: boolean | undefined;
|
|
157793
|
+
canUseTriState?: boolean | undefined;
|
|
157794
|
+
isUsingTriState?: boolean | undefined;
|
|
157795
|
+
canUseOpenCollector?: boolean | undefined;
|
|
157796
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
157797
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
157798
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
156634
157799
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156635
157800
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156636
157801
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -156658,6 +157823,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156658
157823
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156659
157824
|
isGpio?: boolean | undefined;
|
|
156660
157825
|
}, {
|
|
157826
|
+
isInput?: boolean | undefined;
|
|
157827
|
+
isOutput?: boolean | undefined;
|
|
157828
|
+
isBidirectional?: boolean | undefined;
|
|
157829
|
+
isPassive?: boolean | undefined;
|
|
157830
|
+
canUseTriState?: boolean | undefined;
|
|
157831
|
+
isUsingTriState?: boolean | undefined;
|
|
157832
|
+
canUseOpenCollector?: boolean | undefined;
|
|
157833
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
157834
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
157835
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
156661
157836
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156662
157837
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156663
157838
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -157034,6 +158209,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
157034
158209
|
displayName?: string | undefined;
|
|
157035
158210
|
datasheetUrl?: string | undefined;
|
|
157036
158211
|
pinAttributes?: Record<string, {
|
|
158212
|
+
isInput?: boolean | undefined;
|
|
158213
|
+
isOutput?: boolean | undefined;
|
|
158214
|
+
isBidirectional?: boolean | undefined;
|
|
158215
|
+
isPassive?: boolean | undefined;
|
|
158216
|
+
canUseTriState?: boolean | undefined;
|
|
158217
|
+
isUsingTriState?: boolean | undefined;
|
|
158218
|
+
canUseOpenCollector?: boolean | undefined;
|
|
158219
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
158220
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
158221
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
157037
158222
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157038
158223
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157039
158224
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -157704,6 +158889,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
157704
158889
|
displayName?: string | undefined;
|
|
157705
158890
|
datasheetUrl?: string | undefined;
|
|
157706
158891
|
pinAttributes?: Record<string, {
|
|
158892
|
+
isInput?: boolean | undefined;
|
|
158893
|
+
isOutput?: boolean | undefined;
|
|
158894
|
+
isBidirectional?: boolean | undefined;
|
|
158895
|
+
isPassive?: boolean | undefined;
|
|
158896
|
+
canUseTriState?: boolean | undefined;
|
|
158897
|
+
isUsingTriState?: boolean | undefined;
|
|
158898
|
+
canUseOpenCollector?: boolean | undefined;
|
|
158899
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
158900
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
158901
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
157707
158902
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157708
158903
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157709
158904
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -161839,6 +163034,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161839
163034
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
161840
163035
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
161841
163036
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
163037
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
163038
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
163039
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
163040
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
163041
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
163042
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
163043
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
163044
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
163045
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
163046
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
161842
163047
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
161843
163048
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
161844
163049
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -161866,6 +163071,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161866
163071
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
161867
163072
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
161868
163073
|
}, "strip", z.ZodTypeAny, {
|
|
163074
|
+
isInput?: boolean | undefined;
|
|
163075
|
+
isOutput?: boolean | undefined;
|
|
163076
|
+
isBidirectional?: boolean | undefined;
|
|
163077
|
+
isPassive?: boolean | undefined;
|
|
163078
|
+
canUseTriState?: boolean | undefined;
|
|
163079
|
+
isUsingTriState?: boolean | undefined;
|
|
163080
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163081
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163082
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163083
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
161869
163084
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161870
163085
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161871
163086
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -161893,6 +163108,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161893
163108
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161894
163109
|
isGpio?: boolean | undefined;
|
|
161895
163110
|
}, {
|
|
163111
|
+
isInput?: boolean | undefined;
|
|
163112
|
+
isOutput?: boolean | undefined;
|
|
163113
|
+
isBidirectional?: boolean | undefined;
|
|
163114
|
+
isPassive?: boolean | undefined;
|
|
163115
|
+
canUseTriState?: boolean | undefined;
|
|
163116
|
+
isUsingTriState?: boolean | undefined;
|
|
163117
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163118
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163119
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163120
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
161896
163121
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161897
163122
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161898
163123
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -162262,6 +163487,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
162262
163487
|
displayName?: string | undefined;
|
|
162263
163488
|
datasheetUrl?: string | undefined;
|
|
162264
163489
|
pinAttributes?: Record<string, {
|
|
163490
|
+
isInput?: boolean | undefined;
|
|
163491
|
+
isOutput?: boolean | undefined;
|
|
163492
|
+
isBidirectional?: boolean | undefined;
|
|
163493
|
+
isPassive?: boolean | undefined;
|
|
163494
|
+
canUseTriState?: boolean | undefined;
|
|
163495
|
+
isUsingTriState?: boolean | undefined;
|
|
163496
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163497
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163498
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163499
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
162265
163500
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162266
163501
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162267
163502
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -162927,6 +164162,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
162927
164162
|
displayName?: string | undefined;
|
|
162928
164163
|
datasheetUrl?: string | undefined;
|
|
162929
164164
|
pinAttributes?: Record<string, {
|
|
164165
|
+
isInput?: boolean | undefined;
|
|
164166
|
+
isOutput?: boolean | undefined;
|
|
164167
|
+
isBidirectional?: boolean | undefined;
|
|
164168
|
+
isPassive?: boolean | undefined;
|
|
164169
|
+
canUseTriState?: boolean | undefined;
|
|
164170
|
+
isUsingTriState?: boolean | undefined;
|
|
164171
|
+
canUseOpenCollector?: boolean | undefined;
|
|
164172
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
164173
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
164174
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
162930
164175
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162931
164176
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162932
164177
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167061,6 +168306,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167061
168306
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
167062
168307
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
167063
168308
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
168309
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
168310
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
168311
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
168312
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
168313
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
168314
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
168315
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
168316
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
168317
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
168318
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
167064
168319
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
167065
168320
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
167066
168321
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -167088,6 +168343,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167088
168343
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
167089
168344
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
167090
168345
|
}, "strip", z.ZodTypeAny, {
|
|
168346
|
+
isInput?: boolean | undefined;
|
|
168347
|
+
isOutput?: boolean | undefined;
|
|
168348
|
+
isBidirectional?: boolean | undefined;
|
|
168349
|
+
isPassive?: boolean | undefined;
|
|
168350
|
+
canUseTriState?: boolean | undefined;
|
|
168351
|
+
isUsingTriState?: boolean | undefined;
|
|
168352
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168353
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168354
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168355
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167091
168356
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167092
168357
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167093
168358
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167115,6 +168380,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167115
168380
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
167116
168381
|
isGpio?: boolean | undefined;
|
|
167117
168382
|
}, {
|
|
168383
|
+
isInput?: boolean | undefined;
|
|
168384
|
+
isOutput?: boolean | undefined;
|
|
168385
|
+
isBidirectional?: boolean | undefined;
|
|
168386
|
+
isPassive?: boolean | undefined;
|
|
168387
|
+
canUseTriState?: boolean | undefined;
|
|
168388
|
+
isUsingTriState?: boolean | undefined;
|
|
168389
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168390
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168391
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168392
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167118
168393
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167119
168394
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167120
168395
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167488,6 +168763,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167488
168763
|
displayName?: string | undefined;
|
|
167489
168764
|
datasheetUrl?: string | undefined;
|
|
167490
168765
|
pinAttributes?: Record<string, {
|
|
168766
|
+
isInput?: boolean | undefined;
|
|
168767
|
+
isOutput?: boolean | undefined;
|
|
168768
|
+
isBidirectional?: boolean | undefined;
|
|
168769
|
+
isPassive?: boolean | undefined;
|
|
168770
|
+
canUseTriState?: boolean | undefined;
|
|
168771
|
+
isUsingTriState?: boolean | undefined;
|
|
168772
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168773
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168774
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168775
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167491
168776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167492
168777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167493
168778
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -168156,6 +169441,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
168156
169441
|
displayName?: string | undefined;
|
|
168157
169442
|
datasheetUrl?: string | undefined;
|
|
168158
169443
|
pinAttributes?: Record<string, {
|
|
169444
|
+
isInput?: boolean | undefined;
|
|
169445
|
+
isOutput?: boolean | undefined;
|
|
169446
|
+
isBidirectional?: boolean | undefined;
|
|
169447
|
+
isPassive?: boolean | undefined;
|
|
169448
|
+
canUseTriState?: boolean | undefined;
|
|
169449
|
+
isUsingTriState?: boolean | undefined;
|
|
169450
|
+
canUseOpenCollector?: boolean | undefined;
|
|
169451
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
169452
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
169453
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
168159
169454
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168160
169455
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168161
169456
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172283,6 +173578,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172283
173578
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
172284
173579
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
172285
173580
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
173581
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
173582
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
173583
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
173584
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
173585
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
173586
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
173587
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
173588
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
173589
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
173590
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
172286
173591
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
172287
173592
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
172288
173593
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -172310,6 +173615,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172310
173615
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
172311
173616
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
172312
173617
|
}, "strip", z.ZodTypeAny, {
|
|
173618
|
+
isInput?: boolean | undefined;
|
|
173619
|
+
isOutput?: boolean | undefined;
|
|
173620
|
+
isBidirectional?: boolean | undefined;
|
|
173621
|
+
isPassive?: boolean | undefined;
|
|
173622
|
+
canUseTriState?: boolean | undefined;
|
|
173623
|
+
isUsingTriState?: boolean | undefined;
|
|
173624
|
+
canUseOpenCollector?: boolean | undefined;
|
|
173625
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
173626
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
173627
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172313
173628
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172314
173629
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172315
173630
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172337,6 +173652,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172337
173652
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
172338
173653
|
isGpio?: boolean | undefined;
|
|
172339
173654
|
}, {
|
|
173655
|
+
isInput?: boolean | undefined;
|
|
173656
|
+
isOutput?: boolean | undefined;
|
|
173657
|
+
isBidirectional?: boolean | undefined;
|
|
173658
|
+
isPassive?: boolean | undefined;
|
|
173659
|
+
canUseTriState?: boolean | undefined;
|
|
173660
|
+
isUsingTriState?: boolean | undefined;
|
|
173661
|
+
canUseOpenCollector?: boolean | undefined;
|
|
173662
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
173663
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
173664
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172340
173665
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172341
173666
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172342
173667
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172716,6 +174041,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172716
174041
|
displayName?: string | undefined;
|
|
172717
174042
|
datasheetUrl?: string | undefined;
|
|
172718
174043
|
pinAttributes?: Record<string, {
|
|
174044
|
+
isInput?: boolean | undefined;
|
|
174045
|
+
isOutput?: boolean | undefined;
|
|
174046
|
+
isBidirectional?: boolean | undefined;
|
|
174047
|
+
isPassive?: boolean | undefined;
|
|
174048
|
+
canUseTriState?: boolean | undefined;
|
|
174049
|
+
isUsingTriState?: boolean | undefined;
|
|
174050
|
+
canUseOpenCollector?: boolean | undefined;
|
|
174051
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
174052
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
174053
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172719
174054
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172720
174055
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172721
174056
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -173389,6 +174724,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
173389
174724
|
displayName?: string | undefined;
|
|
173390
174725
|
datasheetUrl?: string | undefined;
|
|
173391
174726
|
pinAttributes?: Record<string, {
|
|
174727
|
+
isInput?: boolean | undefined;
|
|
174728
|
+
isOutput?: boolean | undefined;
|
|
174729
|
+
isBidirectional?: boolean | undefined;
|
|
174730
|
+
isPassive?: boolean | undefined;
|
|
174731
|
+
canUseTriState?: boolean | undefined;
|
|
174732
|
+
isUsingTriState?: boolean | undefined;
|
|
174733
|
+
canUseOpenCollector?: boolean | undefined;
|
|
174734
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
174735
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
174736
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
173392
174737
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
173393
174738
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
173394
174739
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -174062,6 +175407,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
174062
175407
|
displayName?: string | undefined;
|
|
174063
175408
|
datasheetUrl?: string | undefined;
|
|
174064
175409
|
pinAttributes?: Record<string, {
|
|
175410
|
+
isInput?: boolean | undefined;
|
|
175411
|
+
isOutput?: boolean | undefined;
|
|
175412
|
+
isBidirectional?: boolean | undefined;
|
|
175413
|
+
isPassive?: boolean | undefined;
|
|
175414
|
+
canUseTriState?: boolean | undefined;
|
|
175415
|
+
isUsingTriState?: boolean | undefined;
|
|
175416
|
+
canUseOpenCollector?: boolean | undefined;
|
|
175417
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
175418
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
175419
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
174065
175420
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174066
175421
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174067
175422
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -174735,6 +176090,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
174735
176090
|
displayName?: string | undefined;
|
|
174736
176091
|
datasheetUrl?: string | undefined;
|
|
174737
176092
|
pinAttributes?: Record<string, {
|
|
176093
|
+
isInput?: boolean | undefined;
|
|
176094
|
+
isOutput?: boolean | undefined;
|
|
176095
|
+
isBidirectional?: boolean | undefined;
|
|
176096
|
+
isPassive?: boolean | undefined;
|
|
176097
|
+
canUseTriState?: boolean | undefined;
|
|
176098
|
+
isUsingTriState?: boolean | undefined;
|
|
176099
|
+
canUseOpenCollector?: boolean | undefined;
|
|
176100
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
176101
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
176102
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
174738
176103
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174739
176104
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174740
176105
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -175414,6 +176779,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
175414
176779
|
displayName?: string | undefined;
|
|
175415
176780
|
datasheetUrl?: string | undefined;
|
|
175416
176781
|
pinAttributes?: Record<string, {
|
|
176782
|
+
isInput?: boolean | undefined;
|
|
176783
|
+
isOutput?: boolean | undefined;
|
|
176784
|
+
isBidirectional?: boolean | undefined;
|
|
176785
|
+
isPassive?: boolean | undefined;
|
|
176786
|
+
canUseTriState?: boolean | undefined;
|
|
176787
|
+
isUsingTriState?: boolean | undefined;
|
|
176788
|
+
canUseOpenCollector?: boolean | undefined;
|
|
176789
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
176790
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
176791
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
175417
176792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
175418
176793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
175419
176794
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -176081,6 +177456,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
176081
177456
|
displayName?: string | undefined;
|
|
176082
177457
|
datasheetUrl?: string | undefined;
|
|
176083
177458
|
pinAttributes?: Record<string, {
|
|
177459
|
+
isInput?: boolean | undefined;
|
|
177460
|
+
isOutput?: boolean | undefined;
|
|
177461
|
+
isBidirectional?: boolean | undefined;
|
|
177462
|
+
isPassive?: boolean | undefined;
|
|
177463
|
+
canUseTriState?: boolean | undefined;
|
|
177464
|
+
isUsingTriState?: boolean | undefined;
|
|
177465
|
+
canUseOpenCollector?: boolean | undefined;
|
|
177466
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
177467
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
177468
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
176084
177469
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
176085
177470
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
176086
177471
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180232,6 +181617,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180232
181617
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
180233
181618
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
180234
181619
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
181620
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
181621
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
181622
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
181623
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
181624
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
181625
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
181626
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
181627
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
181628
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
181629
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
180235
181630
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
180236
181631
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
180237
181632
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -180259,6 +181654,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180259
181654
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
180260
181655
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
180261
181656
|
}, "strip", z.ZodTypeAny, {
|
|
181657
|
+
isInput?: boolean | undefined;
|
|
181658
|
+
isOutput?: boolean | undefined;
|
|
181659
|
+
isBidirectional?: boolean | undefined;
|
|
181660
|
+
isPassive?: boolean | undefined;
|
|
181661
|
+
canUseTriState?: boolean | undefined;
|
|
181662
|
+
isUsingTriState?: boolean | undefined;
|
|
181663
|
+
canUseOpenCollector?: boolean | undefined;
|
|
181664
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
181665
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
181666
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180262
181667
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180263
181668
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180264
181669
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180286,6 +181691,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180286
181691
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
180287
181692
|
isGpio?: boolean | undefined;
|
|
180288
181693
|
}, {
|
|
181694
|
+
isInput?: boolean | undefined;
|
|
181695
|
+
isOutput?: boolean | undefined;
|
|
181696
|
+
isBidirectional?: boolean | undefined;
|
|
181697
|
+
isPassive?: boolean | undefined;
|
|
181698
|
+
canUseTriState?: boolean | undefined;
|
|
181699
|
+
isUsingTriState?: boolean | undefined;
|
|
181700
|
+
canUseOpenCollector?: boolean | undefined;
|
|
181701
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
181702
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
181703
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180289
181704
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180290
181705
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180291
181706
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180664,6 +182079,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180664
182079
|
displayName?: string | undefined;
|
|
180665
182080
|
datasheetUrl?: string | undefined;
|
|
180666
182081
|
pinAttributes?: Record<string, {
|
|
182082
|
+
isInput?: boolean | undefined;
|
|
182083
|
+
isOutput?: boolean | undefined;
|
|
182084
|
+
isBidirectional?: boolean | undefined;
|
|
182085
|
+
isPassive?: boolean | undefined;
|
|
182086
|
+
canUseTriState?: boolean | undefined;
|
|
182087
|
+
isUsingTriState?: boolean | undefined;
|
|
182088
|
+
canUseOpenCollector?: boolean | undefined;
|
|
182089
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
182090
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
182091
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180667
182092
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180668
182093
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180669
182094
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -181338,6 +182763,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
181338
182763
|
displayName?: string | undefined;
|
|
181339
182764
|
datasheetUrl?: string | undefined;
|
|
181340
182765
|
pinAttributes?: Record<string, {
|
|
182766
|
+
isInput?: boolean | undefined;
|
|
182767
|
+
isOutput?: boolean | undefined;
|
|
182768
|
+
isBidirectional?: boolean | undefined;
|
|
182769
|
+
isPassive?: boolean | undefined;
|
|
182770
|
+
canUseTriState?: boolean | undefined;
|
|
182771
|
+
isUsingTriState?: boolean | undefined;
|
|
182772
|
+
canUseOpenCollector?: boolean | undefined;
|
|
182773
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
182774
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
182775
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
181341
182776
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
181342
182777
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
181343
182778
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185482,6 +186917,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185482
186917
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
185483
186918
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
185484
186919
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
186920
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
186921
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
186922
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
186923
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
186924
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
186925
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
186926
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
186927
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
186928
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
186929
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
185485
186930
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
185486
186931
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
185487
186932
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -185509,6 +186954,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185509
186954
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
185510
186955
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
185511
186956
|
}, "strip", z.ZodTypeAny, {
|
|
186957
|
+
isInput?: boolean | undefined;
|
|
186958
|
+
isOutput?: boolean | undefined;
|
|
186959
|
+
isBidirectional?: boolean | undefined;
|
|
186960
|
+
isPassive?: boolean | undefined;
|
|
186961
|
+
canUseTriState?: boolean | undefined;
|
|
186962
|
+
isUsingTriState?: boolean | undefined;
|
|
186963
|
+
canUseOpenCollector?: boolean | undefined;
|
|
186964
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
186965
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
186966
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185512
186967
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185513
186968
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185514
186969
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185536,6 +186991,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185536
186991
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
185537
186992
|
isGpio?: boolean | undefined;
|
|
185538
186993
|
}, {
|
|
186994
|
+
isInput?: boolean | undefined;
|
|
186995
|
+
isOutput?: boolean | undefined;
|
|
186996
|
+
isBidirectional?: boolean | undefined;
|
|
186997
|
+
isPassive?: boolean | undefined;
|
|
186998
|
+
canUseTriState?: boolean | undefined;
|
|
186999
|
+
isUsingTriState?: boolean | undefined;
|
|
187000
|
+
canUseOpenCollector?: boolean | undefined;
|
|
187001
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
187002
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
187003
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185539
187004
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185540
187005
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185541
187006
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185919,6 +187384,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185919
187384
|
displayName?: string | undefined;
|
|
185920
187385
|
datasheetUrl?: string | undefined;
|
|
185921
187386
|
pinAttributes?: Record<string, {
|
|
187387
|
+
isInput?: boolean | undefined;
|
|
187388
|
+
isOutput?: boolean | undefined;
|
|
187389
|
+
isBidirectional?: boolean | undefined;
|
|
187390
|
+
isPassive?: boolean | undefined;
|
|
187391
|
+
canUseTriState?: boolean | undefined;
|
|
187392
|
+
isUsingTriState?: boolean | undefined;
|
|
187393
|
+
canUseOpenCollector?: boolean | undefined;
|
|
187394
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
187395
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
187396
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185922
187397
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185923
187398
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185924
187399
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -186595,6 +188070,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
186595
188070
|
displayName?: string | undefined;
|
|
186596
188071
|
datasheetUrl?: string | undefined;
|
|
186597
188072
|
pinAttributes?: Record<string, {
|
|
188073
|
+
isInput?: boolean | undefined;
|
|
188074
|
+
isOutput?: boolean | undefined;
|
|
188075
|
+
isBidirectional?: boolean | undefined;
|
|
188076
|
+
isPassive?: boolean | undefined;
|
|
188077
|
+
canUseTriState?: boolean | undefined;
|
|
188078
|
+
isUsingTriState?: boolean | undefined;
|
|
188079
|
+
canUseOpenCollector?: boolean | undefined;
|
|
188080
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
188081
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
188082
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
186598
188083
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
186599
188084
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
186600
188085
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -187272,6 +188757,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
187272
188757
|
displayName?: string | undefined;
|
|
187273
188758
|
datasheetUrl?: string | undefined;
|
|
187274
188759
|
pinAttributes?: Record<string, {
|
|
188760
|
+
isInput?: boolean | undefined;
|
|
188761
|
+
isOutput?: boolean | undefined;
|
|
188762
|
+
isBidirectional?: boolean | undefined;
|
|
188763
|
+
isPassive?: boolean | undefined;
|
|
188764
|
+
canUseTriState?: boolean | undefined;
|
|
188765
|
+
isUsingTriState?: boolean | undefined;
|
|
188766
|
+
canUseOpenCollector?: boolean | undefined;
|
|
188767
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
188768
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
188769
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
187275
188770
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
187276
188771
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
187277
188772
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192441,6 +193936,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192441
193936
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
192442
193937
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
192443
193938
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
193939
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
193940
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
193941
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
193942
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
193943
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
193944
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
193945
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
193946
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
193947
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
193948
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
192444
193949
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
192445
193950
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
192446
193951
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -192468,6 +193973,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192468
193973
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
192469
193974
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
192470
193975
|
}, "strip", z.ZodTypeAny, {
|
|
193976
|
+
isInput?: boolean | undefined;
|
|
193977
|
+
isOutput?: boolean | undefined;
|
|
193978
|
+
isBidirectional?: boolean | undefined;
|
|
193979
|
+
isPassive?: boolean | undefined;
|
|
193980
|
+
canUseTriState?: boolean | undefined;
|
|
193981
|
+
isUsingTriState?: boolean | undefined;
|
|
193982
|
+
canUseOpenCollector?: boolean | undefined;
|
|
193983
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
193984
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
193985
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192471
193986
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192472
193987
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192473
193988
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192495,6 +194010,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192495
194010
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
192496
194011
|
isGpio?: boolean | undefined;
|
|
192497
194012
|
}, {
|
|
194013
|
+
isInput?: boolean | undefined;
|
|
194014
|
+
isOutput?: boolean | undefined;
|
|
194015
|
+
isBidirectional?: boolean | undefined;
|
|
194016
|
+
isPassive?: boolean | undefined;
|
|
194017
|
+
canUseTriState?: boolean | undefined;
|
|
194018
|
+
isUsingTriState?: boolean | undefined;
|
|
194019
|
+
canUseOpenCollector?: boolean | undefined;
|
|
194020
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194021
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194022
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192498
194023
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192499
194024
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192500
194025
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192879,6 +194404,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192879
194404
|
displayName?: string | undefined;
|
|
192880
194405
|
datasheetUrl?: string | undefined;
|
|
192881
194406
|
pinAttributes?: Record<string, {
|
|
194407
|
+
isInput?: boolean | undefined;
|
|
194408
|
+
isOutput?: boolean | undefined;
|
|
194409
|
+
isBidirectional?: boolean | undefined;
|
|
194410
|
+
isPassive?: boolean | undefined;
|
|
194411
|
+
canUseTriState?: boolean | undefined;
|
|
194412
|
+
isUsingTriState?: boolean | undefined;
|
|
194413
|
+
canUseOpenCollector?: boolean | undefined;
|
|
194414
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194415
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194416
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192882
194417
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192883
194418
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192884
194419
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -193551,6 +195086,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
193551
195086
|
displayName?: string | undefined;
|
|
193552
195087
|
datasheetUrl?: string | undefined;
|
|
193553
195088
|
pinAttributes?: Record<string, {
|
|
195089
|
+
isInput?: boolean | undefined;
|
|
195090
|
+
isOutput?: boolean | undefined;
|
|
195091
|
+
isBidirectional?: boolean | undefined;
|
|
195092
|
+
isPassive?: boolean | undefined;
|
|
195093
|
+
canUseTriState?: boolean | undefined;
|
|
195094
|
+
isUsingTriState?: boolean | undefined;
|
|
195095
|
+
canUseOpenCollector?: boolean | undefined;
|
|
195096
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
195097
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
195098
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
193554
195099
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
193555
195100
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
193556
195101
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -194223,6 +195768,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
194223
195768
|
displayName?: string | undefined;
|
|
194224
195769
|
datasheetUrl?: string | undefined;
|
|
194225
195770
|
pinAttributes?: Record<string, {
|
|
195771
|
+
isInput?: boolean | undefined;
|
|
195772
|
+
isOutput?: boolean | undefined;
|
|
195773
|
+
isBidirectional?: boolean | undefined;
|
|
195774
|
+
isPassive?: boolean | undefined;
|
|
195775
|
+
canUseTriState?: boolean | undefined;
|
|
195776
|
+
isUsingTriState?: boolean | undefined;
|
|
195777
|
+
canUseOpenCollector?: boolean | undefined;
|
|
195778
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
195779
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
195780
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
194226
195781
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194227
195782
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194228
195783
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -194895,6 +196450,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
194895
196450
|
displayName?: string | undefined;
|
|
194896
196451
|
datasheetUrl?: string | undefined;
|
|
194897
196452
|
pinAttributes?: Record<string, {
|
|
196453
|
+
isInput?: boolean | undefined;
|
|
196454
|
+
isOutput?: boolean | undefined;
|
|
196455
|
+
isBidirectional?: boolean | undefined;
|
|
196456
|
+
isPassive?: boolean | undefined;
|
|
196457
|
+
canUseTriState?: boolean | undefined;
|
|
196458
|
+
isUsingTriState?: boolean | undefined;
|
|
196459
|
+
canUseOpenCollector?: boolean | undefined;
|
|
196460
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
196461
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
196462
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
194898
196463
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194899
196464
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194900
196465
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200420,6 +201985,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200420
201985
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
200421
201986
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
200422
201987
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
201988
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
201989
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
201990
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
201991
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
201992
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
201993
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
201994
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
201995
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
201996
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
201997
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
200423
201998
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
200424
201999
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
200425
202000
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -200447,6 +202022,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200447
202022
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
200448
202023
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
200449
202024
|
}, "strip", z.ZodTypeAny, {
|
|
202025
|
+
isInput?: boolean | undefined;
|
|
202026
|
+
isOutput?: boolean | undefined;
|
|
202027
|
+
isBidirectional?: boolean | undefined;
|
|
202028
|
+
isPassive?: boolean | undefined;
|
|
202029
|
+
canUseTriState?: boolean | undefined;
|
|
202030
|
+
isUsingTriState?: boolean | undefined;
|
|
202031
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202032
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202033
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202034
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200450
202035
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200451
202036
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200452
202037
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200474,6 +202059,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200474
202059
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
200475
202060
|
isGpio?: boolean | undefined;
|
|
200476
202061
|
}, {
|
|
202062
|
+
isInput?: boolean | undefined;
|
|
202063
|
+
isOutput?: boolean | undefined;
|
|
202064
|
+
isBidirectional?: boolean | undefined;
|
|
202065
|
+
isPassive?: boolean | undefined;
|
|
202066
|
+
canUseTriState?: boolean | undefined;
|
|
202067
|
+
isUsingTriState?: boolean | undefined;
|
|
202068
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202069
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202070
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202071
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200477
202072
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200478
202073
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200479
202074
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200844,6 +202439,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200844
202439
|
displayName?: string | undefined;
|
|
200845
202440
|
datasheetUrl?: string | undefined;
|
|
200846
202441
|
pinAttributes?: Record<string, {
|
|
202442
|
+
isInput?: boolean | undefined;
|
|
202443
|
+
isOutput?: boolean | undefined;
|
|
202444
|
+
isBidirectional?: boolean | undefined;
|
|
202445
|
+
isPassive?: boolean | undefined;
|
|
202446
|
+
canUseTriState?: boolean | undefined;
|
|
202447
|
+
isUsingTriState?: boolean | undefined;
|
|
202448
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202449
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202450
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202451
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200847
202452
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200848
202453
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200849
202454
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -201509,6 +203114,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
201509
203114
|
displayName?: string | undefined;
|
|
201510
203115
|
datasheetUrl?: string | undefined;
|
|
201511
203116
|
pinAttributes?: Record<string, {
|
|
203117
|
+
isInput?: boolean | undefined;
|
|
203118
|
+
isOutput?: boolean | undefined;
|
|
203119
|
+
isBidirectional?: boolean | undefined;
|
|
203120
|
+
isPassive?: boolean | undefined;
|
|
203121
|
+
canUseTriState?: boolean | undefined;
|
|
203122
|
+
isUsingTriState?: boolean | undefined;
|
|
203123
|
+
canUseOpenCollector?: boolean | undefined;
|
|
203124
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
203125
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
203126
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
201512
203127
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
201513
203128
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
201514
203129
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -205651,6 +207266,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205651
207266
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
205652
207267
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
205653
207268
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
207269
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
207270
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
207271
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
207272
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
207273
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
207274
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
207275
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
207276
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
207277
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
207278
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
205654
207279
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
205655
207280
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
205656
207281
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -205678,6 +207303,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205678
207303
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
205679
207304
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
205680
207305
|
}, "strip", z.ZodTypeAny, {
|
|
207306
|
+
isInput?: boolean | undefined;
|
|
207307
|
+
isOutput?: boolean | undefined;
|
|
207308
|
+
isBidirectional?: boolean | undefined;
|
|
207309
|
+
isPassive?: boolean | undefined;
|
|
207310
|
+
canUseTriState?: boolean | undefined;
|
|
207311
|
+
isUsingTriState?: boolean | undefined;
|
|
207312
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207313
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207314
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207315
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
205681
207316
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205682
207317
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205683
207318
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -205705,6 +207340,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205705
207340
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
205706
207341
|
isGpio?: boolean | undefined;
|
|
205707
207342
|
}, {
|
|
207343
|
+
isInput?: boolean | undefined;
|
|
207344
|
+
isOutput?: boolean | undefined;
|
|
207345
|
+
isBidirectional?: boolean | undefined;
|
|
207346
|
+
isPassive?: boolean | undefined;
|
|
207347
|
+
canUseTriState?: boolean | undefined;
|
|
207348
|
+
isUsingTriState?: boolean | undefined;
|
|
207349
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207350
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207351
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207352
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
205708
207353
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205709
207354
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205710
207355
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -206087,6 +207732,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
206087
207732
|
displayName?: string | undefined;
|
|
206088
207733
|
datasheetUrl?: string | undefined;
|
|
206089
207734
|
pinAttributes?: Record<string, {
|
|
207735
|
+
isInput?: boolean | undefined;
|
|
207736
|
+
isOutput?: boolean | undefined;
|
|
207737
|
+
isBidirectional?: boolean | undefined;
|
|
207738
|
+
isPassive?: boolean | undefined;
|
|
207739
|
+
canUseTriState?: boolean | undefined;
|
|
207740
|
+
isUsingTriState?: boolean | undefined;
|
|
207741
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207742
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207743
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207744
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
206090
207745
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206091
207746
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206092
207747
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -206765,6 +208420,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
206765
208420
|
displayName?: string | undefined;
|
|
206766
208421
|
datasheetUrl?: string | undefined;
|
|
206767
208422
|
pinAttributes?: Record<string, {
|
|
208423
|
+
isInput?: boolean | undefined;
|
|
208424
|
+
isOutput?: boolean | undefined;
|
|
208425
|
+
isBidirectional?: boolean | undefined;
|
|
208426
|
+
isPassive?: boolean | undefined;
|
|
208427
|
+
canUseTriState?: boolean | undefined;
|
|
208428
|
+
isUsingTriState?: boolean | undefined;
|
|
208429
|
+
canUseOpenCollector?: boolean | undefined;
|
|
208430
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
208431
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
208432
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
206768
208433
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206769
208434
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206770
208435
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -210915,6 +212580,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210915
212580
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
210916
212581
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
210917
212582
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
212583
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
212584
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
212585
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
212586
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
212587
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
212588
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
212589
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
212590
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
212591
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
212592
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
210918
212593
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
210919
212594
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
210920
212595
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -210942,6 +212617,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210942
212617
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
210943
212618
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
210944
212619
|
}, "strip", z.ZodTypeAny, {
|
|
212620
|
+
isInput?: boolean | undefined;
|
|
212621
|
+
isOutput?: boolean | undefined;
|
|
212622
|
+
isBidirectional?: boolean | undefined;
|
|
212623
|
+
isPassive?: boolean | undefined;
|
|
212624
|
+
canUseTriState?: boolean | undefined;
|
|
212625
|
+
isUsingTriState?: boolean | undefined;
|
|
212626
|
+
canUseOpenCollector?: boolean | undefined;
|
|
212627
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
212628
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
212629
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
210945
212630
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210946
212631
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210947
212632
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -210969,6 +212654,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210969
212654
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
210970
212655
|
isGpio?: boolean | undefined;
|
|
210971
212656
|
}, {
|
|
212657
|
+
isInput?: boolean | undefined;
|
|
212658
|
+
isOutput?: boolean | undefined;
|
|
212659
|
+
isBidirectional?: boolean | undefined;
|
|
212660
|
+
isPassive?: boolean | undefined;
|
|
212661
|
+
canUseTriState?: boolean | undefined;
|
|
212662
|
+
isUsingTriState?: boolean | undefined;
|
|
212663
|
+
canUseOpenCollector?: boolean | undefined;
|
|
212664
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
212665
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
212666
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
210972
212667
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210973
212668
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210974
212669
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -211346,6 +213041,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
211346
213041
|
displayName?: string | undefined;
|
|
211347
213042
|
datasheetUrl?: string | undefined;
|
|
211348
213043
|
pinAttributes?: Record<string, {
|
|
213044
|
+
isInput?: boolean | undefined;
|
|
213045
|
+
isOutput?: boolean | undefined;
|
|
213046
|
+
isBidirectional?: boolean | undefined;
|
|
213047
|
+
isPassive?: boolean | undefined;
|
|
213048
|
+
canUseTriState?: boolean | undefined;
|
|
213049
|
+
isUsingTriState?: boolean | undefined;
|
|
213050
|
+
canUseOpenCollector?: boolean | undefined;
|
|
213051
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
213052
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
213053
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
211349
213054
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
211350
213055
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
211351
213056
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -212019,6 +213724,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
212019
213724
|
displayName?: string | undefined;
|
|
212020
213725
|
datasheetUrl?: string | undefined;
|
|
212021
213726
|
pinAttributes?: Record<string, {
|
|
213727
|
+
isInput?: boolean | undefined;
|
|
213728
|
+
isOutput?: boolean | undefined;
|
|
213729
|
+
isBidirectional?: boolean | undefined;
|
|
213730
|
+
isPassive?: boolean | undefined;
|
|
213731
|
+
canUseTriState?: boolean | undefined;
|
|
213732
|
+
isUsingTriState?: boolean | undefined;
|
|
213733
|
+
canUseOpenCollector?: boolean | undefined;
|
|
213734
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
213735
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
213736
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
212022
213737
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
212023
213738
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
212024
213739
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216159,6 +217874,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216159
217874
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
216160
217875
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
216161
217876
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
217877
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
217878
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
217879
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
217880
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
217881
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
217882
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
217883
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
217884
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
217885
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
217886
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
216162
217887
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
216163
217888
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
216164
217889
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -216186,6 +217911,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216186
217911
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
216187
217912
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
216188
217913
|
}, "strip", z.ZodTypeAny, {
|
|
217914
|
+
isInput?: boolean | undefined;
|
|
217915
|
+
isOutput?: boolean | undefined;
|
|
217916
|
+
isBidirectional?: boolean | undefined;
|
|
217917
|
+
isPassive?: boolean | undefined;
|
|
217918
|
+
canUseTriState?: boolean | undefined;
|
|
217919
|
+
isUsingTriState?: boolean | undefined;
|
|
217920
|
+
canUseOpenCollector?: boolean | undefined;
|
|
217921
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
217922
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
217923
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216189
217924
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216190
217925
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216191
217926
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216213,6 +217948,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216213
217948
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
216214
217949
|
isGpio?: boolean | undefined;
|
|
216215
217950
|
}, {
|
|
217951
|
+
isInput?: boolean | undefined;
|
|
217952
|
+
isOutput?: boolean | undefined;
|
|
217953
|
+
isBidirectional?: boolean | undefined;
|
|
217954
|
+
isPassive?: boolean | undefined;
|
|
217955
|
+
canUseTriState?: boolean | undefined;
|
|
217956
|
+
isUsingTriState?: boolean | undefined;
|
|
217957
|
+
canUseOpenCollector?: boolean | undefined;
|
|
217958
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
217959
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
217960
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216216
217961
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216217
217962
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216218
217963
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216590,6 +218335,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216590
218335
|
displayName?: string | undefined;
|
|
216591
218336
|
datasheetUrl?: string | undefined;
|
|
216592
218337
|
pinAttributes?: Record<string, {
|
|
218338
|
+
isInput?: boolean | undefined;
|
|
218339
|
+
isOutput?: boolean | undefined;
|
|
218340
|
+
isBidirectional?: boolean | undefined;
|
|
218341
|
+
isPassive?: boolean | undefined;
|
|
218342
|
+
canUseTriState?: boolean | undefined;
|
|
218343
|
+
isUsingTriState?: boolean | undefined;
|
|
218344
|
+
canUseOpenCollector?: boolean | undefined;
|
|
218345
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
218346
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
218347
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216593
218348
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216594
218349
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216595
218350
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -217261,6 +219016,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
217261
219016
|
displayName?: string | undefined;
|
|
217262
219017
|
datasheetUrl?: string | undefined;
|
|
217263
219018
|
pinAttributes?: Record<string, {
|
|
219019
|
+
isInput?: boolean | undefined;
|
|
219020
|
+
isOutput?: boolean | undefined;
|
|
219021
|
+
isBidirectional?: boolean | undefined;
|
|
219022
|
+
isPassive?: boolean | undefined;
|
|
219023
|
+
canUseTriState?: boolean | undefined;
|
|
219024
|
+
isUsingTriState?: boolean | undefined;
|
|
219025
|
+
canUseOpenCollector?: boolean | undefined;
|
|
219026
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
219027
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
219028
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
217264
219029
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
217265
219030
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
217266
219031
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221397,6 +223162,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221397
223162
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
221398
223163
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
221399
223164
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
223165
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
223166
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
223167
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
223168
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
223169
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
223170
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
223171
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
223172
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
223173
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
223174
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
221400
223175
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
221401
223176
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
221402
223177
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -221424,6 +223199,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221424
223199
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
221425
223200
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
221426
223201
|
}, "strip", z.ZodTypeAny, {
|
|
223202
|
+
isInput?: boolean | undefined;
|
|
223203
|
+
isOutput?: boolean | undefined;
|
|
223204
|
+
isBidirectional?: boolean | undefined;
|
|
223205
|
+
isPassive?: boolean | undefined;
|
|
223206
|
+
canUseTriState?: boolean | undefined;
|
|
223207
|
+
isUsingTriState?: boolean | undefined;
|
|
223208
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223209
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223210
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223211
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221427
223212
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221428
223213
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221429
223214
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221451,6 +223236,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221451
223236
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
221452
223237
|
isGpio?: boolean | undefined;
|
|
221453
223238
|
}, {
|
|
223239
|
+
isInput?: boolean | undefined;
|
|
223240
|
+
isOutput?: boolean | undefined;
|
|
223241
|
+
isBidirectional?: boolean | undefined;
|
|
223242
|
+
isPassive?: boolean | undefined;
|
|
223243
|
+
canUseTriState?: boolean | undefined;
|
|
223244
|
+
isUsingTriState?: boolean | undefined;
|
|
223245
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223246
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223247
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223248
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221454
223249
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221455
223250
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221456
223251
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221826,6 +223621,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221826
223621
|
displayName?: string | undefined;
|
|
221827
223622
|
datasheetUrl?: string | undefined;
|
|
221828
223623
|
pinAttributes?: Record<string, {
|
|
223624
|
+
isInput?: boolean | undefined;
|
|
223625
|
+
isOutput?: boolean | undefined;
|
|
223626
|
+
isBidirectional?: boolean | undefined;
|
|
223627
|
+
isPassive?: boolean | undefined;
|
|
223628
|
+
canUseTriState?: boolean | undefined;
|
|
223629
|
+
isUsingTriState?: boolean | undefined;
|
|
223630
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223631
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223632
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223633
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221829
223634
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221830
223635
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221831
223636
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -222496,6 +224301,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
222496
224301
|
displayName?: string | undefined;
|
|
222497
224302
|
datasheetUrl?: string | undefined;
|
|
222498
224303
|
pinAttributes?: Record<string, {
|
|
224304
|
+
isInput?: boolean | undefined;
|
|
224305
|
+
isOutput?: boolean | undefined;
|
|
224306
|
+
isBidirectional?: boolean | undefined;
|
|
224307
|
+
isPassive?: boolean | undefined;
|
|
224308
|
+
canUseTriState?: boolean | undefined;
|
|
224309
|
+
isUsingTriState?: boolean | undefined;
|
|
224310
|
+
canUseOpenCollector?: boolean | undefined;
|
|
224311
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
224312
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
224313
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
222499
224314
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
222500
224315
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
222501
224316
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|