@tscircuit/props 0.0.635 → 0.0.636
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -3
- package/dist/index.d.ts +694 -572
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -1
- package/lib/components/board.ts +67 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -27486,7 +27486,53 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
27486
27486
|
declare const boardColorPresets: readonly ["not_specified", "green", "red", "blue", "purple", "black", "white", "yellow"];
|
|
27487
27487
|
type BoardColorPreset = (typeof boardColorPresets)[number];
|
|
27488
27488
|
type BoardColor = AutocompleteString<BoardColorPreset>;
|
|
27489
|
-
interface
|
|
27489
|
+
interface BoardOutlinePoint extends Point {
|
|
27490
|
+
/** Marks this outline point as the center of a castellated plated hole */
|
|
27491
|
+
isCastellatedHole?: boolean;
|
|
27492
|
+
/** Diameter of the drilled hole. Required when `isCastellatedHole` is true. */
|
|
27493
|
+
holeDiameter?: Distance;
|
|
27494
|
+
/** Diameter of the copper pad. Required when `isCastellatedHole` is true. */
|
|
27495
|
+
padDiameter?: Distance;
|
|
27496
|
+
/** Connection target or targets for the castellated hole */
|
|
27497
|
+
connectsTo?: string | string[];
|
|
27498
|
+
}
|
|
27499
|
+
declare const boardOutlinePoint: z.ZodEffects<z.ZodObject<{
|
|
27500
|
+
isCastellatedHole: z.ZodOptional<z.ZodBoolean>;
|
|
27501
|
+
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27502
|
+
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27503
|
+
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
27504
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27505
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
27506
|
+
}, "strip", z.ZodTypeAny, {
|
|
27507
|
+
x: number;
|
|
27508
|
+
y: number;
|
|
27509
|
+
isCastellatedHole?: boolean | undefined;
|
|
27510
|
+
holeDiameter?: number | undefined;
|
|
27511
|
+
padDiameter?: number | undefined;
|
|
27512
|
+
connectsTo?: string | string[] | undefined;
|
|
27513
|
+
}, {
|
|
27514
|
+
x: string | number;
|
|
27515
|
+
y: string | number;
|
|
27516
|
+
isCastellatedHole?: boolean | undefined;
|
|
27517
|
+
holeDiameter?: string | number | undefined;
|
|
27518
|
+
padDiameter?: string | number | undefined;
|
|
27519
|
+
connectsTo?: string | string[] | undefined;
|
|
27520
|
+
}>, {
|
|
27521
|
+
x: number;
|
|
27522
|
+
y: number;
|
|
27523
|
+
isCastellatedHole?: boolean | undefined;
|
|
27524
|
+
holeDiameter?: number | undefined;
|
|
27525
|
+
padDiameter?: number | undefined;
|
|
27526
|
+
connectsTo?: string | string[] | undefined;
|
|
27527
|
+
}, {
|
|
27528
|
+
x: string | number;
|
|
27529
|
+
y: string | number;
|
|
27530
|
+
isCastellatedHole?: boolean | undefined;
|
|
27531
|
+
holeDiameter?: string | number | undefined;
|
|
27532
|
+
padDiameter?: string | number | undefined;
|
|
27533
|
+
connectsTo?: string | string[] | undefined;
|
|
27534
|
+
}>;
|
|
27535
|
+
interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit" | "connections" | "outline"> {
|
|
27490
27536
|
title?: string;
|
|
27491
27537
|
material?: "fr4" | "fr1" | "flex";
|
|
27492
27538
|
/** Number of layers for the PCB */
|
|
@@ -27501,6 +27547,18 @@ interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit" | "connecti
|
|
|
27501
27547
|
boardAnchorPosition?: Point;
|
|
27502
27548
|
anchorAlignment?: z.infer<typeof ninePointAnchor>;
|
|
27503
27549
|
boardAnchorAlignment?: z.infer<typeof ninePointAnchor>;
|
|
27550
|
+
/**
|
|
27551
|
+
* Points defining the board edge. Set `isCastellatedHole` on a point to
|
|
27552
|
+
* place a castellated plated hole centered on that location.
|
|
27553
|
+
*
|
|
27554
|
+
* @example
|
|
27555
|
+
* ```tsx
|
|
27556
|
+
* { x: "-5mm", y: 0, isCastellatedHole: true,
|
|
27557
|
+
* holeDiameter: "0.8mm", padDiameter: "1.2mm",
|
|
27558
|
+
* connectsTo: "net.GND" }
|
|
27559
|
+
* ```
|
|
27560
|
+
*/
|
|
27561
|
+
outline?: BoardOutlinePoint[];
|
|
27504
27562
|
/** Color applied to both top and bottom solder masks */
|
|
27505
27563
|
solderMaskColor?: BoardColor;
|
|
27506
27564
|
/** Color of the top solder mask */
|
|
@@ -27520,7 +27578,21 @@ interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit" | "connecti
|
|
|
27520
27578
|
/** Whether this board should be omitted from the schematic view */
|
|
27521
27579
|
schematicDisabled?: boolean;
|
|
27522
27580
|
}
|
|
27523
|
-
declare const boardProps: z.ZodObject<
|
|
27581
|
+
declare const boardProps: z.ZodObject<{
|
|
27582
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
27583
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27584
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27585
|
+
name: z.ZodOptional<z.ZodString>;
|
|
27586
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
27587
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
27588
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
27589
|
+
}, "strip", z.ZodTypeAny, {
|
|
27590
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27591
|
+
}, {
|
|
27592
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27593
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
27594
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27595
|
+
}>>;
|
|
27524
27596
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
27525
27597
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
27526
27598
|
pcbLeftEdgeX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -27574,6 +27646,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27574
27646
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27575
27647
|
}>>;
|
|
27576
27648
|
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
27649
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27650
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27577
27651
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27578
27652
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27579
27653
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -27583,17 +27657,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27583
27657
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27584
27658
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27585
27659
|
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27586
|
-
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
27587
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
27588
|
-
}, "strip", z.ZodTypeAny, {
|
|
27589
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27590
|
-
}, {
|
|
27591
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27592
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
27593
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27594
|
-
}>>;
|
|
27595
27660
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
27596
|
-
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
27597
27661
|
schStyle: z.ZodOptional<z.ZodObject<{
|
|
27598
27662
|
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
27599
27663
|
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
@@ -27604,51 +27668,198 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27604
27668
|
defaultPassiveSize?: string | number | undefined;
|
|
27605
27669
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
27606
27670
|
}>>;
|
|
27607
|
-
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27608
27671
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27609
|
-
|
|
27672
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
27673
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
27610
27674
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
27611
27675
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
27612
|
-
|
|
27613
|
-
|
|
27614
|
-
|
|
27615
|
-
|
|
27616
|
-
|
|
27617
|
-
|
|
27618
|
-
|
|
27619
|
-
|
|
27620
|
-
|
|
27621
|
-
|
|
27622
|
-
|
|
27623
|
-
|
|
27624
|
-
|
|
27625
|
-
|
|
27626
|
-
|
|
27627
|
-
|
|
27628
|
-
|
|
27629
|
-
|
|
27630
|
-
|
|
27631
|
-
|
|
27632
|
-
|
|
27633
|
-
|
|
27634
|
-
|
|
27635
|
-
|
|
27636
|
-
|
|
27637
|
-
|
|
27638
|
-
|
|
27639
|
-
|
|
27640
|
-
|
|
27641
|
-
|
|
27642
|
-
|
|
27643
|
-
|
|
27644
|
-
|
|
27645
|
-
|
|
27646
|
-
|
|
27647
|
-
|
|
27648
|
-
|
|
27649
|
-
|
|
27676
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
27677
|
+
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
27678
|
+
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27679
|
+
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27680
|
+
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
27681
|
+
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
27682
|
+
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
27683
|
+
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27684
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27685
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27686
|
+
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
27687
|
+
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
27688
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
27689
|
+
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
27690
|
+
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
27691
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27692
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
27693
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
27694
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
27695
|
+
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27696
|
+
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27697
|
+
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27698
|
+
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27699
|
+
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27700
|
+
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27701
|
+
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27702
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
27703
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
27704
|
+
schTitle: z.ZodOptional<z.ZodString>;
|
|
27705
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
27706
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
27707
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
27708
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
27709
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
27710
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
27711
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27712
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27713
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27714
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27715
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27716
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27717
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27718
|
+
}, "strip", z.ZodTypeAny, {
|
|
27719
|
+
pins: (string | number)[];
|
|
27720
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27721
|
+
}, {
|
|
27722
|
+
pins: (string | number)[];
|
|
27723
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27724
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27725
|
+
pins: (string | number)[];
|
|
27726
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27727
|
+
}, (string | number)[] | {
|
|
27728
|
+
pins: (string | number)[];
|
|
27729
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27730
|
+
}>>;
|
|
27731
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27732
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27733
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27734
|
+
}, "strip", z.ZodTypeAny, {
|
|
27735
|
+
pins: (string | number)[];
|
|
27736
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27737
|
+
}, {
|
|
27738
|
+
pins: (string | number)[];
|
|
27739
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27740
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27741
|
+
pins: (string | number)[];
|
|
27742
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27743
|
+
}, (string | number)[] | {
|
|
27744
|
+
pins: (string | number)[];
|
|
27745
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27746
|
+
}>>;
|
|
27747
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27748
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27749
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27750
|
+
}, "strip", z.ZodTypeAny, {
|
|
27751
|
+
pins: (string | number)[];
|
|
27752
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27753
|
+
}, {
|
|
27754
|
+
pins: (string | number)[];
|
|
27755
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27756
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27757
|
+
pins: (string | number)[];
|
|
27758
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27759
|
+
}, (string | number)[] | {
|
|
27760
|
+
pins: (string | number)[];
|
|
27761
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27762
|
+
}>>;
|
|
27763
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27764
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27765
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27766
|
+
}, "strip", z.ZodTypeAny, {
|
|
27767
|
+
pins: (string | number)[];
|
|
27768
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27769
|
+
}, {
|
|
27770
|
+
pins: (string | number)[];
|
|
27771
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27772
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27773
|
+
pins: (string | number)[];
|
|
27774
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27775
|
+
}, (string | number)[] | {
|
|
27776
|
+
pins: (string | number)[];
|
|
27777
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27778
|
+
}>>;
|
|
27779
|
+
}, "strip", z.ZodTypeAny, {
|
|
27780
|
+
leftSize?: number | undefined;
|
|
27781
|
+
topSize?: number | undefined;
|
|
27782
|
+
rightSize?: number | undefined;
|
|
27783
|
+
bottomSize?: number | undefined;
|
|
27784
|
+
leftSide?: {
|
|
27785
|
+
pins: (string | number)[];
|
|
27786
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27787
|
+
} | undefined;
|
|
27788
|
+
topSide?: {
|
|
27789
|
+
pins: (string | number)[];
|
|
27790
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27791
|
+
} | undefined;
|
|
27792
|
+
rightSide?: {
|
|
27793
|
+
pins: (string | number)[];
|
|
27794
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27795
|
+
} | undefined;
|
|
27796
|
+
bottomSide?: {
|
|
27797
|
+
pins: (string | number)[];
|
|
27798
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27799
|
+
} | undefined;
|
|
27800
|
+
leftPinCount?: number | undefined;
|
|
27801
|
+
rightPinCount?: number | undefined;
|
|
27802
|
+
topPinCount?: number | undefined;
|
|
27803
|
+
bottomPinCount?: number | undefined;
|
|
27804
|
+
}, {
|
|
27805
|
+
leftSize?: number | undefined;
|
|
27806
|
+
topSize?: number | undefined;
|
|
27807
|
+
rightSize?: number | undefined;
|
|
27808
|
+
bottomSize?: number | undefined;
|
|
27809
|
+
leftSide?: (string | number)[] | {
|
|
27810
|
+
pins: (string | number)[];
|
|
27811
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27812
|
+
} | undefined;
|
|
27813
|
+
topSide?: (string | number)[] | {
|
|
27814
|
+
pins: (string | number)[];
|
|
27815
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27816
|
+
} | undefined;
|
|
27817
|
+
rightSide?: (string | number)[] | {
|
|
27818
|
+
pins: (string | number)[];
|
|
27819
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27820
|
+
} | undefined;
|
|
27821
|
+
bottomSide?: (string | number)[] | {
|
|
27822
|
+
pins: (string | number)[];
|
|
27823
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27824
|
+
} | undefined;
|
|
27825
|
+
leftPinCount?: number | undefined;
|
|
27826
|
+
rightPinCount?: number | undefined;
|
|
27827
|
+
topPinCount?: number | undefined;
|
|
27828
|
+
bottomPinCount?: number | undefined;
|
|
27829
|
+
}>>;
|
|
27830
|
+
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27831
|
+
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27832
|
+
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27833
|
+
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27834
|
+
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27835
|
+
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27836
|
+
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27837
|
+
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27838
|
+
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27839
|
+
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27840
|
+
}, "strip", z.ZodTypeAny, {
|
|
27841
|
+
marginLeft?: number | undefined;
|
|
27842
|
+
marginRight?: number | undefined;
|
|
27843
|
+
marginTop?: number | undefined;
|
|
27844
|
+
marginBottom?: number | undefined;
|
|
27845
|
+
leftMargin?: number | undefined;
|
|
27846
|
+
rightMargin?: number | undefined;
|
|
27847
|
+
topMargin?: number | undefined;
|
|
27848
|
+
bottomMargin?: number | undefined;
|
|
27849
|
+
}, {
|
|
27850
|
+
marginLeft?: string | number | undefined;
|
|
27851
|
+
marginRight?: string | number | undefined;
|
|
27852
|
+
marginTop?: string | number | undefined;
|
|
27853
|
+
marginBottom?: string | number | undefined;
|
|
27854
|
+
leftMargin?: string | number | undefined;
|
|
27855
|
+
rightMargin?: string | number | undefined;
|
|
27856
|
+
topMargin?: string | number | undefined;
|
|
27857
|
+
bottomMargin?: string | number | undefined;
|
|
27858
|
+
}>>>;
|
|
27650
27859
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27651
27860
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27861
|
+
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27862
|
+
nominalTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27652
27863
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27653
27864
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27654
27865
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
@@ -27888,223 +28099,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27888
28099
|
pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27889
28100
|
pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27890
28101
|
pcbAnchorAlignment: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
|
|
27891
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
27892
|
-
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
27893
|
-
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27894
|
-
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27895
|
-
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
27896
|
-
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
27897
|
-
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
27898
|
-
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27899
|
-
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27900
|
-
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27901
|
-
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
27902
|
-
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
27903
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
27904
|
-
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
27905
|
-
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
27906
|
-
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27907
|
-
pack: z.ZodOptional<z.ZodBoolean>;
|
|
27908
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
27909
|
-
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
27910
|
-
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27911
|
-
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27912
|
-
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27913
|
-
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27914
|
-
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27915
|
-
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27916
|
-
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27917
|
-
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
27918
|
-
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
27919
|
-
name: z.ZodOptional<z.ZodString>;
|
|
27920
|
-
children: z.ZodOptional<z.ZodAny>;
|
|
27921
|
-
schTitle: z.ZodOptional<z.ZodString>;
|
|
27922
|
-
schSheetName: z.ZodOptional<z.ZodString>;
|
|
27923
|
-
key: z.ZodOptional<z.ZodAny>;
|
|
27924
|
-
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
27925
|
-
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
27926
|
-
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
27927
|
-
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
27928
|
-
topSize: z.ZodOptional<z.ZodNumber>;
|
|
27929
|
-
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
27930
|
-
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
27931
|
-
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27932
|
-
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27933
|
-
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27934
|
-
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27935
|
-
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27936
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27937
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27938
|
-
}, "strip", z.ZodTypeAny, {
|
|
27939
|
-
pins: (string | number)[];
|
|
27940
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27941
|
-
}, {
|
|
27942
|
-
pins: (string | number)[];
|
|
27943
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27944
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27945
|
-
pins: (string | number)[];
|
|
27946
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27947
|
-
}, (string | number)[] | {
|
|
27948
|
-
pins: (string | number)[];
|
|
27949
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27950
|
-
}>>;
|
|
27951
|
-
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27952
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27953
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27954
|
-
}, "strip", z.ZodTypeAny, {
|
|
27955
|
-
pins: (string | number)[];
|
|
27956
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27957
|
-
}, {
|
|
27958
|
-
pins: (string | number)[];
|
|
27959
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27960
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27961
|
-
pins: (string | number)[];
|
|
27962
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27963
|
-
}, (string | number)[] | {
|
|
27964
|
-
pins: (string | number)[];
|
|
27965
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27966
|
-
}>>;
|
|
27967
|
-
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27968
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27969
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27970
|
-
}, "strip", z.ZodTypeAny, {
|
|
27971
|
-
pins: (string | number)[];
|
|
27972
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27973
|
-
}, {
|
|
27974
|
-
pins: (string | number)[];
|
|
27975
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27976
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27977
|
-
pins: (string | number)[];
|
|
27978
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27979
|
-
}, (string | number)[] | {
|
|
27980
|
-
pins: (string | number)[];
|
|
27981
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27982
|
-
}>>;
|
|
27983
|
-
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27984
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27985
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27986
|
-
}, "strip", z.ZodTypeAny, {
|
|
27987
|
-
pins: (string | number)[];
|
|
27988
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27989
|
-
}, {
|
|
27990
|
-
pins: (string | number)[];
|
|
27991
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27992
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27993
|
-
pins: (string | number)[];
|
|
27994
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27995
|
-
}, (string | number)[] | {
|
|
27996
|
-
pins: (string | number)[];
|
|
27997
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27998
|
-
}>>;
|
|
27999
|
-
}, "strip", z.ZodTypeAny, {
|
|
28000
|
-
leftSize?: number | undefined;
|
|
28001
|
-
topSize?: number | undefined;
|
|
28002
|
-
rightSize?: number | undefined;
|
|
28003
|
-
bottomSize?: number | undefined;
|
|
28004
|
-
leftSide?: {
|
|
28005
|
-
pins: (string | number)[];
|
|
28006
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28007
|
-
} | undefined;
|
|
28008
|
-
topSide?: {
|
|
28009
|
-
pins: (string | number)[];
|
|
28010
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28011
|
-
} | undefined;
|
|
28012
|
-
rightSide?: {
|
|
28013
|
-
pins: (string | number)[];
|
|
28014
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28015
|
-
} | undefined;
|
|
28016
|
-
bottomSide?: {
|
|
28017
|
-
pins: (string | number)[];
|
|
28018
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28019
|
-
} | undefined;
|
|
28020
|
-
leftPinCount?: number | undefined;
|
|
28021
|
-
rightPinCount?: number | undefined;
|
|
28022
|
-
topPinCount?: number | undefined;
|
|
28023
|
-
bottomPinCount?: number | undefined;
|
|
28024
|
-
}, {
|
|
28025
|
-
leftSize?: number | undefined;
|
|
28026
|
-
topSize?: number | undefined;
|
|
28027
|
-
rightSize?: number | undefined;
|
|
28028
|
-
bottomSize?: number | undefined;
|
|
28029
|
-
leftSide?: (string | number)[] | {
|
|
28030
|
-
pins: (string | number)[];
|
|
28031
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28032
|
-
} | undefined;
|
|
28033
|
-
topSide?: (string | number)[] | {
|
|
28034
|
-
pins: (string | number)[];
|
|
28035
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28036
|
-
} | undefined;
|
|
28037
|
-
rightSide?: (string | number)[] | {
|
|
28038
|
-
pins: (string | number)[];
|
|
28039
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28040
|
-
} | undefined;
|
|
28041
|
-
bottomSide?: (string | number)[] | {
|
|
28042
|
-
pins: (string | number)[];
|
|
28043
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
28044
|
-
} | undefined;
|
|
28045
|
-
leftPinCount?: number | undefined;
|
|
28046
|
-
rightPinCount?: number | undefined;
|
|
28047
|
-
topPinCount?: number | undefined;
|
|
28048
|
-
bottomPinCount?: number | undefined;
|
|
28049
|
-
}>>;
|
|
28050
|
-
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28051
|
-
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
28052
|
-
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28053
|
-
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28054
|
-
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28055
|
-
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28056
|
-
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28057
|
-
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28058
|
-
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28059
|
-
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28060
|
-
}, "strip", z.ZodTypeAny, {
|
|
28061
|
-
marginLeft?: number | undefined;
|
|
28062
|
-
marginRight?: number | undefined;
|
|
28063
|
-
marginTop?: number | undefined;
|
|
28064
|
-
marginBottom?: number | undefined;
|
|
28065
|
-
leftMargin?: number | undefined;
|
|
28066
|
-
rightMargin?: number | undefined;
|
|
28067
|
-
topMargin?: number | undefined;
|
|
28068
|
-
bottomMargin?: number | undefined;
|
|
28069
|
-
}, {
|
|
28070
|
-
marginLeft?: string | number | undefined;
|
|
28071
|
-
marginRight?: string | number | undefined;
|
|
28072
|
-
marginTop?: string | number | undefined;
|
|
28073
|
-
marginBottom?: string | number | undefined;
|
|
28074
|
-
leftMargin?: string | number | undefined;
|
|
28075
|
-
rightMargin?: string | number | undefined;
|
|
28076
|
-
topMargin?: string | number | undefined;
|
|
28077
|
-
bottomMargin?: string | number | undefined;
|
|
28078
|
-
}>>>;
|
|
28079
|
-
} & {
|
|
28080
|
-
nominalTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28081
|
-
partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
|
|
28082
|
-
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28083
|
-
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
28084
|
-
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
28085
|
-
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
28086
|
-
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
28087
|
-
square: z.ZodOptional<z.ZodBoolean>;
|
|
28088
|
-
emptyArea: z.ZodOptional<z.ZodString>;
|
|
28089
|
-
filledArea: z.ZodOptional<z.ZodString>;
|
|
28090
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28091
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28092
|
-
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
28093
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28094
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28095
|
-
}, "strip", z.ZodTypeAny, {
|
|
28096
|
-
x: number;
|
|
28097
|
-
y: number;
|
|
28098
|
-
}, {
|
|
28099
|
-
x: string | number;
|
|
28100
|
-
y: string | number;
|
|
28101
|
-
}>, "many">>;
|
|
28102
|
-
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28103
|
-
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28104
|
-
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
28105
|
-
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28106
|
-
exposeNets: z.ZodOptional<z.ZodBoolean>;
|
|
28107
|
-
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28108
28102
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28109
28103
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28110
28104
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -28279,14 +28273,66 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28279
28273
|
relative_to?: string | undefined;
|
|
28280
28274
|
}[] | undefined;
|
|
28281
28275
|
}>>;
|
|
28282
|
-
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28283
|
-
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28284
|
-
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28285
28276
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28286
28277
|
placementDrcChecksDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28287
28278
|
bomDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28288
28279
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28289
|
-
|
|
28280
|
+
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
28281
|
+
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
28282
|
+
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
28283
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
28284
|
+
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
28285
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28286
|
+
exposeNets: z.ZodOptional<z.ZodBoolean>;
|
|
28287
|
+
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28288
|
+
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28289
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28290
|
+
partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
|
|
28291
|
+
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28292
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
28293
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
28294
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
28295
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28296
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28297
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
28298
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28299
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28300
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
28301
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
28302
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
28303
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28304
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28305
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28306
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
28307
|
+
pcbFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28308
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
28309
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
28310
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
28311
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
28312
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
28313
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28314
|
+
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
28315
|
+
pcbPackGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28316
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
28317
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28318
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28319
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
28320
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
28321
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
28322
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28323
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28324
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28325
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
28326
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28327
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
28328
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
28329
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
28330
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
28331
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
28332
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28333
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
28334
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
28335
|
+
} & {
|
|
28290
28336
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1", "flex"]>>;
|
|
28291
28337
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<8>, z.ZodLiteral<10>]>>;
|
|
28292
28338
|
allowBlindAndBuriedVias: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -28304,6 +28350,42 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28304
28350
|
}>>;
|
|
28305
28351
|
anchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
28306
28352
|
boardAnchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
28353
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
28354
|
+
isCastellatedHole: z.ZodOptional<z.ZodBoolean>;
|
|
28355
|
+
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28356
|
+
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28357
|
+
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
28358
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28359
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28360
|
+
}, "strip", z.ZodTypeAny, {
|
|
28361
|
+
x: number;
|
|
28362
|
+
y: number;
|
|
28363
|
+
isCastellatedHole?: boolean | undefined;
|
|
28364
|
+
holeDiameter?: number | undefined;
|
|
28365
|
+
padDiameter?: number | undefined;
|
|
28366
|
+
connectsTo?: string | string[] | undefined;
|
|
28367
|
+
}, {
|
|
28368
|
+
x: string | number;
|
|
28369
|
+
y: string | number;
|
|
28370
|
+
isCastellatedHole?: boolean | undefined;
|
|
28371
|
+
holeDiameter?: string | number | undefined;
|
|
28372
|
+
padDiameter?: string | number | undefined;
|
|
28373
|
+
connectsTo?: string | string[] | undefined;
|
|
28374
|
+
}>, {
|
|
28375
|
+
x: number;
|
|
28376
|
+
y: number;
|
|
28377
|
+
isCastellatedHole?: boolean | undefined;
|
|
28378
|
+
holeDiameter?: number | undefined;
|
|
28379
|
+
padDiameter?: number | undefined;
|
|
28380
|
+
connectsTo?: string | string[] | undefined;
|
|
28381
|
+
}, {
|
|
28382
|
+
x: string | number;
|
|
28383
|
+
y: string | number;
|
|
28384
|
+
isCastellatedHole?: boolean | undefined;
|
|
28385
|
+
holeDiameter?: string | number | undefined;
|
|
28386
|
+
padDiameter?: string | number | undefined;
|
|
28387
|
+
connectsTo?: string | string[] | undefined;
|
|
28388
|
+
}>, "many">>;
|
|
28307
28389
|
title: z.ZodOptional<z.ZodString>;
|
|
28308
28390
|
solderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
28309
28391
|
topSolderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
@@ -28596,6 +28678,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28596
28678
|
outline?: {
|
|
28597
28679
|
x: number;
|
|
28598
28680
|
y: number;
|
|
28681
|
+
isCastellatedHole?: boolean | undefined;
|
|
28682
|
+
holeDiameter?: number | undefined;
|
|
28683
|
+
padDiameter?: number | undefined;
|
|
28684
|
+
connectsTo?: string | string[] | undefined;
|
|
28599
28685
|
}[] | undefined;
|
|
28600
28686
|
outlineOffsetX?: number | undefined;
|
|
28601
28687
|
outlineOffsetY?: number | undefined;
|
|
@@ -28936,6 +29022,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28936
29022
|
outline?: {
|
|
28937
29023
|
x: string | number;
|
|
28938
29024
|
y: string | number;
|
|
29025
|
+
isCastellatedHole?: boolean | undefined;
|
|
29026
|
+
holeDiameter?: string | number | undefined;
|
|
29027
|
+
padDiameter?: string | number | undefined;
|
|
29028
|
+
connectsTo?: string | string[] | undefined;
|
|
28939
29029
|
}[] | undefined;
|
|
28940
29030
|
outlineOffsetX?: string | number | undefined;
|
|
28941
29031
|
outlineOffsetY?: string | number | undefined;
|
|
@@ -77852,8 +77942,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
77852
77942
|
pcbSx?: PcbSx | undefined;
|
|
77853
77943
|
pcbRelative?: boolean | undefined;
|
|
77854
77944
|
relative?: boolean | undefined;
|
|
77855
|
-
connectsTo?: string | string[] | undefined;
|
|
77856
77945
|
padDiameter?: number | undefined;
|
|
77946
|
+
connectsTo?: string | string[] | undefined;
|
|
77857
77947
|
portHints?: (string | number)[] | undefined;
|
|
77858
77948
|
solderMaskMargin?: number | undefined;
|
|
77859
77949
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -77892,8 +77982,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
77892
77982
|
pcbSx?: PcbSx | undefined;
|
|
77893
77983
|
pcbRelative?: boolean | undefined;
|
|
77894
77984
|
relative?: boolean | undefined;
|
|
77895
|
-
connectsTo?: string | string[] | undefined;
|
|
77896
77985
|
padDiameter?: string | number | undefined;
|
|
77986
|
+
connectsTo?: string | string[] | undefined;
|
|
77897
77987
|
portHints?: (string | number)[] | undefined;
|
|
77898
77988
|
solderMaskMargin?: string | number | undefined;
|
|
77899
77989
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -78713,8 +78803,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
78713
78803
|
pcbSx?: PcbSx | undefined;
|
|
78714
78804
|
pcbRelative?: boolean | undefined;
|
|
78715
78805
|
relative?: boolean | undefined;
|
|
78716
|
-
connectsTo?: string | string[] | undefined;
|
|
78717
78806
|
holeDiameter?: number | undefined;
|
|
78807
|
+
connectsTo?: string | string[] | undefined;
|
|
78718
78808
|
portHints?: (string | number)[] | undefined;
|
|
78719
78809
|
solderMaskMargin?: number | undefined;
|
|
78720
78810
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -78760,8 +78850,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
78760
78850
|
pcbSx?: PcbSx | undefined;
|
|
78761
78851
|
pcbRelative?: boolean | undefined;
|
|
78762
78852
|
relative?: boolean | undefined;
|
|
78763
|
-
connectsTo?: string | string[] | undefined;
|
|
78764
78853
|
holeDiameter?: string | number | undefined;
|
|
78854
|
+
connectsTo?: string | string[] | undefined;
|
|
78765
78855
|
portHints?: (string | number)[] | undefined;
|
|
78766
78856
|
solderMaskMargin?: string | number | undefined;
|
|
78767
78857
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -78802,8 +78892,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
78802
78892
|
pcbSx?: PcbSx | undefined;
|
|
78803
78893
|
pcbRelative?: boolean | undefined;
|
|
78804
78894
|
relative?: boolean | undefined;
|
|
78805
|
-
connectsTo?: string | string[] | undefined;
|
|
78806
78895
|
padDiameter?: number | undefined;
|
|
78896
|
+
connectsTo?: string | string[] | undefined;
|
|
78807
78897
|
portHints?: (string | number)[] | undefined;
|
|
78808
78898
|
solderMaskMargin?: number | undefined;
|
|
78809
78899
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79031,8 +79121,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79031
79121
|
pcbSx?: PcbSx | undefined;
|
|
79032
79122
|
pcbRelative?: boolean | undefined;
|
|
79033
79123
|
relative?: boolean | undefined;
|
|
79034
|
-
connectsTo?: string | string[] | undefined;
|
|
79035
79124
|
holeDiameter?: number | undefined;
|
|
79125
|
+
connectsTo?: string | string[] | undefined;
|
|
79036
79126
|
portHints?: (string | number)[] | undefined;
|
|
79037
79127
|
solderMaskMargin?: number | undefined;
|
|
79038
79128
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79073,8 +79163,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79073
79163
|
pcbSx?: PcbSx | undefined;
|
|
79074
79164
|
pcbRelative?: boolean | undefined;
|
|
79075
79165
|
relative?: boolean | undefined;
|
|
79076
|
-
connectsTo?: string | string[] | undefined;
|
|
79077
79166
|
padDiameter?: string | number | undefined;
|
|
79167
|
+
connectsTo?: string | string[] | undefined;
|
|
79078
79168
|
portHints?: (string | number)[] | undefined;
|
|
79079
79169
|
solderMaskMargin?: string | number | undefined;
|
|
79080
79170
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79302,8 +79392,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79302
79392
|
pcbSx?: PcbSx | undefined;
|
|
79303
79393
|
pcbRelative?: boolean | undefined;
|
|
79304
79394
|
relative?: boolean | undefined;
|
|
79305
|
-
connectsTo?: string | string[] | undefined;
|
|
79306
79395
|
holeDiameter?: string | number | undefined;
|
|
79396
|
+
connectsTo?: string | string[] | undefined;
|
|
79307
79397
|
portHints?: (string | number)[] | undefined;
|
|
79308
79398
|
solderMaskMargin?: string | number | undefined;
|
|
79309
79399
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79344,8 +79434,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79344
79434
|
pcbSx?: PcbSx | undefined;
|
|
79345
79435
|
pcbRelative?: boolean | undefined;
|
|
79346
79436
|
relative?: boolean | undefined;
|
|
79347
|
-
connectsTo?: string | string[] | undefined;
|
|
79348
79437
|
padDiameter?: number | undefined;
|
|
79438
|
+
connectsTo?: string | string[] | undefined;
|
|
79349
79439
|
portHints?: (string | number)[] | undefined;
|
|
79350
79440
|
solderMaskMargin?: number | undefined;
|
|
79351
79441
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79573,8 +79663,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79573
79663
|
pcbSx?: PcbSx | undefined;
|
|
79574
79664
|
pcbRelative?: boolean | undefined;
|
|
79575
79665
|
relative?: boolean | undefined;
|
|
79576
|
-
connectsTo?: string | string[] | undefined;
|
|
79577
79666
|
holeDiameter?: number | undefined;
|
|
79667
|
+
connectsTo?: string | string[] | undefined;
|
|
79578
79668
|
portHints?: (string | number)[] | undefined;
|
|
79579
79669
|
solderMaskMargin?: number | undefined;
|
|
79580
79670
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -100522,7 +100612,21 @@ interface StampboardProps extends BoardProps {
|
|
|
100522
100612
|
pinPitch?: number | string;
|
|
100523
100613
|
innerHoles?: boolean;
|
|
100524
100614
|
}
|
|
100525
|
-
declare const stampboardProps: z.ZodObject<
|
|
100615
|
+
declare const stampboardProps: z.ZodObject<{
|
|
100616
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
100617
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100618
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100619
|
+
name: z.ZodOptional<z.ZodString>;
|
|
100620
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
100621
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
100622
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
100623
|
+
}, "strip", z.ZodTypeAny, {
|
|
100624
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100625
|
+
}, {
|
|
100626
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100627
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
100628
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100629
|
+
}>>;
|
|
100526
100630
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
100527
100631
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
100528
100632
|
pcbLeftEdgeX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -100576,6 +100680,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100576
100680
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
100577
100681
|
}>>;
|
|
100578
100682
|
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
100683
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
100684
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
100579
100685
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100580
100686
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100581
100687
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -100585,17 +100691,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100585
100691
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100586
100692
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100587
100693
|
schRotation: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100588
|
-
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
100589
|
-
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
100590
|
-
}, "strip", z.ZodTypeAny, {
|
|
100591
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100592
|
-
}, {
|
|
100593
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100594
|
-
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
100595
|
-
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100596
|
-
}>>;
|
|
100597
100694
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
100598
|
-
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
100599
100695
|
schStyle: z.ZodOptional<z.ZodObject<{
|
|
100600
100696
|
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
100601
100697
|
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
@@ -100606,51 +100702,198 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100606
100702
|
defaultPassiveSize?: string | number | undefined;
|
|
100607
100703
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
100608
100704
|
}>>;
|
|
100609
|
-
relative: z.ZodOptional<z.ZodBoolean>;
|
|
100610
100705
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
100611
|
-
|
|
100706
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
100707
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
100612
100708
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
100613
100709
|
flex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
100614
|
-
|
|
100615
|
-
|
|
100616
|
-
|
|
100617
|
-
|
|
100618
|
-
|
|
100619
|
-
|
|
100620
|
-
|
|
100621
|
-
|
|
100622
|
-
|
|
100623
|
-
|
|
100624
|
-
|
|
100625
|
-
|
|
100626
|
-
|
|
100627
|
-
|
|
100628
|
-
|
|
100629
|
-
|
|
100630
|
-
|
|
100631
|
-
|
|
100632
|
-
|
|
100633
|
-
|
|
100634
|
-
|
|
100635
|
-
|
|
100636
|
-
|
|
100637
|
-
|
|
100638
|
-
|
|
100639
|
-
|
|
100640
|
-
|
|
100641
|
-
|
|
100642
|
-
|
|
100643
|
-
|
|
100644
|
-
|
|
100645
|
-
|
|
100646
|
-
|
|
100647
|
-
|
|
100648
|
-
|
|
100649
|
-
|
|
100650
|
-
|
|
100651
|
-
|
|
100710
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
100711
|
+
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
100712
|
+
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100713
|
+
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100714
|
+
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
100715
|
+
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
100716
|
+
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
100717
|
+
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100718
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100719
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100720
|
+
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
100721
|
+
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
100722
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
100723
|
+
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
100724
|
+
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
100725
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100726
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
100727
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
100728
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
100729
|
+
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100730
|
+
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100731
|
+
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100732
|
+
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100733
|
+
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100734
|
+
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100735
|
+
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100736
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
100737
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
100738
|
+
schTitle: z.ZodOptional<z.ZodString>;
|
|
100739
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
100740
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
100741
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
100742
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
100743
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
100744
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
100745
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100746
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100747
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100748
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100749
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100750
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100751
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100752
|
+
}, "strip", z.ZodTypeAny, {
|
|
100753
|
+
pins: (string | number)[];
|
|
100754
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100755
|
+
}, {
|
|
100756
|
+
pins: (string | number)[];
|
|
100757
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100758
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100759
|
+
pins: (string | number)[];
|
|
100760
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100761
|
+
}, (string | number)[] | {
|
|
100762
|
+
pins: (string | number)[];
|
|
100763
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100764
|
+
}>>;
|
|
100765
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100766
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100767
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100768
|
+
}, "strip", z.ZodTypeAny, {
|
|
100769
|
+
pins: (string | number)[];
|
|
100770
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100771
|
+
}, {
|
|
100772
|
+
pins: (string | number)[];
|
|
100773
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100774
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100775
|
+
pins: (string | number)[];
|
|
100776
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100777
|
+
}, (string | number)[] | {
|
|
100778
|
+
pins: (string | number)[];
|
|
100779
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100780
|
+
}>>;
|
|
100781
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100782
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100783
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100784
|
+
}, "strip", z.ZodTypeAny, {
|
|
100785
|
+
pins: (string | number)[];
|
|
100786
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100787
|
+
}, {
|
|
100788
|
+
pins: (string | number)[];
|
|
100789
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100790
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100791
|
+
pins: (string | number)[];
|
|
100792
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100793
|
+
}, (string | number)[] | {
|
|
100794
|
+
pins: (string | number)[];
|
|
100795
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100796
|
+
}>>;
|
|
100797
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100798
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100799
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100800
|
+
}, "strip", z.ZodTypeAny, {
|
|
100801
|
+
pins: (string | number)[];
|
|
100802
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100803
|
+
}, {
|
|
100804
|
+
pins: (string | number)[];
|
|
100805
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100806
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100807
|
+
pins: (string | number)[];
|
|
100808
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100809
|
+
}, (string | number)[] | {
|
|
100810
|
+
pins: (string | number)[];
|
|
100811
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100812
|
+
}>>;
|
|
100813
|
+
}, "strip", z.ZodTypeAny, {
|
|
100814
|
+
leftSize?: number | undefined;
|
|
100815
|
+
topSize?: number | undefined;
|
|
100816
|
+
rightSize?: number | undefined;
|
|
100817
|
+
bottomSize?: number | undefined;
|
|
100818
|
+
leftSide?: {
|
|
100819
|
+
pins: (string | number)[];
|
|
100820
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100821
|
+
} | undefined;
|
|
100822
|
+
topSide?: {
|
|
100823
|
+
pins: (string | number)[];
|
|
100824
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100825
|
+
} | undefined;
|
|
100826
|
+
rightSide?: {
|
|
100827
|
+
pins: (string | number)[];
|
|
100828
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100829
|
+
} | undefined;
|
|
100830
|
+
bottomSide?: {
|
|
100831
|
+
pins: (string | number)[];
|
|
100832
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100833
|
+
} | undefined;
|
|
100834
|
+
leftPinCount?: number | undefined;
|
|
100835
|
+
rightPinCount?: number | undefined;
|
|
100836
|
+
topPinCount?: number | undefined;
|
|
100837
|
+
bottomPinCount?: number | undefined;
|
|
100838
|
+
}, {
|
|
100839
|
+
leftSize?: number | undefined;
|
|
100840
|
+
topSize?: number | undefined;
|
|
100841
|
+
rightSize?: number | undefined;
|
|
100842
|
+
bottomSize?: number | undefined;
|
|
100843
|
+
leftSide?: (string | number)[] | {
|
|
100844
|
+
pins: (string | number)[];
|
|
100845
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100846
|
+
} | undefined;
|
|
100847
|
+
topSide?: (string | number)[] | {
|
|
100848
|
+
pins: (string | number)[];
|
|
100849
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100850
|
+
} | undefined;
|
|
100851
|
+
rightSide?: (string | number)[] | {
|
|
100852
|
+
pins: (string | number)[];
|
|
100853
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100854
|
+
} | undefined;
|
|
100855
|
+
bottomSide?: (string | number)[] | {
|
|
100856
|
+
pins: (string | number)[];
|
|
100857
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100858
|
+
} | undefined;
|
|
100859
|
+
leftPinCount?: number | undefined;
|
|
100860
|
+
rightPinCount?: number | undefined;
|
|
100861
|
+
topPinCount?: number | undefined;
|
|
100862
|
+
bottomPinCount?: number | undefined;
|
|
100863
|
+
}>>;
|
|
100864
|
+
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100865
|
+
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
100866
|
+
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100867
|
+
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100868
|
+
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100869
|
+
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100870
|
+
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100871
|
+
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100872
|
+
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100873
|
+
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100874
|
+
}, "strip", z.ZodTypeAny, {
|
|
100875
|
+
marginLeft?: number | undefined;
|
|
100876
|
+
marginRight?: number | undefined;
|
|
100877
|
+
marginTop?: number | undefined;
|
|
100878
|
+
marginBottom?: number | undefined;
|
|
100879
|
+
leftMargin?: number | undefined;
|
|
100880
|
+
rightMargin?: number | undefined;
|
|
100881
|
+
topMargin?: number | undefined;
|
|
100882
|
+
bottomMargin?: number | undefined;
|
|
100883
|
+
}, {
|
|
100884
|
+
marginLeft?: string | number | undefined;
|
|
100885
|
+
marginRight?: string | number | undefined;
|
|
100886
|
+
marginTop?: string | number | undefined;
|
|
100887
|
+
marginBottom?: string | number | undefined;
|
|
100888
|
+
leftMargin?: string | number | undefined;
|
|
100889
|
+
rightMargin?: string | number | undefined;
|
|
100890
|
+
topMargin?: string | number | undefined;
|
|
100891
|
+
bottomMargin?: string | number | undefined;
|
|
100892
|
+
}>>>;
|
|
100652
100893
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100653
100894
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100895
|
+
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100896
|
+
nominalTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100654
100897
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100655
100898
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100656
100899
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
@@ -100890,223 +101133,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100890
101133
|
pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100891
101134
|
pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100892
101135
|
pcbAnchorAlignment: z.ZodOptional<z.ZodType<AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">, z.ZodTypeDef, AutocompleteString<"top_left" | "top_center" | "top_right" | "center_left" | "center" | "center_right" | "bottom_left" | "bottom_center" | "bottom_right">>>;
|
|
100893
|
-
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
100894
|
-
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
100895
|
-
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100896
|
-
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100897
|
-
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
100898
|
-
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
100899
|
-
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
100900
|
-
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100901
|
-
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100902
|
-
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100903
|
-
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
100904
|
-
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
100905
|
-
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
100906
|
-
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
100907
|
-
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
100908
|
-
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100909
|
-
pack: z.ZodOptional<z.ZodBoolean>;
|
|
100910
|
-
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
100911
|
-
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
100912
|
-
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100913
|
-
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100914
|
-
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100915
|
-
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100916
|
-
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100917
|
-
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100918
|
-
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100919
|
-
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
100920
|
-
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
100921
|
-
name: z.ZodOptional<z.ZodString>;
|
|
100922
|
-
children: z.ZodOptional<z.ZodAny>;
|
|
100923
|
-
schTitle: z.ZodOptional<z.ZodString>;
|
|
100924
|
-
schSheetName: z.ZodOptional<z.ZodString>;
|
|
100925
|
-
key: z.ZodOptional<z.ZodAny>;
|
|
100926
|
-
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
100927
|
-
connections: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodString, z.ZodReadonly<z.ZodArray<z.ZodString, "many">>]>, z.ZodArray<z.ZodString, "many">]>>>>;
|
|
100928
|
-
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
100929
|
-
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
100930
|
-
topSize: z.ZodOptional<z.ZodNumber>;
|
|
100931
|
-
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
100932
|
-
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
100933
|
-
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100934
|
-
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100935
|
-
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100936
|
-
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100937
|
-
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100938
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100939
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100940
|
-
}, "strip", z.ZodTypeAny, {
|
|
100941
|
-
pins: (string | number)[];
|
|
100942
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100943
|
-
}, {
|
|
100944
|
-
pins: (string | number)[];
|
|
100945
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100946
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100947
|
-
pins: (string | number)[];
|
|
100948
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100949
|
-
}, (string | number)[] | {
|
|
100950
|
-
pins: (string | number)[];
|
|
100951
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100952
|
-
}>>;
|
|
100953
|
-
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100954
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100955
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100956
|
-
}, "strip", z.ZodTypeAny, {
|
|
100957
|
-
pins: (string | number)[];
|
|
100958
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100959
|
-
}, {
|
|
100960
|
-
pins: (string | number)[];
|
|
100961
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100962
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100963
|
-
pins: (string | number)[];
|
|
100964
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100965
|
-
}, (string | number)[] | {
|
|
100966
|
-
pins: (string | number)[];
|
|
100967
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100968
|
-
}>>;
|
|
100969
|
-
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100970
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100971
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100972
|
-
}, "strip", z.ZodTypeAny, {
|
|
100973
|
-
pins: (string | number)[];
|
|
100974
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100975
|
-
}, {
|
|
100976
|
-
pins: (string | number)[];
|
|
100977
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100978
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100979
|
-
pins: (string | number)[];
|
|
100980
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100981
|
-
}, (string | number)[] | {
|
|
100982
|
-
pins: (string | number)[];
|
|
100983
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100984
|
-
}>>;
|
|
100985
|
-
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100986
|
-
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100987
|
-
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100988
|
-
}, "strip", z.ZodTypeAny, {
|
|
100989
|
-
pins: (string | number)[];
|
|
100990
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100991
|
-
}, {
|
|
100992
|
-
pins: (string | number)[];
|
|
100993
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100994
|
-
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100995
|
-
pins: (string | number)[];
|
|
100996
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100997
|
-
}, (string | number)[] | {
|
|
100998
|
-
pins: (string | number)[];
|
|
100999
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101000
|
-
}>>;
|
|
101001
|
-
}, "strip", z.ZodTypeAny, {
|
|
101002
|
-
leftSize?: number | undefined;
|
|
101003
|
-
topSize?: number | undefined;
|
|
101004
|
-
rightSize?: number | undefined;
|
|
101005
|
-
bottomSize?: number | undefined;
|
|
101006
|
-
leftSide?: {
|
|
101007
|
-
pins: (string | number)[];
|
|
101008
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101009
|
-
} | undefined;
|
|
101010
|
-
topSide?: {
|
|
101011
|
-
pins: (string | number)[];
|
|
101012
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101013
|
-
} | undefined;
|
|
101014
|
-
rightSide?: {
|
|
101015
|
-
pins: (string | number)[];
|
|
101016
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101017
|
-
} | undefined;
|
|
101018
|
-
bottomSide?: {
|
|
101019
|
-
pins: (string | number)[];
|
|
101020
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101021
|
-
} | undefined;
|
|
101022
|
-
leftPinCount?: number | undefined;
|
|
101023
|
-
rightPinCount?: number | undefined;
|
|
101024
|
-
topPinCount?: number | undefined;
|
|
101025
|
-
bottomPinCount?: number | undefined;
|
|
101026
|
-
}, {
|
|
101027
|
-
leftSize?: number | undefined;
|
|
101028
|
-
topSize?: number | undefined;
|
|
101029
|
-
rightSize?: number | undefined;
|
|
101030
|
-
bottomSize?: number | undefined;
|
|
101031
|
-
leftSide?: (string | number)[] | {
|
|
101032
|
-
pins: (string | number)[];
|
|
101033
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101034
|
-
} | undefined;
|
|
101035
|
-
topSide?: (string | number)[] | {
|
|
101036
|
-
pins: (string | number)[];
|
|
101037
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101038
|
-
} | undefined;
|
|
101039
|
-
rightSide?: (string | number)[] | {
|
|
101040
|
-
pins: (string | number)[];
|
|
101041
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101042
|
-
} | undefined;
|
|
101043
|
-
bottomSide?: (string | number)[] | {
|
|
101044
|
-
pins: (string | number)[];
|
|
101045
|
-
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
101046
|
-
} | undefined;
|
|
101047
|
-
leftPinCount?: number | undefined;
|
|
101048
|
-
rightPinCount?: number | undefined;
|
|
101049
|
-
topPinCount?: number | undefined;
|
|
101050
|
-
bottomPinCount?: number | undefined;
|
|
101051
|
-
}>>;
|
|
101052
|
-
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101053
|
-
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
101054
|
-
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101055
|
-
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101056
|
-
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101057
|
-
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101058
|
-
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101059
|
-
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101060
|
-
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101061
|
-
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101062
|
-
}, "strip", z.ZodTypeAny, {
|
|
101063
|
-
marginLeft?: number | undefined;
|
|
101064
|
-
marginRight?: number | undefined;
|
|
101065
|
-
marginTop?: number | undefined;
|
|
101066
|
-
marginBottom?: number | undefined;
|
|
101067
|
-
leftMargin?: number | undefined;
|
|
101068
|
-
rightMargin?: number | undefined;
|
|
101069
|
-
topMargin?: number | undefined;
|
|
101070
|
-
bottomMargin?: number | undefined;
|
|
101071
|
-
}, {
|
|
101072
|
-
marginLeft?: string | number | undefined;
|
|
101073
|
-
marginRight?: string | number | undefined;
|
|
101074
|
-
marginTop?: string | number | undefined;
|
|
101075
|
-
marginBottom?: string | number | undefined;
|
|
101076
|
-
leftMargin?: string | number | undefined;
|
|
101077
|
-
rightMargin?: string | number | undefined;
|
|
101078
|
-
topMargin?: string | number | undefined;
|
|
101079
|
-
bottomMargin?: string | number | undefined;
|
|
101080
|
-
}>>>;
|
|
101081
|
-
} & {
|
|
101082
|
-
nominalTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101083
|
-
partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
|
|
101084
|
-
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101085
|
-
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
101086
|
-
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
101087
|
-
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
101088
|
-
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
101089
|
-
square: z.ZodOptional<z.ZodBoolean>;
|
|
101090
|
-
emptyArea: z.ZodOptional<z.ZodString>;
|
|
101091
|
-
filledArea: z.ZodOptional<z.ZodString>;
|
|
101092
|
-
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101093
|
-
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101094
|
-
outline: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
101095
|
-
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
101096
|
-
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
101097
|
-
}, "strip", z.ZodTypeAny, {
|
|
101098
|
-
x: number;
|
|
101099
|
-
y: number;
|
|
101100
|
-
}, {
|
|
101101
|
-
x: string | number;
|
|
101102
|
-
y: string | number;
|
|
101103
|
-
}>, "many">>;
|
|
101104
|
-
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101105
|
-
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101106
|
-
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
101107
|
-
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
101108
|
-
exposeNets: z.ZodOptional<z.ZodBoolean>;
|
|
101109
|
-
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101110
101136
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101111
101137
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101112
101138
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -101281,14 +101307,66 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101281
101307
|
relative_to?: string | undefined;
|
|
101282
101308
|
}[] | undefined;
|
|
101283
101309
|
}>>;
|
|
101284
|
-
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101285
|
-
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101286
|
-
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101287
101310
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101288
101311
|
placementDrcChecksDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101289
101312
|
bomDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101290
101313
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101291
|
-
|
|
101314
|
+
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
101315
|
+
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
101316
|
+
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
101317
|
+
autorouterVersion: z.ZodOptional<z.ZodEffects<z.ZodType<AutocompleteString<AutorouterVersion>, z.ZodTypeDef, AutocompleteString<AutorouterVersion>>, "beta_pipeline1" | "beta_pipeline3" | "beta_pipeline4" | "beta_pipeline5" | "beta_pipeline7" | "beta_pipeline9" | "latest", AutocompleteString<AutorouterVersion>>>;
|
|
101318
|
+
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
101319
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
101320
|
+
exposeNets: z.ZodOptional<z.ZodBoolean>;
|
|
101321
|
+
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101322
|
+
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101323
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101324
|
+
partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
|
|
101325
|
+
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101326
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
101327
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
101328
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
101329
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101330
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101331
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
101332
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101333
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101334
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
101335
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
101336
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
101337
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101338
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101339
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101340
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
101341
|
+
pcbFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101342
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
101343
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
101344
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
101345
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
101346
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
101347
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101348
|
+
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
101349
|
+
pcbPackGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101350
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
101351
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101352
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101353
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
101354
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
101355
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
101356
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101357
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101358
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101359
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
101360
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101361
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
101362
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
101363
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
101364
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
101365
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
101366
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101367
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
101368
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
101369
|
+
} & {
|
|
101292
101370
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1", "flex"]>>;
|
|
101293
101371
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<8>, z.ZodLiteral<10>]>>;
|
|
101294
101372
|
allowBlindAndBuriedVias: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -101306,6 +101384,42 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101306
101384
|
}>>;
|
|
101307
101385
|
anchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
101308
101386
|
boardAnchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
101387
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
101388
|
+
isCastellatedHole: z.ZodOptional<z.ZodBoolean>;
|
|
101389
|
+
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101390
|
+
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101391
|
+
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
101392
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
101393
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
101394
|
+
}, "strip", z.ZodTypeAny, {
|
|
101395
|
+
x: number;
|
|
101396
|
+
y: number;
|
|
101397
|
+
isCastellatedHole?: boolean | undefined;
|
|
101398
|
+
holeDiameter?: number | undefined;
|
|
101399
|
+
padDiameter?: number | undefined;
|
|
101400
|
+
connectsTo?: string | string[] | undefined;
|
|
101401
|
+
}, {
|
|
101402
|
+
x: string | number;
|
|
101403
|
+
y: string | number;
|
|
101404
|
+
isCastellatedHole?: boolean | undefined;
|
|
101405
|
+
holeDiameter?: string | number | undefined;
|
|
101406
|
+
padDiameter?: string | number | undefined;
|
|
101407
|
+
connectsTo?: string | string[] | undefined;
|
|
101408
|
+
}>, {
|
|
101409
|
+
x: number;
|
|
101410
|
+
y: number;
|
|
101411
|
+
isCastellatedHole?: boolean | undefined;
|
|
101412
|
+
holeDiameter?: number | undefined;
|
|
101413
|
+
padDiameter?: number | undefined;
|
|
101414
|
+
connectsTo?: string | string[] | undefined;
|
|
101415
|
+
}, {
|
|
101416
|
+
x: string | number;
|
|
101417
|
+
y: string | number;
|
|
101418
|
+
isCastellatedHole?: boolean | undefined;
|
|
101419
|
+
holeDiameter?: string | number | undefined;
|
|
101420
|
+
padDiameter?: string | number | undefined;
|
|
101421
|
+
connectsTo?: string | string[] | undefined;
|
|
101422
|
+
}>, "many">>;
|
|
101309
101423
|
title: z.ZodOptional<z.ZodString>;
|
|
101310
101424
|
solderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
101311
101425
|
topSolderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
@@ -101613,6 +101727,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101613
101727
|
outline?: {
|
|
101614
101728
|
x: number;
|
|
101615
101729
|
y: number;
|
|
101730
|
+
isCastellatedHole?: boolean | undefined;
|
|
101731
|
+
holeDiameter?: number | undefined;
|
|
101732
|
+
padDiameter?: number | undefined;
|
|
101733
|
+
connectsTo?: string | string[] | undefined;
|
|
101616
101734
|
}[] | undefined;
|
|
101617
101735
|
outlineOffsetX?: number | undefined;
|
|
101618
101736
|
outlineOffsetY?: number | undefined;
|
|
@@ -101963,6 +102081,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101963
102081
|
outline?: {
|
|
101964
102082
|
x: string | number;
|
|
101965
102083
|
y: string | number;
|
|
102084
|
+
isCastellatedHole?: boolean | undefined;
|
|
102085
|
+
holeDiameter?: string | number | undefined;
|
|
102086
|
+
padDiameter?: string | number | undefined;
|
|
102087
|
+
connectsTo?: string | string[] | undefined;
|
|
101966
102088
|
}[] | undefined;
|
|
101967
102089
|
outlineOffsetX?: string | number | undefined;
|
|
101968
102090
|
outlineOffsetY?: string | number | undefined;
|
|
@@ -107312,16 +107434,16 @@ declare const netProps: z.ZodObject<{
|
|
|
107312
107434
|
name: string;
|
|
107313
107435
|
highlightColor?: string | undefined;
|
|
107314
107436
|
nominalTraceWidth?: number | undefined;
|
|
107315
|
-
routingPhaseIndex?: number | null | undefined;
|
|
107316
107437
|
connectsTo?: string | string[] | undefined;
|
|
107438
|
+
routingPhaseIndex?: number | null | undefined;
|
|
107317
107439
|
isPowerNet?: boolean | undefined;
|
|
107318
107440
|
isGroundNet?: boolean | undefined;
|
|
107319
107441
|
}, {
|
|
107320
107442
|
name: string;
|
|
107321
107443
|
highlightColor?: string | undefined;
|
|
107322
107444
|
nominalTraceWidth?: string | number | undefined;
|
|
107323
|
-
routingPhaseIndex?: number | null | undefined;
|
|
107324
107445
|
connectsTo?: string | string[] | undefined;
|
|
107446
|
+
routingPhaseIndex?: number | null | undefined;
|
|
107325
107447
|
isPowerNet?: boolean | undefined;
|
|
107326
107448
|
isGroundNet?: boolean | undefined;
|
|
107327
107449
|
}>;
|
|
@@ -117202,9 +117324,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117202
117324
|
thickness?: number | undefined;
|
|
117203
117325
|
highlightColor?: string | undefined;
|
|
117204
117326
|
displayName?: string | undefined;
|
|
117327
|
+
connectsTo?: string | string[] | undefined;
|
|
117205
117328
|
routingPhaseIndex?: number | null | undefined;
|
|
117206
117329
|
maxLength?: number | undefined;
|
|
117207
|
-
connectsTo?: string | string[] | undefined;
|
|
117208
117330
|
schematicRouteHints?: {
|
|
117209
117331
|
x: number;
|
|
117210
117332
|
y: number;
|
|
@@ -117245,9 +117367,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117245
117367
|
thickness?: string | number | undefined;
|
|
117246
117368
|
highlightColor?: string | undefined;
|
|
117247
117369
|
displayName?: string | undefined;
|
|
117370
|
+
connectsTo?: string | string[] | undefined;
|
|
117248
117371
|
routingPhaseIndex?: number | null | undefined;
|
|
117249
117372
|
maxLength?: string | number | undefined;
|
|
117250
|
-
connectsTo?: string | string[] | undefined;
|
|
117251
117373
|
schematicRouteHints?: {
|
|
117252
117374
|
x: string | number;
|
|
117253
117375
|
y: string | number;
|
|
@@ -117478,9 +117600,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117478
117600
|
thickness?: number | undefined;
|
|
117479
117601
|
highlightColor?: string | undefined;
|
|
117480
117602
|
displayName?: string | undefined;
|
|
117603
|
+
connectsTo?: string | string[] | undefined;
|
|
117481
117604
|
routingPhaseIndex?: number | null | undefined;
|
|
117482
117605
|
maxLength?: number | undefined;
|
|
117483
|
-
connectsTo?: string | string[] | undefined;
|
|
117484
117606
|
schematicRouteHints?: {
|
|
117485
117607
|
x: number;
|
|
117486
117608
|
y: number;
|
|
@@ -117524,9 +117646,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117524
117646
|
thickness?: string | number | undefined;
|
|
117525
117647
|
highlightColor?: string | undefined;
|
|
117526
117648
|
displayName?: string | undefined;
|
|
117649
|
+
connectsTo?: string | string[] | undefined;
|
|
117527
117650
|
routingPhaseIndex?: number | null | undefined;
|
|
117528
117651
|
maxLength?: string | number | undefined;
|
|
117529
|
-
connectsTo?: string | string[] | undefined;
|
|
117530
117652
|
schematicRouteHints?: {
|
|
117531
117653
|
x: string | number;
|
|
117532
117654
|
y: string | number;
|
|
@@ -117757,9 +117879,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117757
117879
|
thickness?: number | undefined;
|
|
117758
117880
|
highlightColor?: string | undefined;
|
|
117759
117881
|
displayName?: string | undefined;
|
|
117882
|
+
connectsTo?: string | string[] | undefined;
|
|
117760
117883
|
routingPhaseIndex?: number | null | undefined;
|
|
117761
117884
|
maxLength?: number | undefined;
|
|
117762
|
-
connectsTo?: string | string[] | undefined;
|
|
117763
117885
|
schematicRouteHints?: {
|
|
117764
117886
|
x: number;
|
|
117765
117887
|
y: number;
|
|
@@ -117803,9 +117925,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117803
117925
|
thickness?: string | number | undefined;
|
|
117804
117926
|
highlightColor?: string | undefined;
|
|
117805
117927
|
displayName?: string | undefined;
|
|
117928
|
+
connectsTo?: string | string[] | undefined;
|
|
117806
117929
|
routingPhaseIndex?: number | null | undefined;
|
|
117807
117930
|
maxLength?: string | number | undefined;
|
|
117808
|
-
connectsTo?: string | string[] | undefined;
|
|
117809
117931
|
schematicRouteHints?: {
|
|
117810
117932
|
x: string | number;
|
|
117811
117933
|
y: string | number;
|
|
@@ -129754,9 +129876,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129754
129876
|
}> | undefined;
|
|
129755
129877
|
schWidth?: number | undefined;
|
|
129756
129878
|
schHeight?: number | undefined;
|
|
129879
|
+
holeDiameter?: number | undefined;
|
|
129757
129880
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
129758
129881
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
129759
|
-
holeDiameter?: number | undefined;
|
|
129760
129882
|
pitch?: number | undefined;
|
|
129761
129883
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
129762
129884
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -130472,9 +130594,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130472
130594
|
}> | undefined;
|
|
130473
130595
|
schWidth?: string | number | undefined;
|
|
130474
130596
|
schHeight?: string | number | undefined;
|
|
130597
|
+
holeDiameter?: string | number | undefined;
|
|
130475
130598
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
130476
130599
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
130477
|
-
holeDiameter?: string | number | undefined;
|
|
130478
130600
|
pitch?: string | number | undefined;
|
|
130479
130601
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
130480
130602
|
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
@@ -131190,9 +131312,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131190
131312
|
}> | undefined;
|
|
131191
131313
|
schWidth?: number | undefined;
|
|
131192
131314
|
schHeight?: number | undefined;
|
|
131315
|
+
holeDiameter?: number | undefined;
|
|
131193
131316
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
131194
131317
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
131195
|
-
holeDiameter?: number | undefined;
|
|
131196
131318
|
pitch?: number | undefined;
|
|
131197
131319
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
131198
131320
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -131908,9 +132030,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131908
132030
|
}> | undefined;
|
|
131909
132031
|
schWidth?: string | number | undefined;
|
|
131910
132032
|
schHeight?: string | number | undefined;
|
|
132033
|
+
holeDiameter?: string | number | undefined;
|
|
131911
132034
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
131912
132035
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
131913
|
-
holeDiameter?: string | number | undefined;
|
|
131914
132036
|
pitch?: string | number | undefined;
|
|
131915
132037
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
131916
132038
|
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
@@ -132626,9 +132748,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132626
132748
|
}> | undefined;
|
|
132627
132749
|
schWidth?: number | undefined;
|
|
132628
132750
|
schHeight?: number | undefined;
|
|
132751
|
+
holeDiameter?: number | undefined;
|
|
132629
132752
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
132630
132753
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
132631
|
-
holeDiameter?: number | undefined;
|
|
132632
132754
|
pitch?: number | undefined;
|
|
132633
132755
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
132634
132756
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -133344,9 +133466,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133344
133466
|
}> | undefined;
|
|
133345
133467
|
schWidth?: string | number | undefined;
|
|
133346
133468
|
schHeight?: string | number | undefined;
|
|
133469
|
+
holeDiameter?: string | number | undefined;
|
|
133347
133470
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
133348
133471
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
133349
|
-
holeDiameter?: string | number | undefined;
|
|
133350
133472
|
pitch?: string | number | undefined;
|
|
133351
133473
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
133352
133474
|
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
@@ -182523,8 +182645,8 @@ declare const viaProps: z.ZodObject<{
|
|
|
182523
182645
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
182524
182646
|
} | undefined;
|
|
182525
182647
|
schRelative?: boolean | undefined;
|
|
182526
|
-
connectsTo?: string | string[] | undefined;
|
|
182527
182648
|
holeDiameter?: number | undefined;
|
|
182649
|
+
connectsTo?: string | string[] | undefined;
|
|
182528
182650
|
outerDiameter?: number | undefined;
|
|
182529
182651
|
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | undefined;
|
|
182530
182652
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | undefined;
|
|
@@ -182584,8 +182706,8 @@ declare const viaProps: z.ZodObject<{
|
|
|
182584
182706
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
182585
182707
|
} | undefined;
|
|
182586
182708
|
schRelative?: boolean | undefined;
|
|
182587
|
-
connectsTo?: string | string[] | undefined;
|
|
182588
182709
|
holeDiameter?: string | number | undefined;
|
|
182710
|
+
connectsTo?: string | string[] | undefined;
|
|
182589
182711
|
outerDiameter?: string | number | undefined;
|
|
182590
182712
|
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
182591
182713
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
@@ -220372,4 +220494,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
220372
220494
|
}
|
|
220373
220495
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
220374
220496
|
|
|
220375
|
-
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutorouterVersion, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusFanoutDirection, type BusFanoutDirectionLiteral, type BusName, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelFootprinterString, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CanonicalBusFanoutDirection, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConnectorStandard, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutApertureProps, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DirectionalFanoutBoundaryPadding, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FanoutBoundaryPadding, type FanoutPourNetMap, type FanoutProps, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type ImplicitBreakoutBounds, type ImplicitBreakoutBus, type ImplicitBreakoutConnection, type ImplicitBreakoutConnectionEndpoint, type ImplicitBreakoutConnectionOrDifferentialPair, type ImplicitBreakoutDifferentialPair, type ImplicitBreakoutEdge, type ImplicitBreakoutPoint, type ImplicitBreakoutPointSolverFn, type ImplicitBreakoutPointSolverInput, type ImplicitBreakoutPointSolverOutput, type ImplicitBreakoutRegion, type ImplicitBreakoutSolverPoint, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type LegacyBusFanoutDirection, type LocalCacheEngine, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NinePointAnchor, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedPillSmtPadProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busFanoutDirection, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, canonicalBusFanoutDirection, canonicalBusFanoutDirectionValues, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, connectorStandard, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutApertureBaseProps, cutoutProps, differentialPairProps, diodePinLabelsProp, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fanoutBoundaryPadding, fanoutProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedPillSmtPadProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|
|
220497
|
+
export { type AmmeterPinLabels, type AmmeterProps, type AnalogAcSweepSimulationProps, type AnalogAnalysisSimulationBaseProps, type AnalogCapacitanceSweepParameterProps, type AnalogCurrentSweepParameterProps, type AnalogDcOperatingPointSimulationProps, type AnalogDcSweepSimulationProps, type AnalogInductanceSweepParameterProps, type AnalogResistanceSweepParameterProps, type AnalogSimulationProps, type AnalogSweepParameterProps, type AnalogTransientSimulationProps, type AnalogVoltageSweepParameterProps, type AssemblyDeviceProps, type AssemblyDevicePropsInput, type AutocompleteString, type AutorouterConfig, type AutorouterDefinition, type AutorouterInstance, type AutorouterPreset, type AutorouterProp, type AutorouterVersion, type AutoroutingPhaseProps, type BaseGroupProps, type BaseManualEditEvent, type BaseManualEditEventInput, type BasicFootprint, type BatteryPinLabels, type BatteryProps, type BoardColor, type BoardColorPreset, type BoardOutlinePoint, type BoardProps, type Border, type BreakoutPointProps, type BreakoutProps, type BusFanoutDirection, type BusFanoutDirectionLiteral, type BusName, type BusProps, type CadAssemblyProps, type CadAssemblyPropsInput, type CadModelAxisDirection, type CadModelBase, type CadModelFootprinterString, type CadModelGlb, type CadModelGltf, type CadModelJscad, type CadModelObj, type CadModelProp, type CadModelProps, type CadModelPropsInput, type CadModelStep, type CadModelStl, type CadModelWrl, type CanonicalBusFanoutDirection, type CapacitorPinLabels, type CapacitorProps, type ChipConnections, type ChipPinLabels, type ChipProps, type ChipPropsSU, type CircleCutoutProps, type CircleEnclosureCutoutApertureProps, type CircleHoleProps, type CirclePlatedHoleProps, type CircleShapeProps, type CircleSmtPadProps, type CircleSolderPasteProps, type CircuitJson, type CircularHoleWithRectPlatedProps, type CommonComponentProps, type CommonLayoutProps, type CommonShapeProps, type ComponentProps, type ConnectionTarget, type Connections, type ConnectorProps, type ConnectorStandard, type ConstrainedLayoutProps, type ConstraintProps, type CopperPourProps, type CopperPourPropsInput, type CopperTextProps, type CourtyardCircleProps, type CourtyardOutlineProps, type CourtyardPillProps, type CourtyardRectProps, type CrystalPinLabels, type CrystalProps, type CurrentSourcePinLabels, type CurrentSourceProps, type CustomDrcCheckContext, type CustomDrcCheckFn, type CustomDrcCheckInput, type CustomDrcConnectable, type CustomDrcSelect, type CustomDrcSelectAll, type CutoutApertureProps, type CutoutProps, type CutoutPropsInput, type DifferentialPairProps, type DiodePinLabels, type DiodePinLabelsProp, type DiodeProps, type Direction, type DirectionAlongEdge, type DirectionalFanoutBoundaryPadding, type DrcCheckProps, type EditPcbComponentLocationEvent, type EditPcbComponentLocationEventInput, type EditPcbGroupLocationEvent, type EditPcbGroupLocationEventInput, type EditSchematicComponentLocationEvent, type EditSchematicComponentLocationEventInput, type EditSchematicGroupLocationEvent, type EditSchematicGroupLocationEventInput, type EditTraceHintEvent, type EditTraceHintEventInput, type EnclosureCutoutApertureProps, type EnclosureCutoutApertureShape, type EnclosureFdmBoxProps, type EnclosureFdmBoxPropsInput, type FabricationNoteDimensionProps, type FabricationNoteDimensionPropsInput, type FabricationNotePathProps, type FabricationNoteRectProps, type FabricationNoteTextProps, type FabricationNoteTextPropsInput, type FanoutBoundaryPadding, type FanoutPourNetMap, type FanoutProps, type FiducialProps, type FootprintFileParserEntry, type FootprintInsertionDirection, type FootprintLibraryResult, type FootprintProp, type FootprintProps, type FootprintPropsInput, type FootprintSoupElements, type FootprinterAutocompleteString, type FootprinterStringExample, type FusePinLabels, type FuseProps, type GroupProps, type HoleProps, type HoleWithPolygonPadPlatedHoleProps, type ImplicitBreakoutBounds, type ImplicitBreakoutBus, type ImplicitBreakoutConnection, type ImplicitBreakoutConnectionEndpoint, type ImplicitBreakoutConnectionOrDifferentialPair, type ImplicitBreakoutDifferentialPair, type ImplicitBreakoutEdge, type ImplicitBreakoutPoint, type ImplicitBreakoutPointSolverFn, type ImplicitBreakoutPointSolverInput, type ImplicitBreakoutPointSolverOutput, type ImplicitBreakoutRegion, type ImplicitBreakoutSolverPoint, type InductorPinLabels, type InductorProps, type InferredChipProps, type InferredConstrainedLayoutProps, type InferredDiodeProps, type InferredFuseProps, type InferredHoleProps, type InferredSchematicArcProps, type InferredSchematicBoxProps, type InferredSchematicCircleProps, type InferredSchematicLineProps, type InferredSchematicPathProps, type InferredSchematicRectProps, type InferredSchematicSectionProps, type InferredSchematicSheetProps, type InferredSchematicSymbolProps, type InferredSchematicTextProps, type InferredSmtPadProps, type InferredSolderPasteProps, type InferredSwitchProps, type InferredTestpointProps, type InferredViaProps, type InterconnectProps, type InternalCircuitElement, type InternalCircuitProps, type JlcpcbAutocompleteStringPath, type JlcpcbKnownPartNumber, type JumperProps, type KicadAt, type KicadAutocompleteStringPath, type KicadEffects, type KicadFont, type KicadFootprintAttributes, type KicadFootprintMetadata, type KicadFootprintModel, type KicadFootprintPad, type KicadFootprintProperties, type KicadPath, type KicadPinElectricalType, type KicadPinGraphicStyle, type KicadPinMetadata, type KicadProperty, type KicadSymbolEffects, type KicadSymbolMetadata, type KicadSymbolPinNames, type KicadSymbolPinNumbers, type KicadSymbolProperties, type KicadSymbolProperty, type LayoutConfig, type LedPinLabels, type LedProps, type LegacyBusFanoutDirection, type LocalCacheEngine, type ManualEditEvent, type ManualEditEventInput, type ManualEditsFile, type ManualEditsFileInput, type ManualPcbPlacement, type ManualPcbPlacementInput, type ManualSchematicPlacement, type ManualSchematicPlacementInput, type ManualTraceHint, type ManualTraceHintInput, type MosfetPinLabels, type MosfetProps, type MountedBoardProps, type NetAliasProps, type NetLabelProps, type NetProps, type NinePointAnchor, type NonSubcircuitGroupProps, type OpAmpPinLabels, type OpAmpProps, type OvalHoleProps, type OvalPlatedHoleProps, type PanelProps, type ParsedEnclosureCutoutApertureProps, type PartsEngine, type PcbKeepoutProps, type PcbLayoutProps, type PcbNoteDimensionProps, type PcbNoteDimensionPropsInput, type PcbNoteLineProps, type PcbNoteLinePropsInput, type PcbNotePathProps, type PcbNotePathPropsInput, type PcbNoteRectProps, type PcbNoteRectPropsInput, type PcbNoteTextProps, type PcbNoteTextPropsInput, type PcbPositionMode, type PcbRouteCache, type PcbSameXConstraint, type PcbSameYConstraint, type PcbStyle, type PcbSx, type PcbSxSelector, type PcbSxValue, type PcbTraceProps, type PcbXDistConstraint, type PcbYDistConstraint, type PillEnclosureCutoutApertureProps, type PillHoleProps, type PillPlatedHoleProps, type PillShapeProps, type PillSmtPadProps, type PillWithRectPadPlatedHoleProps, type PinAttributeMap, type PinCapability, type PinCompatibleVariant, type PinHeaderProps, type PinLabelFromPinLabelMap, type PinLabelsProp, type PinSideDefinition, type PinSideDefinitionInput, type PinVariant, type PinoutProps, type PlatedHoleProps, type PlatformConfig, type PolygonCutoutProps, type PolygonSmtPadProps, type PortHints, type PortProps, type PositionMode, type PotentiometerPinLabels, type PotentiometerPinVariant, type PotentiometerProps, type PowerSourceProps, type ProjectConfig, type PushButtonProps, type RectCutoutProps, type RectEnclosureCutoutApertureProps, type RectHoleProps, type RectShapeProps, type RectSmtPadProps, type RectSolderPasteProps, type ResistorPinLabels, type ResistorProps, type ResonatorPinVariant, type ResonatorProps, type RotatedPillSmtPadProps, type RotatedRectSmtPadProps, type RoutingTolerances, type SchStyle, type SchematicArcProps, type SchematicBoxProps, type SchematicCellProps, type SchematicCircleProps, type SchematicLineProps, type SchematicOrientation, type SchematicPathProps, type SchematicPinArrangement, type SchematicPinArrangementWithPinCounts, type SchematicPinArrangementWithSides, type SchematicPinArrangementWithSizes, type SchematicPinLabel, type SchematicPinStyle, type SchematicPortArrangement, type SchematicPortArrangementWithPinCounts, type SchematicPortArrangementWithSides, type SchematicPortArrangementWithSizes, type SchematicRectProps, type SchematicRowProps, type SchematicSectionProps, type SchematicSheetProps, type SchematicSymbolProps, type SchematicSymbolSize, type SchematicTableProps, type SchematicTextProps, type SelectionResult, type SelectionResultComponent, type SelectionResultNet, type SelectionResultPort, type Selectors, type SilkscreenCircleProps, type SilkscreenGraphicProps, type SilkscreenLineProps, type SilkscreenPathProps, type SilkscreenRectProps, type SilkscreenTextProps, type SimpleRouteJson, type SmtPadProps, type SolderJumperProps, type SolderPasteProps, type SpiceEngine, type SpiceEngineSimulationResult, type SpiceModelElement, type SpiceModelProps, type SpiceOptions, type StampboardProps, type SubcircuitGroupProps, type SubcircuitGroupPropsWithBool, type SubcircuitProps, type SubpanelProps, type SupplierName, type SupplierPartNumbers, type SupplierProps, type SwitchProps, type SymbolProp, type SymbolProps, type SymbolPropsInput, type TestpointConnections, type TestpointPinLabels, type TestpointProps, type ToolingrailProps, type TraceHintProps, type TraceProps, type TransistorPinLabels, type TransistorProps, type ViaProps, type VoltageProbeProps, type VoltageSourcePinLabels, type VoltageSourceProps, type WaveShape, ammeterPinLabels, ammeterPins, ammeterProps, analogAcSweepSimulationProps, analogAnalysisSimulationBaseProps, analogCapacitanceSweepParameterProps, analogCurrentSweepParameterProps, analogDcOperatingPointSimulationProps, analogDcSweepSimulationProps, analogInductanceSweepParameterProps, analogResistanceSweepParameterProps, analogSimulationProps, analogSweepParameterProps, analogTransientSimulationProps, analogVoltageSweepParameterProps, assemblyDeviceProps, assemblyProps, autorouterConfig, autorouterEffortLevel, autorouterPreset, autorouterProp, autoroutingPhaseProps, baseGroupProps, base_manual_edit_event, batteryPins, batteryProps, boardOutlinePoint, boardProps, border, breakoutPointProps, breakoutProps, bugProps, busFanoutDirection, busProps, cadModelAxisDirection, cadModelAxisDirections, cadModelBase, cadModelGlb, cadModelGltf, cadModelJscad, cadModelObj, cadModelProp, cadModelStep, cadModelStl, cadModelWrl, cadassemblyProps, cadmodelProps, canonicalBusFanoutDirection, canonicalBusFanoutDirectionValues, capacitorPinLabels, capacitorPins, capacitorProps, chipProps, circleCutoutProps, circleShapeProps, circleSmtPadProps, circleSolderPasteProps, commonComponentProps, commonLayoutProps, commonShapeProps, componentProps, connectorProps, connectorStandard, constrainedLayoutProps, constraintProps, copperPourProps, copperTextProps, courtyardCircleProps, courtyardOutlineProps, courtyardPillProps, courtyardRectProps, crystalPins, crystalProps, currentSourcePinLabels, currentSourcePins, currentSourceProps, customDrcCheckFn, cutoutApertureBaseProps, cutoutProps, differentialPairProps, diodePinLabelsProp, diodePins, diodeProps, direction, directionAlongEdge, distanceOrMultiplier, drcCheckProps, edit_component_location_event, edit_pcb_component_location_event, edit_pcb_group_location_event, edit_schematic_component_location_event, edit_schematic_group_location_event, edit_trace_hint_event, enclosureCutoutApertureProps, enclosureCutoutApertureShapes, enclosureFdmBoxProps, enclosureProps, explicitPinSideDefinition, fabricationNoteDimensionProps, fabricationNotePathProps, fabricationNoteRectProps, fabricationNoteTextProps, fanoutBoundaryPadding, fanoutProps, fiducialProps, footprintInsertionDirection, footprintProp, footprintProps, footprinterStringExamples, fusePinLabels, fuseProps, groupProps, holeProps, inductorPins, inductorProps, interconnectProps, internalCircuitProps, jumperProps, kicadAt, kicadEffects, kicadFont, kicadFootprintAttributes, kicadFootprintKeys, kicadFootprintMetadata, kicadFootprintModel, kicadFootprintPad, kicadFootprintProperties, kicadFootprintStrings, kicadPinElectricalType, kicadPinGraphicStyle, kicadPinMetadata, kicadProperty, kicadSymbolEffects, kicadSymbolMetadata, kicadSymbolPinNames, kicadSymbolPinNumbers, kicadSymbolProperties, kicadSymbolProperty, layoutConfig, ledPins, ledProps, lrPins, lrPolarPins, manual_edit_event, manual_edits_file, manual_pcb_placement, manual_schematic_placement, manual_trace_hint, mosfetPins, mosfetProps, mountedboardProps, netAliasProps, netLabelProps, netProps, ninePointAnchor, opampPinLabels, opampPins, opampProps, panelProps, partsEngine, pcbKeepoutProps, pcbLayoutProps, pcbNoteDimensionProps, pcbNoteLineProps, pcbNotePathProps, pcbNoteRectProps, pcbNoteTextProps, pcbSameXConstraintProps, pcbSameYConstraintProps, pcbStyle, pcbSx, pcbSxValue, pcbTraceProps, pcbXDistConstraintProps, pcbYDistConstraintProps, pillShapeProps, pillSmtPadProps, pinAttributeMap, pinCapability, pinCompatibleVariant, pinHeaderProps, pinLabelsProp, pinoutProps, platedHoleProps, platformConfig, point3, polygonCutoutProps, polygonSmtPadProps, portHints, portProps, portRef, potentiometerPinLabels, potentiometerProps, powerSourceProps, projectConfig, pushButtonProps, rectCutoutProps, rectShapeProps, rectSmtPadProps, rectSolderPasteProps, resistorPinLabels, resistorPins, resistorProps, resonatorProps, rotatedPillSmtPadProps, rotatedRectSmtPadProps, rotationPoint3, routeHintPointProps, routingTolerances, schStyle, schematicArcProps, schematicBoxProps, schematicCellProps, schematicCircleProps, schematicLineProps, schematicOrientation, schematicPathProps, schematicPinArrangement, schematicPinLabel, schematicPinStyle, schematicPortArrangement, schematicRectProps, schematicRowProps, schematicSectionProps, schematicSheetProps, schematicSymbolProps, schematicSymbolSize, schematicTableProps, schematicTextProps, silkscreenCircleProps, silkscreenGraphicProps, silkscreenLineProps, silkscreenPathProps, silkscreenRectProps, silkscreenTextProps, smtPadProps, solderPasteProps, solderjumperProps, spicemodelProps, stampboardProps, subcircuitGroupProps, subcircuitGroupPropsWithBool, subcircuitProps, subpanelProps, supplierProps, switchProps, symbolProp, symbolProps, testpointPins, testpointProps, toolingrailProps, traceHintProps, traceProps, transistorPins, transistorPinsLabels, transistorProps, viaProps, voltageProbeProps, voltageSourcePinLabels, voltageSourcePins, voltageSourceProps };
|