@tscircuit/props 0.0.649 → 0.0.651
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 +4 -0
- package/dist/index.d.ts +1826 -0
- package/dist/index.js +16 -0
- package/dist/index.js.map +1 -1
- package/lib/common/pinAttributeMap.ts +30 -0
- package/lib/components/board.ts +16 -0
- 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;
|
|
@@ -27784,6 +27934,10 @@ interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit" | "connecti
|
|
|
27784
27934
|
* to false.
|
|
27785
27935
|
*/
|
|
27786
27936
|
automaticPoursEnabled?: boolean;
|
|
27937
|
+
/** Whether to stitch copper pours on the same net across layers with vias. Defaults to false. */
|
|
27938
|
+
enableViaStitching?: boolean;
|
|
27939
|
+
/** Positive center-to-center stitching via spacing in millimeters or a unit string. Omitted uses the solver default. Does not enable stitching by itself. */
|
|
27940
|
+
viaStitchPitch?: Distance;
|
|
27787
27941
|
/** Whether this board should be omitted from the schematic view */
|
|
27788
27942
|
schematicDisabled?: boolean;
|
|
27789
27943
|
}
|
|
@@ -28605,6 +28759,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
28605
28759
|
doubleSidedAssembly: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
28606
28760
|
isViaInPadAllowed: z.ZodOptional<z.ZodBoolean>;
|
|
28607
28761
|
automaticPoursEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
28762
|
+
enableViaStitching: z.ZodDefault<z.ZodBoolean>;
|
|
28763
|
+
viaStitchPitch: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
28608
28764
|
schematicDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28609
28765
|
}, "strip", z.ZodTypeAny, {
|
|
28610
28766
|
layers: 1 | 2 | 4 | 6 | 8 | 10;
|
|
@@ -28612,6 +28768,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
28612
28768
|
allowBlindAndBuriedVias: boolean;
|
|
28613
28769
|
doubleSidedAssembly: boolean;
|
|
28614
28770
|
automaticPoursEnabled: boolean;
|
|
28771
|
+
enableViaStitching: boolean;
|
|
28615
28772
|
symbol?: SymbolProp | undefined;
|
|
28616
28773
|
width?: number | undefined;
|
|
28617
28774
|
height?: number | undefined;
|
|
@@ -28949,6 +29106,7 @@ declare const boardProps: z.ZodObject<{
|
|
|
28949
29106
|
topSilkscreenColor?: BoardColor | undefined;
|
|
28950
29107
|
bottomSilkscreenColor?: BoardColor | undefined;
|
|
28951
29108
|
isViaInPadAllowed?: boolean | undefined;
|
|
29109
|
+
viaStitchPitch?: number | undefined;
|
|
28952
29110
|
schematicDisabled?: boolean | undefined;
|
|
28953
29111
|
}, {
|
|
28954
29112
|
symbol?: SymbolProp | undefined;
|
|
@@ -29297,6 +29455,8 @@ declare const boardProps: z.ZodObject<{
|
|
|
29297
29455
|
doubleSidedAssembly?: boolean | undefined;
|
|
29298
29456
|
isViaInPadAllowed?: boolean | undefined;
|
|
29299
29457
|
automaticPoursEnabled?: boolean | undefined;
|
|
29458
|
+
enableViaStitching?: boolean | undefined;
|
|
29459
|
+
viaStitchPitch?: string | number | undefined;
|
|
29300
29460
|
schematicDisabled?: boolean | undefined;
|
|
29301
29461
|
}>;
|
|
29302
29462
|
|
|
@@ -37644,6 +37804,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37644
37804
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
37645
37805
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
37646
37806
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
37807
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
37808
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
37809
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
37810
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
37811
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
37812
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
37813
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
37814
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
37815
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
37816
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
37647
37817
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
37648
37818
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
37649
37819
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -37671,6 +37841,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37671
37841
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
37672
37842
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
37673
37843
|
}, "strip", z.ZodTypeAny, {
|
|
37844
|
+
isInput?: boolean | undefined;
|
|
37845
|
+
isOutput?: boolean | undefined;
|
|
37846
|
+
isBidirectional?: boolean | undefined;
|
|
37847
|
+
isPassive?: boolean | undefined;
|
|
37848
|
+
canUseTriState?: boolean | undefined;
|
|
37849
|
+
isUsingTriState?: boolean | undefined;
|
|
37850
|
+
canUseOpenCollector?: boolean | undefined;
|
|
37851
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
37852
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
37853
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
37674
37854
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37675
37855
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37676
37856
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -37698,6 +37878,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
37698
37878
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
37699
37879
|
isGpio?: boolean | undefined;
|
|
37700
37880
|
}, {
|
|
37881
|
+
isInput?: boolean | undefined;
|
|
37882
|
+
isOutput?: boolean | undefined;
|
|
37883
|
+
isBidirectional?: boolean | undefined;
|
|
37884
|
+
isPassive?: boolean | undefined;
|
|
37885
|
+
canUseTriState?: boolean | undefined;
|
|
37886
|
+
isUsingTriState?: boolean | undefined;
|
|
37887
|
+
canUseOpenCollector?: boolean | undefined;
|
|
37888
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
37889
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
37890
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
37701
37891
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37702
37892
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
37703
37893
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -38367,6 +38557,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
38367
38557
|
displayName?: string | undefined;
|
|
38368
38558
|
datasheetUrl?: string | undefined;
|
|
38369
38559
|
pinAttributes?: Record<string, {
|
|
38560
|
+
isInput?: boolean | undefined;
|
|
38561
|
+
isOutput?: boolean | undefined;
|
|
38562
|
+
isBidirectional?: boolean | undefined;
|
|
38563
|
+
isPassive?: boolean | undefined;
|
|
38564
|
+
canUseTriState?: boolean | undefined;
|
|
38565
|
+
isUsingTriState?: boolean | undefined;
|
|
38566
|
+
canUseOpenCollector?: boolean | undefined;
|
|
38567
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
38568
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
38569
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
38370
38570
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
38371
38571
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
38372
38572
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -39110,6 +39310,16 @@ declare const chipProps: z.ZodObject<{
|
|
|
39110
39310
|
displayName?: string | undefined;
|
|
39111
39311
|
datasheetUrl?: string | undefined;
|
|
39112
39312
|
pinAttributes?: Record<string, {
|
|
39313
|
+
isInput?: boolean | undefined;
|
|
39314
|
+
isOutput?: boolean | undefined;
|
|
39315
|
+
isBidirectional?: boolean | undefined;
|
|
39316
|
+
isPassive?: boolean | undefined;
|
|
39317
|
+
canUseTriState?: boolean | undefined;
|
|
39318
|
+
isUsingTriState?: boolean | undefined;
|
|
39319
|
+
canUseOpenCollector?: boolean | undefined;
|
|
39320
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
39321
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
39322
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
39113
39323
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
39114
39324
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
39115
39325
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -43310,6 +43520,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43310
43520
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
43311
43521
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
43312
43522
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
43523
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
43524
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
43525
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
43526
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
43527
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
43528
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
43529
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
43530
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
43531
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
43532
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
43313
43533
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
43314
43534
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
43315
43535
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -43337,6 +43557,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43337
43557
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
43338
43558
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
43339
43559
|
}, "strip", z.ZodTypeAny, {
|
|
43560
|
+
isInput?: boolean | undefined;
|
|
43561
|
+
isOutput?: boolean | undefined;
|
|
43562
|
+
isBidirectional?: boolean | undefined;
|
|
43563
|
+
isPassive?: boolean | undefined;
|
|
43564
|
+
canUseTriState?: boolean | undefined;
|
|
43565
|
+
isUsingTriState?: boolean | undefined;
|
|
43566
|
+
canUseOpenCollector?: boolean | undefined;
|
|
43567
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
43568
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
43569
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
43340
43570
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43341
43571
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43342
43572
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -43364,6 +43594,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
43364
43594
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
43365
43595
|
isGpio?: boolean | undefined;
|
|
43366
43596
|
}, {
|
|
43597
|
+
isInput?: boolean | undefined;
|
|
43598
|
+
isOutput?: boolean | undefined;
|
|
43599
|
+
isBidirectional?: boolean | undefined;
|
|
43600
|
+
isPassive?: boolean | undefined;
|
|
43601
|
+
canUseTriState?: boolean | undefined;
|
|
43602
|
+
isUsingTriState?: boolean | undefined;
|
|
43603
|
+
canUseOpenCollector?: boolean | undefined;
|
|
43604
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
43605
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
43606
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
43367
43607
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43368
43608
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
43369
43609
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -44033,6 +44273,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
44033
44273
|
displayName?: string | undefined;
|
|
44034
44274
|
datasheetUrl?: string | undefined;
|
|
44035
44275
|
pinAttributes?: Record<string, {
|
|
44276
|
+
isInput?: boolean | undefined;
|
|
44277
|
+
isOutput?: boolean | undefined;
|
|
44278
|
+
isBidirectional?: boolean | undefined;
|
|
44279
|
+
isPassive?: boolean | undefined;
|
|
44280
|
+
canUseTriState?: boolean | undefined;
|
|
44281
|
+
isUsingTriState?: boolean | undefined;
|
|
44282
|
+
canUseOpenCollector?: boolean | undefined;
|
|
44283
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
44284
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
44285
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
44036
44286
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44037
44287
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44038
44288
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -44776,6 +45026,16 @@ declare const bugProps: z.ZodObject<{
|
|
|
44776
45026
|
displayName?: string | undefined;
|
|
44777
45027
|
datasheetUrl?: string | undefined;
|
|
44778
45028
|
pinAttributes?: Record<string, {
|
|
45029
|
+
isInput?: boolean | undefined;
|
|
45030
|
+
isOutput?: boolean | undefined;
|
|
45031
|
+
isBidirectional?: boolean | undefined;
|
|
45032
|
+
isPassive?: boolean | undefined;
|
|
45033
|
+
canUseTriState?: boolean | undefined;
|
|
45034
|
+
isUsingTriState?: boolean | undefined;
|
|
45035
|
+
canUseOpenCollector?: boolean | undefined;
|
|
45036
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
45037
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
45038
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
44779
45039
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44780
45040
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
44781
45041
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -48975,6 +49235,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
48975
49235
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
48976
49236
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
48977
49237
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
49238
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
49239
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
49240
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
49241
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
49242
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
49243
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
49244
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
49245
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
49246
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
49247
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
48978
49248
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
48979
49249
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
48980
49250
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -49002,6 +49272,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49002
49272
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49003
49273
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
49004
49274
|
}, "strip", z.ZodTypeAny, {
|
|
49275
|
+
isInput?: boolean | undefined;
|
|
49276
|
+
isOutput?: boolean | undefined;
|
|
49277
|
+
isBidirectional?: boolean | undefined;
|
|
49278
|
+
isPassive?: boolean | undefined;
|
|
49279
|
+
canUseTriState?: boolean | undefined;
|
|
49280
|
+
isUsingTriState?: boolean | undefined;
|
|
49281
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49282
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49283
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49284
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49005
49285
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49006
49286
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49007
49287
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -49029,6 +49309,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49029
49309
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49030
49310
|
isGpio?: boolean | undefined;
|
|
49031
49311
|
}, {
|
|
49312
|
+
isInput?: boolean | undefined;
|
|
49313
|
+
isOutput?: boolean | undefined;
|
|
49314
|
+
isBidirectional?: boolean | undefined;
|
|
49315
|
+
isPassive?: boolean | undefined;
|
|
49316
|
+
canUseTriState?: boolean | undefined;
|
|
49317
|
+
isUsingTriState?: boolean | undefined;
|
|
49318
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49319
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49320
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
49321
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49032
49322
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49033
49323
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49034
49324
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -49698,6 +49988,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
49698
49988
|
displayName?: string | undefined;
|
|
49699
49989
|
datasheetUrl?: string | undefined;
|
|
49700
49990
|
pinAttributes?: Record<string, {
|
|
49991
|
+
isInput?: boolean | undefined;
|
|
49992
|
+
isOutput?: boolean | undefined;
|
|
49993
|
+
isBidirectional?: boolean | undefined;
|
|
49994
|
+
isPassive?: boolean | undefined;
|
|
49995
|
+
canUseTriState?: boolean | undefined;
|
|
49996
|
+
isUsingTriState?: boolean | undefined;
|
|
49997
|
+
canUseOpenCollector?: boolean | undefined;
|
|
49998
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
49999
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
50000
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
49701
50001
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49702
50002
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49703
50003
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -50441,6 +50741,16 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
50441
50741
|
displayName?: string | undefined;
|
|
50442
50742
|
datasheetUrl?: string | undefined;
|
|
50443
50743
|
pinAttributes?: Record<string, {
|
|
50744
|
+
isInput?: boolean | undefined;
|
|
50745
|
+
isOutput?: boolean | undefined;
|
|
50746
|
+
isBidirectional?: boolean | undefined;
|
|
50747
|
+
isPassive?: boolean | undefined;
|
|
50748
|
+
canUseTriState?: boolean | undefined;
|
|
50749
|
+
isUsingTriState?: boolean | undefined;
|
|
50750
|
+
canUseOpenCollector?: boolean | undefined;
|
|
50751
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
50752
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
50753
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
50444
50754
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50445
50755
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
50446
50756
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -54673,6 +54983,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54673
54983
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
54674
54984
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
54675
54985
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
54986
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
54987
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
54988
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
54989
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
54990
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
54991
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
54992
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
54993
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
54994
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
54995
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
54676
54996
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54677
54997
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
54678
54998
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -54700,6 +55020,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54700
55020
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54701
55021
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
54702
55022
|
}, "strip", z.ZodTypeAny, {
|
|
55023
|
+
isInput?: boolean | undefined;
|
|
55024
|
+
isOutput?: boolean | undefined;
|
|
55025
|
+
isBidirectional?: boolean | undefined;
|
|
55026
|
+
isPassive?: boolean | undefined;
|
|
55027
|
+
canUseTriState?: boolean | undefined;
|
|
55028
|
+
isUsingTriState?: boolean | undefined;
|
|
55029
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55030
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55031
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55032
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
54703
55033
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54704
55034
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54705
55035
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -54727,6 +55057,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
54727
55057
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54728
55058
|
isGpio?: boolean | undefined;
|
|
54729
55059
|
}, {
|
|
55060
|
+
isInput?: boolean | undefined;
|
|
55061
|
+
isOutput?: boolean | undefined;
|
|
55062
|
+
isBidirectional?: boolean | undefined;
|
|
55063
|
+
isPassive?: boolean | undefined;
|
|
55064
|
+
canUseTriState?: boolean | undefined;
|
|
55065
|
+
isUsingTriState?: boolean | undefined;
|
|
55066
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55067
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55068
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55069
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
54730
55070
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54731
55071
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54732
55072
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -55380,6 +55720,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
55380
55720
|
displayName?: string | undefined;
|
|
55381
55721
|
datasheetUrl?: string | undefined;
|
|
55382
55722
|
pinAttributes?: Record<string, {
|
|
55723
|
+
isInput?: boolean | undefined;
|
|
55724
|
+
isOutput?: boolean | undefined;
|
|
55725
|
+
isBidirectional?: boolean | undefined;
|
|
55726
|
+
isPassive?: boolean | undefined;
|
|
55727
|
+
canUseTriState?: boolean | undefined;
|
|
55728
|
+
isUsingTriState?: boolean | undefined;
|
|
55729
|
+
canUseOpenCollector?: boolean | undefined;
|
|
55730
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
55731
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
55732
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
55383
55733
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55384
55734
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
55385
55735
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -56115,6 +56465,16 @@ declare const jumperProps: z.ZodObject<{
|
|
|
56115
56465
|
displayName?: string | undefined;
|
|
56116
56466
|
datasheetUrl?: string | undefined;
|
|
56117
56467
|
pinAttributes?: Record<string, {
|
|
56468
|
+
isInput?: boolean | undefined;
|
|
56469
|
+
isOutput?: boolean | undefined;
|
|
56470
|
+
isBidirectional?: boolean | undefined;
|
|
56471
|
+
isPassive?: boolean | undefined;
|
|
56472
|
+
canUseTriState?: boolean | undefined;
|
|
56473
|
+
isUsingTriState?: boolean | undefined;
|
|
56474
|
+
canUseOpenCollector?: boolean | undefined;
|
|
56475
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
56476
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
56477
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
56118
56478
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
56119
56479
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
56120
56480
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -60314,6 +60674,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60314
60674
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
60315
60675
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
60316
60676
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
60677
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
60678
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
60679
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
60680
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
60681
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
60682
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
60683
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
60684
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
60685
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
60686
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
60317
60687
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
60318
60688
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
60319
60689
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -60341,6 +60711,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60341
60711
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
60342
60712
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
60343
60713
|
}, "strip", z.ZodTypeAny, {
|
|
60714
|
+
isInput?: boolean | undefined;
|
|
60715
|
+
isOutput?: boolean | undefined;
|
|
60716
|
+
isBidirectional?: boolean | undefined;
|
|
60717
|
+
isPassive?: boolean | undefined;
|
|
60718
|
+
canUseTriState?: boolean | undefined;
|
|
60719
|
+
isUsingTriState?: boolean | undefined;
|
|
60720
|
+
canUseOpenCollector?: boolean | undefined;
|
|
60721
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
60722
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
60723
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
60344
60724
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60345
60725
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60346
60726
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -60368,6 +60748,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
60368
60748
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
60369
60749
|
isGpio?: boolean | undefined;
|
|
60370
60750
|
}, {
|
|
60751
|
+
isInput?: boolean | undefined;
|
|
60752
|
+
isOutput?: boolean | undefined;
|
|
60753
|
+
isBidirectional?: boolean | undefined;
|
|
60754
|
+
isPassive?: boolean | undefined;
|
|
60755
|
+
canUseTriState?: boolean | undefined;
|
|
60756
|
+
isUsingTriState?: boolean | undefined;
|
|
60757
|
+
canUseOpenCollector?: boolean | undefined;
|
|
60758
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
60759
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
60760
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
60371
60761
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60372
60762
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
60373
60763
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -61024,6 +61414,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
61024
61414
|
displayName?: string | undefined;
|
|
61025
61415
|
datasheetUrl?: string | undefined;
|
|
61026
61416
|
pinAttributes?: Record<string, {
|
|
61417
|
+
isInput?: boolean | undefined;
|
|
61418
|
+
isOutput?: boolean | undefined;
|
|
61419
|
+
isBidirectional?: boolean | undefined;
|
|
61420
|
+
isPassive?: boolean | undefined;
|
|
61421
|
+
canUseTriState?: boolean | undefined;
|
|
61422
|
+
isUsingTriState?: boolean | undefined;
|
|
61423
|
+
canUseOpenCollector?: boolean | undefined;
|
|
61424
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
61425
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
61426
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
61027
61427
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61028
61428
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61029
61429
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -61761,6 +62161,16 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
61761
62161
|
displayName?: string | undefined;
|
|
61762
62162
|
datasheetUrl?: string | undefined;
|
|
61763
62163
|
pinAttributes?: Record<string, {
|
|
62164
|
+
isInput?: boolean | undefined;
|
|
62165
|
+
isOutput?: boolean | undefined;
|
|
62166
|
+
isBidirectional?: boolean | undefined;
|
|
62167
|
+
isPassive?: boolean | undefined;
|
|
62168
|
+
canUseTriState?: boolean | undefined;
|
|
62169
|
+
isUsingTriState?: boolean | undefined;
|
|
62170
|
+
canUseOpenCollector?: boolean | undefined;
|
|
62171
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
62172
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
62173
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
61764
62174
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61765
62175
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
61766
62176
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -65964,6 +66374,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
65964
66374
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
65965
66375
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
65966
66376
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
66377
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
66378
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
66379
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
66380
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
66381
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
66382
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
66383
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
66384
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
66385
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
66386
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
65967
66387
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
65968
66388
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
65969
66389
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -65991,6 +66411,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
65991
66411
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
65992
66412
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
65993
66413
|
}, "strip", z.ZodTypeAny, {
|
|
66414
|
+
isInput?: boolean | undefined;
|
|
66415
|
+
isOutput?: boolean | undefined;
|
|
66416
|
+
isBidirectional?: boolean | undefined;
|
|
66417
|
+
isPassive?: boolean | undefined;
|
|
66418
|
+
canUseTriState?: boolean | undefined;
|
|
66419
|
+
isUsingTriState?: boolean | undefined;
|
|
66420
|
+
canUseOpenCollector?: boolean | undefined;
|
|
66421
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
66422
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
66423
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
65994
66424
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
65995
66425
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
65996
66426
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -66018,6 +66448,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
66018
66448
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
66019
66449
|
isGpio?: boolean | undefined;
|
|
66020
66450
|
}, {
|
|
66451
|
+
isInput?: boolean | undefined;
|
|
66452
|
+
isOutput?: boolean | undefined;
|
|
66453
|
+
isBidirectional?: boolean | undefined;
|
|
66454
|
+
isPassive?: boolean | undefined;
|
|
66455
|
+
canUseTriState?: boolean | undefined;
|
|
66456
|
+
isUsingTriState?: boolean | undefined;
|
|
66457
|
+
canUseOpenCollector?: boolean | undefined;
|
|
66458
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
66459
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
66460
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
66021
66461
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66022
66462
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66023
66463
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -66690,6 +67130,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
66690
67130
|
displayName?: string | undefined;
|
|
66691
67131
|
datasheetUrl?: string | undefined;
|
|
66692
67132
|
pinAttributes?: Record<string, {
|
|
67133
|
+
isInput?: boolean | undefined;
|
|
67134
|
+
isOutput?: boolean | undefined;
|
|
67135
|
+
isBidirectional?: boolean | undefined;
|
|
67136
|
+
isPassive?: boolean | undefined;
|
|
67137
|
+
canUseTriState?: boolean | undefined;
|
|
67138
|
+
isUsingTriState?: boolean | undefined;
|
|
67139
|
+
canUseOpenCollector?: boolean | undefined;
|
|
67140
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
67141
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
67142
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
66693
67143
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66694
67144
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
66695
67145
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -67435,6 +67885,16 @@ declare const connectorProps: z.ZodObject<{
|
|
|
67435
67885
|
displayName?: string | undefined;
|
|
67436
67886
|
datasheetUrl?: string | undefined;
|
|
67437
67887
|
pinAttributes?: Record<string, {
|
|
67888
|
+
isInput?: boolean | undefined;
|
|
67889
|
+
isOutput?: boolean | undefined;
|
|
67890
|
+
isBidirectional?: boolean | undefined;
|
|
67891
|
+
isPassive?: boolean | undefined;
|
|
67892
|
+
canUseTriState?: boolean | undefined;
|
|
67893
|
+
isUsingTriState?: boolean | undefined;
|
|
67894
|
+
canUseOpenCollector?: boolean | undefined;
|
|
67895
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
67896
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
67897
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
67438
67898
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
67439
67899
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
67440
67900
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -71646,6 +72106,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71646
72106
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
71647
72107
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
71648
72108
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
72109
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
72110
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
72111
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
72112
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
72113
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
72114
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
72115
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
72116
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
72117
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
72118
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
71649
72119
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
71650
72120
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
71651
72121
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -71673,6 +72143,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71673
72143
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
71674
72144
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
71675
72145
|
}, "strip", z.ZodTypeAny, {
|
|
72146
|
+
isInput?: boolean | undefined;
|
|
72147
|
+
isOutput?: boolean | undefined;
|
|
72148
|
+
isBidirectional?: boolean | undefined;
|
|
72149
|
+
isPassive?: boolean | undefined;
|
|
72150
|
+
canUseTriState?: boolean | undefined;
|
|
72151
|
+
isUsingTriState?: boolean | undefined;
|
|
72152
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72153
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72154
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72155
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
71676
72156
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71677
72157
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71678
72158
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -71700,6 +72180,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
71700
72180
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
71701
72181
|
isGpio?: boolean | undefined;
|
|
71702
72182
|
}, {
|
|
72183
|
+
isInput?: boolean | undefined;
|
|
72184
|
+
isOutput?: boolean | undefined;
|
|
72185
|
+
isBidirectional?: boolean | undefined;
|
|
72186
|
+
isPassive?: boolean | undefined;
|
|
72187
|
+
canUseTriState?: boolean | undefined;
|
|
72188
|
+
isUsingTriState?: boolean | undefined;
|
|
72189
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72190
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72191
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72192
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
71703
72193
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71704
72194
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
71705
72195
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -72071,6 +72561,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
72071
72561
|
displayName?: string | undefined;
|
|
72072
72562
|
datasheetUrl?: string | undefined;
|
|
72073
72563
|
pinAttributes?: Record<string, {
|
|
72564
|
+
isInput?: boolean | undefined;
|
|
72565
|
+
isOutput?: boolean | undefined;
|
|
72566
|
+
isBidirectional?: boolean | undefined;
|
|
72567
|
+
isPassive?: boolean | undefined;
|
|
72568
|
+
canUseTriState?: boolean | undefined;
|
|
72569
|
+
isUsingTriState?: boolean | undefined;
|
|
72570
|
+
canUseOpenCollector?: boolean | undefined;
|
|
72571
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
72572
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
72573
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
72074
72574
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72075
72575
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72076
72576
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -72738,6 +73238,16 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
72738
73238
|
displayName?: string | undefined;
|
|
72739
73239
|
datasheetUrl?: string | undefined;
|
|
72740
73240
|
pinAttributes?: Record<string, {
|
|
73241
|
+
isInput?: boolean | undefined;
|
|
73242
|
+
isOutput?: boolean | undefined;
|
|
73243
|
+
isBidirectional?: boolean | undefined;
|
|
73244
|
+
isPassive?: boolean | undefined;
|
|
73245
|
+
canUseTriState?: boolean | undefined;
|
|
73246
|
+
isUsingTriState?: boolean | undefined;
|
|
73247
|
+
canUseOpenCollector?: boolean | undefined;
|
|
73248
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
73249
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
73250
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
72741
73251
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72742
73252
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72743
73253
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -76888,6 +77398,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76888
77398
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
76889
77399
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
76890
77400
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
77401
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
77402
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
77403
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
77404
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
77405
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
77406
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
77407
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
77408
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
77409
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
77410
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
76891
77411
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
76892
77412
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
76893
77413
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -76915,6 +77435,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76915
77435
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
76916
77436
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
76917
77437
|
}, "strip", z.ZodTypeAny, {
|
|
77438
|
+
isInput?: boolean | undefined;
|
|
77439
|
+
isOutput?: boolean | undefined;
|
|
77440
|
+
isBidirectional?: boolean | undefined;
|
|
77441
|
+
isPassive?: boolean | undefined;
|
|
77442
|
+
canUseTriState?: boolean | undefined;
|
|
77443
|
+
isUsingTriState?: boolean | undefined;
|
|
77444
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77445
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77446
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77447
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
76918
77448
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76919
77449
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76920
77450
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -76942,6 +77472,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
76942
77472
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
76943
77473
|
isGpio?: boolean | undefined;
|
|
76944
77474
|
}, {
|
|
77475
|
+
isInput?: boolean | undefined;
|
|
77476
|
+
isOutput?: boolean | undefined;
|
|
77477
|
+
isBidirectional?: boolean | undefined;
|
|
77478
|
+
isPassive?: boolean | undefined;
|
|
77479
|
+
canUseTriState?: boolean | undefined;
|
|
77480
|
+
isUsingTriState?: boolean | undefined;
|
|
77481
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77482
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77483
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77484
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
76945
77485
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76946
77486
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
76947
77487
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -77316,6 +77856,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
77316
77856
|
displayName?: string | undefined;
|
|
77317
77857
|
datasheetUrl?: string | undefined;
|
|
77318
77858
|
pinAttributes?: Record<string, {
|
|
77859
|
+
isInput?: boolean | undefined;
|
|
77860
|
+
isOutput?: boolean | undefined;
|
|
77861
|
+
isBidirectional?: boolean | undefined;
|
|
77862
|
+
isPassive?: boolean | undefined;
|
|
77863
|
+
canUseTriState?: boolean | undefined;
|
|
77864
|
+
isUsingTriState?: boolean | undefined;
|
|
77865
|
+
canUseOpenCollector?: boolean | undefined;
|
|
77866
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
77867
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
77868
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
77319
77869
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77320
77870
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77321
77871
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -77985,6 +78535,16 @@ declare const fuseProps: z.ZodObject<{
|
|
|
77985
78535
|
displayName?: string | undefined;
|
|
77986
78536
|
datasheetUrl?: string | undefined;
|
|
77987
78537
|
pinAttributes?: Record<string, {
|
|
78538
|
+
isInput?: boolean | undefined;
|
|
78539
|
+
isOutput?: boolean | undefined;
|
|
78540
|
+
isBidirectional?: boolean | undefined;
|
|
78541
|
+
isPassive?: boolean | undefined;
|
|
78542
|
+
canUseTriState?: boolean | undefined;
|
|
78543
|
+
isUsingTriState?: boolean | undefined;
|
|
78544
|
+
canUseOpenCollector?: boolean | undefined;
|
|
78545
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
78546
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
78547
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
77988
78548
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77989
78549
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77990
78550
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84055,6 +84615,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84055
84615
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
84056
84616
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
84057
84617
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
84618
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
84619
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
84620
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
84621
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
84622
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
84623
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
84624
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
84625
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
84626
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
84627
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
84058
84628
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
84059
84629
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
84060
84630
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -84082,6 +84652,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84082
84652
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
84083
84653
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
84084
84654
|
}, "strip", z.ZodTypeAny, {
|
|
84655
|
+
isInput?: boolean | undefined;
|
|
84656
|
+
isOutput?: boolean | undefined;
|
|
84657
|
+
isBidirectional?: boolean | undefined;
|
|
84658
|
+
isPassive?: boolean | undefined;
|
|
84659
|
+
canUseTriState?: boolean | undefined;
|
|
84660
|
+
isUsingTriState?: boolean | undefined;
|
|
84661
|
+
canUseOpenCollector?: boolean | undefined;
|
|
84662
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
84663
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
84664
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84085
84665
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84086
84666
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84087
84667
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84109,6 +84689,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84109
84689
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
84110
84690
|
isGpio?: boolean | undefined;
|
|
84111
84691
|
}, {
|
|
84692
|
+
isInput?: boolean | undefined;
|
|
84693
|
+
isOutput?: boolean | undefined;
|
|
84694
|
+
isBidirectional?: boolean | undefined;
|
|
84695
|
+
isPassive?: boolean | undefined;
|
|
84696
|
+
canUseTriState?: boolean | undefined;
|
|
84697
|
+
isUsingTriState?: boolean | undefined;
|
|
84698
|
+
canUseOpenCollector?: boolean | undefined;
|
|
84699
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
84700
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
84701
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84112
84702
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84113
84703
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84114
84704
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -84488,6 +85078,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
84488
85078
|
displayName?: string | undefined;
|
|
84489
85079
|
datasheetUrl?: string | undefined;
|
|
84490
85080
|
pinAttributes?: Record<string, {
|
|
85081
|
+
isInput?: boolean | undefined;
|
|
85082
|
+
isOutput?: boolean | undefined;
|
|
85083
|
+
isBidirectional?: boolean | undefined;
|
|
85084
|
+
isPassive?: boolean | undefined;
|
|
85085
|
+
canUseTriState?: boolean | undefined;
|
|
85086
|
+
isUsingTriState?: boolean | undefined;
|
|
85087
|
+
canUseOpenCollector?: boolean | undefined;
|
|
85088
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
85089
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
85090
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
84491
85091
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84492
85092
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
84493
85093
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -85161,6 +85761,16 @@ declare const resistorProps: z.ZodObject<{
|
|
|
85161
85761
|
displayName?: string | undefined;
|
|
85162
85762
|
datasheetUrl?: string | undefined;
|
|
85163
85763
|
pinAttributes?: Record<string, {
|
|
85764
|
+
isInput?: boolean | undefined;
|
|
85765
|
+
isOutput?: boolean | undefined;
|
|
85766
|
+
isBidirectional?: boolean | undefined;
|
|
85767
|
+
isPassive?: boolean | undefined;
|
|
85768
|
+
canUseTriState?: boolean | undefined;
|
|
85769
|
+
isUsingTriState?: boolean | undefined;
|
|
85770
|
+
canUseOpenCollector?: boolean | undefined;
|
|
85771
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
85772
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
85773
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
85164
85774
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
85165
85775
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
85166
85776
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89298,6 +89908,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89298
89908
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
89299
89909
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
89300
89910
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
89911
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
89912
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
89913
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
89914
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
89915
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
89916
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
89917
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
89918
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
89919
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
89920
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
89301
89921
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
89302
89922
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
89303
89923
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -89325,6 +89945,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89325
89945
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
89326
89946
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
89327
89947
|
}, "strip", z.ZodTypeAny, {
|
|
89948
|
+
isInput?: boolean | undefined;
|
|
89949
|
+
isOutput?: boolean | undefined;
|
|
89950
|
+
isBidirectional?: boolean | undefined;
|
|
89951
|
+
isPassive?: boolean | undefined;
|
|
89952
|
+
canUseTriState?: boolean | undefined;
|
|
89953
|
+
isUsingTriState?: boolean | undefined;
|
|
89954
|
+
canUseOpenCollector?: boolean | undefined;
|
|
89955
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
89956
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
89957
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89328
89958
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89329
89959
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89330
89960
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89352,6 +89982,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89352
89982
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
89353
89983
|
isGpio?: boolean | undefined;
|
|
89354
89984
|
}, {
|
|
89985
|
+
isInput?: boolean | undefined;
|
|
89986
|
+
isOutput?: boolean | undefined;
|
|
89987
|
+
isBidirectional?: boolean | undefined;
|
|
89988
|
+
isPassive?: boolean | undefined;
|
|
89989
|
+
canUseTriState?: boolean | undefined;
|
|
89990
|
+
isUsingTriState?: boolean | undefined;
|
|
89991
|
+
canUseOpenCollector?: boolean | undefined;
|
|
89992
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
89993
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
89994
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89355
89995
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89356
89996
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89357
89997
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -89724,6 +90364,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
89724
90364
|
displayName?: string | undefined;
|
|
89725
90365
|
datasheetUrl?: string | undefined;
|
|
89726
90366
|
pinAttributes?: Record<string, {
|
|
90367
|
+
isInput?: boolean | undefined;
|
|
90368
|
+
isOutput?: boolean | undefined;
|
|
90369
|
+
isBidirectional?: boolean | undefined;
|
|
90370
|
+
isPassive?: boolean | undefined;
|
|
90371
|
+
canUseTriState?: boolean | undefined;
|
|
90372
|
+
isUsingTriState?: boolean | undefined;
|
|
90373
|
+
canUseOpenCollector?: boolean | undefined;
|
|
90374
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
90375
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
90376
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
89727
90377
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89728
90378
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
89729
90379
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -90391,6 +91041,16 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
90391
91041
|
displayName?: string | undefined;
|
|
90392
91042
|
datasheetUrl?: string | undefined;
|
|
90393
91043
|
pinAttributes?: Record<string, {
|
|
91044
|
+
isInput?: boolean | undefined;
|
|
91045
|
+
isOutput?: boolean | undefined;
|
|
91046
|
+
isBidirectional?: boolean | undefined;
|
|
91047
|
+
isPassive?: boolean | undefined;
|
|
91048
|
+
canUseTriState?: boolean | undefined;
|
|
91049
|
+
isUsingTriState?: boolean | undefined;
|
|
91050
|
+
canUseOpenCollector?: boolean | undefined;
|
|
91051
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
91052
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
91053
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
90394
91054
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
90395
91055
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
90396
91056
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94525,6 +95185,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94525
95185
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
94526
95186
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
94527
95187
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
95188
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
95189
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
95190
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
95191
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
95192
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
95193
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
95194
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
95195
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
95196
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
95197
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
94528
95198
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
94529
95199
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
94530
95200
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -94552,6 +95222,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94552
95222
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
94553
95223
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
94554
95224
|
}, "strip", z.ZodTypeAny, {
|
|
95225
|
+
isInput?: boolean | undefined;
|
|
95226
|
+
isOutput?: boolean | undefined;
|
|
95227
|
+
isBidirectional?: boolean | undefined;
|
|
95228
|
+
isPassive?: boolean | undefined;
|
|
95229
|
+
canUseTriState?: boolean | undefined;
|
|
95230
|
+
isUsingTriState?: boolean | undefined;
|
|
95231
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95232
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95233
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95234
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94555
95235
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94556
95236
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94557
95237
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94579,6 +95259,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94579
95259
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
94580
95260
|
isGpio?: boolean | undefined;
|
|
94581
95261
|
}, {
|
|
95262
|
+
isInput?: boolean | undefined;
|
|
95263
|
+
isOutput?: boolean | undefined;
|
|
95264
|
+
isBidirectional?: boolean | undefined;
|
|
95265
|
+
isPassive?: boolean | undefined;
|
|
95266
|
+
canUseTriState?: boolean | undefined;
|
|
95267
|
+
isUsingTriState?: boolean | undefined;
|
|
95268
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95269
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95270
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95271
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94582
95272
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94583
95273
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94584
95274
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -94956,6 +95646,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
94956
95646
|
displayName?: string | undefined;
|
|
94957
95647
|
datasheetUrl?: string | undefined;
|
|
94958
95648
|
pinAttributes?: Record<string, {
|
|
95649
|
+
isInput?: boolean | undefined;
|
|
95650
|
+
isOutput?: boolean | undefined;
|
|
95651
|
+
isBidirectional?: boolean | undefined;
|
|
95652
|
+
isPassive?: boolean | undefined;
|
|
95653
|
+
canUseTriState?: boolean | undefined;
|
|
95654
|
+
isUsingTriState?: boolean | undefined;
|
|
95655
|
+
canUseOpenCollector?: boolean | undefined;
|
|
95656
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
95657
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
95658
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
94959
95659
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94960
95660
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
94961
95661
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -95627,6 +96327,16 @@ declare const crystalProps: z.ZodObject<{
|
|
|
95627
96327
|
displayName?: string | undefined;
|
|
95628
96328
|
datasheetUrl?: string | undefined;
|
|
95629
96329
|
pinAttributes?: Record<string, {
|
|
96330
|
+
isInput?: boolean | undefined;
|
|
96331
|
+
isOutput?: boolean | undefined;
|
|
96332
|
+
isBidirectional?: boolean | undefined;
|
|
96333
|
+
isPassive?: boolean | undefined;
|
|
96334
|
+
canUseTriState?: boolean | undefined;
|
|
96335
|
+
isUsingTriState?: boolean | undefined;
|
|
96336
|
+
canUseOpenCollector?: boolean | undefined;
|
|
96337
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
96338
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
96339
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
95630
96340
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
95631
96341
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
95632
96342
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -99758,6 +100468,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99758
100468
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
99759
100469
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
99760
100470
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
100471
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
100472
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
100473
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
100474
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
100475
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
100476
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
100477
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
100478
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
100479
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
100480
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
99761
100481
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99762
100482
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
99763
100483
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -99785,6 +100505,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99785
100505
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
99786
100506
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
99787
100507
|
}, "strip", z.ZodTypeAny, {
|
|
100508
|
+
isInput?: boolean | undefined;
|
|
100509
|
+
isOutput?: boolean | undefined;
|
|
100510
|
+
isBidirectional?: boolean | undefined;
|
|
100511
|
+
isPassive?: boolean | undefined;
|
|
100512
|
+
canUseTriState?: boolean | undefined;
|
|
100513
|
+
isUsingTriState?: boolean | undefined;
|
|
100514
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100515
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100516
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100517
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
99788
100518
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99789
100519
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99790
100520
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -99812,6 +100542,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
99812
100542
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
99813
100543
|
isGpio?: boolean | undefined;
|
|
99814
100544
|
}, {
|
|
100545
|
+
isInput?: boolean | undefined;
|
|
100546
|
+
isOutput?: boolean | undefined;
|
|
100547
|
+
isBidirectional?: boolean | undefined;
|
|
100548
|
+
isPassive?: boolean | undefined;
|
|
100549
|
+
canUseTriState?: boolean | undefined;
|
|
100550
|
+
isUsingTriState?: boolean | undefined;
|
|
100551
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100552
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100553
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100554
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
99815
100555
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99816
100556
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99817
100557
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -100185,6 +100925,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
100185
100925
|
displayName?: string | undefined;
|
|
100186
100926
|
datasheetUrl?: string | undefined;
|
|
100187
100927
|
pinAttributes?: Record<string, {
|
|
100928
|
+
isInput?: boolean | undefined;
|
|
100929
|
+
isOutput?: boolean | undefined;
|
|
100930
|
+
isBidirectional?: boolean | undefined;
|
|
100931
|
+
isPassive?: boolean | undefined;
|
|
100932
|
+
canUseTriState?: boolean | undefined;
|
|
100933
|
+
isUsingTriState?: boolean | undefined;
|
|
100934
|
+
canUseOpenCollector?: boolean | undefined;
|
|
100935
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
100936
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
100937
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
100188
100938
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100189
100939
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100190
100940
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -100852,6 +101602,16 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
100852
101602
|
displayName?: string | undefined;
|
|
100853
101603
|
datasheetUrl?: string | undefined;
|
|
100854
101604
|
pinAttributes?: Record<string, {
|
|
101605
|
+
isInput?: boolean | undefined;
|
|
101606
|
+
isOutput?: boolean | undefined;
|
|
101607
|
+
isBidirectional?: boolean | undefined;
|
|
101608
|
+
isPassive?: boolean | undefined;
|
|
101609
|
+
canUseTriState?: boolean | undefined;
|
|
101610
|
+
isUsingTriState?: boolean | undefined;
|
|
101611
|
+
canUseOpenCollector?: boolean | undefined;
|
|
101612
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
101613
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
101614
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
100855
101615
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100856
101616
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
100857
101617
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -102009,6 +102769,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
102009
102769
|
doubleSidedAssembly: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
102010
102770
|
isViaInPadAllowed: z.ZodOptional<z.ZodBoolean>;
|
|
102011
102771
|
automaticPoursEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
102772
|
+
enableViaStitching: z.ZodDefault<z.ZodBoolean>;
|
|
102773
|
+
viaStitchPitch: z.ZodOptional<z.ZodPipeline<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>, z.ZodNumber>>;
|
|
102012
102774
|
schematicDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
102013
102775
|
} & {
|
|
102014
102776
|
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -102027,6 +102789,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
102027
102789
|
allowBlindAndBuriedVias: boolean;
|
|
102028
102790
|
doubleSidedAssembly: boolean;
|
|
102029
102791
|
automaticPoursEnabled: boolean;
|
|
102792
|
+
enableViaStitching: boolean;
|
|
102030
102793
|
symbol?: SymbolProp | undefined;
|
|
102031
102794
|
width?: number | undefined;
|
|
102032
102795
|
height?: number | undefined;
|
|
@@ -102368,6 +103131,7 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
102368
103131
|
topSilkscreenColor?: BoardColor | undefined;
|
|
102369
103132
|
bottomSilkscreenColor?: BoardColor | undefined;
|
|
102370
103133
|
isViaInPadAllowed?: boolean | undefined;
|
|
103134
|
+
viaStitchPitch?: number | undefined;
|
|
102371
103135
|
schematicDisabled?: boolean | undefined;
|
|
102372
103136
|
leftPins?: string[] | undefined;
|
|
102373
103137
|
rightPins?: string[] | undefined;
|
|
@@ -102726,6 +103490,8 @@ declare const stampboardProps: z.ZodObject<{
|
|
|
102726
103490
|
doubleSidedAssembly?: boolean | undefined;
|
|
102727
103491
|
isViaInPadAllowed?: boolean | undefined;
|
|
102728
103492
|
automaticPoursEnabled?: boolean | undefined;
|
|
103493
|
+
enableViaStitching?: boolean | undefined;
|
|
103494
|
+
viaStitchPitch?: string | number | undefined;
|
|
102729
103495
|
schematicDisabled?: boolean | undefined;
|
|
102730
103496
|
leftPins?: string[] | undefined;
|
|
102731
103497
|
rightPins?: string[] | undefined;
|
|
@@ -106546,6 +107312,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106546
107312
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
106547
107313
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
106548
107314
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
107315
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
107316
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
107317
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
107318
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
107319
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
107320
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
107321
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
107322
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
107323
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
107324
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
106549
107325
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
106550
107326
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
106551
107327
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -106573,6 +107349,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106573
107349
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
106574
107350
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
106575
107351
|
}, "strip", z.ZodTypeAny, {
|
|
107352
|
+
isInput?: boolean | undefined;
|
|
107353
|
+
isOutput?: boolean | undefined;
|
|
107354
|
+
isBidirectional?: boolean | undefined;
|
|
107355
|
+
isPassive?: boolean | undefined;
|
|
107356
|
+
canUseTriState?: boolean | undefined;
|
|
107357
|
+
isUsingTriState?: boolean | undefined;
|
|
107358
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107359
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107360
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107361
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106576
107362
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106577
107363
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106578
107364
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106600,6 +107386,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106600
107386
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106601
107387
|
isGpio?: boolean | undefined;
|
|
106602
107388
|
}, {
|
|
107389
|
+
isInput?: boolean | undefined;
|
|
107390
|
+
isOutput?: boolean | undefined;
|
|
107391
|
+
isBidirectional?: boolean | undefined;
|
|
107392
|
+
isPassive?: boolean | undefined;
|
|
107393
|
+
canUseTriState?: boolean | undefined;
|
|
107394
|
+
isUsingTriState?: boolean | undefined;
|
|
107395
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107396
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107397
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107398
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106603
107399
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106604
107400
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106605
107401
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -106983,6 +107779,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
106983
107779
|
displayName?: string | undefined;
|
|
106984
107780
|
datasheetUrl?: string | undefined;
|
|
106985
107781
|
pinAttributes?: Record<string, {
|
|
107782
|
+
isInput?: boolean | undefined;
|
|
107783
|
+
isOutput?: boolean | undefined;
|
|
107784
|
+
isBidirectional?: boolean | undefined;
|
|
107785
|
+
isPassive?: boolean | undefined;
|
|
107786
|
+
canUseTriState?: boolean | undefined;
|
|
107787
|
+
isUsingTriState?: boolean | undefined;
|
|
107788
|
+
canUseOpenCollector?: boolean | undefined;
|
|
107789
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
107790
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
107791
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
106986
107792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106987
107793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
106988
107794
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -107657,6 +108463,16 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
107657
108463
|
displayName?: string | undefined;
|
|
107658
108464
|
datasheetUrl?: string | undefined;
|
|
107659
108465
|
pinAttributes?: Record<string, {
|
|
108466
|
+
isInput?: boolean | undefined;
|
|
108467
|
+
isOutput?: boolean | undefined;
|
|
108468
|
+
isBidirectional?: boolean | undefined;
|
|
108469
|
+
isPassive?: boolean | undefined;
|
|
108470
|
+
canUseTriState?: boolean | undefined;
|
|
108471
|
+
isUsingTriState?: boolean | undefined;
|
|
108472
|
+
canUseOpenCollector?: boolean | undefined;
|
|
108473
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
108474
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
108475
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
107660
108476
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
107661
108477
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
107662
108478
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -111828,6 +112644,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111828
112644
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
111829
112645
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
111830
112646
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
112647
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
112648
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
112649
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
112650
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
112651
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
112652
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
112653
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
112654
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
112655
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
112656
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
111831
112657
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
111832
112658
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
111833
112659
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -111855,6 +112681,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111855
112681
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
111856
112682
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
111857
112683
|
}, "strip", z.ZodTypeAny, {
|
|
112684
|
+
isInput?: boolean | undefined;
|
|
112685
|
+
isOutput?: boolean | undefined;
|
|
112686
|
+
isBidirectional?: boolean | undefined;
|
|
112687
|
+
isPassive?: boolean | undefined;
|
|
112688
|
+
canUseTriState?: boolean | undefined;
|
|
112689
|
+
isUsingTriState?: boolean | undefined;
|
|
112690
|
+
canUseOpenCollector?: boolean | undefined;
|
|
112691
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
112692
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
112693
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
111858
112694
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111859
112695
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111860
112696
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -111882,6 +112718,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
111882
112718
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111883
112719
|
isGpio?: boolean | undefined;
|
|
111884
112720
|
}, {
|
|
112721
|
+
isInput?: boolean | undefined;
|
|
112722
|
+
isOutput?: boolean | undefined;
|
|
112723
|
+
isBidirectional?: boolean | undefined;
|
|
112724
|
+
isPassive?: boolean | undefined;
|
|
112725
|
+
canUseTriState?: boolean | undefined;
|
|
112726
|
+
isUsingTriState?: boolean | undefined;
|
|
112727
|
+
canUseOpenCollector?: boolean | undefined;
|
|
112728
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
112729
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
112730
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
111885
112731
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111886
112732
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
111887
112733
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -112253,6 +113099,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
112253
113099
|
displayName?: string | undefined;
|
|
112254
113100
|
datasheetUrl?: string | undefined;
|
|
112255
113101
|
pinAttributes?: Record<string, {
|
|
113102
|
+
isInput?: boolean | undefined;
|
|
113103
|
+
isOutput?: boolean | undefined;
|
|
113104
|
+
isBidirectional?: boolean | undefined;
|
|
113105
|
+
isPassive?: boolean | undefined;
|
|
113106
|
+
canUseTriState?: boolean | undefined;
|
|
113107
|
+
isUsingTriState?: boolean | undefined;
|
|
113108
|
+
canUseOpenCollector?: boolean | undefined;
|
|
113109
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
113110
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
113111
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
112256
113112
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112257
113113
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112258
113114
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -112919,6 +113775,16 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
112919
113775
|
displayName?: string | undefined;
|
|
112920
113776
|
datasheetUrl?: string | undefined;
|
|
112921
113777
|
pinAttributes?: Record<string, {
|
|
113778
|
+
isInput?: boolean | undefined;
|
|
113779
|
+
isOutput?: boolean | undefined;
|
|
113780
|
+
isBidirectional?: boolean | undefined;
|
|
113781
|
+
isPassive?: boolean | undefined;
|
|
113782
|
+
canUseTriState?: boolean | undefined;
|
|
113783
|
+
isUsingTriState?: boolean | undefined;
|
|
113784
|
+
canUseOpenCollector?: boolean | undefined;
|
|
113785
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
113786
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
113787
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
112922
113788
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112923
113789
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
112924
113790
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -121541,6 +122407,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121541
122407
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
121542
122408
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
121543
122409
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
122410
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
122411
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
122412
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
122413
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
122414
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
122415
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
122416
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
122417
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
122418
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
122419
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
121544
122420
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
121545
122421
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
121546
122422
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -121568,6 +122444,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121568
122444
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
121569
122445
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
121570
122446
|
}, "strip", z.ZodTypeAny, {
|
|
122447
|
+
isInput?: boolean | undefined;
|
|
122448
|
+
isOutput?: boolean | undefined;
|
|
122449
|
+
isBidirectional?: boolean | undefined;
|
|
122450
|
+
isPassive?: boolean | undefined;
|
|
122451
|
+
canUseTriState?: boolean | undefined;
|
|
122452
|
+
isUsingTriState?: boolean | undefined;
|
|
122453
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122454
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122455
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122456
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
121571
122457
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121572
122458
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121573
122459
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -121595,6 +122481,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
121595
122481
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121596
122482
|
isGpio?: boolean | undefined;
|
|
121597
122483
|
}, {
|
|
122484
|
+
isInput?: boolean | undefined;
|
|
122485
|
+
isOutput?: boolean | undefined;
|
|
122486
|
+
isBidirectional?: boolean | undefined;
|
|
122487
|
+
isPassive?: boolean | undefined;
|
|
122488
|
+
canUseTriState?: boolean | undefined;
|
|
122489
|
+
isUsingTriState?: boolean | undefined;
|
|
122490
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122491
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122492
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122493
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
121598
122494
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121599
122495
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
121600
122496
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -122021,6 +122917,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
122021
122917
|
displayName?: string | undefined;
|
|
122022
122918
|
datasheetUrl?: string | undefined;
|
|
122023
122919
|
pinAttributes?: Record<string, {
|
|
122920
|
+
isInput?: boolean | undefined;
|
|
122921
|
+
isOutput?: boolean | undefined;
|
|
122922
|
+
isBidirectional?: boolean | undefined;
|
|
122923
|
+
isPassive?: boolean | undefined;
|
|
122924
|
+
canUseTriState?: boolean | undefined;
|
|
122925
|
+
isUsingTriState?: boolean | undefined;
|
|
122926
|
+
canUseOpenCollector?: boolean | undefined;
|
|
122927
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
122928
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
122929
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
122024
122930
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122025
122931
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122026
122932
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -122694,6 +123600,16 @@ declare const antennaProps: z.ZodObject<{
|
|
|
122694
123600
|
displayName?: string | undefined;
|
|
122695
123601
|
datasheetUrl?: string | undefined;
|
|
122696
123602
|
pinAttributes?: Record<string, {
|
|
123603
|
+
isInput?: boolean | undefined;
|
|
123604
|
+
isOutput?: boolean | undefined;
|
|
123605
|
+
isBidirectional?: boolean | undefined;
|
|
123606
|
+
isPassive?: boolean | undefined;
|
|
123607
|
+
canUseTriState?: boolean | undefined;
|
|
123608
|
+
isUsingTriState?: boolean | undefined;
|
|
123609
|
+
canUseOpenCollector?: boolean | undefined;
|
|
123610
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
123611
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
123612
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
122697
123613
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122698
123614
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
122699
123615
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -127855,6 +128771,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127855
128771
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
127856
128772
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
127857
128773
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
128774
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
128775
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
128776
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
128777
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
128778
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
128779
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
128780
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
128781
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
128782
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
128783
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
127858
128784
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
127859
128785
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
127860
128786
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -127882,6 +128808,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127882
128808
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
127883
128809
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
127884
128810
|
}, "strip", z.ZodTypeAny, {
|
|
128811
|
+
isInput?: boolean | undefined;
|
|
128812
|
+
isOutput?: boolean | undefined;
|
|
128813
|
+
isBidirectional?: boolean | undefined;
|
|
128814
|
+
isPassive?: boolean | undefined;
|
|
128815
|
+
canUseTriState?: boolean | undefined;
|
|
128816
|
+
isUsingTriState?: boolean | undefined;
|
|
128817
|
+
canUseOpenCollector?: boolean | undefined;
|
|
128818
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
128819
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
128820
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
127885
128821
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127886
128822
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127887
128823
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -127909,6 +128845,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
127909
128845
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
127910
128846
|
isGpio?: boolean | undefined;
|
|
127911
128847
|
}, {
|
|
128848
|
+
isInput?: boolean | undefined;
|
|
128849
|
+
isOutput?: boolean | undefined;
|
|
128850
|
+
isBidirectional?: boolean | undefined;
|
|
128851
|
+
isPassive?: boolean | undefined;
|
|
128852
|
+
canUseTriState?: boolean | undefined;
|
|
128853
|
+
isUsingTriState?: boolean | undefined;
|
|
128854
|
+
canUseOpenCollector?: boolean | undefined;
|
|
128855
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
128856
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
128857
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
127912
128858
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127913
128859
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
127914
128860
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -128282,6 +129228,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
128282
129228
|
displayName?: string | undefined;
|
|
128283
129229
|
datasheetUrl?: string | undefined;
|
|
128284
129230
|
pinAttributes?: Record<string, {
|
|
129231
|
+
isInput?: boolean | undefined;
|
|
129232
|
+
isOutput?: boolean | undefined;
|
|
129233
|
+
isBidirectional?: boolean | undefined;
|
|
129234
|
+
isPassive?: boolean | undefined;
|
|
129235
|
+
canUseTriState?: boolean | undefined;
|
|
129236
|
+
isUsingTriState?: boolean | undefined;
|
|
129237
|
+
canUseOpenCollector?: boolean | undefined;
|
|
129238
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
129239
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
129240
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
128285
129241
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128286
129242
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128287
129243
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -128951,6 +129907,16 @@ declare const batteryProps: z.ZodObject<{
|
|
|
128951
129907
|
displayName?: string | undefined;
|
|
128952
129908
|
datasheetUrl?: string | undefined;
|
|
128953
129909
|
pinAttributes?: Record<string, {
|
|
129910
|
+
isInput?: boolean | undefined;
|
|
129911
|
+
isOutput?: boolean | undefined;
|
|
129912
|
+
isBidirectional?: boolean | undefined;
|
|
129913
|
+
isPassive?: boolean | undefined;
|
|
129914
|
+
canUseTriState?: boolean | undefined;
|
|
129915
|
+
isUsingTriState?: boolean | undefined;
|
|
129916
|
+
canUseOpenCollector?: boolean | undefined;
|
|
129917
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
129918
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
129919
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
128954
129920
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128955
129921
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128956
129922
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -134813,6 +135779,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134813
135779
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
134814
135780
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
134815
135781
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
135782
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
135783
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
135784
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
135785
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
135786
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
135787
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
135788
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
135789
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
135790
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
135791
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
134816
135792
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
134817
135793
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
134818
135794
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -134840,6 +135816,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134840
135816
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
134841
135817
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
134842
135818
|
}, "strip", z.ZodTypeAny, {
|
|
135819
|
+
isInput?: boolean | undefined;
|
|
135820
|
+
isOutput?: boolean | undefined;
|
|
135821
|
+
isBidirectional?: boolean | undefined;
|
|
135822
|
+
isPassive?: boolean | undefined;
|
|
135823
|
+
canUseTriState?: boolean | undefined;
|
|
135824
|
+
isUsingTriState?: boolean | undefined;
|
|
135825
|
+
canUseOpenCollector?: boolean | undefined;
|
|
135826
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
135827
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
135828
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
134843
135829
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134844
135830
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134845
135831
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -134867,6 +135853,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134867
135853
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134868
135854
|
isGpio?: boolean | undefined;
|
|
134869
135855
|
}, {
|
|
135856
|
+
isInput?: boolean | undefined;
|
|
135857
|
+
isOutput?: boolean | undefined;
|
|
135858
|
+
isBidirectional?: boolean | undefined;
|
|
135859
|
+
isPassive?: boolean | undefined;
|
|
135860
|
+
canUseTriState?: boolean | undefined;
|
|
135861
|
+
isUsingTriState?: boolean | undefined;
|
|
135862
|
+
canUseOpenCollector?: boolean | undefined;
|
|
135863
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
135864
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
135865
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
134870
135866
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134871
135867
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
134872
135868
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -135408,6 +136404,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135408
136404
|
displayName?: string | undefined;
|
|
135409
136405
|
datasheetUrl?: string | undefined;
|
|
135410
136406
|
pinAttributes?: Record<string, {
|
|
136407
|
+
isInput?: boolean | undefined;
|
|
136408
|
+
isOutput?: boolean | undefined;
|
|
136409
|
+
isBidirectional?: boolean | undefined;
|
|
136410
|
+
isPassive?: boolean | undefined;
|
|
136411
|
+
canUseTriState?: boolean | undefined;
|
|
136412
|
+
isUsingTriState?: boolean | undefined;
|
|
136413
|
+
canUseOpenCollector?: boolean | undefined;
|
|
136414
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
136415
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
136416
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
135411
136417
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135412
136418
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
135413
136419
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -136126,6 +137132,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136126
137132
|
displayName?: string | undefined;
|
|
136127
137133
|
datasheetUrl?: string | undefined;
|
|
136128
137134
|
pinAttributes?: Record<string, {
|
|
137135
|
+
isInput?: boolean | undefined;
|
|
137136
|
+
isOutput?: boolean | undefined;
|
|
137137
|
+
isBidirectional?: boolean | undefined;
|
|
137138
|
+
isPassive?: boolean | undefined;
|
|
137139
|
+
canUseTriState?: boolean | undefined;
|
|
137140
|
+
isUsingTriState?: boolean | undefined;
|
|
137141
|
+
canUseOpenCollector?: boolean | undefined;
|
|
137142
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
137143
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
137144
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
136129
137145
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136130
137146
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136131
137147
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -136844,6 +137860,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
136844
137860
|
displayName?: string | undefined;
|
|
136845
137861
|
datasheetUrl?: string | undefined;
|
|
136846
137862
|
pinAttributes?: Record<string, {
|
|
137863
|
+
isInput?: boolean | undefined;
|
|
137864
|
+
isOutput?: boolean | undefined;
|
|
137865
|
+
isBidirectional?: boolean | undefined;
|
|
137866
|
+
isPassive?: boolean | undefined;
|
|
137867
|
+
canUseTriState?: boolean | undefined;
|
|
137868
|
+
isUsingTriState?: boolean | undefined;
|
|
137869
|
+
canUseOpenCollector?: boolean | undefined;
|
|
137870
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
137871
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
137872
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
136847
137873
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136848
137874
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
136849
137875
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -137562,6 +138588,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
137562
138588
|
displayName?: string | undefined;
|
|
137563
138589
|
datasheetUrl?: string | undefined;
|
|
137564
138590
|
pinAttributes?: Record<string, {
|
|
138591
|
+
isInput?: boolean | undefined;
|
|
138592
|
+
isOutput?: boolean | undefined;
|
|
138593
|
+
isBidirectional?: boolean | undefined;
|
|
138594
|
+
isPassive?: boolean | undefined;
|
|
138595
|
+
canUseTriState?: boolean | undefined;
|
|
138596
|
+
isUsingTriState?: boolean | undefined;
|
|
138597
|
+
canUseOpenCollector?: boolean | undefined;
|
|
138598
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
138599
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
138600
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
137565
138601
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
137566
138602
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
137567
138603
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -138280,6 +139316,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
138280
139316
|
displayName?: string | undefined;
|
|
138281
139317
|
datasheetUrl?: string | undefined;
|
|
138282
139318
|
pinAttributes?: Record<string, {
|
|
139319
|
+
isInput?: boolean | undefined;
|
|
139320
|
+
isOutput?: boolean | undefined;
|
|
139321
|
+
isBidirectional?: boolean | undefined;
|
|
139322
|
+
isPassive?: boolean | undefined;
|
|
139323
|
+
canUseTriState?: boolean | undefined;
|
|
139324
|
+
isUsingTriState?: boolean | undefined;
|
|
139325
|
+
canUseOpenCollector?: boolean | undefined;
|
|
139326
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
139327
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
139328
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
138283
139329
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138284
139330
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
138285
139331
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -138998,6 +140044,16 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
138998
140044
|
displayName?: string | undefined;
|
|
138999
140045
|
datasheetUrl?: string | undefined;
|
|
139000
140046
|
pinAttributes?: Record<string, {
|
|
140047
|
+
isInput?: boolean | undefined;
|
|
140048
|
+
isOutput?: boolean | undefined;
|
|
140049
|
+
isBidirectional?: boolean | undefined;
|
|
140050
|
+
isPassive?: boolean | undefined;
|
|
140051
|
+
canUseTriState?: boolean | undefined;
|
|
140052
|
+
isUsingTriState?: boolean | undefined;
|
|
140053
|
+
canUseOpenCollector?: boolean | undefined;
|
|
140054
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
140055
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
140056
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
139001
140057
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139002
140058
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139003
140059
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143250,6 +144306,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143250
144306
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
143251
144307
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
143252
144308
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
144309
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
144310
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
144311
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
144312
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
144313
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
144314
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
144315
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
144316
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
144317
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
144318
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
143253
144319
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143254
144320
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
143255
144321
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -143277,6 +144343,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143277
144343
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
143278
144344
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
143279
144345
|
}, "strip", z.ZodTypeAny, {
|
|
144346
|
+
isInput?: boolean | undefined;
|
|
144347
|
+
isOutput?: boolean | undefined;
|
|
144348
|
+
isBidirectional?: boolean | undefined;
|
|
144349
|
+
isPassive?: boolean | undefined;
|
|
144350
|
+
canUseTriState?: boolean | undefined;
|
|
144351
|
+
isUsingTriState?: boolean | undefined;
|
|
144352
|
+
canUseOpenCollector?: boolean | undefined;
|
|
144353
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
144354
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
144355
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143280
144356
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143281
144357
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143282
144358
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143304,6 +144380,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143304
144380
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143305
144381
|
isGpio?: boolean | undefined;
|
|
143306
144382
|
}, {
|
|
144383
|
+
isInput?: boolean | undefined;
|
|
144384
|
+
isOutput?: boolean | undefined;
|
|
144385
|
+
isBidirectional?: boolean | undefined;
|
|
144386
|
+
isPassive?: boolean | undefined;
|
|
144387
|
+
canUseTriState?: boolean | undefined;
|
|
144388
|
+
isUsingTriState?: boolean | undefined;
|
|
144389
|
+
canUseOpenCollector?: boolean | undefined;
|
|
144390
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
144391
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
144392
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143307
144393
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143308
144394
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143309
144395
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -143973,6 +145059,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
143973
145059
|
displayName?: string | undefined;
|
|
143974
145060
|
datasheetUrl?: string | undefined;
|
|
143975
145061
|
pinAttributes?: Record<string, {
|
|
145062
|
+
isInput?: boolean | undefined;
|
|
145063
|
+
isOutput?: boolean | undefined;
|
|
145064
|
+
isBidirectional?: boolean | undefined;
|
|
145065
|
+
isPassive?: boolean | undefined;
|
|
145066
|
+
canUseTriState?: boolean | undefined;
|
|
145067
|
+
isUsingTriState?: boolean | undefined;
|
|
145068
|
+
canUseOpenCollector?: boolean | undefined;
|
|
145069
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
145070
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
145071
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
143976
145072
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143977
145073
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143978
145074
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -144716,6 +145812,16 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
144716
145812
|
displayName?: string | undefined;
|
|
144717
145813
|
datasheetUrl?: string | undefined;
|
|
144718
145814
|
pinAttributes?: Record<string, {
|
|
145815
|
+
isInput?: boolean | undefined;
|
|
145816
|
+
isOutput?: boolean | undefined;
|
|
145817
|
+
isBidirectional?: boolean | undefined;
|
|
145818
|
+
isPassive?: boolean | undefined;
|
|
145819
|
+
canUseTriState?: boolean | undefined;
|
|
145820
|
+
isUsingTriState?: boolean | undefined;
|
|
145821
|
+
canUseOpenCollector?: boolean | undefined;
|
|
145822
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
145823
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
145824
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
144719
145825
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144720
145826
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
144721
145827
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151382,6 +152488,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151382
152488
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
151383
152489
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
151384
152490
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
152491
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
152492
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
152493
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
152494
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
152495
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
152496
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
152497
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
152498
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
152499
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
152500
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
151385
152501
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
151386
152502
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
151387
152503
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -151409,6 +152525,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151409
152525
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
151410
152526
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
151411
152527
|
}, "strip", z.ZodTypeAny, {
|
|
152528
|
+
isInput?: boolean | undefined;
|
|
152529
|
+
isOutput?: boolean | undefined;
|
|
152530
|
+
isBidirectional?: boolean | undefined;
|
|
152531
|
+
isPassive?: boolean | undefined;
|
|
152532
|
+
canUseTriState?: boolean | undefined;
|
|
152533
|
+
isUsingTriState?: boolean | undefined;
|
|
152534
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152535
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152536
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152537
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151412
152538
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151413
152539
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151414
152540
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151436,6 +152562,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151436
152562
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
151437
152563
|
isGpio?: boolean | undefined;
|
|
151438
152564
|
}, {
|
|
152565
|
+
isInput?: boolean | undefined;
|
|
152566
|
+
isOutput?: boolean | undefined;
|
|
152567
|
+
isBidirectional?: boolean | undefined;
|
|
152568
|
+
isPassive?: boolean | undefined;
|
|
152569
|
+
canUseTriState?: boolean | undefined;
|
|
152570
|
+
isUsingTriState?: boolean | undefined;
|
|
152571
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152572
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152573
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152574
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151439
152575
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151440
152576
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151441
152577
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -151807,6 +152943,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
151807
152943
|
displayName?: string | undefined;
|
|
151808
152944
|
datasheetUrl?: string | undefined;
|
|
151809
152945
|
pinAttributes?: Record<string, {
|
|
152946
|
+
isInput?: boolean | undefined;
|
|
152947
|
+
isOutput?: boolean | undefined;
|
|
152948
|
+
isBidirectional?: boolean | undefined;
|
|
152949
|
+
isPassive?: boolean | undefined;
|
|
152950
|
+
canUseTriState?: boolean | undefined;
|
|
152951
|
+
isUsingTriState?: boolean | undefined;
|
|
152952
|
+
canUseOpenCollector?: boolean | undefined;
|
|
152953
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
152954
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
152955
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
151810
152956
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151811
152957
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
151812
152958
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -152473,6 +153619,16 @@ declare const transistorProps: z.ZodObject<{
|
|
|
152473
153619
|
displayName?: string | undefined;
|
|
152474
153620
|
datasheetUrl?: string | undefined;
|
|
152475
153621
|
pinAttributes?: Record<string, {
|
|
153622
|
+
isInput?: boolean | undefined;
|
|
153623
|
+
isOutput?: boolean | undefined;
|
|
153624
|
+
isBidirectional?: boolean | undefined;
|
|
153625
|
+
isPassive?: boolean | undefined;
|
|
153626
|
+
canUseTriState?: boolean | undefined;
|
|
153627
|
+
isUsingTriState?: boolean | undefined;
|
|
153628
|
+
canUseOpenCollector?: boolean | undefined;
|
|
153629
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
153630
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
153631
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
152476
153632
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
152477
153633
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
152478
153634
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -156609,6 +157765,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156609
157765
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
156610
157766
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
156611
157767
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
157768
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
157769
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
157770
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
157771
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
157772
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
157773
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
157774
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
157775
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
157776
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
157777
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
156612
157778
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
156613
157779
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
156614
157780
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -156636,6 +157802,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156636
157802
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
156637
157803
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
156638
157804
|
}, "strip", z.ZodTypeAny, {
|
|
157805
|
+
isInput?: boolean | undefined;
|
|
157806
|
+
isOutput?: boolean | undefined;
|
|
157807
|
+
isBidirectional?: boolean | undefined;
|
|
157808
|
+
isPassive?: boolean | undefined;
|
|
157809
|
+
canUseTriState?: boolean | undefined;
|
|
157810
|
+
isUsingTriState?: boolean | undefined;
|
|
157811
|
+
canUseOpenCollector?: boolean | undefined;
|
|
157812
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
157813
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
157814
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
156639
157815
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156640
157816
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156641
157817
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -156663,6 +157839,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
156663
157839
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156664
157840
|
isGpio?: boolean | undefined;
|
|
156665
157841
|
}, {
|
|
157842
|
+
isInput?: boolean | undefined;
|
|
157843
|
+
isOutput?: boolean | undefined;
|
|
157844
|
+
isBidirectional?: boolean | undefined;
|
|
157845
|
+
isPassive?: boolean | undefined;
|
|
157846
|
+
canUseTriState?: boolean | undefined;
|
|
157847
|
+
isUsingTriState?: boolean | undefined;
|
|
157848
|
+
canUseOpenCollector?: boolean | undefined;
|
|
157849
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
157850
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
157851
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
156666
157852
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156667
157853
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
156668
157854
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -157039,6 +158225,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
157039
158225
|
displayName?: string | undefined;
|
|
157040
158226
|
datasheetUrl?: string | undefined;
|
|
157041
158227
|
pinAttributes?: Record<string, {
|
|
158228
|
+
isInput?: boolean | undefined;
|
|
158229
|
+
isOutput?: boolean | undefined;
|
|
158230
|
+
isBidirectional?: boolean | undefined;
|
|
158231
|
+
isPassive?: boolean | undefined;
|
|
158232
|
+
canUseTriState?: boolean | undefined;
|
|
158233
|
+
isUsingTriState?: boolean | undefined;
|
|
158234
|
+
canUseOpenCollector?: boolean | undefined;
|
|
158235
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
158236
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
158237
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
157042
158238
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157043
158239
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157044
158240
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -157709,6 +158905,16 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
157709
158905
|
displayName?: string | undefined;
|
|
157710
158906
|
datasheetUrl?: string | undefined;
|
|
157711
158907
|
pinAttributes?: Record<string, {
|
|
158908
|
+
isInput?: boolean | undefined;
|
|
158909
|
+
isOutput?: boolean | undefined;
|
|
158910
|
+
isBidirectional?: boolean | undefined;
|
|
158911
|
+
isPassive?: boolean | undefined;
|
|
158912
|
+
canUseTriState?: boolean | undefined;
|
|
158913
|
+
isUsingTriState?: boolean | undefined;
|
|
158914
|
+
canUseOpenCollector?: boolean | undefined;
|
|
158915
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
158916
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
158917
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
157712
158918
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157713
158919
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
157714
158920
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -161844,6 +163050,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161844
163050
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
161845
163051
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
161846
163052
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
163053
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
163054
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
163055
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
163056
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
163057
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
163058
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
163059
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
163060
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
163061
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
163062
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
161847
163063
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
161848
163064
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
161849
163065
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -161871,6 +163087,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161871
163087
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
161872
163088
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
161873
163089
|
}, "strip", z.ZodTypeAny, {
|
|
163090
|
+
isInput?: boolean | undefined;
|
|
163091
|
+
isOutput?: boolean | undefined;
|
|
163092
|
+
isBidirectional?: boolean | undefined;
|
|
163093
|
+
isPassive?: boolean | undefined;
|
|
163094
|
+
canUseTriState?: boolean | undefined;
|
|
163095
|
+
isUsingTriState?: boolean | undefined;
|
|
163096
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163097
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163098
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163099
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
161874
163100
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161875
163101
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161876
163102
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -161898,6 +163124,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
161898
163124
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
161899
163125
|
isGpio?: boolean | undefined;
|
|
161900
163126
|
}, {
|
|
163127
|
+
isInput?: boolean | undefined;
|
|
163128
|
+
isOutput?: boolean | undefined;
|
|
163129
|
+
isBidirectional?: boolean | undefined;
|
|
163130
|
+
isPassive?: boolean | undefined;
|
|
163131
|
+
canUseTriState?: boolean | undefined;
|
|
163132
|
+
isUsingTriState?: boolean | undefined;
|
|
163133
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163134
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163135
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163136
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
161901
163137
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161902
163138
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
161903
163139
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -162267,6 +163503,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
162267
163503
|
displayName?: string | undefined;
|
|
162268
163504
|
datasheetUrl?: string | undefined;
|
|
162269
163505
|
pinAttributes?: Record<string, {
|
|
163506
|
+
isInput?: boolean | undefined;
|
|
163507
|
+
isOutput?: boolean | undefined;
|
|
163508
|
+
isBidirectional?: boolean | undefined;
|
|
163509
|
+
isPassive?: boolean | undefined;
|
|
163510
|
+
canUseTriState?: boolean | undefined;
|
|
163511
|
+
isUsingTriState?: boolean | undefined;
|
|
163512
|
+
canUseOpenCollector?: boolean | undefined;
|
|
163513
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
163514
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
163515
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
162270
163516
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162271
163517
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162272
163518
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -162932,6 +164178,16 @@ declare const opampProps: z.ZodObject<{
|
|
|
162932
164178
|
displayName?: string | undefined;
|
|
162933
164179
|
datasheetUrl?: string | undefined;
|
|
162934
164180
|
pinAttributes?: Record<string, {
|
|
164181
|
+
isInput?: boolean | undefined;
|
|
164182
|
+
isOutput?: boolean | undefined;
|
|
164183
|
+
isBidirectional?: boolean | undefined;
|
|
164184
|
+
isPassive?: boolean | undefined;
|
|
164185
|
+
canUseTriState?: boolean | undefined;
|
|
164186
|
+
isUsingTriState?: boolean | undefined;
|
|
164187
|
+
canUseOpenCollector?: boolean | undefined;
|
|
164188
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
164189
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
164190
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
162935
164191
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162936
164192
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
162937
164193
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167066,6 +168322,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167066
168322
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
167067
168323
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
167068
168324
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
168325
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
168326
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
168327
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
168328
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
168329
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
168330
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
168331
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
168332
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
168333
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
168334
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
167069
168335
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
167070
168336
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
167071
168337
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -167093,6 +168359,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167093
168359
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
167094
168360
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
167095
168361
|
}, "strip", z.ZodTypeAny, {
|
|
168362
|
+
isInput?: boolean | undefined;
|
|
168363
|
+
isOutput?: boolean | undefined;
|
|
168364
|
+
isBidirectional?: boolean | undefined;
|
|
168365
|
+
isPassive?: boolean | undefined;
|
|
168366
|
+
canUseTriState?: boolean | undefined;
|
|
168367
|
+
isUsingTriState?: boolean | undefined;
|
|
168368
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168369
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168370
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168371
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167096
168372
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167097
168373
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167098
168374
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167120,6 +168396,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167120
168396
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
167121
168397
|
isGpio?: boolean | undefined;
|
|
167122
168398
|
}, {
|
|
168399
|
+
isInput?: boolean | undefined;
|
|
168400
|
+
isOutput?: boolean | undefined;
|
|
168401
|
+
isBidirectional?: boolean | undefined;
|
|
168402
|
+
isPassive?: boolean | undefined;
|
|
168403
|
+
canUseTriState?: boolean | undefined;
|
|
168404
|
+
isUsingTriState?: boolean | undefined;
|
|
168405
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168406
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168407
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168408
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167123
168409
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167124
168410
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167125
168411
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -167493,6 +168779,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
167493
168779
|
displayName?: string | undefined;
|
|
167494
168780
|
datasheetUrl?: string | undefined;
|
|
167495
168781
|
pinAttributes?: Record<string, {
|
|
168782
|
+
isInput?: boolean | undefined;
|
|
168783
|
+
isOutput?: boolean | undefined;
|
|
168784
|
+
isBidirectional?: boolean | undefined;
|
|
168785
|
+
isPassive?: boolean | undefined;
|
|
168786
|
+
canUseTriState?: boolean | undefined;
|
|
168787
|
+
isUsingTriState?: boolean | undefined;
|
|
168788
|
+
canUseOpenCollector?: boolean | undefined;
|
|
168789
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
168790
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
168791
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
167496
168792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167497
168793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
167498
168794
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -168161,6 +169457,16 @@ declare const inductorProps: z.ZodObject<{
|
|
|
168161
169457
|
displayName?: string | undefined;
|
|
168162
169458
|
datasheetUrl?: string | undefined;
|
|
168163
169459
|
pinAttributes?: Record<string, {
|
|
169460
|
+
isInput?: boolean | undefined;
|
|
169461
|
+
isOutput?: boolean | undefined;
|
|
169462
|
+
isBidirectional?: boolean | undefined;
|
|
169463
|
+
isPassive?: boolean | undefined;
|
|
169464
|
+
canUseTriState?: boolean | undefined;
|
|
169465
|
+
isUsingTriState?: boolean | undefined;
|
|
169466
|
+
canUseOpenCollector?: boolean | undefined;
|
|
169467
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
169468
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
169469
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
168164
169470
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168165
169471
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168166
169472
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172288,6 +173594,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172288
173594
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
172289
173595
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
172290
173596
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
173597
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
173598
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
173599
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
173600
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
173601
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
173602
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
173603
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
173604
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
173605
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
173606
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
172291
173607
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
172292
173608
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
172293
173609
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -172315,6 +173631,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172315
173631
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
172316
173632
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
172317
173633
|
}, "strip", z.ZodTypeAny, {
|
|
173634
|
+
isInput?: boolean | undefined;
|
|
173635
|
+
isOutput?: boolean | undefined;
|
|
173636
|
+
isBidirectional?: boolean | undefined;
|
|
173637
|
+
isPassive?: boolean | undefined;
|
|
173638
|
+
canUseTriState?: boolean | undefined;
|
|
173639
|
+
isUsingTriState?: boolean | undefined;
|
|
173640
|
+
canUseOpenCollector?: boolean | undefined;
|
|
173641
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
173642
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
173643
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172318
173644
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172319
173645
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172320
173646
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172342,6 +173668,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172342
173668
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
172343
173669
|
isGpio?: boolean | undefined;
|
|
172344
173670
|
}, {
|
|
173671
|
+
isInput?: boolean | undefined;
|
|
173672
|
+
isOutput?: boolean | undefined;
|
|
173673
|
+
isBidirectional?: boolean | undefined;
|
|
173674
|
+
isPassive?: boolean | undefined;
|
|
173675
|
+
canUseTriState?: boolean | undefined;
|
|
173676
|
+
isUsingTriState?: boolean | undefined;
|
|
173677
|
+
canUseOpenCollector?: boolean | undefined;
|
|
173678
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
173679
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
173680
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172345
173681
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172346
173682
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172347
173683
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -172721,6 +174057,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
172721
174057
|
displayName?: string | undefined;
|
|
172722
174058
|
datasheetUrl?: string | undefined;
|
|
172723
174059
|
pinAttributes?: Record<string, {
|
|
174060
|
+
isInput?: boolean | undefined;
|
|
174061
|
+
isOutput?: boolean | undefined;
|
|
174062
|
+
isBidirectional?: boolean | undefined;
|
|
174063
|
+
isPassive?: boolean | undefined;
|
|
174064
|
+
canUseTriState?: boolean | undefined;
|
|
174065
|
+
isUsingTriState?: boolean | undefined;
|
|
174066
|
+
canUseOpenCollector?: boolean | undefined;
|
|
174067
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
174068
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
174069
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
172724
174070
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172725
174071
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
172726
174072
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -173394,6 +174740,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
173394
174740
|
displayName?: string | undefined;
|
|
173395
174741
|
datasheetUrl?: string | undefined;
|
|
173396
174742
|
pinAttributes?: Record<string, {
|
|
174743
|
+
isInput?: boolean | undefined;
|
|
174744
|
+
isOutput?: boolean | undefined;
|
|
174745
|
+
isBidirectional?: boolean | undefined;
|
|
174746
|
+
isPassive?: boolean | undefined;
|
|
174747
|
+
canUseTriState?: boolean | undefined;
|
|
174748
|
+
isUsingTriState?: boolean | undefined;
|
|
174749
|
+
canUseOpenCollector?: boolean | undefined;
|
|
174750
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
174751
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
174752
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
173397
174753
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
173398
174754
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
173399
174755
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -174067,6 +175423,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
174067
175423
|
displayName?: string | undefined;
|
|
174068
175424
|
datasheetUrl?: string | undefined;
|
|
174069
175425
|
pinAttributes?: Record<string, {
|
|
175426
|
+
isInput?: boolean | undefined;
|
|
175427
|
+
isOutput?: boolean | undefined;
|
|
175428
|
+
isBidirectional?: boolean | undefined;
|
|
175429
|
+
isPassive?: boolean | undefined;
|
|
175430
|
+
canUseTriState?: boolean | undefined;
|
|
175431
|
+
isUsingTriState?: boolean | undefined;
|
|
175432
|
+
canUseOpenCollector?: boolean | undefined;
|
|
175433
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
175434
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
175435
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
174070
175436
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174071
175437
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174072
175438
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -174740,6 +176106,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
174740
176106
|
displayName?: string | undefined;
|
|
174741
176107
|
datasheetUrl?: string | undefined;
|
|
174742
176108
|
pinAttributes?: Record<string, {
|
|
176109
|
+
isInput?: boolean | undefined;
|
|
176110
|
+
isOutput?: boolean | undefined;
|
|
176111
|
+
isBidirectional?: boolean | undefined;
|
|
176112
|
+
isPassive?: boolean | undefined;
|
|
176113
|
+
canUseTriState?: boolean | undefined;
|
|
176114
|
+
isUsingTriState?: boolean | undefined;
|
|
176115
|
+
canUseOpenCollector?: boolean | undefined;
|
|
176116
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
176117
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
176118
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
174743
176119
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174744
176120
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
174745
176121
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -175419,6 +176795,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
175419
176795
|
displayName?: string | undefined;
|
|
175420
176796
|
datasheetUrl?: string | undefined;
|
|
175421
176797
|
pinAttributes?: Record<string, {
|
|
176798
|
+
isInput?: boolean | undefined;
|
|
176799
|
+
isOutput?: boolean | undefined;
|
|
176800
|
+
isBidirectional?: boolean | undefined;
|
|
176801
|
+
isPassive?: boolean | undefined;
|
|
176802
|
+
canUseTriState?: boolean | undefined;
|
|
176803
|
+
isUsingTriState?: boolean | undefined;
|
|
176804
|
+
canUseOpenCollector?: boolean | undefined;
|
|
176805
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
176806
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
176807
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
175422
176808
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
175423
176809
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
175424
176810
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -176086,6 +177472,16 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
176086
177472
|
displayName?: string | undefined;
|
|
176087
177473
|
datasheetUrl?: string | undefined;
|
|
176088
177474
|
pinAttributes?: Record<string, {
|
|
177475
|
+
isInput?: boolean | undefined;
|
|
177476
|
+
isOutput?: boolean | undefined;
|
|
177477
|
+
isBidirectional?: boolean | undefined;
|
|
177478
|
+
isPassive?: boolean | undefined;
|
|
177479
|
+
canUseTriState?: boolean | undefined;
|
|
177480
|
+
isUsingTriState?: boolean | undefined;
|
|
177481
|
+
canUseOpenCollector?: boolean | undefined;
|
|
177482
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
177483
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
177484
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
176089
177485
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
176090
177486
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
176091
177487
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180237,6 +181633,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180237
181633
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
180238
181634
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
180239
181635
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
181636
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
181637
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
181638
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
181639
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
181640
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
181641
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
181642
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
181643
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
181644
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
181645
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
180240
181646
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
180241
181647
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
180242
181648
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -180264,6 +181670,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180264
181670
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
180265
181671
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
180266
181672
|
}, "strip", z.ZodTypeAny, {
|
|
181673
|
+
isInput?: boolean | undefined;
|
|
181674
|
+
isOutput?: boolean | undefined;
|
|
181675
|
+
isBidirectional?: boolean | undefined;
|
|
181676
|
+
isPassive?: boolean | undefined;
|
|
181677
|
+
canUseTriState?: boolean | undefined;
|
|
181678
|
+
isUsingTriState?: boolean | undefined;
|
|
181679
|
+
canUseOpenCollector?: boolean | undefined;
|
|
181680
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
181681
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
181682
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180267
181683
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180268
181684
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180269
181685
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180291,6 +181707,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180291
181707
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
180292
181708
|
isGpio?: boolean | undefined;
|
|
180293
181709
|
}, {
|
|
181710
|
+
isInput?: boolean | undefined;
|
|
181711
|
+
isOutput?: boolean | undefined;
|
|
181712
|
+
isBidirectional?: boolean | undefined;
|
|
181713
|
+
isPassive?: boolean | undefined;
|
|
181714
|
+
canUseTriState?: boolean | undefined;
|
|
181715
|
+
isUsingTriState?: boolean | undefined;
|
|
181716
|
+
canUseOpenCollector?: boolean | undefined;
|
|
181717
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
181718
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
181719
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180294
181720
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180295
181721
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180296
181722
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -180669,6 +182095,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
180669
182095
|
displayName?: string | undefined;
|
|
180670
182096
|
datasheetUrl?: string | undefined;
|
|
180671
182097
|
pinAttributes?: Record<string, {
|
|
182098
|
+
isInput?: boolean | undefined;
|
|
182099
|
+
isOutput?: boolean | undefined;
|
|
182100
|
+
isBidirectional?: boolean | undefined;
|
|
182101
|
+
isPassive?: boolean | undefined;
|
|
182102
|
+
canUseTriState?: boolean | undefined;
|
|
182103
|
+
isUsingTriState?: boolean | undefined;
|
|
182104
|
+
canUseOpenCollector?: boolean | undefined;
|
|
182105
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
182106
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
182107
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
180672
182108
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180673
182109
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
180674
182110
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -181343,6 +182779,16 @@ declare const ledProps: z.ZodObject<{
|
|
|
181343
182779
|
displayName?: string | undefined;
|
|
181344
182780
|
datasheetUrl?: string | undefined;
|
|
181345
182781
|
pinAttributes?: Record<string, {
|
|
182782
|
+
isInput?: boolean | undefined;
|
|
182783
|
+
isOutput?: boolean | undefined;
|
|
182784
|
+
isBidirectional?: boolean | undefined;
|
|
182785
|
+
isPassive?: boolean | undefined;
|
|
182786
|
+
canUseTriState?: boolean | undefined;
|
|
182787
|
+
isUsingTriState?: boolean | undefined;
|
|
182788
|
+
canUseOpenCollector?: boolean | undefined;
|
|
182789
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
182790
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
182791
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
181346
182792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
181347
182793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
181348
182794
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185487,6 +186933,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185487
186933
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
185488
186934
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
185489
186935
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
186936
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
186937
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
186938
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
186939
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
186940
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
186941
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
186942
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
186943
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
186944
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
186945
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
185490
186946
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
185491
186947
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
185492
186948
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -185514,6 +186970,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185514
186970
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
185515
186971
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
185516
186972
|
}, "strip", z.ZodTypeAny, {
|
|
186973
|
+
isInput?: boolean | undefined;
|
|
186974
|
+
isOutput?: boolean | undefined;
|
|
186975
|
+
isBidirectional?: boolean | undefined;
|
|
186976
|
+
isPassive?: boolean | undefined;
|
|
186977
|
+
canUseTriState?: boolean | undefined;
|
|
186978
|
+
isUsingTriState?: boolean | undefined;
|
|
186979
|
+
canUseOpenCollector?: boolean | undefined;
|
|
186980
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
186981
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
186982
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185517
186983
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185518
186984
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185519
186985
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185541,6 +187007,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185541
187007
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
185542
187008
|
isGpio?: boolean | undefined;
|
|
185543
187009
|
}, {
|
|
187010
|
+
isInput?: boolean | undefined;
|
|
187011
|
+
isOutput?: boolean | undefined;
|
|
187012
|
+
isBidirectional?: boolean | undefined;
|
|
187013
|
+
isPassive?: boolean | undefined;
|
|
187014
|
+
canUseTriState?: boolean | undefined;
|
|
187015
|
+
isUsingTriState?: boolean | undefined;
|
|
187016
|
+
canUseOpenCollector?: boolean | undefined;
|
|
187017
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
187018
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
187019
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185544
187020
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185545
187021
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185546
187022
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -185924,6 +187400,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
185924
187400
|
displayName?: string | undefined;
|
|
185925
187401
|
datasheetUrl?: string | undefined;
|
|
185926
187402
|
pinAttributes?: Record<string, {
|
|
187403
|
+
isInput?: boolean | undefined;
|
|
187404
|
+
isOutput?: boolean | undefined;
|
|
187405
|
+
isBidirectional?: boolean | undefined;
|
|
187406
|
+
isPassive?: boolean | undefined;
|
|
187407
|
+
canUseTriState?: boolean | undefined;
|
|
187408
|
+
isUsingTriState?: boolean | undefined;
|
|
187409
|
+
canUseOpenCollector?: boolean | undefined;
|
|
187410
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
187411
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
187412
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
185927
187413
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185928
187414
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
185929
187415
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -186600,6 +188086,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
186600
188086
|
displayName?: string | undefined;
|
|
186601
188087
|
datasheetUrl?: string | undefined;
|
|
186602
188088
|
pinAttributes?: Record<string, {
|
|
188089
|
+
isInput?: boolean | undefined;
|
|
188090
|
+
isOutput?: boolean | undefined;
|
|
188091
|
+
isBidirectional?: boolean | undefined;
|
|
188092
|
+
isPassive?: boolean | undefined;
|
|
188093
|
+
canUseTriState?: boolean | undefined;
|
|
188094
|
+
isUsingTriState?: boolean | undefined;
|
|
188095
|
+
canUseOpenCollector?: boolean | undefined;
|
|
188096
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
188097
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
188098
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
186603
188099
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
186604
188100
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
186605
188101
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -187277,6 +188773,16 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
187277
188773
|
displayName?: string | undefined;
|
|
187278
188774
|
datasheetUrl?: string | undefined;
|
|
187279
188775
|
pinAttributes?: Record<string, {
|
|
188776
|
+
isInput?: boolean | undefined;
|
|
188777
|
+
isOutput?: boolean | undefined;
|
|
188778
|
+
isBidirectional?: boolean | undefined;
|
|
188779
|
+
isPassive?: boolean | undefined;
|
|
188780
|
+
canUseTriState?: boolean | undefined;
|
|
188781
|
+
isUsingTriState?: boolean | undefined;
|
|
188782
|
+
canUseOpenCollector?: boolean | undefined;
|
|
188783
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
188784
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
188785
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
187280
188786
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
187281
188787
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
187282
188788
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192446,6 +193952,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192446
193952
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
192447
193953
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
192448
193954
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
193955
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
193956
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
193957
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
193958
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
193959
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
193960
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
193961
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
193962
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
193963
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
193964
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
192449
193965
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
192450
193966
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
192451
193967
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -192473,6 +193989,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192473
193989
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
192474
193990
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
192475
193991
|
}, "strip", z.ZodTypeAny, {
|
|
193992
|
+
isInput?: boolean | undefined;
|
|
193993
|
+
isOutput?: boolean | undefined;
|
|
193994
|
+
isBidirectional?: boolean | undefined;
|
|
193995
|
+
isPassive?: boolean | undefined;
|
|
193996
|
+
canUseTriState?: boolean | undefined;
|
|
193997
|
+
isUsingTriState?: boolean | undefined;
|
|
193998
|
+
canUseOpenCollector?: boolean | undefined;
|
|
193999
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194000
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194001
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192476
194002
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192477
194003
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192478
194004
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192500,6 +194026,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192500
194026
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
192501
194027
|
isGpio?: boolean | undefined;
|
|
192502
194028
|
}, {
|
|
194029
|
+
isInput?: boolean | undefined;
|
|
194030
|
+
isOutput?: boolean | undefined;
|
|
194031
|
+
isBidirectional?: boolean | undefined;
|
|
194032
|
+
isPassive?: boolean | undefined;
|
|
194033
|
+
canUseTriState?: boolean | undefined;
|
|
194034
|
+
isUsingTriState?: boolean | undefined;
|
|
194035
|
+
canUseOpenCollector?: boolean | undefined;
|
|
194036
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194037
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194038
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192503
194039
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192504
194040
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192505
194041
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -192884,6 +194420,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
192884
194420
|
displayName?: string | undefined;
|
|
192885
194421
|
datasheetUrl?: string | undefined;
|
|
192886
194422
|
pinAttributes?: Record<string, {
|
|
194423
|
+
isInput?: boolean | undefined;
|
|
194424
|
+
isOutput?: boolean | undefined;
|
|
194425
|
+
isBidirectional?: boolean | undefined;
|
|
194426
|
+
isPassive?: boolean | undefined;
|
|
194427
|
+
canUseTriState?: boolean | undefined;
|
|
194428
|
+
isUsingTriState?: boolean | undefined;
|
|
194429
|
+
canUseOpenCollector?: boolean | undefined;
|
|
194430
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
194431
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
194432
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
192887
194433
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192888
194434
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
192889
194435
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -193556,6 +195102,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
193556
195102
|
displayName?: string | undefined;
|
|
193557
195103
|
datasheetUrl?: string | undefined;
|
|
193558
195104
|
pinAttributes?: Record<string, {
|
|
195105
|
+
isInput?: boolean | undefined;
|
|
195106
|
+
isOutput?: boolean | undefined;
|
|
195107
|
+
isBidirectional?: boolean | undefined;
|
|
195108
|
+
isPassive?: boolean | undefined;
|
|
195109
|
+
canUseTriState?: boolean | undefined;
|
|
195110
|
+
isUsingTriState?: boolean | undefined;
|
|
195111
|
+
canUseOpenCollector?: boolean | undefined;
|
|
195112
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
195113
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
195114
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
193559
195115
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
193560
195116
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
193561
195117
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -194228,6 +195784,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
194228
195784
|
displayName?: string | undefined;
|
|
194229
195785
|
datasheetUrl?: string | undefined;
|
|
194230
195786
|
pinAttributes?: Record<string, {
|
|
195787
|
+
isInput?: boolean | undefined;
|
|
195788
|
+
isOutput?: boolean | undefined;
|
|
195789
|
+
isBidirectional?: boolean | undefined;
|
|
195790
|
+
isPassive?: boolean | undefined;
|
|
195791
|
+
canUseTriState?: boolean | undefined;
|
|
195792
|
+
isUsingTriState?: boolean | undefined;
|
|
195793
|
+
canUseOpenCollector?: boolean | undefined;
|
|
195794
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
195795
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
195796
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
194231
195797
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194232
195798
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194233
195799
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -194900,6 +196466,16 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
194900
196466
|
displayName?: string | undefined;
|
|
194901
196467
|
datasheetUrl?: string | undefined;
|
|
194902
196468
|
pinAttributes?: Record<string, {
|
|
196469
|
+
isInput?: boolean | undefined;
|
|
196470
|
+
isOutput?: boolean | undefined;
|
|
196471
|
+
isBidirectional?: boolean | undefined;
|
|
196472
|
+
isPassive?: boolean | undefined;
|
|
196473
|
+
canUseTriState?: boolean | undefined;
|
|
196474
|
+
isUsingTriState?: boolean | undefined;
|
|
196475
|
+
canUseOpenCollector?: boolean | undefined;
|
|
196476
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
196477
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
196478
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
194903
196479
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194904
196480
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
194905
196481
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200425,6 +202001,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200425
202001
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
200426
202002
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
200427
202003
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
202004
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
202005
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
202006
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
202007
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
202008
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
202009
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
202010
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
202011
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
202012
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
202013
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
200428
202014
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
200429
202015
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
200430
202016
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -200452,6 +202038,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200452
202038
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
200453
202039
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
200454
202040
|
}, "strip", z.ZodTypeAny, {
|
|
202041
|
+
isInput?: boolean | undefined;
|
|
202042
|
+
isOutput?: boolean | undefined;
|
|
202043
|
+
isBidirectional?: boolean | undefined;
|
|
202044
|
+
isPassive?: boolean | undefined;
|
|
202045
|
+
canUseTriState?: boolean | undefined;
|
|
202046
|
+
isUsingTriState?: boolean | undefined;
|
|
202047
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202048
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202049
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202050
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200455
202051
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200456
202052
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200457
202053
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200479,6 +202075,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200479
202075
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
200480
202076
|
isGpio?: boolean | undefined;
|
|
200481
202077
|
}, {
|
|
202078
|
+
isInput?: boolean | undefined;
|
|
202079
|
+
isOutput?: boolean | undefined;
|
|
202080
|
+
isBidirectional?: boolean | undefined;
|
|
202081
|
+
isPassive?: boolean | undefined;
|
|
202082
|
+
canUseTriState?: boolean | undefined;
|
|
202083
|
+
isUsingTriState?: boolean | undefined;
|
|
202084
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202085
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202086
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202087
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200482
202088
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200483
202089
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200484
202090
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -200849,6 +202455,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
200849
202455
|
displayName?: string | undefined;
|
|
200850
202456
|
datasheetUrl?: string | undefined;
|
|
200851
202457
|
pinAttributes?: Record<string, {
|
|
202458
|
+
isInput?: boolean | undefined;
|
|
202459
|
+
isOutput?: boolean | undefined;
|
|
202460
|
+
isBidirectional?: boolean | undefined;
|
|
202461
|
+
isPassive?: boolean | undefined;
|
|
202462
|
+
canUseTriState?: boolean | undefined;
|
|
202463
|
+
isUsingTriState?: boolean | undefined;
|
|
202464
|
+
canUseOpenCollector?: boolean | undefined;
|
|
202465
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
202466
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
202467
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
200852
202468
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200853
202469
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
200854
202470
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -201514,6 +203130,16 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
201514
203130
|
displayName?: string | undefined;
|
|
201515
203131
|
datasheetUrl?: string | undefined;
|
|
201516
203132
|
pinAttributes?: Record<string, {
|
|
203133
|
+
isInput?: boolean | undefined;
|
|
203134
|
+
isOutput?: boolean | undefined;
|
|
203135
|
+
isBidirectional?: boolean | undefined;
|
|
203136
|
+
isPassive?: boolean | undefined;
|
|
203137
|
+
canUseTriState?: boolean | undefined;
|
|
203138
|
+
isUsingTriState?: boolean | undefined;
|
|
203139
|
+
canUseOpenCollector?: boolean | undefined;
|
|
203140
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
203141
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
203142
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
201517
203143
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
201518
203144
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
201519
203145
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -205656,6 +207282,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205656
207282
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
205657
207283
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
205658
207284
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
207285
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
207286
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
207287
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
207288
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
207289
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
207290
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
207291
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
207292
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
207293
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
207294
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
205659
207295
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
205660
207296
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
205661
207297
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -205683,6 +207319,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205683
207319
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
205684
207320
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
205685
207321
|
}, "strip", z.ZodTypeAny, {
|
|
207322
|
+
isInput?: boolean | undefined;
|
|
207323
|
+
isOutput?: boolean | undefined;
|
|
207324
|
+
isBidirectional?: boolean | undefined;
|
|
207325
|
+
isPassive?: boolean | undefined;
|
|
207326
|
+
canUseTriState?: boolean | undefined;
|
|
207327
|
+
isUsingTriState?: boolean | undefined;
|
|
207328
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207329
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207330
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207331
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
205686
207332
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205687
207333
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205688
207334
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -205710,6 +207356,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
205710
207356
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
205711
207357
|
isGpio?: boolean | undefined;
|
|
205712
207358
|
}, {
|
|
207359
|
+
isInput?: boolean | undefined;
|
|
207360
|
+
isOutput?: boolean | undefined;
|
|
207361
|
+
isBidirectional?: boolean | undefined;
|
|
207362
|
+
isPassive?: boolean | undefined;
|
|
207363
|
+
canUseTriState?: boolean | undefined;
|
|
207364
|
+
isUsingTriState?: boolean | undefined;
|
|
207365
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207366
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207367
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207368
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
205713
207369
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205714
207370
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
205715
207371
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -206092,6 +207748,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
206092
207748
|
displayName?: string | undefined;
|
|
206093
207749
|
datasheetUrl?: string | undefined;
|
|
206094
207750
|
pinAttributes?: Record<string, {
|
|
207751
|
+
isInput?: boolean | undefined;
|
|
207752
|
+
isOutput?: boolean | undefined;
|
|
207753
|
+
isBidirectional?: boolean | undefined;
|
|
207754
|
+
isPassive?: boolean | undefined;
|
|
207755
|
+
canUseTriState?: boolean | undefined;
|
|
207756
|
+
isUsingTriState?: boolean | undefined;
|
|
207757
|
+
canUseOpenCollector?: boolean | undefined;
|
|
207758
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
207759
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
207760
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
206095
207761
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206096
207762
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206097
207763
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -206770,6 +208436,16 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
206770
208436
|
displayName?: string | undefined;
|
|
206771
208437
|
datasheetUrl?: string | undefined;
|
|
206772
208438
|
pinAttributes?: Record<string, {
|
|
208439
|
+
isInput?: boolean | undefined;
|
|
208440
|
+
isOutput?: boolean | undefined;
|
|
208441
|
+
isBidirectional?: boolean | undefined;
|
|
208442
|
+
isPassive?: boolean | undefined;
|
|
208443
|
+
canUseTriState?: boolean | undefined;
|
|
208444
|
+
isUsingTriState?: boolean | undefined;
|
|
208445
|
+
canUseOpenCollector?: boolean | undefined;
|
|
208446
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
208447
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
208448
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
206773
208449
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206774
208450
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
206775
208451
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -210920,6 +212596,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210920
212596
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
210921
212597
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
210922
212598
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
212599
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
212600
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
212601
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
212602
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
212603
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
212604
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
212605
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
212606
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
212607
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
212608
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
210923
212609
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
210924
212610
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
210925
212611
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -210947,6 +212633,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210947
212633
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
210948
212634
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
210949
212635
|
}, "strip", z.ZodTypeAny, {
|
|
212636
|
+
isInput?: boolean | undefined;
|
|
212637
|
+
isOutput?: boolean | undefined;
|
|
212638
|
+
isBidirectional?: boolean | undefined;
|
|
212639
|
+
isPassive?: boolean | undefined;
|
|
212640
|
+
canUseTriState?: boolean | undefined;
|
|
212641
|
+
isUsingTriState?: boolean | undefined;
|
|
212642
|
+
canUseOpenCollector?: boolean | undefined;
|
|
212643
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
212644
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
212645
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
210950
212646
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210951
212647
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210952
212648
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -210974,6 +212670,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
210974
212670
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
210975
212671
|
isGpio?: boolean | undefined;
|
|
210976
212672
|
}, {
|
|
212673
|
+
isInput?: boolean | undefined;
|
|
212674
|
+
isOutput?: boolean | undefined;
|
|
212675
|
+
isBidirectional?: boolean | undefined;
|
|
212676
|
+
isPassive?: boolean | undefined;
|
|
212677
|
+
canUseTriState?: boolean | undefined;
|
|
212678
|
+
isUsingTriState?: boolean | undefined;
|
|
212679
|
+
canUseOpenCollector?: boolean | undefined;
|
|
212680
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
212681
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
212682
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
210977
212683
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210978
212684
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
210979
212685
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -211351,6 +213057,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
211351
213057
|
displayName?: string | undefined;
|
|
211352
213058
|
datasheetUrl?: string | undefined;
|
|
211353
213059
|
pinAttributes?: Record<string, {
|
|
213060
|
+
isInput?: boolean | undefined;
|
|
213061
|
+
isOutput?: boolean | undefined;
|
|
213062
|
+
isBidirectional?: boolean | undefined;
|
|
213063
|
+
isPassive?: boolean | undefined;
|
|
213064
|
+
canUseTriState?: boolean | undefined;
|
|
213065
|
+
isUsingTriState?: boolean | undefined;
|
|
213066
|
+
canUseOpenCollector?: boolean | undefined;
|
|
213067
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
213068
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
213069
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
211354
213070
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
211355
213071
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
211356
213072
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -212024,6 +213740,16 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
212024
213740
|
displayName?: string | undefined;
|
|
212025
213741
|
datasheetUrl?: string | undefined;
|
|
212026
213742
|
pinAttributes?: Record<string, {
|
|
213743
|
+
isInput?: boolean | undefined;
|
|
213744
|
+
isOutput?: boolean | undefined;
|
|
213745
|
+
isBidirectional?: boolean | undefined;
|
|
213746
|
+
isPassive?: boolean | undefined;
|
|
213747
|
+
canUseTriState?: boolean | undefined;
|
|
213748
|
+
isUsingTriState?: boolean | undefined;
|
|
213749
|
+
canUseOpenCollector?: boolean | undefined;
|
|
213750
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
213751
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
213752
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
212027
213753
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
212028
213754
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
212029
213755
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216164,6 +217890,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216164
217890
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
216165
217891
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
216166
217892
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
217893
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
217894
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
217895
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
217896
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
217897
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
217898
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
217899
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
217900
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
217901
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
217902
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
216167
217903
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
216168
217904
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
216169
217905
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -216191,6 +217927,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216191
217927
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
216192
217928
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
216193
217929
|
}, "strip", z.ZodTypeAny, {
|
|
217930
|
+
isInput?: boolean | undefined;
|
|
217931
|
+
isOutput?: boolean | undefined;
|
|
217932
|
+
isBidirectional?: boolean | undefined;
|
|
217933
|
+
isPassive?: boolean | undefined;
|
|
217934
|
+
canUseTriState?: boolean | undefined;
|
|
217935
|
+
isUsingTriState?: boolean | undefined;
|
|
217936
|
+
canUseOpenCollector?: boolean | undefined;
|
|
217937
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
217938
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
217939
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216194
217940
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216195
217941
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216196
217942
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216218,6 +217964,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216218
217964
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
216219
217965
|
isGpio?: boolean | undefined;
|
|
216220
217966
|
}, {
|
|
217967
|
+
isInput?: boolean | undefined;
|
|
217968
|
+
isOutput?: boolean | undefined;
|
|
217969
|
+
isBidirectional?: boolean | undefined;
|
|
217970
|
+
isPassive?: boolean | undefined;
|
|
217971
|
+
canUseTriState?: boolean | undefined;
|
|
217972
|
+
isUsingTriState?: boolean | undefined;
|
|
217973
|
+
canUseOpenCollector?: boolean | undefined;
|
|
217974
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
217975
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
217976
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216221
217977
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216222
217978
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216223
217979
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -216595,6 +218351,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
216595
218351
|
displayName?: string | undefined;
|
|
216596
218352
|
datasheetUrl?: string | undefined;
|
|
216597
218353
|
pinAttributes?: Record<string, {
|
|
218354
|
+
isInput?: boolean | undefined;
|
|
218355
|
+
isOutput?: boolean | undefined;
|
|
218356
|
+
isBidirectional?: boolean | undefined;
|
|
218357
|
+
isPassive?: boolean | undefined;
|
|
218358
|
+
canUseTriState?: boolean | undefined;
|
|
218359
|
+
isUsingTriState?: boolean | undefined;
|
|
218360
|
+
canUseOpenCollector?: boolean | undefined;
|
|
218361
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
218362
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
218363
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
216598
218364
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216599
218365
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
216600
218366
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -217266,6 +219032,16 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
217266
219032
|
displayName?: string | undefined;
|
|
217267
219033
|
datasheetUrl?: string | undefined;
|
|
217268
219034
|
pinAttributes?: Record<string, {
|
|
219035
|
+
isInput?: boolean | undefined;
|
|
219036
|
+
isOutput?: boolean | undefined;
|
|
219037
|
+
isBidirectional?: boolean | undefined;
|
|
219038
|
+
isPassive?: boolean | undefined;
|
|
219039
|
+
canUseTriState?: boolean | undefined;
|
|
219040
|
+
isUsingTriState?: boolean | undefined;
|
|
219041
|
+
canUseOpenCollector?: boolean | undefined;
|
|
219042
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
219043
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
219044
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
217269
219045
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
217270
219046
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
217271
219047
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221402,6 +223178,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221402
223178
|
obstructsWithinBounds: z.ZodOptional<z.ZodBoolean>;
|
|
221403
223179
|
showAsTranslucentModel: z.ZodOptional<z.ZodBoolean>;
|
|
221404
223180
|
pinAttributes: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
223181
|
+
isInput: z.ZodOptional<z.ZodBoolean>;
|
|
223182
|
+
isOutput: z.ZodOptional<z.ZodBoolean>;
|
|
223183
|
+
isBidirectional: z.ZodOptional<z.ZodBoolean>;
|
|
223184
|
+
isPassive: z.ZodOptional<z.ZodBoolean>;
|
|
223185
|
+
canUseTriState: z.ZodOptional<z.ZodBoolean>;
|
|
223186
|
+
isUsingTriState: z.ZodOptional<z.ZodBoolean>;
|
|
223187
|
+
canUseOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
223188
|
+
isUsingOpenCollector: z.ZodOptional<z.ZodBoolean>;
|
|
223189
|
+
canUseOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
223190
|
+
isUsingOpenEmitter: z.ZodOptional<z.ZodBoolean>;
|
|
221405
223191
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
221406
223192
|
activeCapabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
221407
223193
|
activeCapability: z.ZodOptional<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>>;
|
|
@@ -221429,6 +223215,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221429
223215
|
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
221430
223216
|
isGpio: z.ZodOptional<z.ZodBoolean>;
|
|
221431
223217
|
}, "strip", z.ZodTypeAny, {
|
|
223218
|
+
isInput?: boolean | undefined;
|
|
223219
|
+
isOutput?: boolean | undefined;
|
|
223220
|
+
isBidirectional?: boolean | undefined;
|
|
223221
|
+
isPassive?: boolean | undefined;
|
|
223222
|
+
canUseTriState?: boolean | undefined;
|
|
223223
|
+
isUsingTriState?: boolean | undefined;
|
|
223224
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223225
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223226
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223227
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221432
223228
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221433
223229
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221434
223230
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221456,6 +223252,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221456
223252
|
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
221457
223253
|
isGpio?: boolean | undefined;
|
|
221458
223254
|
}, {
|
|
223255
|
+
isInput?: boolean | undefined;
|
|
223256
|
+
isOutput?: boolean | undefined;
|
|
223257
|
+
isBidirectional?: boolean | undefined;
|
|
223258
|
+
isPassive?: boolean | undefined;
|
|
223259
|
+
canUseTriState?: boolean | undefined;
|
|
223260
|
+
isUsingTriState?: boolean | undefined;
|
|
223261
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223262
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223263
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223264
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221459
223265
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221460
223266
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221461
223267
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -221831,6 +223637,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
221831
223637
|
displayName?: string | undefined;
|
|
221832
223638
|
datasheetUrl?: string | undefined;
|
|
221833
223639
|
pinAttributes?: Record<string, {
|
|
223640
|
+
isInput?: boolean | undefined;
|
|
223641
|
+
isOutput?: boolean | undefined;
|
|
223642
|
+
isBidirectional?: boolean | undefined;
|
|
223643
|
+
isPassive?: boolean | undefined;
|
|
223644
|
+
canUseTriState?: boolean | undefined;
|
|
223645
|
+
isUsingTriState?: boolean | undefined;
|
|
223646
|
+
canUseOpenCollector?: boolean | undefined;
|
|
223647
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
223648
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
223649
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
221834
223650
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221835
223651
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
221836
223652
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|
|
@@ -222501,6 +224317,16 @@ declare const ammeterProps: z.ZodObject<{
|
|
|
222501
224317
|
displayName?: string | undefined;
|
|
222502
224318
|
datasheetUrl?: string | undefined;
|
|
222503
224319
|
pinAttributes?: Record<string, {
|
|
224320
|
+
isInput?: boolean | undefined;
|
|
224321
|
+
isOutput?: boolean | undefined;
|
|
224322
|
+
isBidirectional?: boolean | undefined;
|
|
224323
|
+
isPassive?: boolean | undefined;
|
|
224324
|
+
canUseTriState?: boolean | undefined;
|
|
224325
|
+
isUsingTriState?: boolean | undefined;
|
|
224326
|
+
canUseOpenCollector?: boolean | undefined;
|
|
224327
|
+
isUsingOpenCollector?: boolean | undefined;
|
|
224328
|
+
canUseOpenEmitter?: boolean | undefined;
|
|
224329
|
+
isUsingOpenEmitter?: boolean | undefined;
|
|
222504
224330
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
222505
224331
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
222506
224332
|
activeCapability?: "i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx" | undefined;
|