@tscircuit/props 0.0.481 → 0.0.483
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +649 -0
- package/dist/index.js +5 -1
- package/dist/index.js.map +1 -1
- package/lib/common/layout.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6065,6 +6065,7 @@ interface PcbLayoutProps {
|
|
|
6065
6065
|
pcbRotation?: string | number;
|
|
6066
6066
|
pcbPositionAnchor?: string;
|
|
6067
6067
|
pcbPositionMode?: PcbPositionMode;
|
|
6068
|
+
shouldBeOnEdgeOfBoard?: boolean;
|
|
6068
6069
|
layer?: LayerRefInput;
|
|
6069
6070
|
pcbMarginTop?: string | number;
|
|
6070
6071
|
pcbMarginRight?: string | number;
|
|
@@ -6099,6 +6100,7 @@ interface CommonLayoutProps {
|
|
|
6099
6100
|
pcbRotation?: string | number;
|
|
6100
6101
|
pcbPositionAnchor?: string;
|
|
6101
6102
|
pcbPositionMode?: PcbPositionMode;
|
|
6103
|
+
shouldBeOnEdgeOfBoard?: boolean;
|
|
6102
6104
|
pcbMarginTop?: string | number;
|
|
6103
6105
|
pcbMarginRight?: string | number;
|
|
6104
6106
|
pcbMarginBottom?: string | number;
|
|
@@ -6145,6 +6147,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6145
6147
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6146
6148
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
6147
6149
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
6150
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
6148
6151
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
6149
6152
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
6150
6153
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6210,6 +6213,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6210
6213
|
pcbRotation?: number | undefined;
|
|
6211
6214
|
pcbPositionAnchor?: string | undefined;
|
|
6212
6215
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6216
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6213
6217
|
pcbMarginTop?: number | undefined;
|
|
6214
6218
|
pcbMarginRight?: number | undefined;
|
|
6215
6219
|
pcbMarginBottom?: number | undefined;
|
|
@@ -6244,6 +6248,7 @@ declare const pcbLayoutProps: z.ZodObject<{
|
|
|
6244
6248
|
pcbRotation?: string | number | undefined;
|
|
6245
6249
|
pcbPositionAnchor?: string | undefined;
|
|
6246
6250
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6251
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6247
6252
|
pcbMarginTop?: string | number | undefined;
|
|
6248
6253
|
pcbMarginRight?: string | number | undefined;
|
|
6249
6254
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -6276,6 +6281,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6276
6281
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6277
6282
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
6278
6283
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
6284
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
6279
6285
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6280
6286
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6281
6287
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -6364,6 +6370,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6364
6370
|
pcbRotation?: number | undefined;
|
|
6365
6371
|
pcbPositionAnchor?: string | undefined;
|
|
6366
6372
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6373
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6367
6374
|
pcbMarginTop?: number | undefined;
|
|
6368
6375
|
pcbMarginRight?: number | undefined;
|
|
6369
6376
|
pcbMarginBottom?: number | undefined;
|
|
@@ -6414,6 +6421,7 @@ declare const commonLayoutProps: z.ZodObject<{
|
|
|
6414
6421
|
pcbRotation?: string | number | undefined;
|
|
6415
6422
|
pcbPositionAnchor?: string | undefined;
|
|
6416
6423
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
6424
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
6417
6425
|
pcbMarginTop?: string | number | undefined;
|
|
6418
6426
|
pcbMarginRight?: string | number | undefined;
|
|
6419
6427
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -6487,6 +6495,8 @@ interface PinAttributeMap {
|
|
|
6487
6495
|
isUsingOpenDrain?: boolean;
|
|
6488
6496
|
canUsePushPull?: boolean;
|
|
6489
6497
|
isUsingPushPull?: boolean;
|
|
6498
|
+
shouldHaveDecouplingCapacitor?: boolean;
|
|
6499
|
+
recommendedDecouplingCapacitorCapacitance?: string | number;
|
|
6490
6500
|
}
|
|
6491
6501
|
declare const pinAttributeMap: z.ZodObject<{
|
|
6492
6502
|
capabilities: z.ZodOptional<z.ZodArray<z.ZodEnum<["i2c_sda", "i2c_scl", "spi_cs", "spi_sck", "spi_mosi", "spi_miso", "uart_tx", "uart_rx"]>, "many">>;
|
|
@@ -6512,6 +6522,8 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6512
6522
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
6513
6523
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6514
6524
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
6525
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
6526
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
6515
6527
|
}, "strip", z.ZodTypeAny, {
|
|
6516
6528
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6517
6529
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -6536,6 +6548,8 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6536
6548
|
isUsingOpenDrain?: boolean | undefined;
|
|
6537
6549
|
canUsePushPull?: boolean | undefined;
|
|
6538
6550
|
isUsingPushPull?: boolean | undefined;
|
|
6551
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6552
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6539
6553
|
}, {
|
|
6540
6554
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
6541
6555
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -6560,6 +6574,8 @@ declare const pinAttributeMap: z.ZodObject<{
|
|
|
6560
6574
|
isUsingOpenDrain?: boolean | undefined;
|
|
6561
6575
|
canUsePushPull?: boolean | undefined;
|
|
6562
6576
|
isUsingPushPull?: boolean | undefined;
|
|
6577
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
6578
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
6563
6579
|
}>;
|
|
6564
6580
|
interface CommonComponentProps<PinLabel extends string = string> extends CommonLayoutProps {
|
|
6565
6581
|
key?: any;
|
|
@@ -6603,6 +6619,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
6603
6619
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6604
6620
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
6605
6621
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
6622
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
6606
6623
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6607
6624
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
6608
6625
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -9666,6 +9683,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9666
9683
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
9667
9684
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9668
9685
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
9686
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
9687
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
9669
9688
|
}, "strip", z.ZodTypeAny, {
|
|
9670
9689
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9671
9690
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9690,6 +9709,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9690
9709
|
isUsingOpenDrain?: boolean | undefined;
|
|
9691
9710
|
canUsePushPull?: boolean | undefined;
|
|
9692
9711
|
isUsingPushPull?: boolean | undefined;
|
|
9712
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9713
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9693
9714
|
}, {
|
|
9694
9715
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
9695
9716
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -9714,6 +9735,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9714
9735
|
isUsingOpenDrain?: boolean | undefined;
|
|
9715
9736
|
canUsePushPull?: boolean | undefined;
|
|
9716
9737
|
isUsingPushPull?: boolean | undefined;
|
|
9738
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9739
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9717
9740
|
}>>>;
|
|
9718
9741
|
mfn: z.ZodOptional<z.ZodString>;
|
|
9719
9742
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -9735,6 +9758,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9735
9758
|
pcbRotation?: number | undefined;
|
|
9736
9759
|
pcbPositionAnchor?: string | undefined;
|
|
9737
9760
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
9761
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
9738
9762
|
pcbMarginTop?: number | undefined;
|
|
9739
9763
|
pcbMarginRight?: number | undefined;
|
|
9740
9764
|
pcbMarginBottom?: number | undefined;
|
|
@@ -9796,6 +9820,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
9796
9820
|
isUsingOpenDrain?: boolean | undefined;
|
|
9797
9821
|
canUsePushPull?: boolean | undefined;
|
|
9798
9822
|
isUsingPushPull?: boolean | undefined;
|
|
9823
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
9824
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
9799
9825
|
}> | undefined;
|
|
9800
9826
|
cadModel?: string | {
|
|
9801
9827
|
stlUrl: string;
|
|
@@ -10254,6 +10280,7 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10254
10280
|
pcbRotation?: string | number | undefined;
|
|
10255
10281
|
pcbPositionAnchor?: string | undefined;
|
|
10256
10282
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
10283
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
10257
10284
|
pcbMarginTop?: string | number | undefined;
|
|
10258
10285
|
pcbMarginRight?: string | number | undefined;
|
|
10259
10286
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -10315,6 +10342,8 @@ declare const commonComponentProps: z.ZodObject<{
|
|
|
10315
10342
|
isUsingOpenDrain?: boolean | undefined;
|
|
10316
10343
|
canUsePushPull?: boolean | undefined;
|
|
10317
10344
|
isUsingPushPull?: boolean | undefined;
|
|
10345
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
10346
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
10318
10347
|
}> | undefined;
|
|
10319
10348
|
cadModel?: string | {
|
|
10320
10349
|
stlUrl: string;
|
|
@@ -10766,6 +10795,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
10766
10795
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10767
10796
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
10768
10797
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
10798
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
10769
10799
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10770
10800
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
10771
10801
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -13829,6 +13859,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13829
13859
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
13830
13860
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13831
13861
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
13862
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
13863
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
13832
13864
|
}, "strip", z.ZodTypeAny, {
|
|
13833
13865
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13834
13866
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13853,6 +13885,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13853
13885
|
isUsingOpenDrain?: boolean | undefined;
|
|
13854
13886
|
canUsePushPull?: boolean | undefined;
|
|
13855
13887
|
isUsingPushPull?: boolean | undefined;
|
|
13888
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13889
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13856
13890
|
}, {
|
|
13857
13891
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
13858
13892
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -13877,6 +13911,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13877
13911
|
isUsingOpenDrain?: boolean | undefined;
|
|
13878
13912
|
canUsePushPull?: boolean | undefined;
|
|
13879
13913
|
isUsingPushPull?: boolean | undefined;
|
|
13914
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
13915
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13880
13916
|
}>>>;
|
|
13881
13917
|
mfn: z.ZodOptional<z.ZodString>;
|
|
13882
13918
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -13898,6 +13934,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
13898
13934
|
pcbRotation?: number | undefined;
|
|
13899
13935
|
pcbPositionAnchor?: string | undefined;
|
|
13900
13936
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
13937
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
13901
13938
|
pcbMarginTop?: number | undefined;
|
|
13902
13939
|
pcbMarginRight?: number | undefined;
|
|
13903
13940
|
pcbMarginBottom?: number | undefined;
|
|
@@ -13959,6 +13996,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
13959
13996
|
isUsingOpenDrain?: boolean | undefined;
|
|
13960
13997
|
canUsePushPull?: boolean | undefined;
|
|
13961
13998
|
isUsingPushPull?: boolean | undefined;
|
|
13999
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14000
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
13962
14001
|
}> | undefined;
|
|
13963
14002
|
cadModel?: string | {
|
|
13964
14003
|
stlUrl: string;
|
|
@@ -14417,6 +14456,7 @@ declare const componentProps: z.ZodObject<{
|
|
|
14417
14456
|
pcbRotation?: string | number | undefined;
|
|
14418
14457
|
pcbPositionAnchor?: string | undefined;
|
|
14419
14458
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
14459
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
14420
14460
|
pcbMarginTop?: string | number | undefined;
|
|
14421
14461
|
pcbMarginRight?: string | number | undefined;
|
|
14422
14462
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -14478,6 +14518,8 @@ declare const componentProps: z.ZodObject<{
|
|
|
14478
14518
|
isUsingOpenDrain?: boolean | undefined;
|
|
14479
14519
|
canUsePushPull?: boolean | undefined;
|
|
14480
14520
|
isUsingPushPull?: boolean | undefined;
|
|
14521
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
14522
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
14481
14523
|
}> | undefined;
|
|
14482
14524
|
cadModel?: string | {
|
|
14483
14525
|
stlUrl: string;
|
|
@@ -16666,6 +16708,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
16666
16708
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16667
16709
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
16668
16710
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
16711
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
16669
16712
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16670
16713
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
16671
16714
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -17229,6 +17272,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
17229
17272
|
pcbRotation?: number | undefined;
|
|
17230
17273
|
pcbPositionAnchor?: string | undefined;
|
|
17231
17274
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
17275
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
17232
17276
|
pcbMarginTop?: number | undefined;
|
|
17233
17277
|
pcbMarginRight?: number | undefined;
|
|
17234
17278
|
pcbMarginBottom?: number | undefined;
|
|
@@ -17487,6 +17531,7 @@ declare const baseGroupProps: z.ZodObject<{
|
|
|
17487
17531
|
pcbRotation?: string | number | undefined;
|
|
17488
17532
|
pcbPositionAnchor?: string | undefined;
|
|
17489
17533
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
17534
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
17490
17535
|
pcbMarginTop?: string | number | undefined;
|
|
17491
17536
|
pcbMarginRight?: string | number | undefined;
|
|
17492
17537
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -17741,6 +17786,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
17741
17786
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17742
17787
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
17743
17788
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
17789
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
17744
17790
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17745
17791
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
17746
17792
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -18498,6 +18544,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18498
18544
|
pcbRotation?: number | undefined;
|
|
18499
18545
|
pcbPositionAnchor?: string | undefined;
|
|
18500
18546
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
18547
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
18501
18548
|
pcbMarginTop?: number | undefined;
|
|
18502
18549
|
pcbMarginRight?: number | undefined;
|
|
18503
18550
|
pcbMarginBottom?: number | undefined;
|
|
@@ -18806,6 +18853,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
18806
18853
|
pcbRotation?: string | number | undefined;
|
|
18807
18854
|
pcbPositionAnchor?: string | undefined;
|
|
18808
18855
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
18856
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
18809
18857
|
pcbMarginTop?: string | number | undefined;
|
|
18810
18858
|
pcbMarginRight?: string | number | undefined;
|
|
18811
18859
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -19111,6 +19159,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19111
19159
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19112
19160
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
19113
19161
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
19162
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
19114
19163
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19115
19164
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
19116
19165
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -19871,6 +19920,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
19871
19920
|
pcbRotation?: number | undefined;
|
|
19872
19921
|
pcbPositionAnchor?: string | undefined;
|
|
19873
19922
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
19923
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
19874
19924
|
pcbMarginTop?: number | undefined;
|
|
19875
19925
|
pcbMarginRight?: number | undefined;
|
|
19876
19926
|
pcbMarginBottom?: number | undefined;
|
|
@@ -20180,6 +20230,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
20180
20230
|
pcbRotation?: string | number | undefined;
|
|
20181
20231
|
pcbPositionAnchor?: string | undefined;
|
|
20182
20232
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
20233
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
20183
20234
|
pcbMarginTop?: string | number | undefined;
|
|
20184
20235
|
pcbMarginRight?: string | number | undefined;
|
|
20185
20236
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -20485,6 +20536,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
20485
20536
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20486
20537
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
20487
20538
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
20539
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
20488
20540
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20489
20541
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
20490
20542
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -21050,6 +21102,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21050
21102
|
pcbRotation?: number | undefined;
|
|
21051
21103
|
pcbPositionAnchor?: string | undefined;
|
|
21052
21104
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
21105
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
21053
21106
|
pcbMarginTop?: number | undefined;
|
|
21054
21107
|
pcbMarginRight?: number | undefined;
|
|
21055
21108
|
pcbMarginBottom?: number | undefined;
|
|
@@ -21309,6 +21362,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21309
21362
|
pcbRotation?: string | number | undefined;
|
|
21310
21363
|
pcbPositionAnchor?: string | undefined;
|
|
21311
21364
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
21365
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
21312
21366
|
pcbMarginTop?: string | number | undefined;
|
|
21313
21367
|
pcbMarginRight?: string | number | undefined;
|
|
21314
21368
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -21562,6 +21616,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
21562
21616
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21563
21617
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
21564
21618
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
21619
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
21565
21620
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21566
21621
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
21567
21622
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -22322,6 +22377,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22322
22377
|
pcbRotation?: number | undefined;
|
|
22323
22378
|
pcbPositionAnchor?: string | undefined;
|
|
22324
22379
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
22380
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
22325
22381
|
pcbMarginTop?: number | undefined;
|
|
22326
22382
|
pcbMarginRight?: number | undefined;
|
|
22327
22383
|
pcbMarginBottom?: number | undefined;
|
|
@@ -22631,6 +22687,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
22631
22687
|
pcbRotation?: string | number | undefined;
|
|
22632
22688
|
pcbPositionAnchor?: string | undefined;
|
|
22633
22689
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
22690
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
22634
22691
|
pcbMarginTop?: string | number | undefined;
|
|
22635
22692
|
pcbMarginRight?: string | number | undefined;
|
|
22636
22693
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -22967,6 +23024,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
22967
23024
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22968
23025
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
22969
23026
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
23027
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
22970
23028
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22971
23029
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
22972
23030
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -23754,6 +23812,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
23754
23812
|
pcbRotation?: number | undefined;
|
|
23755
23813
|
pcbPositionAnchor?: string | undefined;
|
|
23756
23814
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
23815
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
23757
23816
|
pcbMarginTop?: number | undefined;
|
|
23758
23817
|
pcbMarginRight?: number | undefined;
|
|
23759
23818
|
pcbMarginBottom?: number | undefined;
|
|
@@ -24078,6 +24137,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
24078
24137
|
pcbRotation?: string | number | undefined;
|
|
24079
24138
|
pcbPositionAnchor?: string | undefined;
|
|
24080
24139
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
24140
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
24081
24141
|
pcbMarginTop?: string | number | undefined;
|
|
24082
24142
|
pcbMarginRight?: string | number | undefined;
|
|
24083
24143
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -24427,6 +24487,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
24427
24487
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24428
24488
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
24429
24489
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
24490
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
24430
24491
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24431
24492
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
24432
24493
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -25011,6 +25072,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25011
25072
|
pcbRotation?: number | undefined;
|
|
25012
25073
|
pcbPositionAnchor?: string | undefined;
|
|
25013
25074
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
25075
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
25014
25076
|
pcbMarginTop?: number | undefined;
|
|
25015
25077
|
pcbMarginRight?: number | undefined;
|
|
25016
25078
|
pcbMarginBottom?: number | undefined;
|
|
@@ -25285,6 +25347,7 @@ declare const panelProps: z.ZodObject<Omit<{
|
|
|
25285
25347
|
pcbRotation?: string | number | undefined;
|
|
25286
25348
|
pcbPositionAnchor?: string | undefined;
|
|
25287
25349
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
25350
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
25288
25351
|
pcbMarginTop?: string | number | undefined;
|
|
25289
25352
|
pcbMarginRight?: string | number | undefined;
|
|
25290
25353
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -25557,6 +25620,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
25557
25620
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25558
25621
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
25559
25622
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
25623
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
25560
25624
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25561
25625
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
25562
25626
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -26141,6 +26205,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26141
26205
|
pcbRotation?: number | undefined;
|
|
26142
26206
|
pcbPositionAnchor?: string | undefined;
|
|
26143
26207
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
26208
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
26144
26209
|
pcbMarginTop?: number | undefined;
|
|
26145
26210
|
pcbMarginRight?: number | undefined;
|
|
26146
26211
|
pcbMarginBottom?: number | undefined;
|
|
@@ -26415,6 +26480,7 @@ declare const subpanelProps: z.ZodObject<Omit<{
|
|
|
26415
26480
|
pcbRotation?: string | number | undefined;
|
|
26416
26481
|
pcbPositionAnchor?: string | undefined;
|
|
26417
26482
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
26483
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
26418
26484
|
pcbMarginTop?: string | number | undefined;
|
|
26419
26485
|
pcbMarginRight?: string | number | undefined;
|
|
26420
26486
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -26692,6 +26758,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
26692
26758
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26693
26759
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
26694
26760
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
26761
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
26695
26762
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26696
26763
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
26697
26764
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -27449,6 +27516,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27449
27516
|
pcbRotation?: number | undefined;
|
|
27450
27517
|
pcbPositionAnchor?: string | undefined;
|
|
27451
27518
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
27519
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
27452
27520
|
pcbMarginTop?: number | undefined;
|
|
27453
27521
|
pcbMarginRight?: number | undefined;
|
|
27454
27522
|
pcbMarginBottom?: number | undefined;
|
|
@@ -27757,6 +27825,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
27757
27825
|
pcbRotation?: string | number | undefined;
|
|
27758
27826
|
pcbPositionAnchor?: string | undefined;
|
|
27759
27827
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
27828
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
27760
27829
|
pcbMarginTop?: string | number | undefined;
|
|
27761
27830
|
pcbMarginRight?: string | number | undefined;
|
|
27762
27831
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -28134,6 +28203,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
28134
28203
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28135
28204
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
28136
28205
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
28206
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
28137
28207
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28138
28208
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28139
28209
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -31195,6 +31265,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31195
31265
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
31196
31266
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31197
31267
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
31268
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
31269
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
31198
31270
|
}, "strip", z.ZodTypeAny, {
|
|
31199
31271
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31200
31272
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31219,6 +31291,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31219
31291
|
isUsingOpenDrain?: boolean | undefined;
|
|
31220
31292
|
canUsePushPull?: boolean | undefined;
|
|
31221
31293
|
isUsingPushPull?: boolean | undefined;
|
|
31294
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31295
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31222
31296
|
}, {
|
|
31223
31297
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
31224
31298
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -31243,6 +31317,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31243
31317
|
isUsingOpenDrain?: boolean | undefined;
|
|
31244
31318
|
canUsePushPull?: boolean | undefined;
|
|
31245
31319
|
isUsingPushPull?: boolean | undefined;
|
|
31320
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31321
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31246
31322
|
}>>>;
|
|
31247
31323
|
mfn: z.ZodOptional<z.ZodString>;
|
|
31248
31324
|
} & {
|
|
@@ -31561,6 +31637,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
31561
31637
|
pcbRotation?: number | undefined;
|
|
31562
31638
|
pcbPositionAnchor?: string | undefined;
|
|
31563
31639
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
31640
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
31564
31641
|
pcbMarginTop?: number | undefined;
|
|
31565
31642
|
pcbMarginRight?: number | undefined;
|
|
31566
31643
|
pcbMarginBottom?: number | undefined;
|
|
@@ -31622,6 +31699,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
31622
31699
|
isUsingOpenDrain?: boolean | undefined;
|
|
31623
31700
|
canUsePushPull?: boolean | undefined;
|
|
31624
31701
|
isUsingPushPull?: boolean | undefined;
|
|
31702
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
31703
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
31625
31704
|
}> | undefined;
|
|
31626
31705
|
cadModel?: string | {
|
|
31627
31706
|
stlUrl: string;
|
|
@@ -32156,6 +32235,7 @@ declare const chipProps: z.ZodObject<{
|
|
|
32156
32235
|
pcbRotation?: string | number | undefined;
|
|
32157
32236
|
pcbPositionAnchor?: string | undefined;
|
|
32158
32237
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
32238
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
32159
32239
|
pcbMarginTop?: string | number | undefined;
|
|
32160
32240
|
pcbMarginRight?: string | number | undefined;
|
|
32161
32241
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -32217,6 +32297,8 @@ declare const chipProps: z.ZodObject<{
|
|
|
32217
32297
|
isUsingOpenDrain?: boolean | undefined;
|
|
32218
32298
|
canUsePushPull?: boolean | undefined;
|
|
32219
32299
|
isUsingPushPull?: boolean | undefined;
|
|
32300
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
32301
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
32220
32302
|
}> | undefined;
|
|
32221
32303
|
cadModel?: string | {
|
|
32222
32304
|
stlUrl: string;
|
|
@@ -32747,6 +32829,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
32747
32829
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32748
32830
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
32749
32831
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
32832
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
32750
32833
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32751
32834
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
32752
32835
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -35808,6 +35891,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35808
35891
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
35809
35892
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35810
35893
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
35894
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
35895
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
35811
35896
|
}, "strip", z.ZodTypeAny, {
|
|
35812
35897
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35813
35898
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35832,6 +35917,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35832
35917
|
isUsingOpenDrain?: boolean | undefined;
|
|
35833
35918
|
canUsePushPull?: boolean | undefined;
|
|
35834
35919
|
isUsingPushPull?: boolean | undefined;
|
|
35920
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35921
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35835
35922
|
}, {
|
|
35836
35923
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
35837
35924
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -35856,6 +35943,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
35856
35943
|
isUsingOpenDrain?: boolean | undefined;
|
|
35857
35944
|
canUsePushPull?: boolean | undefined;
|
|
35858
35945
|
isUsingPushPull?: boolean | undefined;
|
|
35946
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
35947
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
35859
35948
|
}>>>;
|
|
35860
35949
|
mfn: z.ZodOptional<z.ZodString>;
|
|
35861
35950
|
} & {
|
|
@@ -36174,6 +36263,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36174
36263
|
pcbRotation?: number | undefined;
|
|
36175
36264
|
pcbPositionAnchor?: string | undefined;
|
|
36176
36265
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
36266
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
36177
36267
|
pcbMarginTop?: number | undefined;
|
|
36178
36268
|
pcbMarginRight?: number | undefined;
|
|
36179
36269
|
pcbMarginBottom?: number | undefined;
|
|
@@ -36235,6 +36325,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
36235
36325
|
isUsingOpenDrain?: boolean | undefined;
|
|
36236
36326
|
canUsePushPull?: boolean | undefined;
|
|
36237
36327
|
isUsingPushPull?: boolean | undefined;
|
|
36328
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36329
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36238
36330
|
}> | undefined;
|
|
36239
36331
|
cadModel?: string | {
|
|
36240
36332
|
stlUrl: string;
|
|
@@ -36769,6 +36861,7 @@ declare const bugProps: z.ZodObject<{
|
|
|
36769
36861
|
pcbRotation?: string | number | undefined;
|
|
36770
36862
|
pcbPositionAnchor?: string | undefined;
|
|
36771
36863
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
36864
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
36772
36865
|
pcbMarginTop?: string | number | undefined;
|
|
36773
36866
|
pcbMarginRight?: string | number | undefined;
|
|
36774
36867
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -36830,6 +36923,8 @@ declare const bugProps: z.ZodObject<{
|
|
|
36830
36923
|
isUsingOpenDrain?: boolean | undefined;
|
|
36831
36924
|
canUsePushPull?: boolean | undefined;
|
|
36832
36925
|
isUsingPushPull?: boolean | undefined;
|
|
36926
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
36927
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
36833
36928
|
}> | undefined;
|
|
36834
36929
|
cadModel?: string | {
|
|
36835
36930
|
stlUrl: string;
|
|
@@ -37359,6 +37454,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
37359
37454
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37360
37455
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
37361
37456
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
37457
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
37362
37458
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37363
37459
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
37364
37460
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -40420,6 +40516,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40420
40516
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
40421
40517
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40422
40518
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
40519
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
40520
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
40423
40521
|
}, "strip", z.ZodTypeAny, {
|
|
40424
40522
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40425
40523
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40444,6 +40542,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40444
40542
|
isUsingOpenDrain?: boolean | undefined;
|
|
40445
40543
|
canUsePushPull?: boolean | undefined;
|
|
40446
40544
|
isUsingPushPull?: boolean | undefined;
|
|
40545
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40546
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40447
40547
|
}, {
|
|
40448
40548
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
40449
40549
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -40468,6 +40568,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40468
40568
|
isUsingOpenDrain?: boolean | undefined;
|
|
40469
40569
|
canUsePushPull?: boolean | undefined;
|
|
40470
40570
|
isUsingPushPull?: boolean | undefined;
|
|
40571
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40572
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40471
40573
|
}>>>;
|
|
40472
40574
|
mfn: z.ZodOptional<z.ZodString>;
|
|
40473
40575
|
} & {
|
|
@@ -40786,6 +40888,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40786
40888
|
pcbRotation?: number | undefined;
|
|
40787
40889
|
pcbPositionAnchor?: string | undefined;
|
|
40788
40890
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
40891
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
40789
40892
|
pcbMarginTop?: number | undefined;
|
|
40790
40893
|
pcbMarginRight?: number | undefined;
|
|
40791
40894
|
pcbMarginBottom?: number | undefined;
|
|
@@ -40847,6 +40950,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
40847
40950
|
isUsingOpenDrain?: boolean | undefined;
|
|
40848
40951
|
canUsePushPull?: boolean | undefined;
|
|
40849
40952
|
isUsingPushPull?: boolean | undefined;
|
|
40953
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
40954
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
40850
40955
|
}> | undefined;
|
|
40851
40956
|
cadModel?: string | {
|
|
40852
40957
|
stlUrl: string;
|
|
@@ -41381,6 +41486,7 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41381
41486
|
pcbRotation?: string | number | undefined;
|
|
41382
41487
|
pcbPositionAnchor?: string | undefined;
|
|
41383
41488
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
41489
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
41384
41490
|
pcbMarginTop?: string | number | undefined;
|
|
41385
41491
|
pcbMarginRight?: string | number | undefined;
|
|
41386
41492
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -41442,6 +41548,8 @@ declare const pinoutProps: z.ZodObject<{
|
|
|
41442
41548
|
isUsingOpenDrain?: boolean | undefined;
|
|
41443
41549
|
canUsePushPull?: boolean | undefined;
|
|
41444
41550
|
isUsingPushPull?: boolean | undefined;
|
|
41551
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
41552
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
41445
41553
|
}> | undefined;
|
|
41446
41554
|
cadModel?: string | {
|
|
41447
41555
|
stlUrl: string;
|
|
@@ -42003,6 +42111,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
42003
42111
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
42004
42112
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
42005
42113
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
42114
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
42006
42115
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
42007
42116
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
42008
42117
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -45064,6 +45173,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45064
45173
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
45065
45174
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45066
45175
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
45176
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
45177
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
45067
45178
|
}, "strip", z.ZodTypeAny, {
|
|
45068
45179
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45069
45180
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45088,6 +45199,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45088
45199
|
isUsingOpenDrain?: boolean | undefined;
|
|
45089
45200
|
canUsePushPull?: boolean | undefined;
|
|
45090
45201
|
isUsingPushPull?: boolean | undefined;
|
|
45202
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45203
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45091
45204
|
}, {
|
|
45092
45205
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
45093
45206
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -45112,6 +45225,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45112
45225
|
isUsingOpenDrain?: boolean | undefined;
|
|
45113
45226
|
canUsePushPull?: boolean | undefined;
|
|
45114
45227
|
isUsingPushPull?: boolean | undefined;
|
|
45228
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45229
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45115
45230
|
}>>>;
|
|
45116
45231
|
mfn: z.ZodOptional<z.ZodString>;
|
|
45117
45232
|
} & {
|
|
@@ -45419,6 +45534,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45419
45534
|
pcbRotation?: number | undefined;
|
|
45420
45535
|
pcbPositionAnchor?: string | undefined;
|
|
45421
45536
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
45537
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
45422
45538
|
pcbMarginTop?: number | undefined;
|
|
45423
45539
|
pcbMarginRight?: number | undefined;
|
|
45424
45540
|
pcbMarginBottom?: number | undefined;
|
|
@@ -45480,6 +45596,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
45480
45596
|
isUsingOpenDrain?: boolean | undefined;
|
|
45481
45597
|
canUsePushPull?: boolean | undefined;
|
|
45482
45598
|
isUsingPushPull?: boolean | undefined;
|
|
45599
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
45600
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
45483
45601
|
}> | undefined;
|
|
45484
45602
|
cadModel?: string | {
|
|
45485
45603
|
stlUrl: string;
|
|
@@ -46009,6 +46127,7 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46009
46127
|
pcbRotation?: string | number | undefined;
|
|
46010
46128
|
pcbPositionAnchor?: string | undefined;
|
|
46011
46129
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
46130
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
46012
46131
|
pcbMarginTop?: string | number | undefined;
|
|
46013
46132
|
pcbMarginRight?: string | number | undefined;
|
|
46014
46133
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -46070,6 +46189,8 @@ declare const jumperProps: z.ZodObject<{
|
|
|
46070
46189
|
isUsingOpenDrain?: boolean | undefined;
|
|
46071
46190
|
canUsePushPull?: boolean | undefined;
|
|
46072
46191
|
isUsingPushPull?: boolean | undefined;
|
|
46192
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
46193
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
46073
46194
|
}> | undefined;
|
|
46074
46195
|
cadModel?: string | {
|
|
46075
46196
|
stlUrl: string;
|
|
@@ -46603,6 +46724,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
46603
46724
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
46604
46725
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
46605
46726
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
46727
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
46606
46728
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
46607
46729
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
46608
46730
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -49664,6 +49786,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49664
49786
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
49665
49787
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49666
49788
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
49789
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
49790
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
49667
49791
|
}, "strip", z.ZodTypeAny, {
|
|
49668
49792
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49669
49793
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49688,6 +49812,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49688
49812
|
isUsingOpenDrain?: boolean | undefined;
|
|
49689
49813
|
canUsePushPull?: boolean | undefined;
|
|
49690
49814
|
isUsingPushPull?: boolean | undefined;
|
|
49815
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49816
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49691
49817
|
}, {
|
|
49692
49818
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
49693
49819
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -49712,6 +49838,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
49712
49838
|
isUsingOpenDrain?: boolean | undefined;
|
|
49713
49839
|
canUsePushPull?: boolean | undefined;
|
|
49714
49840
|
isUsingPushPull?: boolean | undefined;
|
|
49841
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
49842
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
49715
49843
|
}>>>;
|
|
49716
49844
|
mfn: z.ZodOptional<z.ZodString>;
|
|
49717
49845
|
} & {
|
|
@@ -50022,6 +50150,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50022
50150
|
pcbRotation?: number | undefined;
|
|
50023
50151
|
pcbPositionAnchor?: string | undefined;
|
|
50024
50152
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
50153
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
50025
50154
|
pcbMarginTop?: number | undefined;
|
|
50026
50155
|
pcbMarginRight?: number | undefined;
|
|
50027
50156
|
pcbMarginBottom?: number | undefined;
|
|
@@ -50083,6 +50212,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50083
50212
|
isUsingOpenDrain?: boolean | undefined;
|
|
50084
50213
|
canUsePushPull?: boolean | undefined;
|
|
50085
50214
|
isUsingPushPull?: boolean | undefined;
|
|
50215
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50216
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50086
50217
|
}> | undefined;
|
|
50087
50218
|
cadModel?: string | {
|
|
50088
50219
|
stlUrl: string;
|
|
@@ -50614,6 +50745,7 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50614
50745
|
pcbRotation?: string | number | undefined;
|
|
50615
50746
|
pcbPositionAnchor?: string | undefined;
|
|
50616
50747
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
50748
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
50617
50749
|
pcbMarginTop?: string | number | undefined;
|
|
50618
50750
|
pcbMarginRight?: string | number | undefined;
|
|
50619
50751
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -50675,6 +50807,8 @@ declare const solderjumperProps: z.ZodObject<{
|
|
|
50675
50807
|
isUsingOpenDrain?: boolean | undefined;
|
|
50676
50808
|
canUsePushPull?: boolean | undefined;
|
|
50677
50809
|
isUsingPushPull?: boolean | undefined;
|
|
50810
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
50811
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
50678
50812
|
}> | undefined;
|
|
50679
50813
|
cadModel?: string | {
|
|
50680
50814
|
stlUrl: string;
|
|
@@ -51219,6 +51353,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
51219
51353
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51220
51354
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
51221
51355
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
51356
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
51222
51357
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51223
51358
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
51224
51359
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -54280,6 +54415,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54280
54415
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
54281
54416
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54282
54417
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
54418
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
54419
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
54283
54420
|
}, "strip", z.ZodTypeAny, {
|
|
54284
54421
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54285
54422
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54304,6 +54441,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54304
54441
|
isUsingOpenDrain?: boolean | undefined;
|
|
54305
54442
|
canUsePushPull?: boolean | undefined;
|
|
54306
54443
|
isUsingPushPull?: boolean | undefined;
|
|
54444
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54445
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54307
54446
|
}, {
|
|
54308
54447
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
54309
54448
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -54328,6 +54467,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54328
54467
|
isUsingOpenDrain?: boolean | undefined;
|
|
54329
54468
|
canUsePushPull?: boolean | undefined;
|
|
54330
54469
|
isUsingPushPull?: boolean | undefined;
|
|
54470
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54471
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54331
54472
|
}>>>;
|
|
54332
54473
|
mfn: z.ZodOptional<z.ZodString>;
|
|
54333
54474
|
} & {
|
|
@@ -54509,6 +54650,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54509
54650
|
pcbRotation?: number | undefined;
|
|
54510
54651
|
pcbPositionAnchor?: string | undefined;
|
|
54511
54652
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
54653
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
54512
54654
|
pcbMarginTop?: number | undefined;
|
|
54513
54655
|
pcbMarginRight?: number | undefined;
|
|
54514
54656
|
pcbMarginBottom?: number | undefined;
|
|
@@ -54570,6 +54712,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
54570
54712
|
isUsingOpenDrain?: boolean | undefined;
|
|
54571
54713
|
canUsePushPull?: boolean | undefined;
|
|
54572
54714
|
isUsingPushPull?: boolean | undefined;
|
|
54715
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
54716
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
54573
54717
|
}> | undefined;
|
|
54574
54718
|
cadModel?: string | {
|
|
54575
54719
|
stlUrl: string;
|
|
@@ -55071,6 +55215,7 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55071
55215
|
pcbRotation?: string | number | undefined;
|
|
55072
55216
|
pcbPositionAnchor?: string | undefined;
|
|
55073
55217
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
55218
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
55074
55219
|
pcbMarginTop?: string | number | undefined;
|
|
55075
55220
|
pcbMarginRight?: string | number | undefined;
|
|
55076
55221
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -55132,6 +55277,8 @@ declare const connectorProps: z.ZodObject<{
|
|
|
55132
55277
|
isUsingOpenDrain?: boolean | undefined;
|
|
55133
55278
|
canUsePushPull?: boolean | undefined;
|
|
55134
55279
|
isUsingPushPull?: boolean | undefined;
|
|
55280
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
55281
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
55135
55282
|
}> | undefined;
|
|
55136
55283
|
cadModel?: string | {
|
|
55137
55284
|
stlUrl: string;
|
|
@@ -55636,6 +55783,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
55636
55783
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55637
55784
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
55638
55785
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
55786
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
55639
55787
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55640
55788
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
55641
55789
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -58699,6 +58847,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58699
58847
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
58700
58848
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58701
58849
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
58850
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
58851
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
58702
58852
|
}, "strip", z.ZodTypeAny, {
|
|
58703
58853
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58704
58854
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58723,6 +58873,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58723
58873
|
isUsingOpenDrain?: boolean | undefined;
|
|
58724
58874
|
canUsePushPull?: boolean | undefined;
|
|
58725
58875
|
isUsingPushPull?: boolean | undefined;
|
|
58876
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58877
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58726
58878
|
}, {
|
|
58727
58879
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
58728
58880
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -58747,6 +58899,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58747
58899
|
isUsingOpenDrain?: boolean | undefined;
|
|
58748
58900
|
canUsePushPull?: boolean | undefined;
|
|
58749
58901
|
isUsingPushPull?: boolean | undefined;
|
|
58902
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58903
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58750
58904
|
}>>>;
|
|
58751
58905
|
mfn: z.ZodOptional<z.ZodString>;
|
|
58752
58906
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -58772,6 +58926,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58772
58926
|
pcbRotation?: number | undefined;
|
|
58773
58927
|
pcbPositionAnchor?: string | undefined;
|
|
58774
58928
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
58929
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
58775
58930
|
pcbMarginTop?: number | undefined;
|
|
58776
58931
|
pcbMarginRight?: number | undefined;
|
|
58777
58932
|
pcbMarginBottom?: number | undefined;
|
|
@@ -58833,6 +58988,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
58833
58988
|
isUsingOpenDrain?: boolean | undefined;
|
|
58834
58989
|
canUsePushPull?: boolean | undefined;
|
|
58835
58990
|
isUsingPushPull?: boolean | undefined;
|
|
58991
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
58992
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
58836
58993
|
}> | undefined;
|
|
58837
58994
|
cadModel?: string | {
|
|
58838
58995
|
stlUrl: string;
|
|
@@ -59294,6 +59451,7 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59294
59451
|
pcbRotation?: string | number | undefined;
|
|
59295
59452
|
pcbPositionAnchor?: string | undefined;
|
|
59296
59453
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
59454
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
59297
59455
|
pcbMarginTop?: string | number | undefined;
|
|
59298
59456
|
pcbMarginRight?: string | number | undefined;
|
|
59299
59457
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -59355,6 +59513,8 @@ declare const interconnectProps: z.ZodObject<{
|
|
|
59355
59513
|
isUsingOpenDrain?: boolean | undefined;
|
|
59356
59514
|
canUsePushPull?: boolean | undefined;
|
|
59357
59515
|
isUsingPushPull?: boolean | undefined;
|
|
59516
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
59517
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
59358
59518
|
}> | undefined;
|
|
59359
59519
|
cadModel?: string | {
|
|
59360
59520
|
stlUrl: string;
|
|
@@ -59837,6 +59997,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
59837
59997
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
59838
59998
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
59839
59999
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
60000
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
59840
60001
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
59841
60002
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
59842
60003
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -62900,6 +63061,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62900
63061
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
62901
63062
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
62902
63063
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
63064
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
63065
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
62903
63066
|
}, "strip", z.ZodTypeAny, {
|
|
62904
63067
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62905
63068
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -62924,6 +63087,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62924
63087
|
isUsingOpenDrain?: boolean | undefined;
|
|
62925
63088
|
canUsePushPull?: boolean | undefined;
|
|
62926
63089
|
isUsingPushPull?: boolean | undefined;
|
|
63090
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63091
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
62927
63092
|
}, {
|
|
62928
63093
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
62929
63094
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -62948,6 +63113,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62948
63113
|
isUsingOpenDrain?: boolean | undefined;
|
|
62949
63114
|
canUsePushPull?: boolean | undefined;
|
|
62950
63115
|
isUsingPushPull?: boolean | undefined;
|
|
63116
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63117
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
62951
63118
|
}>>>;
|
|
62952
63119
|
mfn: z.ZodOptional<z.ZodString>;
|
|
62953
63120
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -62976,6 +63143,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
62976
63143
|
pcbRotation?: number | undefined;
|
|
62977
63144
|
pcbPositionAnchor?: string | undefined;
|
|
62978
63145
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
63146
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
62979
63147
|
pcbMarginTop?: number | undefined;
|
|
62980
63148
|
pcbMarginRight?: number | undefined;
|
|
62981
63149
|
pcbMarginBottom?: number | undefined;
|
|
@@ -63037,6 +63205,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63037
63205
|
isUsingOpenDrain?: boolean | undefined;
|
|
63038
63206
|
canUsePushPull?: boolean | undefined;
|
|
63039
63207
|
isUsingPushPull?: boolean | undefined;
|
|
63208
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63209
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63040
63210
|
}> | undefined;
|
|
63041
63211
|
cadModel?: string | {
|
|
63042
63212
|
stlUrl: string;
|
|
@@ -63500,6 +63670,7 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63500
63670
|
pcbRotation?: string | number | undefined;
|
|
63501
63671
|
pcbPositionAnchor?: string | undefined;
|
|
63502
63672
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
63673
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
63503
63674
|
pcbMarginTop?: string | number | undefined;
|
|
63504
63675
|
pcbMarginRight?: string | number | undefined;
|
|
63505
63676
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -63561,6 +63732,8 @@ declare const fuseProps: z.ZodObject<{
|
|
|
63561
63732
|
isUsingOpenDrain?: boolean | undefined;
|
|
63562
63733
|
canUsePushPull?: boolean | undefined;
|
|
63563
63734
|
isUsingPushPull?: boolean | undefined;
|
|
63735
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
63736
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
63564
63737
|
}> | undefined;
|
|
63565
63738
|
cadModel?: string | {
|
|
63566
63739
|
stlUrl: string;
|
|
@@ -64112,6 +64285,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64112
64285
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64113
64286
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64114
64287
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64288
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64115
64289
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64116
64290
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64117
64291
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64189,6 +64363,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64189
64363
|
pcbOffsetY?: number | undefined;
|
|
64190
64364
|
pcbPositionAnchor?: string | undefined;
|
|
64191
64365
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64366
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64192
64367
|
pcbMarginTop?: number | undefined;
|
|
64193
64368
|
pcbMarginRight?: number | undefined;
|
|
64194
64369
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64228,6 +64403,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64228
64403
|
pcbOffsetY?: string | number | undefined;
|
|
64229
64404
|
pcbPositionAnchor?: string | undefined;
|
|
64230
64405
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64406
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64231
64407
|
pcbMarginTop?: string | number | undefined;
|
|
64232
64408
|
pcbMarginRight?: string | number | undefined;
|
|
64233
64409
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64264,6 +64440,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64264
64440
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64265
64441
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64266
64442
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64443
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64267
64444
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64268
64445
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64269
64446
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64345,6 +64522,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64345
64522
|
pcbRotation?: number | undefined;
|
|
64346
64523
|
pcbPositionAnchor?: string | undefined;
|
|
64347
64524
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64525
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64348
64526
|
pcbMarginTop?: number | undefined;
|
|
64349
64527
|
pcbMarginRight?: number | undefined;
|
|
64350
64528
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64390,6 +64568,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64390
64568
|
pcbRotation?: string | number | undefined;
|
|
64391
64569
|
pcbPositionAnchor?: string | undefined;
|
|
64392
64570
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64571
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64393
64572
|
pcbMarginTop?: string | number | undefined;
|
|
64394
64573
|
pcbMarginRight?: string | number | undefined;
|
|
64395
64574
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64427,6 +64606,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64427
64606
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64428
64607
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64429
64608
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64609
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64430
64610
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64431
64611
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64432
64612
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64511,6 +64691,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64511
64691
|
pcbRotation?: number | undefined;
|
|
64512
64692
|
pcbPositionAnchor?: string | undefined;
|
|
64513
64693
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64694
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64514
64695
|
pcbMarginTop?: number | undefined;
|
|
64515
64696
|
pcbMarginRight?: number | undefined;
|
|
64516
64697
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64559,6 +64740,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64559
64740
|
pcbRotation?: string | number | undefined;
|
|
64560
64741
|
pcbPositionAnchor?: string | undefined;
|
|
64561
64742
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64743
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64562
64744
|
pcbMarginTop?: string | number | undefined;
|
|
64563
64745
|
pcbMarginRight?: string | number | undefined;
|
|
64564
64746
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64599,6 +64781,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64599
64781
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64600
64782
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64601
64783
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64784
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64602
64785
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64603
64786
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64604
64787
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64683,6 +64866,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64683
64866
|
pcbRotation?: number | undefined;
|
|
64684
64867
|
pcbPositionAnchor?: string | undefined;
|
|
64685
64868
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64869
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64686
64870
|
pcbMarginTop?: number | undefined;
|
|
64687
64871
|
pcbMarginRight?: number | undefined;
|
|
64688
64872
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64728,6 +64912,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64728
64912
|
pcbRotation?: string | number | undefined;
|
|
64729
64913
|
pcbPositionAnchor?: string | undefined;
|
|
64730
64914
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
64915
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64731
64916
|
pcbMarginTop?: string | number | undefined;
|
|
64732
64917
|
pcbMarginRight?: string | number | undefined;
|
|
64733
64918
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64768,6 +64953,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64768
64953
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64769
64954
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64770
64955
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
64956
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64771
64957
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64772
64958
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64773
64959
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -64853,6 +65039,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64853
65039
|
pcbRotation?: number | undefined;
|
|
64854
65040
|
pcbPositionAnchor?: string | undefined;
|
|
64855
65041
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65042
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64856
65043
|
pcbMarginTop?: number | undefined;
|
|
64857
65044
|
pcbMarginRight?: number | undefined;
|
|
64858
65045
|
pcbMarginBottom?: number | undefined;
|
|
@@ -64898,6 +65085,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64898
65085
|
pcbRotation?: string | number | undefined;
|
|
64899
65086
|
pcbPositionAnchor?: string | undefined;
|
|
64900
65087
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65088
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
64901
65089
|
pcbMarginTop?: string | number | undefined;
|
|
64902
65090
|
pcbMarginRight?: string | number | undefined;
|
|
64903
65091
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -64937,6 +65125,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
64937
65125
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
64938
65126
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
64939
65127
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
65128
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
64940
65129
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
64941
65130
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
64942
65131
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -65032,6 +65221,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65032
65221
|
pcbOffsetY?: number | undefined;
|
|
65033
65222
|
pcbPositionAnchor?: string | undefined;
|
|
65034
65223
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65224
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65035
65225
|
pcbMarginTop?: number | undefined;
|
|
65036
65226
|
pcbMarginRight?: number | undefined;
|
|
65037
65227
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65078,6 +65268,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65078
65268
|
pcbOffsetY?: string | number | undefined;
|
|
65079
65269
|
pcbPositionAnchor?: string | undefined;
|
|
65080
65270
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65271
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65081
65272
|
pcbMarginTop?: string | number | undefined;
|
|
65082
65273
|
pcbMarginRight?: string | number | undefined;
|
|
65083
65274
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65119,6 +65310,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65119
65310
|
pcbOffsetY?: number | undefined;
|
|
65120
65311
|
pcbPositionAnchor?: string | undefined;
|
|
65121
65312
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65313
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65122
65314
|
pcbMarginTop?: number | undefined;
|
|
65123
65315
|
pcbMarginRight?: number | undefined;
|
|
65124
65316
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65159,6 +65351,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65159
65351
|
pcbRotation?: number | undefined;
|
|
65160
65352
|
pcbPositionAnchor?: string | undefined;
|
|
65161
65353
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65354
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65162
65355
|
pcbMarginTop?: number | undefined;
|
|
65163
65356
|
pcbMarginRight?: number | undefined;
|
|
65164
65357
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65202,6 +65395,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65202
65395
|
pcbRotation?: number | undefined;
|
|
65203
65396
|
pcbPositionAnchor?: string | undefined;
|
|
65204
65397
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65398
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65205
65399
|
pcbMarginTop?: number | undefined;
|
|
65206
65400
|
pcbMarginRight?: number | undefined;
|
|
65207
65401
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65249,6 +65443,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65249
65443
|
pcbRotation?: number | undefined;
|
|
65250
65444
|
pcbPositionAnchor?: string | undefined;
|
|
65251
65445
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65446
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65252
65447
|
pcbMarginTop?: number | undefined;
|
|
65253
65448
|
pcbMarginRight?: number | undefined;
|
|
65254
65449
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65295,6 +65490,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65295
65490
|
pcbRotation?: number | undefined;
|
|
65296
65491
|
pcbPositionAnchor?: string | undefined;
|
|
65297
65492
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65493
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65298
65494
|
pcbMarginTop?: number | undefined;
|
|
65299
65495
|
pcbMarginRight?: number | undefined;
|
|
65300
65496
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65342,6 +65538,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65342
65538
|
pcbOffsetY?: number | undefined;
|
|
65343
65539
|
pcbPositionAnchor?: string | undefined;
|
|
65344
65540
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65541
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65345
65542
|
pcbMarginTop?: number | undefined;
|
|
65346
65543
|
pcbMarginRight?: number | undefined;
|
|
65347
65544
|
pcbMarginBottom?: number | undefined;
|
|
@@ -65383,6 +65580,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65383
65580
|
pcbOffsetY?: string | number | undefined;
|
|
65384
65581
|
pcbPositionAnchor?: string | undefined;
|
|
65385
65582
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65583
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65386
65584
|
pcbMarginTop?: string | number | undefined;
|
|
65387
65585
|
pcbMarginRight?: string | number | undefined;
|
|
65388
65586
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65425,6 +65623,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65425
65623
|
pcbRotation?: string | number | undefined;
|
|
65426
65624
|
pcbPositionAnchor?: string | undefined;
|
|
65427
65625
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65626
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65428
65627
|
pcbMarginTop?: string | number | undefined;
|
|
65429
65628
|
pcbMarginRight?: string | number | undefined;
|
|
65430
65629
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65468,6 +65667,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65468
65667
|
pcbRotation?: string | number | undefined;
|
|
65469
65668
|
pcbPositionAnchor?: string | undefined;
|
|
65470
65669
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65670
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65471
65671
|
pcbMarginTop?: string | number | undefined;
|
|
65472
65672
|
pcbMarginRight?: string | number | undefined;
|
|
65473
65673
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65513,6 +65713,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65513
65713
|
pcbRotation?: string | number | undefined;
|
|
65514
65714
|
pcbPositionAnchor?: string | undefined;
|
|
65515
65715
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65716
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65516
65717
|
pcbMarginTop?: string | number | undefined;
|
|
65517
65718
|
pcbMarginRight?: string | number | undefined;
|
|
65518
65719
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65559,6 +65760,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65559
65760
|
pcbRotation?: string | number | undefined;
|
|
65560
65761
|
pcbPositionAnchor?: string | undefined;
|
|
65561
65762
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65763
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65562
65764
|
pcbMarginTop?: string | number | undefined;
|
|
65563
65765
|
pcbMarginRight?: string | number | undefined;
|
|
65564
65766
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65606,6 +65808,7 @@ declare const platedHoleProps: z.ZodEffects<z.ZodDiscriminatedUnion<"shape", [z.
|
|
|
65606
65808
|
pcbOffsetY?: string | number | undefined;
|
|
65607
65809
|
pcbPositionAnchor?: string | undefined;
|
|
65608
65810
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
65811
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
65609
65812
|
pcbMarginTop?: string | number | undefined;
|
|
65610
65813
|
pcbMarginRight?: string | number | undefined;
|
|
65611
65814
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -65659,6 +65862,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
65659
65862
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
65660
65863
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
65661
65864
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
65865
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
65662
65866
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
65663
65867
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
65664
65868
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -68722,6 +68926,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68722
68926
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
68723
68927
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68724
68928
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
68929
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
68930
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
68725
68931
|
}, "strip", z.ZodTypeAny, {
|
|
68726
68932
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68727
68933
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68746,6 +68952,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68746
68952
|
isUsingOpenDrain?: boolean | undefined;
|
|
68747
68953
|
canUsePushPull?: boolean | undefined;
|
|
68748
68954
|
isUsingPushPull?: boolean | undefined;
|
|
68955
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68956
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68749
68957
|
}, {
|
|
68750
68958
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
68751
68959
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -68770,6 +68978,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68770
68978
|
isUsingOpenDrain?: boolean | undefined;
|
|
68771
68979
|
canUsePushPull?: boolean | undefined;
|
|
68772
68980
|
isUsingPushPull?: boolean | undefined;
|
|
68981
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
68982
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68773
68983
|
}>>>;
|
|
68774
68984
|
mfn: z.ZodOptional<z.ZodString>;
|
|
68775
68985
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -68802,6 +69012,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68802
69012
|
pcbRotation?: number | undefined;
|
|
68803
69013
|
pcbPositionAnchor?: string | undefined;
|
|
68804
69014
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
69015
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
68805
69016
|
pcbMarginTop?: number | undefined;
|
|
68806
69017
|
pcbMarginRight?: number | undefined;
|
|
68807
69018
|
pcbMarginBottom?: number | undefined;
|
|
@@ -68863,6 +69074,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
68863
69074
|
isUsingOpenDrain?: boolean | undefined;
|
|
68864
69075
|
canUsePushPull?: boolean | undefined;
|
|
68865
69076
|
isUsingPushPull?: boolean | undefined;
|
|
69077
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69078
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
68866
69079
|
}> | undefined;
|
|
68867
69080
|
cadModel?: string | {
|
|
68868
69081
|
stlUrl: string;
|
|
@@ -69330,6 +69543,7 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69330
69543
|
pcbRotation?: string | number | undefined;
|
|
69331
69544
|
pcbPositionAnchor?: string | undefined;
|
|
69332
69545
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
69546
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
69333
69547
|
pcbMarginTop?: string | number | undefined;
|
|
69334
69548
|
pcbMarginRight?: string | number | undefined;
|
|
69335
69549
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -69391,6 +69605,8 @@ declare const resistorProps: z.ZodObject<{
|
|
|
69391
69605
|
isUsingOpenDrain?: boolean | undefined;
|
|
69392
69606
|
canUsePushPull?: boolean | undefined;
|
|
69393
69607
|
isUsingPushPull?: boolean | undefined;
|
|
69608
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
69609
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
69394
69610
|
}> | undefined;
|
|
69395
69611
|
cadModel?: string | {
|
|
69396
69612
|
stlUrl: string;
|
|
@@ -69860,6 +70076,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
69860
70076
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
69861
70077
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
69862
70078
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
70079
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
69863
70080
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
69864
70081
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
69865
70082
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -72923,6 +73140,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72923
73140
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
72924
73141
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
72925
73142
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
73143
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
73144
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
72926
73145
|
}, "strip", z.ZodTypeAny, {
|
|
72927
73146
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72928
73147
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -72947,6 +73166,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72947
73166
|
isUsingOpenDrain?: boolean | undefined;
|
|
72948
73167
|
canUsePushPull?: boolean | undefined;
|
|
72949
73168
|
isUsingPushPull?: boolean | undefined;
|
|
73169
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73170
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
72950
73171
|
}, {
|
|
72951
73172
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
72952
73173
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -72971,6 +73192,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72971
73192
|
isUsingOpenDrain?: boolean | undefined;
|
|
72972
73193
|
canUsePushPull?: boolean | undefined;
|
|
72973
73194
|
isUsingPushPull?: boolean | undefined;
|
|
73195
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73196
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
72974
73197
|
}>>>;
|
|
72975
73198
|
mfn: z.ZodOptional<z.ZodString>;
|
|
72976
73199
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -72997,6 +73220,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
72997
73220
|
pcbRotation?: number | undefined;
|
|
72998
73221
|
pcbPositionAnchor?: string | undefined;
|
|
72999
73222
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
73223
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
73000
73224
|
pcbMarginTop?: number | undefined;
|
|
73001
73225
|
pcbMarginRight?: number | undefined;
|
|
73002
73226
|
pcbMarginBottom?: number | undefined;
|
|
@@ -73058,6 +73282,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73058
73282
|
isUsingOpenDrain?: boolean | undefined;
|
|
73059
73283
|
canUsePushPull?: boolean | undefined;
|
|
73060
73284
|
isUsingPushPull?: boolean | undefined;
|
|
73285
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73286
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73061
73287
|
}> | undefined;
|
|
73062
73288
|
cadModel?: string | {
|
|
73063
73289
|
stlUrl: string;
|
|
@@ -73519,6 +73745,7 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73519
73745
|
pcbRotation?: string | number | undefined;
|
|
73520
73746
|
pcbPositionAnchor?: string | undefined;
|
|
73521
73747
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
73748
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
73522
73749
|
pcbMarginTop?: string | number | undefined;
|
|
73523
73750
|
pcbMarginRight?: string | number | undefined;
|
|
73524
73751
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -73580,6 +73807,8 @@ declare const potentiometerProps: z.ZodObject<{
|
|
|
73580
73807
|
isUsingOpenDrain?: boolean | undefined;
|
|
73581
73808
|
canUsePushPull?: boolean | undefined;
|
|
73582
73809
|
isUsingPushPull?: boolean | undefined;
|
|
73810
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
73811
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
73583
73812
|
}> | undefined;
|
|
73584
73813
|
cadModel?: string | {
|
|
73585
73814
|
stlUrl: string;
|
|
@@ -74046,6 +74275,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
74046
74275
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
74047
74276
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
74048
74277
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
74278
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
74049
74279
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
74050
74280
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
74051
74281
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -77107,6 +77337,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77107
77337
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
77108
77338
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77109
77339
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
77340
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
77341
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
77110
77342
|
}, "strip", z.ZodTypeAny, {
|
|
77111
77343
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77112
77344
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77131,6 +77363,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77131
77363
|
isUsingOpenDrain?: boolean | undefined;
|
|
77132
77364
|
canUsePushPull?: boolean | undefined;
|
|
77133
77365
|
isUsingPushPull?: boolean | undefined;
|
|
77366
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77367
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77134
77368
|
}, {
|
|
77135
77369
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
77136
77370
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -77155,6 +77389,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77155
77389
|
isUsingOpenDrain?: boolean | undefined;
|
|
77156
77390
|
canUsePushPull?: boolean | undefined;
|
|
77157
77391
|
isUsingPushPull?: boolean | undefined;
|
|
77392
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77393
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77158
77394
|
}>>>;
|
|
77159
77395
|
mfn: z.ZodOptional<z.ZodString>;
|
|
77160
77396
|
} & {
|
|
@@ -77185,6 +77421,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77185
77421
|
pcbRotation?: number | undefined;
|
|
77186
77422
|
pcbPositionAnchor?: string | undefined;
|
|
77187
77423
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
77424
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
77188
77425
|
pcbMarginTop?: number | undefined;
|
|
77189
77426
|
pcbMarginRight?: number | undefined;
|
|
77190
77427
|
pcbMarginBottom?: number | undefined;
|
|
@@ -77246,6 +77483,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77246
77483
|
isUsingOpenDrain?: boolean | undefined;
|
|
77247
77484
|
canUsePushPull?: boolean | undefined;
|
|
77248
77485
|
isUsingPushPull?: boolean | undefined;
|
|
77486
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
77487
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77249
77488
|
}> | undefined;
|
|
77250
77489
|
cadModel?: string | {
|
|
77251
77490
|
stlUrl: string;
|
|
@@ -77710,6 +77949,7 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77710
77949
|
pcbRotation?: string | number | undefined;
|
|
77711
77950
|
pcbPositionAnchor?: string | undefined;
|
|
77712
77951
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
77952
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
77713
77953
|
pcbMarginTop?: string | number | undefined;
|
|
77714
77954
|
pcbMarginRight?: string | number | undefined;
|
|
77715
77955
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -77771,6 +78011,8 @@ declare const crystalProps: z.ZodObject<{
|
|
|
77771
78011
|
isUsingOpenDrain?: boolean | undefined;
|
|
77772
78012
|
canUsePushPull?: boolean | undefined;
|
|
77773
78013
|
isUsingPushPull?: boolean | undefined;
|
|
78014
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
78015
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
77774
78016
|
}> | undefined;
|
|
77775
78017
|
cadModel?: string | {
|
|
77776
78018
|
stlUrl: string;
|
|
@@ -78233,6 +78475,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
78233
78475
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
78234
78476
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
78235
78477
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
78478
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
78236
78479
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
78237
78480
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
78238
78481
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -81296,6 +81539,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81296
81539
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
81297
81540
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81298
81541
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
81542
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
81543
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
81299
81544
|
}, "strip", z.ZodTypeAny, {
|
|
81300
81545
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81301
81546
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81320,6 +81565,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81320
81565
|
isUsingOpenDrain?: boolean | undefined;
|
|
81321
81566
|
canUsePushPull?: boolean | undefined;
|
|
81322
81567
|
isUsingPushPull?: boolean | undefined;
|
|
81568
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81569
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81323
81570
|
}, {
|
|
81324
81571
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
81325
81572
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -81344,6 +81591,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81344
81591
|
isUsingOpenDrain?: boolean | undefined;
|
|
81345
81592
|
canUsePushPull?: boolean | undefined;
|
|
81346
81593
|
isUsingPushPull?: boolean | undefined;
|
|
81594
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81595
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81347
81596
|
}>>>;
|
|
81348
81597
|
mfn: z.ZodOptional<z.ZodString>;
|
|
81349
81598
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -81371,6 +81620,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81371
81620
|
pcbRotation?: number | undefined;
|
|
81372
81621
|
pcbPositionAnchor?: string | undefined;
|
|
81373
81622
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
81623
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
81374
81624
|
pcbMarginTop?: number | undefined;
|
|
81375
81625
|
pcbMarginRight?: number | undefined;
|
|
81376
81626
|
pcbMarginBottom?: number | undefined;
|
|
@@ -81432,6 +81682,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81432
81682
|
isUsingOpenDrain?: boolean | undefined;
|
|
81433
81683
|
canUsePushPull?: boolean | undefined;
|
|
81434
81684
|
isUsingPushPull?: boolean | undefined;
|
|
81685
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
81686
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81435
81687
|
}> | undefined;
|
|
81436
81688
|
cadModel?: string | {
|
|
81437
81689
|
stlUrl: string;
|
|
@@ -81893,6 +82145,7 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81893
82145
|
pcbRotation?: string | number | undefined;
|
|
81894
82146
|
pcbPositionAnchor?: string | undefined;
|
|
81895
82147
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
82148
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
81896
82149
|
pcbMarginTop?: string | number | undefined;
|
|
81897
82150
|
pcbMarginRight?: string | number | undefined;
|
|
81898
82151
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -81954,6 +82207,8 @@ declare const resonatorProps: z.ZodObject<{
|
|
|
81954
82207
|
isUsingOpenDrain?: boolean | undefined;
|
|
81955
82208
|
canUsePushPull?: boolean | undefined;
|
|
81956
82209
|
isUsingPushPull?: boolean | undefined;
|
|
82210
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
82211
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
81957
82212
|
}> | undefined;
|
|
81958
82213
|
cadModel?: string | {
|
|
81959
82214
|
stlUrl: string;
|
|
@@ -82419,6 +82674,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
82419
82674
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82420
82675
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
82421
82676
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
82677
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
82422
82678
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82423
82679
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
82424
82680
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -83217,6 +83473,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
83217
83473
|
pcbRotation?: number | undefined;
|
|
83218
83474
|
pcbPositionAnchor?: string | undefined;
|
|
83219
83475
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
83476
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
83220
83477
|
pcbMarginTop?: number | undefined;
|
|
83221
83478
|
pcbMarginRight?: number | undefined;
|
|
83222
83479
|
pcbMarginBottom?: number | undefined;
|
|
@@ -83551,6 +83808,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
83551
83808
|
pcbRotation?: string | number | undefined;
|
|
83552
83809
|
pcbPositionAnchor?: string | undefined;
|
|
83553
83810
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
83811
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
83554
83812
|
pcbMarginTop?: string | number | undefined;
|
|
83555
83813
|
pcbMarginRight?: string | number | undefined;
|
|
83556
83814
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -83899,6 +84157,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
83899
84157
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
83900
84158
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
83901
84159
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
84160
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
83902
84161
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
83903
84162
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
83904
84163
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -86962,6 +87221,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86962
87221
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
86963
87222
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
86964
87223
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
87224
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
87225
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
86965
87226
|
}, "strip", z.ZodTypeAny, {
|
|
86966
87227
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
86967
87228
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -86986,6 +87247,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
86986
87247
|
isUsingOpenDrain?: boolean | undefined;
|
|
86987
87248
|
canUsePushPull?: boolean | undefined;
|
|
86988
87249
|
isUsingPushPull?: boolean | undefined;
|
|
87250
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87251
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
86989
87252
|
}, {
|
|
86990
87253
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
86991
87254
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -87010,6 +87273,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87010
87273
|
isUsingOpenDrain?: boolean | undefined;
|
|
87011
87274
|
canUsePushPull?: boolean | undefined;
|
|
87012
87275
|
isUsingPushPull?: boolean | undefined;
|
|
87276
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87277
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87013
87278
|
}>>>;
|
|
87014
87279
|
mfn: z.ZodOptional<z.ZodString>;
|
|
87015
87280
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -87047,6 +87312,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87047
87312
|
pcbRotation?: number | undefined;
|
|
87048
87313
|
pcbPositionAnchor?: string | undefined;
|
|
87049
87314
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
87315
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
87050
87316
|
pcbMarginTop?: number | undefined;
|
|
87051
87317
|
pcbMarginRight?: number | undefined;
|
|
87052
87318
|
pcbMarginBottom?: number | undefined;
|
|
@@ -87108,6 +87374,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87108
87374
|
isUsingOpenDrain?: boolean | undefined;
|
|
87109
87375
|
canUsePushPull?: boolean | undefined;
|
|
87110
87376
|
isUsingPushPull?: boolean | undefined;
|
|
87377
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87378
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87111
87379
|
}> | undefined;
|
|
87112
87380
|
cadModel?: string | {
|
|
87113
87381
|
stlUrl: string;
|
|
@@ -87576,6 +87844,7 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87576
87844
|
pcbRotation?: string | number | undefined;
|
|
87577
87845
|
pcbPositionAnchor?: string | undefined;
|
|
87578
87846
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
87847
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
87579
87848
|
pcbMarginTop?: string | number | undefined;
|
|
87580
87849
|
pcbMarginRight?: string | number | undefined;
|
|
87581
87850
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -87637,6 +87906,8 @@ declare const capacitorProps: z.ZodObject<{
|
|
|
87637
87906
|
isUsingOpenDrain?: boolean | undefined;
|
|
87638
87907
|
canUsePushPull?: boolean | undefined;
|
|
87639
87908
|
isUsingPushPull?: boolean | undefined;
|
|
87909
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
87910
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
87640
87911
|
}> | undefined;
|
|
87641
87912
|
cadModel?: string | {
|
|
87642
87913
|
stlUrl: string;
|
|
@@ -88132,6 +88403,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
88132
88403
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88133
88404
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
88134
88405
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
88406
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
88135
88407
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88136
88408
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
88137
88409
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -91195,6 +91467,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91195
91467
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
91196
91468
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91197
91469
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
91470
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
91471
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
91198
91472
|
}, "strip", z.ZodTypeAny, {
|
|
91199
91473
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91200
91474
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91219,6 +91493,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91219
91493
|
isUsingOpenDrain?: boolean | undefined;
|
|
91220
91494
|
canUsePushPull?: boolean | undefined;
|
|
91221
91495
|
isUsingPushPull?: boolean | undefined;
|
|
91496
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91497
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91222
91498
|
}, {
|
|
91223
91499
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
91224
91500
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -91243,6 +91519,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91243
91519
|
isUsingOpenDrain?: boolean | undefined;
|
|
91244
91520
|
canUsePushPull?: boolean | undefined;
|
|
91245
91521
|
isUsingPushPull?: boolean | undefined;
|
|
91522
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91523
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91246
91524
|
}>>>;
|
|
91247
91525
|
mfn: z.ZodOptional<z.ZodString>;
|
|
91248
91526
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -91267,6 +91545,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91267
91545
|
pcbRotation?: number | undefined;
|
|
91268
91546
|
pcbPositionAnchor?: string | undefined;
|
|
91269
91547
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
91548
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
91270
91549
|
pcbMarginTop?: number | undefined;
|
|
91271
91550
|
pcbMarginRight?: number | undefined;
|
|
91272
91551
|
pcbMarginBottom?: number | undefined;
|
|
@@ -91328,6 +91607,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91328
91607
|
isUsingOpenDrain?: boolean | undefined;
|
|
91329
91608
|
canUsePushPull?: boolean | undefined;
|
|
91330
91609
|
isUsingPushPull?: boolean | undefined;
|
|
91610
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
91611
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91331
91612
|
}> | undefined;
|
|
91332
91613
|
cadModel?: string | {
|
|
91333
91614
|
stlUrl: string;
|
|
@@ -91788,6 +92069,7 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91788
92069
|
pcbRotation?: string | number | undefined;
|
|
91789
92070
|
pcbPositionAnchor?: string | undefined;
|
|
91790
92071
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92072
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
91791
92073
|
pcbMarginTop?: string | number | undefined;
|
|
91792
92074
|
pcbMarginRight?: string | number | undefined;
|
|
91793
92075
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -91849,6 +92131,8 @@ declare const fiducialProps: z.ZodObject<{
|
|
|
91849
92131
|
isUsingOpenDrain?: boolean | undefined;
|
|
91850
92132
|
canUsePushPull?: boolean | undefined;
|
|
91851
92133
|
isUsingPushPull?: boolean | undefined;
|
|
92134
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
92135
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
91852
92136
|
}> | undefined;
|
|
91853
92137
|
cadModel?: string | {
|
|
91854
92138
|
stlUrl: string;
|
|
@@ -92526,6 +92810,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
92526
92810
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92527
92811
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92528
92812
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
92813
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92529
92814
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92530
92815
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92531
92816
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92598,6 +92883,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
92598
92883
|
pcbOffsetY?: number | undefined;
|
|
92599
92884
|
pcbPositionAnchor?: string | undefined;
|
|
92600
92885
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92886
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92601
92887
|
pcbMarginTop?: number | undefined;
|
|
92602
92888
|
pcbMarginRight?: number | undefined;
|
|
92603
92889
|
pcbMarginBottom?: number | undefined;
|
|
@@ -92632,6 +92918,7 @@ declare const rectCutoutProps: z.ZodObject<Omit<{
|
|
|
92632
92918
|
pcbOffsetY?: string | number | undefined;
|
|
92633
92919
|
pcbPositionAnchor?: string | undefined;
|
|
92634
92920
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
92921
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92635
92922
|
pcbMarginTop?: string | number | undefined;
|
|
92636
92923
|
pcbMarginRight?: string | number | undefined;
|
|
92637
92924
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92669,6 +92956,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
92669
92956
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92670
92957
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92671
92958
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
92959
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92672
92960
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92673
92961
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92674
92962
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92739,6 +93027,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
92739
93027
|
pcbOffsetY?: number | undefined;
|
|
92740
93028
|
pcbPositionAnchor?: string | undefined;
|
|
92741
93029
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93030
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92742
93031
|
pcbMarginTop?: number | undefined;
|
|
92743
93032
|
pcbMarginRight?: number | undefined;
|
|
92744
93033
|
pcbMarginBottom?: number | undefined;
|
|
@@ -92772,6 +93061,7 @@ declare const circleCutoutProps: z.ZodObject<Omit<{
|
|
|
92772
93061
|
pcbOffsetY?: string | number | undefined;
|
|
92773
93062
|
pcbPositionAnchor?: string | undefined;
|
|
92774
93063
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93064
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92775
93065
|
pcbMarginTop?: string | number | undefined;
|
|
92776
93066
|
pcbMarginRight?: string | number | undefined;
|
|
92777
93067
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92809,6 +93099,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
92809
93099
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92810
93100
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92811
93101
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93102
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92812
93103
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92813
93104
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92814
93105
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -92891,6 +93182,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
92891
93182
|
pcbOffsetY?: number | undefined;
|
|
92892
93183
|
pcbPositionAnchor?: string | undefined;
|
|
92893
93184
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93185
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92894
93186
|
pcbMarginTop?: number | undefined;
|
|
92895
93187
|
pcbMarginRight?: number | undefined;
|
|
92896
93188
|
pcbMarginBottom?: number | undefined;
|
|
@@ -92927,6 +93219,7 @@ declare const polygonCutoutProps: z.ZodObject<Omit<{
|
|
|
92927
93219
|
pcbOffsetY?: string | number | undefined;
|
|
92928
93220
|
pcbPositionAnchor?: string | undefined;
|
|
92929
93221
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93222
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
92930
93223
|
pcbMarginTop?: string | number | undefined;
|
|
92931
93224
|
pcbMarginRight?: string | number | undefined;
|
|
92932
93225
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -92960,6 +93253,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
92960
93253
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
92961
93254
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
92962
93255
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93256
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
92963
93257
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
92964
93258
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
92965
93259
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93032,6 +93326,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93032
93326
|
pcbOffsetY?: number | undefined;
|
|
93033
93327
|
pcbPositionAnchor?: string | undefined;
|
|
93034
93328
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93329
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93035
93330
|
pcbMarginTop?: number | undefined;
|
|
93036
93331
|
pcbMarginRight?: number | undefined;
|
|
93037
93332
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93066,6 +93361,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93066
93361
|
pcbOffsetY?: string | number | undefined;
|
|
93067
93362
|
pcbPositionAnchor?: string | undefined;
|
|
93068
93363
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93364
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93069
93365
|
pcbMarginTop?: string | number | undefined;
|
|
93070
93366
|
pcbMarginRight?: string | number | undefined;
|
|
93071
93367
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93097,6 +93393,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93097
93393
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93098
93394
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93099
93395
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93396
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93100
93397
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93101
93398
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93102
93399
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93167,6 +93464,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93167
93464
|
pcbOffsetY?: number | undefined;
|
|
93168
93465
|
pcbPositionAnchor?: string | undefined;
|
|
93169
93466
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93467
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93170
93468
|
pcbMarginTop?: number | undefined;
|
|
93171
93469
|
pcbMarginRight?: number | undefined;
|
|
93172
93470
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93200,6 +93498,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93200
93498
|
pcbOffsetY?: string | number | undefined;
|
|
93201
93499
|
pcbPositionAnchor?: string | undefined;
|
|
93202
93500
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93501
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93203
93502
|
pcbMarginTop?: string | number | undefined;
|
|
93204
93503
|
pcbMarginRight?: string | number | undefined;
|
|
93205
93504
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93231,6 +93530,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93231
93530
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93232
93531
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93233
93532
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93533
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93234
93534
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93235
93535
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93236
93536
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93313,6 +93613,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93313
93613
|
pcbOffsetY?: number | undefined;
|
|
93314
93614
|
pcbPositionAnchor?: string | undefined;
|
|
93315
93615
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93616
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93316
93617
|
pcbMarginTop?: number | undefined;
|
|
93317
93618
|
pcbMarginRight?: number | undefined;
|
|
93318
93619
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93349,6 +93650,7 @@ declare const cutoutProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
93349
93650
|
pcbOffsetY?: string | number | undefined;
|
|
93350
93651
|
pcbPositionAnchor?: string | undefined;
|
|
93351
93652
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93653
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93352
93654
|
pcbMarginTop?: string | number | undefined;
|
|
93353
93655
|
pcbMarginRight?: string | number | undefined;
|
|
93354
93656
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93440,6 +93742,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93440
93742
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93441
93743
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93442
93744
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93745
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93443
93746
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93444
93747
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93445
93748
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93522,6 +93825,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93522
93825
|
pcbOffsetY?: number | undefined;
|
|
93523
93826
|
pcbPositionAnchor?: string | undefined;
|
|
93524
93827
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93828
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93525
93829
|
pcbMarginTop?: number | undefined;
|
|
93526
93830
|
pcbMarginRight?: number | undefined;
|
|
93527
93831
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93568,6 +93872,7 @@ declare const rectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93568
93872
|
pcbOffsetY?: string | number | undefined;
|
|
93569
93873
|
pcbPositionAnchor?: string | undefined;
|
|
93570
93874
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
93875
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93571
93876
|
pcbMarginTop?: string | number | undefined;
|
|
93572
93877
|
pcbMarginRight?: string | number | undefined;
|
|
93573
93878
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93609,6 +93914,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93609
93914
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93610
93915
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93611
93916
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
93917
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93612
93918
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93613
93919
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93614
93920
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93692,6 +93998,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93692
93998
|
pcbOffsetY?: number | undefined;
|
|
93693
93999
|
pcbPositionAnchor?: string | undefined;
|
|
93694
94000
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94001
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93695
94002
|
pcbMarginTop?: number | undefined;
|
|
93696
94003
|
pcbMarginRight?: number | undefined;
|
|
93697
94004
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93738,6 +94045,7 @@ declare const rotatedRectSmtPadProps: z.ZodObject<Omit<{
|
|
|
93738
94045
|
pcbOffsetY?: string | number | undefined;
|
|
93739
94046
|
pcbPositionAnchor?: string | undefined;
|
|
93740
94047
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94048
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93741
94049
|
pcbMarginTop?: string | number | undefined;
|
|
93742
94050
|
pcbMarginRight?: string | number | undefined;
|
|
93743
94051
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93778,6 +94086,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
93778
94086
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93779
94087
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93780
94088
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94089
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93781
94090
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93782
94091
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93783
94092
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -93852,6 +94161,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
93852
94161
|
pcbOffsetY?: number | undefined;
|
|
93853
94162
|
pcbPositionAnchor?: string | undefined;
|
|
93854
94163
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94164
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93855
94165
|
pcbMarginTop?: number | undefined;
|
|
93856
94166
|
pcbMarginRight?: number | undefined;
|
|
93857
94167
|
pcbMarginBottom?: number | undefined;
|
|
@@ -93891,6 +94201,7 @@ declare const circleSmtPadProps: z.ZodObject<Omit<{
|
|
|
93891
94201
|
pcbOffsetY?: string | number | undefined;
|
|
93892
94202
|
pcbPositionAnchor?: string | undefined;
|
|
93893
94203
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94204
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
93894
94205
|
pcbMarginTop?: string | number | undefined;
|
|
93895
94206
|
pcbMarginRight?: string | number | undefined;
|
|
93896
94207
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -93926,6 +94237,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
93926
94237
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
93927
94238
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
93928
94239
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94240
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
93929
94241
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
93930
94242
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
93931
94243
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94004,6 +94316,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
94004
94316
|
pcbOffsetY?: number | undefined;
|
|
94005
94317
|
pcbPositionAnchor?: string | undefined;
|
|
94006
94318
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94319
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94007
94320
|
pcbMarginTop?: number | undefined;
|
|
94008
94321
|
pcbMarginRight?: number | undefined;
|
|
94009
94322
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94045,6 +94358,7 @@ declare const pillSmtPadProps: z.ZodObject<Omit<{
|
|
|
94045
94358
|
pcbOffsetY?: string | number | undefined;
|
|
94046
94359
|
pcbPositionAnchor?: string | undefined;
|
|
94047
94360
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94361
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94048
94362
|
pcbMarginTop?: string | number | undefined;
|
|
94049
94363
|
pcbMarginRight?: string | number | undefined;
|
|
94050
94364
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94080,6 +94394,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
94080
94394
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94081
94395
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94082
94396
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94397
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94083
94398
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94084
94399
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94085
94400
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94166,6 +94481,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
94166
94481
|
pcbOffsetY?: number | undefined;
|
|
94167
94482
|
pcbPositionAnchor?: string | undefined;
|
|
94168
94483
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94484
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94169
94485
|
pcbMarginTop?: number | undefined;
|
|
94170
94486
|
pcbMarginRight?: number | undefined;
|
|
94171
94487
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94208,6 +94524,7 @@ declare const polygonSmtPadProps: z.ZodObject<Omit<{
|
|
|
94208
94524
|
pcbOffsetY?: string | number | undefined;
|
|
94209
94525
|
pcbPositionAnchor?: string | undefined;
|
|
94210
94526
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94527
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94211
94528
|
pcbMarginTop?: string | number | undefined;
|
|
94212
94529
|
pcbMarginRight?: string | number | undefined;
|
|
94213
94530
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94243,6 +94560,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94243
94560
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94244
94561
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94245
94562
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94563
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94246
94564
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94247
94565
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94248
94566
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94317,6 +94635,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94317
94635
|
pcbOffsetY?: number | undefined;
|
|
94318
94636
|
pcbPositionAnchor?: string | undefined;
|
|
94319
94637
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94638
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94320
94639
|
pcbMarginTop?: number | undefined;
|
|
94321
94640
|
pcbMarginRight?: number | undefined;
|
|
94322
94641
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94356,6 +94675,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94356
94675
|
pcbOffsetY?: string | number | undefined;
|
|
94357
94676
|
pcbPositionAnchor?: string | undefined;
|
|
94358
94677
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94678
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94359
94679
|
pcbMarginTop?: string | number | undefined;
|
|
94360
94680
|
pcbMarginRight?: string | number | undefined;
|
|
94361
94681
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94390,6 +94710,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94390
94710
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94391
94711
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94392
94712
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94713
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94393
94714
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94394
94715
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94395
94716
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94472,6 +94793,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94472
94793
|
pcbOffsetY?: number | undefined;
|
|
94473
94794
|
pcbPositionAnchor?: string | undefined;
|
|
94474
94795
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94796
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94475
94797
|
pcbMarginTop?: number | undefined;
|
|
94476
94798
|
pcbMarginRight?: number | undefined;
|
|
94477
94799
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94518,6 +94840,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94518
94840
|
pcbOffsetY?: string | number | undefined;
|
|
94519
94841
|
pcbPositionAnchor?: string | undefined;
|
|
94520
94842
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94843
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94521
94844
|
pcbMarginTop?: string | number | undefined;
|
|
94522
94845
|
pcbMarginRight?: string | number | undefined;
|
|
94523
94846
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94558,6 +94881,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94558
94881
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94559
94882
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94560
94883
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
94884
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94561
94885
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94562
94886
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94563
94887
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94641,6 +94965,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94641
94965
|
pcbOffsetY?: number | undefined;
|
|
94642
94966
|
pcbPositionAnchor?: string | undefined;
|
|
94643
94967
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
94968
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94644
94969
|
pcbMarginTop?: number | undefined;
|
|
94645
94970
|
pcbMarginRight?: number | undefined;
|
|
94646
94971
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94687,6 +95012,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94687
95012
|
pcbOffsetY?: string | number | undefined;
|
|
94688
95013
|
pcbPositionAnchor?: string | undefined;
|
|
94689
95014
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95015
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94690
95016
|
pcbMarginTop?: string | number | undefined;
|
|
94691
95017
|
pcbMarginRight?: string | number | undefined;
|
|
94692
95018
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94726,6 +95052,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94726
95052
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94727
95053
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94728
95054
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95055
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94729
95056
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94730
95057
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94731
95058
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94804,6 +95131,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94804
95131
|
pcbOffsetY?: number | undefined;
|
|
94805
95132
|
pcbPositionAnchor?: string | undefined;
|
|
94806
95133
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95134
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94807
95135
|
pcbMarginTop?: number | undefined;
|
|
94808
95136
|
pcbMarginRight?: number | undefined;
|
|
94809
95137
|
pcbMarginBottom?: number | undefined;
|
|
@@ -94845,6 +95173,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94845
95173
|
pcbOffsetY?: string | number | undefined;
|
|
94846
95174
|
pcbPositionAnchor?: string | undefined;
|
|
94847
95175
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95176
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94848
95177
|
pcbMarginTop?: string | number | undefined;
|
|
94849
95178
|
pcbMarginRight?: string | number | undefined;
|
|
94850
95179
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -94879,6 +95208,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94879
95208
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
94880
95209
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
94881
95210
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95211
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
94882
95212
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
94883
95213
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
94884
95214
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -94965,6 +95295,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
94965
95295
|
pcbOffsetY?: number | undefined;
|
|
94966
95296
|
pcbPositionAnchor?: string | undefined;
|
|
94967
95297
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95298
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
94968
95299
|
pcbMarginTop?: number | undefined;
|
|
94969
95300
|
pcbMarginRight?: number | undefined;
|
|
94970
95301
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95007,6 +95338,7 @@ declare const smtPadProps: z.ZodDiscriminatedUnion<"shape", [z.ZodObject<Omit<{
|
|
|
95007
95338
|
pcbOffsetY?: string | number | undefined;
|
|
95008
95339
|
pcbPositionAnchor?: string | undefined;
|
|
95009
95340
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95341
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95010
95342
|
pcbMarginTop?: string | number | undefined;
|
|
95011
95343
|
pcbMarginRight?: string | number | undefined;
|
|
95012
95344
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95054,6 +95386,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95054
95386
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95055
95387
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95056
95388
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95389
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95057
95390
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95058
95391
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95059
95392
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95125,6 +95458,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95125
95458
|
pcbOffsetY?: number | undefined;
|
|
95126
95459
|
pcbPositionAnchor?: string | undefined;
|
|
95127
95460
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95461
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95128
95462
|
pcbMarginTop?: number | undefined;
|
|
95129
95463
|
pcbMarginRight?: number | undefined;
|
|
95130
95464
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95161,6 +95495,7 @@ declare const rectSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95161
95495
|
pcbOffsetY?: string | number | undefined;
|
|
95162
95496
|
pcbPositionAnchor?: string | undefined;
|
|
95163
95497
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95498
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95164
95499
|
pcbMarginTop?: string | number | undefined;
|
|
95165
95500
|
pcbMarginRight?: string | number | undefined;
|
|
95166
95501
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95193,6 +95528,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95193
95528
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95194
95529
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95195
95530
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95531
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95196
95532
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95197
95533
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95198
95534
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95262,6 +95598,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95262
95598
|
pcbOffsetY?: number | undefined;
|
|
95263
95599
|
pcbPositionAnchor?: string | undefined;
|
|
95264
95600
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95601
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95265
95602
|
pcbMarginTop?: number | undefined;
|
|
95266
95603
|
pcbMarginRight?: number | undefined;
|
|
95267
95604
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95297,6 +95634,7 @@ declare const circleSolderPasteProps: z.ZodObject<Omit<{
|
|
|
95297
95634
|
pcbOffsetY?: string | number | undefined;
|
|
95298
95635
|
pcbPositionAnchor?: string | undefined;
|
|
95299
95636
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95637
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95300
95638
|
pcbMarginTop?: string | number | undefined;
|
|
95301
95639
|
pcbMarginRight?: string | number | undefined;
|
|
95302
95640
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95329,6 +95667,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95329
95667
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95330
95668
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95331
95669
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95670
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95332
95671
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95333
95672
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95334
95673
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95398,6 +95737,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95398
95737
|
pcbOffsetY?: number | undefined;
|
|
95399
95738
|
pcbPositionAnchor?: string | undefined;
|
|
95400
95739
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95740
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95401
95741
|
pcbMarginTop?: number | undefined;
|
|
95402
95742
|
pcbMarginRight?: number | undefined;
|
|
95403
95743
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95433,6 +95773,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95433
95773
|
pcbOffsetY?: string | number | undefined;
|
|
95434
95774
|
pcbPositionAnchor?: string | undefined;
|
|
95435
95775
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95776
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95436
95777
|
pcbMarginTop?: string | number | undefined;
|
|
95437
95778
|
pcbMarginRight?: string | number | undefined;
|
|
95438
95779
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95464,6 +95805,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95464
95805
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95465
95806
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95466
95807
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95808
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95467
95809
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95468
95810
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95469
95811
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95535,6 +95877,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95535
95877
|
pcbOffsetY?: number | undefined;
|
|
95536
95878
|
pcbPositionAnchor?: string | undefined;
|
|
95537
95879
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95880
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95538
95881
|
pcbMarginTop?: number | undefined;
|
|
95539
95882
|
pcbMarginRight?: number | undefined;
|
|
95540
95883
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95571,6 +95914,7 @@ declare const solderPasteProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
95571
95914
|
pcbOffsetY?: string | number | undefined;
|
|
95572
95915
|
pcbPositionAnchor?: string | undefined;
|
|
95573
95916
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
95917
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95574
95918
|
pcbMarginTop?: string | number | undefined;
|
|
95575
95919
|
pcbMarginRight?: string | number | undefined;
|
|
95576
95920
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95630,6 +95974,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95630
95974
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95631
95975
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95632
95976
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
95977
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95633
95978
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95634
95979
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95635
95980
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95704,6 +96049,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95704
96049
|
pcbRotation?: number | undefined;
|
|
95705
96050
|
pcbPositionAnchor?: string | undefined;
|
|
95706
96051
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96052
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95707
96053
|
pcbMarginTop?: number | undefined;
|
|
95708
96054
|
pcbMarginRight?: number | undefined;
|
|
95709
96055
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95744,6 +96090,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95744
96090
|
pcbRotation?: string | number | undefined;
|
|
95745
96091
|
pcbPositionAnchor?: string | undefined;
|
|
95746
96092
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96093
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95747
96094
|
pcbMarginTop?: string | number | undefined;
|
|
95748
96095
|
pcbMarginRight?: string | number | undefined;
|
|
95749
96096
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95784,6 +96131,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95784
96131
|
pcbRotation?: number | undefined;
|
|
95785
96132
|
pcbPositionAnchor?: string | undefined;
|
|
95786
96133
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96134
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95787
96135
|
pcbMarginTop?: number | undefined;
|
|
95788
96136
|
pcbMarginRight?: number | undefined;
|
|
95789
96137
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95822,6 +96170,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95822
96170
|
pcbRotation?: string | number | undefined;
|
|
95823
96171
|
pcbPositionAnchor?: string | undefined;
|
|
95824
96172
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96173
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95825
96174
|
pcbMarginTop?: string | number | undefined;
|
|
95826
96175
|
pcbMarginRight?: string | number | undefined;
|
|
95827
96176
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -95857,6 +96206,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95857
96206
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
95858
96207
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
95859
96208
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
96209
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
95860
96210
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
95861
96211
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
95862
96212
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95933,6 +96283,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95933
96283
|
pcbRotation?: number | undefined;
|
|
95934
96284
|
pcbPositionAnchor?: string | undefined;
|
|
95935
96285
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96286
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95936
96287
|
pcbMarginTop?: number | undefined;
|
|
95937
96288
|
pcbMarginRight?: number | undefined;
|
|
95938
96289
|
pcbMarginBottom?: number | undefined;
|
|
@@ -95973,6 +96324,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
95973
96324
|
pcbRotation?: string | number | undefined;
|
|
95974
96325
|
pcbPositionAnchor?: string | undefined;
|
|
95975
96326
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96327
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
95976
96328
|
pcbMarginTop?: string | number | undefined;
|
|
95977
96329
|
pcbMarginRight?: string | number | undefined;
|
|
95978
96330
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -96006,6 +96358,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
96006
96358
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96007
96359
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
96008
96360
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
96361
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
96009
96362
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
96010
96363
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
96011
96364
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -96082,6 +96435,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
96082
96435
|
pcbRotation?: number | undefined;
|
|
96083
96436
|
pcbPositionAnchor?: string | undefined;
|
|
96084
96437
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96438
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
96085
96439
|
pcbMarginTop?: number | undefined;
|
|
96086
96440
|
pcbMarginRight?: number | undefined;
|
|
96087
96441
|
pcbMarginBottom?: number | undefined;
|
|
@@ -96122,6 +96476,7 @@ declare const holeProps: z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
|
96122
96476
|
pcbRotation?: string | number | undefined;
|
|
96123
96477
|
pcbPositionAnchor?: string | undefined;
|
|
96124
96478
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
96479
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
96125
96480
|
pcbMarginTop?: string | number | undefined;
|
|
96126
96481
|
pcbMarginRight?: string | number | undefined;
|
|
96127
96482
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -96775,6 +97130,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
96775
97130
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96776
97131
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
96777
97132
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
97133
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
96778
97134
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96779
97135
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
96780
97136
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -99838,6 +100194,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99838
100194
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
99839
100195
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
99840
100196
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
100197
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
100198
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
99841
100199
|
}, "strip", z.ZodTypeAny, {
|
|
99842
100200
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99843
100201
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -99862,6 +100220,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99862
100220
|
isUsingOpenDrain?: boolean | undefined;
|
|
99863
100221
|
canUsePushPull?: boolean | undefined;
|
|
99864
100222
|
isUsingPushPull?: boolean | undefined;
|
|
100223
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100224
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
99865
100225
|
}, {
|
|
99866
100226
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
99867
100227
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -99886,6 +100246,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99886
100246
|
isUsingOpenDrain?: boolean | undefined;
|
|
99887
100247
|
canUsePushPull?: boolean | undefined;
|
|
99888
100248
|
isUsingPushPull?: boolean | undefined;
|
|
100249
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100250
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
99889
100251
|
}>>>;
|
|
99890
100252
|
mfn: z.ZodOptional<z.ZodString>;
|
|
99891
100253
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -99912,6 +100274,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99912
100274
|
pcbRotation?: number | undefined;
|
|
99913
100275
|
pcbPositionAnchor?: string | undefined;
|
|
99914
100276
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
100277
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
99915
100278
|
pcbMarginTop?: number | undefined;
|
|
99916
100279
|
pcbMarginRight?: number | undefined;
|
|
99917
100280
|
pcbMarginBottom?: number | undefined;
|
|
@@ -99973,6 +100336,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
99973
100336
|
isUsingOpenDrain?: boolean | undefined;
|
|
99974
100337
|
canUsePushPull?: boolean | undefined;
|
|
99975
100338
|
isUsingPushPull?: boolean | undefined;
|
|
100339
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100340
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
99976
100341
|
}> | undefined;
|
|
99977
100342
|
cadModel?: string | {
|
|
99978
100343
|
stlUrl: string;
|
|
@@ -100435,6 +100800,7 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100435
100800
|
pcbRotation?: string | number | undefined;
|
|
100436
100801
|
pcbPositionAnchor?: string | undefined;
|
|
100437
100802
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
100803
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
100438
100804
|
pcbMarginTop?: string | number | undefined;
|
|
100439
100805
|
pcbMarginRight?: string | number | undefined;
|
|
100440
100806
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -100496,6 +100862,8 @@ declare const batteryProps: z.ZodObject<{
|
|
|
100496
100862
|
isUsingOpenDrain?: boolean | undefined;
|
|
100497
100863
|
canUsePushPull?: boolean | undefined;
|
|
100498
100864
|
isUsingPushPull?: boolean | undefined;
|
|
100865
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
100866
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
100499
100867
|
}> | undefined;
|
|
100500
100868
|
cadModel?: string | {
|
|
100501
100869
|
stlUrl: string;
|
|
@@ -100959,6 +101327,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
100959
101327
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100960
101328
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
100961
101329
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
101330
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
100962
101331
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100963
101332
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100964
101333
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -101860,6 +102229,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
101860
102229
|
pcbRotation?: number | undefined;
|
|
101861
102230
|
pcbPositionAnchor?: string | undefined;
|
|
101862
102231
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
102232
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
101863
102233
|
pcbMarginTop?: number | undefined;
|
|
101864
102234
|
pcbMarginRight?: number | undefined;
|
|
101865
102235
|
pcbMarginBottom?: number | undefined;
|
|
@@ -102207,6 +102577,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
102207
102577
|
pcbRotation?: string | number | undefined;
|
|
102208
102578
|
pcbPositionAnchor?: string | undefined;
|
|
102209
102579
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
102580
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
102210
102581
|
pcbMarginTop?: string | number | undefined;
|
|
102211
102582
|
pcbMarginRight?: string | number | undefined;
|
|
102212
102583
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -102632,6 +103003,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
102632
103003
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102633
103004
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
102634
103005
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
103006
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
102635
103007
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102636
103008
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
102637
103009
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -105695,6 +106067,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105695
106067
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
105696
106068
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
105697
106069
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
106070
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
106071
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
105698
106072
|
}, "strip", z.ZodTypeAny, {
|
|
105699
106073
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105700
106074
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -105719,6 +106093,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105719
106093
|
isUsingOpenDrain?: boolean | undefined;
|
|
105720
106094
|
canUsePushPull?: boolean | undefined;
|
|
105721
106095
|
isUsingPushPull?: boolean | undefined;
|
|
106096
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106097
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
105722
106098
|
}, {
|
|
105723
106099
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
105724
106100
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -105743,6 +106119,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105743
106119
|
isUsingOpenDrain?: boolean | undefined;
|
|
105744
106120
|
canUsePushPull?: boolean | undefined;
|
|
105745
106121
|
isUsingPushPull?: boolean | undefined;
|
|
106122
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106123
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
105746
106124
|
}>>>;
|
|
105747
106125
|
mfn: z.ZodOptional<z.ZodString>;
|
|
105748
106126
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -105936,6 +106314,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105936
106314
|
pcbRotation?: number | undefined;
|
|
105937
106315
|
pcbPositionAnchor?: string | undefined;
|
|
105938
106316
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
106317
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
105939
106318
|
pcbMarginTop?: number | undefined;
|
|
105940
106319
|
pcbMarginRight?: number | undefined;
|
|
105941
106320
|
pcbMarginBottom?: number | undefined;
|
|
@@ -105997,6 +106376,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
105997
106376
|
isUsingOpenDrain?: boolean | undefined;
|
|
105998
106377
|
canUsePushPull?: boolean | undefined;
|
|
105999
106378
|
isUsingPushPull?: boolean | undefined;
|
|
106379
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106380
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106000
106381
|
}> | undefined;
|
|
106001
106382
|
cadModel?: string | {
|
|
106002
106383
|
stlUrl: string;
|
|
@@ -106507,6 +106888,7 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106507
106888
|
pcbRotation?: string | number | undefined;
|
|
106508
106889
|
pcbPositionAnchor?: string | undefined;
|
|
106509
106890
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
106891
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
106510
106892
|
pcbMarginTop?: string | number | undefined;
|
|
106511
106893
|
pcbMarginRight?: string | number | undefined;
|
|
106512
106894
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -106568,6 +106950,8 @@ declare const pinHeaderProps: z.ZodObject<{
|
|
|
106568
106950
|
isUsingOpenDrain?: boolean | undefined;
|
|
106569
106951
|
canUsePushPull?: boolean | undefined;
|
|
106570
106952
|
isUsingPushPull?: boolean | undefined;
|
|
106953
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
106954
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
106571
106955
|
}> | undefined;
|
|
106572
106956
|
cadModel?: string | {
|
|
106573
106957
|
stlUrl: string;
|
|
@@ -107143,6 +107527,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
107143
107527
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
107144
107528
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
107145
107529
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
107530
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
107146
107531
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
107147
107532
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
107148
107533
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -110204,6 +110589,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110204
110589
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
110205
110590
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110206
110591
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
110592
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
110593
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
110207
110594
|
}, "strip", z.ZodTypeAny, {
|
|
110208
110595
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110209
110596
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110228,6 +110615,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110228
110615
|
isUsingOpenDrain?: boolean | undefined;
|
|
110229
110616
|
canUsePushPull?: boolean | undefined;
|
|
110230
110617
|
isUsingPushPull?: boolean | undefined;
|
|
110618
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110619
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110231
110620
|
}, {
|
|
110232
110621
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
110233
110622
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -110252,6 +110641,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110252
110641
|
isUsingOpenDrain?: boolean | undefined;
|
|
110253
110642
|
canUsePushPull?: boolean | undefined;
|
|
110254
110643
|
isUsingPushPull?: boolean | undefined;
|
|
110644
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
110645
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110255
110646
|
}>>>;
|
|
110256
110647
|
mfn: z.ZodOptional<z.ZodString>;
|
|
110257
110648
|
} & {
|
|
@@ -110570,6 +110961,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110570
110961
|
pcbRotation?: number | undefined;
|
|
110571
110962
|
pcbPositionAnchor?: string | undefined;
|
|
110572
110963
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
110964
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
110573
110965
|
pcbMarginTop?: number | undefined;
|
|
110574
110966
|
pcbMarginRight?: number | undefined;
|
|
110575
110967
|
pcbMarginBottom?: number | undefined;
|
|
@@ -110631,6 +111023,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
110631
111023
|
isUsingOpenDrain?: boolean | undefined;
|
|
110632
111024
|
canUsePushPull?: boolean | undefined;
|
|
110633
111025
|
isUsingPushPull?: boolean | undefined;
|
|
111026
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111027
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
110634
111028
|
}> | undefined;
|
|
110635
111029
|
cadModel?: string | {
|
|
110636
111030
|
stlUrl: string;
|
|
@@ -111165,6 +111559,7 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111165
111559
|
pcbRotation?: string | number | undefined;
|
|
111166
111560
|
pcbPositionAnchor?: string | undefined;
|
|
111167
111561
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
111562
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
111168
111563
|
pcbMarginTop?: string | number | undefined;
|
|
111169
111564
|
pcbMarginRight?: string | number | undefined;
|
|
111170
111565
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -111226,6 +111621,8 @@ declare const pushButtonProps: z.ZodObject<{
|
|
|
111226
111621
|
isUsingOpenDrain?: boolean | undefined;
|
|
111227
111622
|
canUsePushPull?: boolean | undefined;
|
|
111228
111623
|
isUsingPushPull?: boolean | undefined;
|
|
111624
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
111625
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
111229
111626
|
}> | undefined;
|
|
111230
111627
|
cadModel?: string | {
|
|
111231
111628
|
stlUrl: string;
|
|
@@ -111755,6 +112152,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
111755
112152
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
111756
112153
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
111757
112154
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
112155
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
111758
112156
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
111759
112157
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
111760
112158
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -112512,6 +112910,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
112512
112910
|
pcbRotation?: number | undefined;
|
|
112513
112911
|
pcbPositionAnchor?: string | undefined;
|
|
112514
112912
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
112913
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
112515
112914
|
pcbMarginTop?: number | undefined;
|
|
112516
112915
|
pcbMarginRight?: number | undefined;
|
|
112517
112916
|
pcbMarginBottom?: number | undefined;
|
|
@@ -112820,6 +113219,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
112820
113219
|
pcbRotation?: string | number | undefined;
|
|
112821
113220
|
pcbPositionAnchor?: string | undefined;
|
|
112822
113221
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
113222
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
112823
113223
|
pcbMarginTop?: string | number | undefined;
|
|
112824
113224
|
pcbMarginRight?: string | number | undefined;
|
|
112825
113225
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -113155,6 +113555,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
113155
113555
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
113156
113556
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
113157
113557
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
113558
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
113158
113559
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
113159
113560
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
113160
113561
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -116218,6 +116619,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116218
116619
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
116219
116620
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116220
116621
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
116622
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
116623
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
116221
116624
|
}, "strip", z.ZodTypeAny, {
|
|
116222
116625
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116223
116626
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116242,6 +116645,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116242
116645
|
isUsingOpenDrain?: boolean | undefined;
|
|
116243
116646
|
canUsePushPull?: boolean | undefined;
|
|
116244
116647
|
isUsingPushPull?: boolean | undefined;
|
|
116648
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116649
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116245
116650
|
}, {
|
|
116246
116651
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
116247
116652
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -116266,6 +116671,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116266
116671
|
isUsingOpenDrain?: boolean | undefined;
|
|
116267
116672
|
canUsePushPull?: boolean | undefined;
|
|
116268
116673
|
isUsingPushPull?: boolean | undefined;
|
|
116674
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116675
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116269
116676
|
}>>>;
|
|
116270
116677
|
mfn: z.ZodOptional<z.ZodString>;
|
|
116271
116678
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -116291,6 +116698,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116291
116698
|
pcbRotation?: number | undefined;
|
|
116292
116699
|
pcbPositionAnchor?: string | undefined;
|
|
116293
116700
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
116701
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
116294
116702
|
pcbMarginTop?: number | undefined;
|
|
116295
116703
|
pcbMarginRight?: number | undefined;
|
|
116296
116704
|
pcbMarginBottom?: number | undefined;
|
|
@@ -116352,6 +116760,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116352
116760
|
isUsingOpenDrain?: boolean | undefined;
|
|
116353
116761
|
canUsePushPull?: boolean | undefined;
|
|
116354
116762
|
isUsingPushPull?: boolean | undefined;
|
|
116763
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
116764
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116355
116765
|
}> | undefined;
|
|
116356
116766
|
cadModel?: string | {
|
|
116357
116767
|
stlUrl: string;
|
|
@@ -116812,6 +117222,7 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116812
117222
|
pcbRotation?: string | number | undefined;
|
|
116813
117223
|
pcbPositionAnchor?: string | undefined;
|
|
116814
117224
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
117225
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
116815
117226
|
pcbMarginTop?: string | number | undefined;
|
|
116816
117227
|
pcbMarginRight?: string | number | undefined;
|
|
116817
117228
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -116873,6 +117284,8 @@ declare const transistorProps: z.ZodObject<{
|
|
|
116873
117284
|
isUsingOpenDrain?: boolean | undefined;
|
|
116874
117285
|
canUsePushPull?: boolean | undefined;
|
|
116875
117286
|
isUsingPushPull?: boolean | undefined;
|
|
117287
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
117288
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
116876
117289
|
}> | undefined;
|
|
116877
117290
|
cadModel?: string | {
|
|
116878
117291
|
stlUrl: string;
|
|
@@ -117332,6 +117745,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
117332
117745
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
117333
117746
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
117334
117747
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
117748
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
117335
117749
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
117336
117750
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
117337
117751
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -120395,6 +120809,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120395
120809
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
120396
120810
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120397
120811
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
120812
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
120813
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
120398
120814
|
}, "strip", z.ZodTypeAny, {
|
|
120399
120815
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120400
120816
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120419,6 +120835,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120419
120835
|
isUsingOpenDrain?: boolean | undefined;
|
|
120420
120836
|
canUsePushPull?: boolean | undefined;
|
|
120421
120837
|
isUsingPushPull?: boolean | undefined;
|
|
120838
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120839
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120422
120840
|
}, {
|
|
120423
120841
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
120424
120842
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -120443,6 +120861,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120443
120861
|
isUsingOpenDrain?: boolean | undefined;
|
|
120444
120862
|
canUsePushPull?: boolean | undefined;
|
|
120445
120863
|
isUsingPushPull?: boolean | undefined;
|
|
120864
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120865
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120446
120866
|
}>>>;
|
|
120447
120867
|
mfn: z.ZodOptional<z.ZodString>;
|
|
120448
120868
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -120469,6 +120889,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120469
120889
|
pcbRotation?: number | undefined;
|
|
120470
120890
|
pcbPositionAnchor?: string | undefined;
|
|
120471
120891
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
120892
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
120472
120893
|
pcbMarginTop?: number | undefined;
|
|
120473
120894
|
pcbMarginRight?: number | undefined;
|
|
120474
120895
|
pcbMarginBottom?: number | undefined;
|
|
@@ -120530,6 +120951,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120530
120951
|
isUsingOpenDrain?: boolean | undefined;
|
|
120531
120952
|
canUsePushPull?: boolean | undefined;
|
|
120532
120953
|
isUsingPushPull?: boolean | undefined;
|
|
120954
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
120955
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
120533
120956
|
}> | undefined;
|
|
120534
120957
|
cadModel?: string | {
|
|
120535
120958
|
stlUrl: string;
|
|
@@ -120990,6 +121413,7 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
120990
121413
|
pcbRotation?: string | number | undefined;
|
|
120991
121414
|
pcbPositionAnchor?: string | undefined;
|
|
120992
121415
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
121416
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
120993
121417
|
pcbMarginTop?: string | number | undefined;
|
|
120994
121418
|
pcbMarginRight?: string | number | undefined;
|
|
120995
121419
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -121051,6 +121475,8 @@ declare const mosfetProps: z.ZodObject<{
|
|
|
121051
121475
|
isUsingOpenDrain?: boolean | undefined;
|
|
121052
121476
|
canUsePushPull?: boolean | undefined;
|
|
121053
121477
|
isUsingPushPull?: boolean | undefined;
|
|
121478
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
121479
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
121054
121480
|
}> | undefined;
|
|
121055
121481
|
cadModel?: string | {
|
|
121056
121482
|
stlUrl: string;
|
|
@@ -121516,6 +121942,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
121516
121942
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121517
121943
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
121518
121944
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
121945
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
121519
121946
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121520
121947
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
121521
121948
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -124579,6 +125006,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124579
125006
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
124580
125007
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
124581
125008
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
125009
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
125010
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
124582
125011
|
}, "strip", z.ZodTypeAny, {
|
|
124583
125012
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124584
125013
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -124603,6 +125032,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124603
125032
|
isUsingOpenDrain?: boolean | undefined;
|
|
124604
125033
|
canUsePushPull?: boolean | undefined;
|
|
124605
125034
|
isUsingPushPull?: boolean | undefined;
|
|
125035
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125036
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124606
125037
|
}, {
|
|
124607
125038
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
124608
125039
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -124627,6 +125058,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124627
125058
|
isUsingOpenDrain?: boolean | undefined;
|
|
124628
125059
|
canUsePushPull?: boolean | undefined;
|
|
124629
125060
|
isUsingPushPull?: boolean | undefined;
|
|
125061
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125062
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124630
125063
|
}>>>;
|
|
124631
125064
|
mfn: z.ZodOptional<z.ZodString>;
|
|
124632
125065
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -124650,6 +125083,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
124650
125083
|
pcbRotation?: number | undefined;
|
|
124651
125084
|
pcbPositionAnchor?: string | undefined;
|
|
124652
125085
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
125086
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
124653
125087
|
pcbMarginTop?: number | undefined;
|
|
124654
125088
|
pcbMarginRight?: number | undefined;
|
|
124655
125089
|
pcbMarginBottom?: number | undefined;
|
|
@@ -124711,6 +125145,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
124711
125145
|
isUsingOpenDrain?: boolean | undefined;
|
|
124712
125146
|
canUsePushPull?: boolean | undefined;
|
|
124713
125147
|
isUsingPushPull?: boolean | undefined;
|
|
125148
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125149
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
124714
125150
|
}> | undefined;
|
|
124715
125151
|
cadModel?: string | {
|
|
124716
125152
|
stlUrl: string;
|
|
@@ -125170,6 +125606,7 @@ declare const opampProps: z.ZodObject<{
|
|
|
125170
125606
|
pcbRotation?: string | number | undefined;
|
|
125171
125607
|
pcbPositionAnchor?: string | undefined;
|
|
125172
125608
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
125609
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
125173
125610
|
pcbMarginTop?: string | number | undefined;
|
|
125174
125611
|
pcbMarginRight?: string | number | undefined;
|
|
125175
125612
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -125231,6 +125668,8 @@ declare const opampProps: z.ZodObject<{
|
|
|
125231
125668
|
isUsingOpenDrain?: boolean | undefined;
|
|
125232
125669
|
canUsePushPull?: boolean | undefined;
|
|
125233
125670
|
isUsingPushPull?: boolean | undefined;
|
|
125671
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
125672
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
125234
125673
|
}> | undefined;
|
|
125235
125674
|
cadModel?: string | {
|
|
125236
125675
|
stlUrl: string;
|
|
@@ -125697,6 +126136,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
125697
126136
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
125698
126137
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
125699
126138
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
126139
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
125700
126140
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
125701
126141
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
125702
126142
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -128760,6 +129200,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128760
129200
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
128761
129201
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
128762
129202
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
129203
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
129204
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
128763
129205
|
}, "strip", z.ZodTypeAny, {
|
|
128764
129206
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128765
129207
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -128784,6 +129226,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128784
129226
|
isUsingOpenDrain?: boolean | undefined;
|
|
128785
129227
|
canUsePushPull?: boolean | undefined;
|
|
128786
129228
|
isUsingPushPull?: boolean | undefined;
|
|
129229
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129230
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
128787
129231
|
}, {
|
|
128788
129232
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
128789
129233
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -128808,6 +129252,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128808
129252
|
isUsingOpenDrain?: boolean | undefined;
|
|
128809
129253
|
canUsePushPull?: boolean | undefined;
|
|
128810
129254
|
isUsingPushPull?: boolean | undefined;
|
|
129255
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129256
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
128811
129257
|
}>>>;
|
|
128812
129258
|
mfn: z.ZodOptional<z.ZodString>;
|
|
128813
129259
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -128835,6 +129281,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128835
129281
|
pcbRotation?: number | undefined;
|
|
128836
129282
|
pcbPositionAnchor?: string | undefined;
|
|
128837
129283
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
129284
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
128838
129285
|
pcbMarginTop?: number | undefined;
|
|
128839
129286
|
pcbMarginRight?: number | undefined;
|
|
128840
129287
|
pcbMarginBottom?: number | undefined;
|
|
@@ -128896,6 +129343,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
128896
129343
|
isUsingOpenDrain?: boolean | undefined;
|
|
128897
129344
|
canUsePushPull?: boolean | undefined;
|
|
128898
129345
|
isUsingPushPull?: boolean | undefined;
|
|
129346
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129347
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
128899
129348
|
}> | undefined;
|
|
128900
129349
|
cadModel?: string | {
|
|
128901
129350
|
stlUrl: string;
|
|
@@ -129358,6 +129807,7 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129358
129807
|
pcbRotation?: string | number | undefined;
|
|
129359
129808
|
pcbPositionAnchor?: string | undefined;
|
|
129360
129809
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
129810
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
129361
129811
|
pcbMarginTop?: string | number | undefined;
|
|
129362
129812
|
pcbMarginRight?: string | number | undefined;
|
|
129363
129813
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -129419,6 +129869,8 @@ declare const inductorProps: z.ZodObject<{
|
|
|
129419
129869
|
isUsingOpenDrain?: boolean | undefined;
|
|
129420
129870
|
canUsePushPull?: boolean | undefined;
|
|
129421
129871
|
isUsingPushPull?: boolean | undefined;
|
|
129872
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
129873
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
129422
129874
|
}> | undefined;
|
|
129423
129875
|
cadModel?: string | {
|
|
129424
129876
|
stlUrl: string;
|
|
@@ -129874,6 +130326,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129874
130326
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
129875
130327
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
129876
130328
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
130329
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
129877
130330
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
129878
130331
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
129879
130332
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -132937,6 +133390,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132937
133390
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
132938
133391
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
132939
133392
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
133393
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
133394
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
132940
133395
|
}, "strip", z.ZodTypeAny, {
|
|
132941
133396
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
132942
133397
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -132961,6 +133416,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132961
133416
|
isUsingOpenDrain?: boolean | undefined;
|
|
132962
133417
|
canUsePushPull?: boolean | undefined;
|
|
132963
133418
|
isUsingPushPull?: boolean | undefined;
|
|
133419
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133420
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
132964
133421
|
}, {
|
|
132965
133422
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
132966
133423
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -132985,6 +133442,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132985
133442
|
isUsingOpenDrain?: boolean | undefined;
|
|
132986
133443
|
canUsePushPull?: boolean | undefined;
|
|
132987
133444
|
isUsingPushPull?: boolean | undefined;
|
|
133445
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133446
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
132988
133447
|
}>>>;
|
|
132989
133448
|
mfn: z.ZodOptional<z.ZodString>;
|
|
132990
133449
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -133017,6 +133476,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133017
133476
|
pcbRotation?: number | undefined;
|
|
133018
133477
|
pcbPositionAnchor?: string | undefined;
|
|
133019
133478
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
133479
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
133020
133480
|
pcbMarginTop?: number | undefined;
|
|
133021
133481
|
pcbMarginRight?: number | undefined;
|
|
133022
133482
|
pcbMarginBottom?: number | undefined;
|
|
@@ -133078,6 +133538,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133078
133538
|
isUsingOpenDrain?: boolean | undefined;
|
|
133079
133539
|
canUsePushPull?: boolean | undefined;
|
|
133080
133540
|
isUsingPushPull?: boolean | undefined;
|
|
133541
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
133542
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133081
133543
|
}> | undefined;
|
|
133082
133544
|
cadModel?: string | {
|
|
133083
133545
|
stlUrl: string;
|
|
@@ -133544,6 +134006,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133544
134006
|
pcbRotation?: string | number | undefined;
|
|
133545
134007
|
pcbPositionAnchor?: string | undefined;
|
|
133546
134008
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
134009
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
133547
134010
|
pcbMarginTop?: string | number | undefined;
|
|
133548
134011
|
pcbMarginRight?: string | number | undefined;
|
|
133549
134012
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -133605,6 +134068,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133605
134068
|
isUsingOpenDrain?: boolean | undefined;
|
|
133606
134069
|
canUsePushPull?: boolean | undefined;
|
|
133607
134070
|
isUsingPushPull?: boolean | undefined;
|
|
134071
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134072
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
133608
134073
|
}> | undefined;
|
|
133609
134074
|
cadModel?: string | {
|
|
133610
134075
|
stlUrl: string;
|
|
@@ -134071,6 +134536,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134071
134536
|
pcbRotation?: number | undefined;
|
|
134072
134537
|
pcbPositionAnchor?: string | undefined;
|
|
134073
134538
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
134539
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
134074
134540
|
pcbMarginTop?: number | undefined;
|
|
134075
134541
|
pcbMarginRight?: number | undefined;
|
|
134076
134542
|
pcbMarginBottom?: number | undefined;
|
|
@@ -134132,6 +134598,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134132
134598
|
isUsingOpenDrain?: boolean | undefined;
|
|
134133
134599
|
canUsePushPull?: boolean | undefined;
|
|
134134
134600
|
isUsingPushPull?: boolean | undefined;
|
|
134601
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
134602
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134135
134603
|
}> | undefined;
|
|
134136
134604
|
cadModel?: string | {
|
|
134137
134605
|
stlUrl: string;
|
|
@@ -134598,6 +135066,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134598
135066
|
pcbRotation?: string | number | undefined;
|
|
134599
135067
|
pcbPositionAnchor?: string | undefined;
|
|
134600
135068
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
135069
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
134601
135070
|
pcbMarginTop?: string | number | undefined;
|
|
134602
135071
|
pcbMarginRight?: string | number | undefined;
|
|
134603
135072
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -134659,6 +135128,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
134659
135128
|
isUsingOpenDrain?: boolean | undefined;
|
|
134660
135129
|
canUsePushPull?: boolean | undefined;
|
|
134661
135130
|
isUsingPushPull?: boolean | undefined;
|
|
135131
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135132
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
134662
135133
|
}> | undefined;
|
|
134663
135134
|
cadModel?: string | {
|
|
134664
135135
|
stlUrl: string;
|
|
@@ -135131,6 +135602,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135131
135602
|
pcbRotation?: number | undefined;
|
|
135132
135603
|
pcbPositionAnchor?: string | undefined;
|
|
135133
135604
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
135605
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
135134
135606
|
pcbMarginTop?: number | undefined;
|
|
135135
135607
|
pcbMarginRight?: number | undefined;
|
|
135136
135608
|
pcbMarginBottom?: number | undefined;
|
|
@@ -135192,6 +135664,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135192
135664
|
isUsingOpenDrain?: boolean | undefined;
|
|
135193
135665
|
canUsePushPull?: boolean | undefined;
|
|
135194
135666
|
isUsingPushPull?: boolean | undefined;
|
|
135667
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
135668
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135195
135669
|
}> | undefined;
|
|
135196
135670
|
cadModel?: string | {
|
|
135197
135671
|
stlUrl: string;
|
|
@@ -135652,6 +136126,7 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135652
136126
|
pcbRotation?: string | number | undefined;
|
|
135653
136127
|
pcbPositionAnchor?: string | undefined;
|
|
135654
136128
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
136129
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
135655
136130
|
pcbMarginTop?: string | number | undefined;
|
|
135656
136131
|
pcbMarginRight?: string | number | undefined;
|
|
135657
136132
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -135713,6 +136188,8 @@ declare const diodeProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
135713
136188
|
isUsingOpenDrain?: boolean | undefined;
|
|
135714
136189
|
canUsePushPull?: boolean | undefined;
|
|
135715
136190
|
isUsingPushPull?: boolean | undefined;
|
|
136191
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
136192
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
135716
136193
|
}> | undefined;
|
|
135717
136194
|
cadModel?: string | {
|
|
135718
136195
|
stlUrl: string;
|
|
@@ -136196,6 +136673,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
136196
136673
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
136197
136674
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
136198
136675
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
136676
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
136199
136677
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
136200
136678
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
136201
136679
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -139259,6 +139737,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139259
139737
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
139260
139738
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139261
139739
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
139740
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
139741
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
139262
139742
|
}, "strip", z.ZodTypeAny, {
|
|
139263
139743
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139264
139744
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139283,6 +139763,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139283
139763
|
isUsingOpenDrain?: boolean | undefined;
|
|
139284
139764
|
canUsePushPull?: boolean | undefined;
|
|
139285
139765
|
isUsingPushPull?: boolean | undefined;
|
|
139766
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139767
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139286
139768
|
}, {
|
|
139287
139769
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
139288
139770
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -139307,6 +139789,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139307
139789
|
isUsingOpenDrain?: boolean | undefined;
|
|
139308
139790
|
canUsePushPull?: boolean | undefined;
|
|
139309
139791
|
isUsingPushPull?: boolean | undefined;
|
|
139792
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139793
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139310
139794
|
}>>>;
|
|
139311
139795
|
mfn: z.ZodOptional<z.ZodString>;
|
|
139312
139796
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -139335,6 +139819,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139335
139819
|
pcbRotation?: number | undefined;
|
|
139336
139820
|
pcbPositionAnchor?: string | undefined;
|
|
139337
139821
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
139822
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
139338
139823
|
pcbMarginTop?: number | undefined;
|
|
139339
139824
|
pcbMarginRight?: number | undefined;
|
|
139340
139825
|
pcbMarginBottom?: number | undefined;
|
|
@@ -139396,6 +139881,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139396
139881
|
isUsingOpenDrain?: boolean | undefined;
|
|
139397
139882
|
canUsePushPull?: boolean | undefined;
|
|
139398
139883
|
isUsingPushPull?: boolean | undefined;
|
|
139884
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
139885
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139399
139886
|
}> | undefined;
|
|
139400
139887
|
cadModel?: string | {
|
|
139401
139888
|
stlUrl: string;
|
|
@@ -139860,6 +140347,7 @@ declare const ledProps: z.ZodObject<{
|
|
|
139860
140347
|
pcbRotation?: string | number | undefined;
|
|
139861
140348
|
pcbPositionAnchor?: string | undefined;
|
|
139862
140349
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
140350
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
139863
140351
|
pcbMarginTop?: string | number | undefined;
|
|
139864
140352
|
pcbMarginRight?: string | number | undefined;
|
|
139865
140353
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -139921,6 +140409,8 @@ declare const ledProps: z.ZodObject<{
|
|
|
139921
140409
|
isUsingOpenDrain?: boolean | undefined;
|
|
139922
140410
|
canUsePushPull?: boolean | undefined;
|
|
139923
140411
|
isUsingPushPull?: boolean | undefined;
|
|
140412
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
140413
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
139924
140414
|
}> | undefined;
|
|
139925
140415
|
cadModel?: string | {
|
|
139926
140416
|
stlUrl: string;
|
|
@@ -140395,6 +140885,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
140395
140885
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
140396
140886
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
140397
140887
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
140888
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
140398
140889
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
140399
140890
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
140400
140891
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -143458,6 +143949,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143458
143949
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
143459
143950
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143460
143951
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
143952
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
143953
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
143461
143954
|
}, "strip", z.ZodTypeAny, {
|
|
143462
143955
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143463
143956
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143482,6 +143975,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143482
143975
|
isUsingOpenDrain?: boolean | undefined;
|
|
143483
143976
|
canUsePushPull?: boolean | undefined;
|
|
143484
143977
|
isUsingPushPull?: boolean | undefined;
|
|
143978
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
143979
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143485
143980
|
}, {
|
|
143486
143981
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
143487
143982
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -143506,6 +144001,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143506
144001
|
isUsingOpenDrain?: boolean | undefined;
|
|
143507
144002
|
canUsePushPull?: boolean | undefined;
|
|
143508
144003
|
isUsingPushPull?: boolean | undefined;
|
|
144004
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144005
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143509
144006
|
}>>>;
|
|
143510
144007
|
mfn: z.ZodOptional<z.ZodString>;
|
|
143511
144008
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -143542,6 +144039,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143542
144039
|
pcbRotation?: number | undefined;
|
|
143543
144040
|
pcbPositionAnchor?: string | undefined;
|
|
143544
144041
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
144042
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
143545
144043
|
pcbMarginTop?: number | undefined;
|
|
143546
144044
|
pcbMarginRight?: number | undefined;
|
|
143547
144045
|
pcbMarginBottom?: number | undefined;
|
|
@@ -143603,6 +144101,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
143603
144101
|
isUsingOpenDrain?: boolean | undefined;
|
|
143604
144102
|
canUsePushPull?: boolean | undefined;
|
|
143605
144103
|
isUsingPushPull?: boolean | undefined;
|
|
144104
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144105
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
143606
144106
|
}> | undefined;
|
|
143607
144107
|
cadModel?: string | {
|
|
143608
144108
|
stlUrl: string;
|
|
@@ -144072,6 +144572,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144072
144572
|
pcbRotation?: string | number | undefined;
|
|
144073
144573
|
pcbPositionAnchor?: string | undefined;
|
|
144074
144574
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
144575
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
144075
144576
|
pcbMarginTop?: string | number | undefined;
|
|
144076
144577
|
pcbMarginRight?: string | number | undefined;
|
|
144077
144578
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -144133,6 +144634,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144133
144634
|
isUsingOpenDrain?: boolean | undefined;
|
|
144134
144635
|
canUsePushPull?: boolean | undefined;
|
|
144135
144636
|
isUsingPushPull?: boolean | undefined;
|
|
144637
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
144638
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144136
144639
|
}> | undefined;
|
|
144137
144640
|
cadModel?: string | {
|
|
144138
144641
|
stlUrl: string;
|
|
@@ -144603,6 +145106,7 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144603
145106
|
pcbRotation?: string | number | undefined;
|
|
144604
145107
|
pcbPositionAnchor?: string | undefined;
|
|
144605
145108
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145109
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
144606
145110
|
pcbMarginTop?: string | number | undefined;
|
|
144607
145111
|
pcbMarginRight?: string | number | undefined;
|
|
144608
145112
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -144664,6 +145168,8 @@ declare const switchProps: z.ZodEffects<z.ZodObject<{
|
|
|
144664
145168
|
isUsingOpenDrain?: boolean | undefined;
|
|
144665
145169
|
canUsePushPull?: boolean | undefined;
|
|
144666
145170
|
isUsingPushPull?: boolean | undefined;
|
|
145171
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
145172
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
144667
145173
|
}> | undefined;
|
|
144668
145174
|
cadModel?: string | {
|
|
144669
145175
|
stlUrl: string;
|
|
@@ -145135,6 +145641,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
145135
145641
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145136
145642
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145137
145643
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145644
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145138
145645
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145139
145646
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145140
145647
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145210,6 +145717,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
145210
145717
|
pcbRotation?: number | undefined;
|
|
145211
145718
|
pcbPositionAnchor?: string | undefined;
|
|
145212
145719
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145720
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145213
145721
|
pcbMarginTop?: number | undefined;
|
|
145214
145722
|
pcbMarginRight?: number | undefined;
|
|
145215
145723
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145248,6 +145756,7 @@ declare const fabricationNoteTextProps: z.ZodObject<{
|
|
|
145248
145756
|
pcbRotation?: string | number | undefined;
|
|
145249
145757
|
pcbPositionAnchor?: string | undefined;
|
|
145250
145758
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145759
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145251
145760
|
pcbMarginTop?: string | number | undefined;
|
|
145252
145761
|
pcbMarginRight?: string | number | undefined;
|
|
145253
145762
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145284,6 +145793,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
145284
145793
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145285
145794
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145286
145795
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145796
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145287
145797
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145288
145798
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145289
145799
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145359,6 +145869,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
145359
145869
|
pcbOffsetY?: number | undefined;
|
|
145360
145870
|
pcbPositionAnchor?: string | undefined;
|
|
145361
145871
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145872
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145362
145873
|
pcbMarginTop?: number | undefined;
|
|
145363
145874
|
pcbMarginRight?: number | undefined;
|
|
145364
145875
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145400,6 +145911,7 @@ declare const fabricationNoteRectProps: z.ZodObject<Omit<{
|
|
|
145400
145911
|
pcbOffsetY?: string | number | undefined;
|
|
145401
145912
|
pcbPositionAnchor?: string | undefined;
|
|
145402
145913
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
145914
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145403
145915
|
pcbMarginTop?: string | number | undefined;
|
|
145404
145916
|
pcbMarginRight?: string | number | undefined;
|
|
145405
145917
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145440,6 +145952,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
145440
145952
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145441
145953
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145442
145954
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
145955
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145443
145956
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145444
145957
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145445
145958
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145535,6 +146048,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
145535
146048
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
145536
146049
|
pcbPositionAnchor?: string | undefined;
|
|
145537
146050
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146051
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145538
146052
|
pcbMarginTop?: number | undefined;
|
|
145539
146053
|
pcbMarginRight?: number | undefined;
|
|
145540
146054
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145571,6 +146085,7 @@ declare const fabricationNotePathProps: z.ZodObject<Omit<{
|
|
|
145571
146085
|
} | undefined;
|
|
145572
146086
|
pcbPositionAnchor?: string | undefined;
|
|
145573
146087
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146088
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145574
146089
|
pcbMarginTop?: string | number | undefined;
|
|
145575
146090
|
pcbMarginRight?: string | number | undefined;
|
|
145576
146091
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145621,6 +146136,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
145621
146136
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145622
146137
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145623
146138
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
146139
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145624
146140
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
145625
146141
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
145626
146142
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -145719,6 +146235,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
145719
146235
|
fontSize?: number | undefined;
|
|
145720
146236
|
pcbPositionAnchor?: string | undefined;
|
|
145721
146237
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146238
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145722
146239
|
pcbMarginTop?: number | undefined;
|
|
145723
146240
|
pcbMarginRight?: number | undefined;
|
|
145724
146241
|
pcbMarginBottom?: number | undefined;
|
|
@@ -145762,6 +146279,7 @@ declare const fabricationNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
145762
146279
|
fontSize?: string | number | undefined;
|
|
145763
146280
|
pcbPositionAnchor?: string | undefined;
|
|
145764
146281
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146282
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145765
146283
|
pcbMarginTop?: string | number | undefined;
|
|
145766
146284
|
pcbMarginRight?: string | number | undefined;
|
|
145767
146285
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -145869,6 +146387,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
145869
146387
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145870
146388
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
145871
146389
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
146390
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
145872
146391
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145873
146392
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
145874
146393
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -145984,6 +146503,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
145984
146503
|
pcbRotation?: number | undefined;
|
|
145985
146504
|
pcbPositionAnchor?: string | undefined;
|
|
145986
146505
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146506
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
145987
146507
|
pcbMarginTop?: number | undefined;
|
|
145988
146508
|
pcbMarginRight?: number | undefined;
|
|
145989
146509
|
pcbMarginBottom?: number | undefined;
|
|
@@ -146045,6 +146565,7 @@ declare const viaProps: z.ZodObject<{
|
|
|
146045
146565
|
pcbRotation?: string | number | undefined;
|
|
146046
146566
|
pcbPositionAnchor?: string | undefined;
|
|
146047
146567
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
146568
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
146048
146569
|
pcbMarginTop?: string | number | undefined;
|
|
146049
146570
|
pcbMarginRight?: string | number | undefined;
|
|
146050
146571
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -146135,6 +146656,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
146135
146656
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
146136
146657
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
146137
146658
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
146659
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
146138
146660
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
146139
146661
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
146140
146662
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -149198,6 +149720,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149198
149720
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
149199
149721
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149200
149722
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
149723
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
149724
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
149201
149725
|
}, "strip", z.ZodTypeAny, {
|
|
149202
149726
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149203
149727
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149222,6 +149746,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149222
149746
|
isUsingOpenDrain?: boolean | undefined;
|
|
149223
149747
|
canUsePushPull?: boolean | undefined;
|
|
149224
149748
|
isUsingPushPull?: boolean | undefined;
|
|
149749
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149750
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149225
149751
|
}, {
|
|
149226
149752
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
149227
149753
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -149246,6 +149772,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149246
149772
|
isUsingOpenDrain?: boolean | undefined;
|
|
149247
149773
|
canUsePushPull?: boolean | undefined;
|
|
149248
149774
|
isUsingPushPull?: boolean | undefined;
|
|
149775
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149776
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149249
149777
|
}>>>;
|
|
149250
149778
|
mfn: z.ZodOptional<z.ZodString>;
|
|
149251
149779
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -149282,6 +149810,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149282
149810
|
pcbRotation?: number | undefined;
|
|
149283
149811
|
pcbPositionAnchor?: string | undefined;
|
|
149284
149812
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
149813
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
149285
149814
|
pcbMarginTop?: number | undefined;
|
|
149286
149815
|
pcbMarginRight?: number | undefined;
|
|
149287
149816
|
pcbMarginBottom?: number | undefined;
|
|
@@ -149343,6 +149872,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149343
149872
|
isUsingOpenDrain?: boolean | undefined;
|
|
149344
149873
|
canUsePushPull?: boolean | undefined;
|
|
149345
149874
|
isUsingPushPull?: boolean | undefined;
|
|
149875
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
149876
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149346
149877
|
}> | undefined;
|
|
149347
149878
|
cadModel?: string | {
|
|
149348
149879
|
stlUrl: string;
|
|
@@ -149809,6 +150340,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149809
150340
|
pcbRotation?: string | number | undefined;
|
|
149810
150341
|
pcbPositionAnchor?: string | undefined;
|
|
149811
150342
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
150343
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
149812
150344
|
pcbMarginTop?: string | number | undefined;
|
|
149813
150345
|
pcbMarginRight?: string | number | undefined;
|
|
149814
150346
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -149870,6 +150402,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
149870
150402
|
isUsingOpenDrain?: boolean | undefined;
|
|
149871
150403
|
canUsePushPull?: boolean | undefined;
|
|
149872
150404
|
isUsingPushPull?: boolean | undefined;
|
|
150405
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150406
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
149873
150407
|
}> | undefined;
|
|
149874
150408
|
cadModel?: string | {
|
|
149875
150409
|
stlUrl: string;
|
|
@@ -150336,6 +150870,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150336
150870
|
pcbRotation?: number | undefined;
|
|
150337
150871
|
pcbPositionAnchor?: string | undefined;
|
|
150338
150872
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
150873
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
150339
150874
|
pcbMarginTop?: number | undefined;
|
|
150340
150875
|
pcbMarginRight?: number | undefined;
|
|
150341
150876
|
pcbMarginBottom?: number | undefined;
|
|
@@ -150397,6 +150932,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150397
150932
|
isUsingOpenDrain?: boolean | undefined;
|
|
150398
150933
|
canUsePushPull?: boolean | undefined;
|
|
150399
150934
|
isUsingPushPull?: boolean | undefined;
|
|
150935
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
150936
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150400
150937
|
}> | undefined;
|
|
150401
150938
|
cadModel?: string | {
|
|
150402
150939
|
stlUrl: string;
|
|
@@ -150863,6 +151400,7 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150863
151400
|
pcbRotation?: string | number | undefined;
|
|
150864
151401
|
pcbPositionAnchor?: string | undefined;
|
|
150865
151402
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151403
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
150866
151404
|
pcbMarginTop?: string | number | undefined;
|
|
150867
151405
|
pcbMarginRight?: string | number | undefined;
|
|
150868
151406
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -150924,6 +151462,8 @@ declare const testpointProps: z.ZodEffects<z.ZodObject<{
|
|
|
150924
151462
|
isUsingOpenDrain?: boolean | undefined;
|
|
150925
151463
|
canUsePushPull?: boolean | undefined;
|
|
150926
151464
|
isUsingPushPull?: boolean | undefined;
|
|
151465
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
151466
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
150927
151467
|
}> | undefined;
|
|
150928
151468
|
cadModel?: string | {
|
|
150929
151469
|
stlUrl: string;
|
|
@@ -151389,6 +151929,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
151389
151929
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151390
151930
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151391
151931
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
151932
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151392
151933
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151393
151934
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151394
151935
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151455,6 +151996,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
151455
151996
|
pcbOffsetY?: number | undefined;
|
|
151456
151997
|
pcbPositionAnchor?: string | undefined;
|
|
151457
151998
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
151999
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151458
152000
|
pcbMarginTop?: number | undefined;
|
|
151459
152001
|
pcbMarginRight?: number | undefined;
|
|
151460
152002
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151486,6 +152028,7 @@ declare const breakoutPointProps: z.ZodObject<Omit<{
|
|
|
151486
152028
|
pcbOffsetY?: string | number | undefined;
|
|
151487
152029
|
pcbPositionAnchor?: string | undefined;
|
|
151488
152030
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152031
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151489
152032
|
pcbMarginTop?: string | number | undefined;
|
|
151490
152033
|
pcbMarginRight?: string | number | undefined;
|
|
151491
152034
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151519,6 +152062,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151519
152062
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151520
152063
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151521
152064
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152065
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151522
152066
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151523
152067
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151524
152068
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151588,6 +152132,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151588
152132
|
pcbOffsetY?: number | undefined;
|
|
151589
152133
|
pcbPositionAnchor?: string | undefined;
|
|
151590
152134
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152135
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151591
152136
|
pcbMarginTop?: number | undefined;
|
|
151592
152137
|
pcbMarginRight?: number | undefined;
|
|
151593
152138
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151623,6 +152168,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151623
152168
|
pcbOffsetY?: string | number | undefined;
|
|
151624
152169
|
pcbPositionAnchor?: string | undefined;
|
|
151625
152170
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152171
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151626
152172
|
pcbMarginTop?: string | number | undefined;
|
|
151627
152173
|
pcbMarginRight?: string | number | undefined;
|
|
151628
152174
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151654,6 +152200,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151654
152200
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151655
152201
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151656
152202
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152203
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151657
152204
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151658
152205
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151659
152206
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151726,6 +152273,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151726
152273
|
pcbRotation?: number | undefined;
|
|
151727
152274
|
pcbPositionAnchor?: string | undefined;
|
|
151728
152275
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152276
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151729
152277
|
pcbMarginTop?: number | undefined;
|
|
151730
152278
|
pcbMarginRight?: number | undefined;
|
|
151731
152279
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151763,6 +152311,7 @@ declare const pcbKeepoutProps: z.ZodUnion<[z.ZodObject<Omit<{
|
|
|
151763
152311
|
pcbRotation?: string | number | undefined;
|
|
151764
152312
|
pcbPositionAnchor?: string | undefined;
|
|
151765
152313
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152314
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151766
152315
|
pcbMarginTop?: string | number | undefined;
|
|
151767
152316
|
pcbMarginRight?: string | number | undefined;
|
|
151768
152317
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151797,6 +152346,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
151797
152346
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151798
152347
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151799
152348
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152349
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151800
152350
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151801
152351
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151802
152352
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -151871,6 +152421,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
151871
152421
|
pcbOffsetY?: number | undefined;
|
|
151872
152422
|
pcbPositionAnchor?: string | undefined;
|
|
151873
152423
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152424
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151874
152425
|
pcbMarginTop?: number | undefined;
|
|
151875
152426
|
pcbMarginRight?: number | undefined;
|
|
151876
152427
|
pcbMarginBottom?: number | undefined;
|
|
@@ -151911,6 +152462,7 @@ declare const courtyardRectProps: z.ZodObject<Omit<{
|
|
|
151911
152462
|
pcbOffsetY?: string | number | undefined;
|
|
151912
152463
|
pcbPositionAnchor?: string | undefined;
|
|
151913
152464
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152465
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
151914
152466
|
pcbMarginTop?: string | number | undefined;
|
|
151915
152467
|
pcbMarginRight?: string | number | undefined;
|
|
151916
152468
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -151950,6 +152502,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
151950
152502
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
151951
152503
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
151952
152504
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152505
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
151953
152506
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
151954
152507
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
151955
152508
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -152025,6 +152578,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
152025
152578
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
152026
152579
|
pcbPositionAnchor?: string | undefined;
|
|
152027
152580
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152581
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152028
152582
|
pcbMarginTop?: number | undefined;
|
|
152029
152583
|
pcbMarginRight?: number | undefined;
|
|
152030
152584
|
pcbMarginBottom?: number | undefined;
|
|
@@ -152058,6 +152612,7 @@ declare const courtyardOutlineProps: z.ZodObject<Omit<{
|
|
|
152058
152612
|
} | undefined;
|
|
152059
152613
|
pcbPositionAnchor?: string | undefined;
|
|
152060
152614
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152615
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152061
152616
|
pcbMarginTop?: string | number | undefined;
|
|
152062
152617
|
pcbMarginRight?: string | number | undefined;
|
|
152063
152618
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -152096,6 +152651,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
152096
152651
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152097
152652
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
152098
152653
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152654
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152099
152655
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
152100
152656
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
152101
152657
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -152163,6 +152719,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
152163
152719
|
pcbOffsetY?: number | undefined;
|
|
152164
152720
|
pcbPositionAnchor?: string | undefined;
|
|
152165
152721
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152722
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152166
152723
|
pcbMarginTop?: number | undefined;
|
|
152167
152724
|
pcbMarginRight?: number | undefined;
|
|
152168
152725
|
pcbMarginBottom?: number | undefined;
|
|
@@ -152197,6 +152754,7 @@ declare const courtyardCircleProps: z.ZodObject<Omit<{
|
|
|
152197
152754
|
pcbOffsetY?: string | number | undefined;
|
|
152198
152755
|
pcbPositionAnchor?: string | undefined;
|
|
152199
152756
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152757
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152200
152758
|
pcbMarginTop?: string | number | undefined;
|
|
152201
152759
|
pcbMarginRight?: string | number | undefined;
|
|
152202
152760
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -152231,6 +152789,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
152231
152789
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152232
152790
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
152233
152791
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
152792
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152234
152793
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
152235
152794
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
152236
152795
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -152302,6 +152861,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
152302
152861
|
pcbOffsetY?: number | undefined;
|
|
152303
152862
|
pcbPositionAnchor?: string | undefined;
|
|
152304
152863
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152864
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152305
152865
|
pcbMarginTop?: number | undefined;
|
|
152306
152866
|
pcbMarginRight?: number | undefined;
|
|
152307
152867
|
pcbMarginBottom?: number | undefined;
|
|
@@ -152338,6 +152898,7 @@ declare const courtyardPillProps: z.ZodObject<Omit<{
|
|
|
152338
152898
|
pcbOffsetY?: string | number | undefined;
|
|
152339
152899
|
pcbPositionAnchor?: string | undefined;
|
|
152340
152900
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
152901
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
152341
152902
|
pcbMarginTop?: string | number | undefined;
|
|
152342
152903
|
pcbMarginRight?: string | number | undefined;
|
|
152343
152904
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -152613,6 +153174,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
152613
153174
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152614
153175
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
152615
153176
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
153177
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
152616
153178
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152617
153179
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
152618
153180
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -155676,6 +156238,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155676
156238
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
155677
156239
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
155678
156240
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
156241
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
156242
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
155679
156243
|
}, "strip", z.ZodTypeAny, {
|
|
155680
156244
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155681
156245
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -155700,6 +156264,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155700
156264
|
isUsingOpenDrain?: boolean | undefined;
|
|
155701
156265
|
canUsePushPull?: boolean | undefined;
|
|
155702
156266
|
isUsingPushPull?: boolean | undefined;
|
|
156267
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156268
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155703
156269
|
}, {
|
|
155704
156270
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
155705
156271
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -155724,6 +156290,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155724
156290
|
isUsingOpenDrain?: boolean | undefined;
|
|
155725
156291
|
canUsePushPull?: boolean | undefined;
|
|
155726
156292
|
isUsingPushPull?: boolean | undefined;
|
|
156293
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156294
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155727
156295
|
}>>>;
|
|
155728
156296
|
mfn: z.ZodOptional<z.ZodString>;
|
|
155729
156297
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -155748,6 +156316,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155748
156316
|
pcbRotation?: number | undefined;
|
|
155749
156317
|
pcbPositionAnchor?: string | undefined;
|
|
155750
156318
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
156319
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
155751
156320
|
pcbMarginTop?: number | undefined;
|
|
155752
156321
|
pcbMarginRight?: number | undefined;
|
|
155753
156322
|
pcbMarginBottom?: number | undefined;
|
|
@@ -155809,6 +156378,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
155809
156378
|
isUsingOpenDrain?: boolean | undefined;
|
|
155810
156379
|
canUsePushPull?: boolean | undefined;
|
|
155811
156380
|
isUsingPushPull?: boolean | undefined;
|
|
156381
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156382
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
155812
156383
|
}> | undefined;
|
|
155813
156384
|
cadModel?: string | {
|
|
155814
156385
|
stlUrl: string;
|
|
@@ -156268,6 +156839,7 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156268
156839
|
pcbRotation?: string | number | undefined;
|
|
156269
156840
|
pcbPositionAnchor?: string | undefined;
|
|
156270
156841
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
156842
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
156271
156843
|
pcbMarginTop?: string | number | undefined;
|
|
156272
156844
|
pcbMarginRight?: string | number | undefined;
|
|
156273
156845
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -156329,6 +156901,8 @@ declare const powerSourceProps: z.ZodObject<{
|
|
|
156329
156901
|
isUsingOpenDrain?: boolean | undefined;
|
|
156330
156902
|
canUsePushPull?: boolean | undefined;
|
|
156331
156903
|
isUsingPushPull?: boolean | undefined;
|
|
156904
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
156905
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
156332
156906
|
}> | undefined;
|
|
156333
156907
|
cadModel?: string | {
|
|
156334
156908
|
stlUrl: string;
|
|
@@ -156794,6 +157368,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
156794
157368
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
156795
157369
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
156796
157370
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
157371
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
156797
157372
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
156798
157373
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
156799
157374
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -159857,6 +160432,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
159857
160432
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
159858
160433
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
159859
160434
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
160435
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
160436
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
159860
160437
|
}, "strip", z.ZodTypeAny, {
|
|
159861
160438
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159862
160439
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -159881,6 +160458,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
159881
160458
|
isUsingOpenDrain?: boolean | undefined;
|
|
159882
160459
|
canUsePushPull?: boolean | undefined;
|
|
159883
160460
|
isUsingPushPull?: boolean | undefined;
|
|
160461
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160462
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
159884
160463
|
}, {
|
|
159885
160464
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
159886
160465
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -159905,6 +160484,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
159905
160484
|
isUsingOpenDrain?: boolean | undefined;
|
|
159906
160485
|
canUsePushPull?: boolean | undefined;
|
|
159907
160486
|
isUsingPushPull?: boolean | undefined;
|
|
160487
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160488
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
159908
160489
|
}>>>;
|
|
159909
160490
|
mfn: z.ZodOptional<z.ZodString>;
|
|
159910
160491
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -159934,6 +160515,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
159934
160515
|
pcbRotation?: number | undefined;
|
|
159935
160516
|
pcbPositionAnchor?: string | undefined;
|
|
159936
160517
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
160518
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
159937
160519
|
pcbMarginTop?: number | undefined;
|
|
159938
160520
|
pcbMarginRight?: number | undefined;
|
|
159939
160521
|
pcbMarginBottom?: number | undefined;
|
|
@@ -159995,6 +160577,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
159995
160577
|
isUsingOpenDrain?: boolean | undefined;
|
|
159996
160578
|
canUsePushPull?: boolean | undefined;
|
|
159997
160579
|
isUsingPushPull?: boolean | undefined;
|
|
160580
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
160581
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
159998
160582
|
}> | undefined;
|
|
159999
160583
|
cadModel?: string | {
|
|
160000
160584
|
stlUrl: string;
|
|
@@ -160460,6 +161044,7 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160460
161044
|
pcbRotation?: string | number | undefined;
|
|
160461
161045
|
pcbPositionAnchor?: string | undefined;
|
|
160462
161046
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
161047
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
160463
161048
|
pcbMarginTop?: string | number | undefined;
|
|
160464
161049
|
pcbMarginRight?: string | number | undefined;
|
|
160465
161050
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -160521,6 +161106,8 @@ declare const voltageSourceProps: z.ZodObject<{
|
|
|
160521
161106
|
isUsingOpenDrain?: boolean | undefined;
|
|
160522
161107
|
canUsePushPull?: boolean | undefined;
|
|
160523
161108
|
isUsingPushPull?: boolean | undefined;
|
|
161109
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
161110
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
160524
161111
|
}> | undefined;
|
|
160525
161112
|
cadModel?: string | {
|
|
160526
161113
|
stlUrl: string;
|
|
@@ -160992,6 +161579,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
160992
161579
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
160993
161580
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
160994
161581
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
161582
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
160995
161583
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
160996
161584
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
160997
161585
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -164055,6 +164643,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164055
164643
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
164056
164644
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164057
164645
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
164646
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
164647
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
164058
164648
|
}, "strip", z.ZodTypeAny, {
|
|
164059
164649
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164060
164650
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164079,6 +164669,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164079
164669
|
isUsingOpenDrain?: boolean | undefined;
|
|
164080
164670
|
canUsePushPull?: boolean | undefined;
|
|
164081
164671
|
isUsingPushPull?: boolean | undefined;
|
|
164672
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164673
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164082
164674
|
}, {
|
|
164083
164675
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
164084
164676
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -164103,6 +164695,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164103
164695
|
isUsingOpenDrain?: boolean | undefined;
|
|
164104
164696
|
canUsePushPull?: boolean | undefined;
|
|
164105
164697
|
isUsingPushPull?: boolean | undefined;
|
|
164698
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164699
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164106
164700
|
}>>>;
|
|
164107
164701
|
mfn: z.ZodOptional<z.ZodString>;
|
|
164108
164702
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -164132,6 +164726,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164132
164726
|
pcbRotation?: number | undefined;
|
|
164133
164727
|
pcbPositionAnchor?: string | undefined;
|
|
164134
164728
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
164729
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
164135
164730
|
pcbMarginTop?: number | undefined;
|
|
164136
164731
|
pcbMarginRight?: number | undefined;
|
|
164137
164732
|
pcbMarginBottom?: number | undefined;
|
|
@@ -164193,6 +164788,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164193
164788
|
isUsingOpenDrain?: boolean | undefined;
|
|
164194
164789
|
canUsePushPull?: boolean | undefined;
|
|
164195
164790
|
isUsingPushPull?: boolean | undefined;
|
|
164791
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
164792
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164196
164793
|
}> | undefined;
|
|
164197
164794
|
cadModel?: string | {
|
|
164198
164795
|
stlUrl: string;
|
|
@@ -164658,6 +165255,7 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164658
165255
|
pcbRotation?: string | number | undefined;
|
|
164659
165256
|
pcbPositionAnchor?: string | undefined;
|
|
164660
165257
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
165258
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
164661
165259
|
pcbMarginTop?: string | number | undefined;
|
|
164662
165260
|
pcbMarginRight?: string | number | undefined;
|
|
164663
165261
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -164719,6 +165317,8 @@ declare const currentSourceProps: z.ZodObject<{
|
|
|
164719
165317
|
isUsingOpenDrain?: boolean | undefined;
|
|
164720
165318
|
canUsePushPull?: boolean | undefined;
|
|
164721
165319
|
isUsingPushPull?: boolean | undefined;
|
|
165320
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
165321
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
164722
165322
|
}> | undefined;
|
|
164723
165323
|
cadModel?: string | {
|
|
164724
165324
|
stlUrl: string;
|
|
@@ -165185,6 +165785,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
165185
165785
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165186
165786
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
165187
165787
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
165788
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
165188
165789
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165189
165790
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
165190
165791
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -168248,6 +168849,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168248
168849
|
isUsingOpenDrain: z.ZodOptional<z.ZodBoolean>;
|
|
168249
168850
|
canUsePushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168250
168851
|
isUsingPushPull: z.ZodOptional<z.ZodBoolean>;
|
|
168852
|
+
shouldHaveDecouplingCapacitor: z.ZodOptional<z.ZodBoolean>;
|
|
168853
|
+
recommendedDecouplingCapacitorCapacitance: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber]>>;
|
|
168251
168854
|
}, "strip", z.ZodTypeAny, {
|
|
168252
168855
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168253
168856
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168272,6 +168875,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168272
168875
|
isUsingOpenDrain?: boolean | undefined;
|
|
168273
168876
|
canUsePushPull?: boolean | undefined;
|
|
168274
168877
|
isUsingPushPull?: boolean | undefined;
|
|
168878
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168879
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168275
168880
|
}, {
|
|
168276
168881
|
capabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
168277
168882
|
activeCapabilities?: ("i2c_sda" | "i2c_scl" | "spi_cs" | "spi_sck" | "spi_mosi" | "spi_miso" | "uart_tx" | "uart_rx")[] | undefined;
|
|
@@ -168296,6 +168901,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168296
168901
|
isUsingOpenDrain?: boolean | undefined;
|
|
168297
168902
|
canUsePushPull?: boolean | undefined;
|
|
168298
168903
|
isUsingPushPull?: boolean | undefined;
|
|
168904
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168905
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168299
168906
|
}>>>;
|
|
168300
168907
|
mfn: z.ZodOptional<z.ZodString>;
|
|
168301
168908
|
manufacturerPartNumber: z.ZodOptional<z.ZodString>;
|
|
@@ -168323,6 +168930,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168323
168930
|
pcbRotation?: number | undefined;
|
|
168324
168931
|
pcbPositionAnchor?: string | undefined;
|
|
168325
168932
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
168933
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
168326
168934
|
pcbMarginTop?: number | undefined;
|
|
168327
168935
|
pcbMarginRight?: number | undefined;
|
|
168328
168936
|
pcbMarginBottom?: number | undefined;
|
|
@@ -168384,6 +168992,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168384
168992
|
isUsingOpenDrain?: boolean | undefined;
|
|
168385
168993
|
canUsePushPull?: boolean | undefined;
|
|
168386
168994
|
isUsingPushPull?: boolean | undefined;
|
|
168995
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
168996
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168387
168997
|
}> | undefined;
|
|
168388
168998
|
cadModel?: string | {
|
|
168389
168999
|
stlUrl: string;
|
|
@@ -168845,6 +169455,7 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168845
169455
|
pcbRotation?: string | number | undefined;
|
|
168846
169456
|
pcbPositionAnchor?: string | undefined;
|
|
168847
169457
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
169458
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
168848
169459
|
pcbMarginTop?: string | number | undefined;
|
|
168849
169460
|
pcbMarginRight?: string | number | undefined;
|
|
168850
169461
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -168906,6 +169517,8 @@ declare const voltageProbeProps: z.ZodObject<Omit<{
|
|
|
168906
169517
|
isUsingOpenDrain?: boolean | undefined;
|
|
168907
169518
|
canUsePushPull?: boolean | undefined;
|
|
168908
169519
|
isUsingPushPull?: boolean | undefined;
|
|
169520
|
+
shouldHaveDecouplingCapacitor?: boolean | undefined;
|
|
169521
|
+
recommendedDecouplingCapacitorCapacitance?: string | number | undefined;
|
|
168909
169522
|
}> | undefined;
|
|
168910
169523
|
cadModel?: string | {
|
|
168911
169524
|
stlUrl: string;
|
|
@@ -169879,6 +170492,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
169879
170492
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
169880
170493
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
169881
170494
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170495
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
169882
170496
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
169883
170497
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
169884
170498
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -169965,6 +170579,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
169965
170579
|
pcbRotation?: number | undefined;
|
|
169966
170580
|
pcbPositionAnchor?: string | undefined;
|
|
169967
170581
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170582
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
169968
170583
|
pcbMarginTop?: number | undefined;
|
|
169969
170584
|
pcbMarginRight?: number | undefined;
|
|
169970
170585
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170007,6 +170622,7 @@ declare const copperTextProps: z.ZodObject<{
|
|
|
170007
170622
|
pcbRotation?: string | number | undefined;
|
|
170008
170623
|
pcbPositionAnchor?: string | undefined;
|
|
170009
170624
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170625
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170010
170626
|
pcbMarginTop?: string | number | undefined;
|
|
170011
170627
|
pcbMarginRight?: string | number | undefined;
|
|
170012
170628
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170044,6 +170660,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
170044
170660
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170045
170661
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170046
170662
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170663
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170047
170664
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170048
170665
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170049
170666
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170137,6 +170754,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
170137
170754
|
pcbRotation?: number | undefined;
|
|
170138
170755
|
pcbPositionAnchor?: string | undefined;
|
|
170139
170756
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170757
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170140
170758
|
pcbMarginTop?: number | undefined;
|
|
170141
170759
|
pcbMarginRight?: number | undefined;
|
|
170142
170760
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170183,6 +170801,7 @@ declare const silkscreenTextProps: z.ZodObject<{
|
|
|
170183
170801
|
pcbRotation?: string | number | undefined;
|
|
170184
170802
|
pcbPositionAnchor?: string | undefined;
|
|
170185
170803
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170804
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170186
170805
|
pcbMarginTop?: string | number | undefined;
|
|
170187
170806
|
pcbMarginRight?: string | number | undefined;
|
|
170188
170807
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170224,6 +170843,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
170224
170843
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170225
170844
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170226
170845
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
170846
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170227
170847
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170228
170848
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170229
170849
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170318,6 +170938,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
170318
170938
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
170319
170939
|
pcbPositionAnchor?: string | undefined;
|
|
170320
170940
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170941
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170321
170942
|
pcbMarginTop?: number | undefined;
|
|
170322
170943
|
pcbMarginRight?: number | undefined;
|
|
170323
170944
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170353,6 +170974,7 @@ declare const silkscreenPathProps: z.ZodObject<Omit<{
|
|
|
170353
170974
|
} | undefined;
|
|
170354
170975
|
pcbPositionAnchor?: string | undefined;
|
|
170355
170976
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
170977
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170356
170978
|
pcbMarginTop?: string | number | undefined;
|
|
170357
170979
|
pcbMarginRight?: string | number | undefined;
|
|
170358
170980
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170388,6 +171010,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
170388
171010
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170389
171011
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170390
171012
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171013
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170391
171014
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170392
171015
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170393
171016
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170459,6 +171082,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
170459
171082
|
pcbBottomEdgeY?: string | number | undefined;
|
|
170460
171083
|
pcbPositionAnchor?: string | undefined;
|
|
170461
171084
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171085
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170462
171086
|
pcbMarginTop?: number | undefined;
|
|
170463
171087
|
pcbMarginRight?: number | undefined;
|
|
170464
171088
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170493,6 +171117,7 @@ declare const silkscreenLineProps: z.ZodObject<Omit<{
|
|
|
170493
171117
|
pcbBottomEdgeY?: string | number | undefined;
|
|
170494
171118
|
pcbPositionAnchor?: string | undefined;
|
|
170495
171119
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171120
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170496
171121
|
pcbMarginTop?: string | number | undefined;
|
|
170497
171122
|
pcbMarginRight?: string | number | undefined;
|
|
170498
171123
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170527,6 +171152,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
170527
171152
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170528
171153
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170529
171154
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171155
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170530
171156
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170531
171157
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170532
171158
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170600,6 +171226,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
170600
171226
|
pcbOffsetY?: number | undefined;
|
|
170601
171227
|
pcbPositionAnchor?: string | undefined;
|
|
170602
171228
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171229
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170603
171230
|
pcbMarginTop?: number | undefined;
|
|
170604
171231
|
pcbMarginRight?: number | undefined;
|
|
170605
171232
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170639,6 +171266,7 @@ declare const silkscreenRectProps: z.ZodObject<Omit<{
|
|
|
170639
171266
|
pcbOffsetY?: string | number | undefined;
|
|
170640
171267
|
pcbPositionAnchor?: string | undefined;
|
|
170641
171268
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171269
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170642
171270
|
pcbMarginTop?: string | number | undefined;
|
|
170643
171271
|
pcbMarginRight?: string | number | undefined;
|
|
170644
171272
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -170677,6 +171305,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
170677
171305
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
170678
171306
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
170679
171307
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171308
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
170680
171309
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
170681
171310
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
170682
171311
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -170747,6 +171376,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
170747
171376
|
pcbOffsetY?: number | undefined;
|
|
170748
171377
|
pcbPositionAnchor?: string | undefined;
|
|
170749
171378
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171379
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170750
171380
|
pcbMarginTop?: number | undefined;
|
|
170751
171381
|
pcbMarginRight?: number | undefined;
|
|
170752
171382
|
pcbMarginBottom?: number | undefined;
|
|
@@ -170784,6 +171414,7 @@ declare const silkscreenCircleProps: z.ZodObject<Omit<{
|
|
|
170784
171414
|
pcbOffsetY?: string | number | undefined;
|
|
170785
171415
|
pcbPositionAnchor?: string | undefined;
|
|
170786
171416
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171417
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
170787
171418
|
pcbMarginTop?: string | number | undefined;
|
|
170788
171419
|
pcbMarginRight?: string | number | undefined;
|
|
170789
171420
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171026,6 +171657,7 @@ declare const portProps: z.ZodObject<{
|
|
|
171026
171657
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171027
171658
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171028
171659
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171660
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171029
171661
|
pcbMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171030
171662
|
pcbMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171031
171663
|
pcbMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -171137,6 +171769,7 @@ declare const portProps: z.ZodObject<{
|
|
|
171137
171769
|
pcbRotation?: number | undefined;
|
|
171138
171770
|
pcbPositionAnchor?: string | undefined;
|
|
171139
171771
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171772
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171140
171773
|
pcbMarginTop?: number | undefined;
|
|
171141
171774
|
pcbMarginRight?: number | undefined;
|
|
171142
171775
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171200,6 +171833,7 @@ declare const portProps: z.ZodObject<{
|
|
|
171200
171833
|
pcbRotation?: string | number | undefined;
|
|
171201
171834
|
pcbPositionAnchor?: string | undefined;
|
|
171202
171835
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171836
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171203
171837
|
pcbMarginTop?: string | number | undefined;
|
|
171204
171838
|
pcbMarginRight?: string | number | undefined;
|
|
171205
171839
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171268,6 +171902,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
171268
171902
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171269
171903
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171270
171904
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
171905
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171271
171906
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171272
171907
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171273
171908
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171343,6 +171978,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
171343
171978
|
pcbRotation?: number | undefined;
|
|
171344
171979
|
pcbPositionAnchor?: string | undefined;
|
|
171345
171980
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
171981
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171346
171982
|
pcbMarginTop?: number | undefined;
|
|
171347
171983
|
pcbMarginRight?: number | undefined;
|
|
171348
171984
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171381,6 +172017,7 @@ declare const pcbNoteTextProps: z.ZodObject<{
|
|
|
171381
172017
|
pcbRotation?: string | number | undefined;
|
|
171382
172018
|
pcbPositionAnchor?: string | undefined;
|
|
171383
172019
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172020
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171384
172021
|
pcbMarginTop?: string | number | undefined;
|
|
171385
172022
|
pcbMarginRight?: string | number | undefined;
|
|
171386
172023
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171427,6 +172064,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
171427
172064
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171428
172065
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171429
172066
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
172067
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171430
172068
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171431
172069
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171432
172070
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171502,6 +172140,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
171502
172140
|
pcbOffsetY?: number | undefined;
|
|
171503
172141
|
pcbPositionAnchor?: string | undefined;
|
|
171504
172142
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172143
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171505
172144
|
pcbMarginTop?: number | undefined;
|
|
171506
172145
|
pcbMarginRight?: number | undefined;
|
|
171507
172146
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171543,6 +172182,7 @@ declare const pcbNoteRectProps: z.ZodObject<Omit<{
|
|
|
171543
172182
|
pcbOffsetY?: string | number | undefined;
|
|
171544
172183
|
pcbPositionAnchor?: string | undefined;
|
|
171545
172184
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172185
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171546
172186
|
pcbMarginTop?: string | number | undefined;
|
|
171547
172187
|
pcbMarginRight?: string | number | undefined;
|
|
171548
172188
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171588,6 +172228,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
171588
172228
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171589
172229
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171590
172230
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
172231
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171591
172232
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171592
172233
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171593
172234
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171683,6 +172324,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
171683
172324
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
171684
172325
|
pcbPositionAnchor?: string | undefined;
|
|
171685
172326
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172327
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171686
172328
|
pcbMarginTop?: number | undefined;
|
|
171687
172329
|
pcbMarginRight?: number | undefined;
|
|
171688
172330
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171719,6 +172361,7 @@ declare const pcbNotePathProps: z.ZodObject<Omit<{
|
|
|
171719
172361
|
} | undefined;
|
|
171720
172362
|
pcbPositionAnchor?: string | undefined;
|
|
171721
172363
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172364
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171722
172365
|
pcbMarginTop?: string | number | undefined;
|
|
171723
172366
|
pcbMarginRight?: string | number | undefined;
|
|
171724
172367
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171764,6 +172407,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
171764
172407
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171765
172408
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171766
172409
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
172410
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171767
172411
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171768
172412
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171769
172413
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -171832,6 +172476,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
171832
172476
|
layer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | undefined;
|
|
171833
172477
|
pcbPositionAnchor?: string | undefined;
|
|
171834
172478
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172479
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171835
172480
|
pcbMarginTop?: number | undefined;
|
|
171836
172481
|
pcbMarginRight?: number | undefined;
|
|
171837
172482
|
pcbMarginBottom?: number | undefined;
|
|
@@ -171864,6 +172509,7 @@ declare const pcbNoteLineProps: z.ZodObject<Omit<{
|
|
|
171864
172509
|
} | undefined;
|
|
171865
172510
|
pcbPositionAnchor?: string | undefined;
|
|
171866
172511
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172512
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
171867
172513
|
pcbMarginTop?: string | number | undefined;
|
|
171868
172514
|
pcbMarginRight?: string | number | undefined;
|
|
171869
172515
|
pcbMarginBottom?: string | number | undefined;
|
|
@@ -171915,6 +172561,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
171915
172561
|
pcbRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
171916
172562
|
pcbPositionAnchor: z.ZodOptional<z.ZodString>;
|
|
171917
172563
|
pcbPositionMode: z.ZodOptional<z.ZodEnum<["relative_to_group_anchor", "auto", "relative_to_board_anchor", "relative_to_component_anchor"]>>;
|
|
172564
|
+
shouldBeOnEdgeOfBoard: z.ZodOptional<z.ZodBoolean>;
|
|
171918
172565
|
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>, z.ZodObject<{
|
|
171919
172566
|
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6"]>;
|
|
171920
172567
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -172013,6 +172660,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
172013
172660
|
fontSize?: number | undefined;
|
|
172014
172661
|
pcbPositionAnchor?: string | undefined;
|
|
172015
172662
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172663
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
172016
172664
|
pcbMarginTop?: number | undefined;
|
|
172017
172665
|
pcbMarginRight?: number | undefined;
|
|
172018
172666
|
pcbMarginBottom?: number | undefined;
|
|
@@ -172056,6 +172704,7 @@ declare const pcbNoteDimensionProps: z.ZodObject<Omit<{
|
|
|
172056
172704
|
fontSize?: string | number | undefined;
|
|
172057
172705
|
pcbPositionAnchor?: string | undefined;
|
|
172058
172706
|
pcbPositionMode?: "relative_to_group_anchor" | "auto" | "relative_to_board_anchor" | "relative_to_component_anchor" | undefined;
|
|
172707
|
+
shouldBeOnEdgeOfBoard?: boolean | undefined;
|
|
172059
172708
|
pcbMarginTop?: string | number | undefined;
|
|
172060
172709
|
pcbMarginRight?: string | number | undefined;
|
|
172061
172710
|
pcbMarginBottom?: string | number | undefined;
|