@tscircuit/props 0.0.635 → 0.0.637
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 +20 -3
- package/dist/index.d.ts +705 -572
- package/dist/index.js +38 -0
- package/dist/index.js.map +1 -1
- package/lib/components/board.ts +78 -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 */
|
|
@@ -27517,10 +27575,29 @@ interface BoardProps extends Omit<SubcircuitGroupProps, "subcircuit" | "connecti
|
|
|
27517
27575
|
doubleSidedAssembly?: boolean;
|
|
27518
27576
|
/** Whether vias may be placed inside PCB pads */
|
|
27519
27577
|
isViaInPadAllowed?: boolean;
|
|
27578
|
+
/**
|
|
27579
|
+
* Whether implicit copper pours should be generated automatically. Defaults
|
|
27580
|
+
* to false.
|
|
27581
|
+
*/
|
|
27582
|
+
automaticPoursEnabled?: boolean;
|
|
27520
27583
|
/** Whether this board should be omitted from the schematic view */
|
|
27521
27584
|
schematicDisabled?: boolean;
|
|
27522
27585
|
}
|
|
27523
|
-
declare const boardProps: z.ZodObject<
|
|
27586
|
+
declare const boardProps: z.ZodObject<{
|
|
27587
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
27588
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27589
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27590
|
+
name: z.ZodOptional<z.ZodString>;
|
|
27591
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
27592
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
27593
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
27594
|
+
}, "strip", z.ZodTypeAny, {
|
|
27595
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27596
|
+
}, {
|
|
27597
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27598
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
27599
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
27600
|
+
}>>;
|
|
27524
27601
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
27525
27602
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
27526
27603
|
pcbLeftEdgeX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -27574,6 +27651,8 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27574
27651
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
27575
27652
|
}>>;
|
|
27576
27653
|
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
27654
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27655
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27577
27656
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27578
27657
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27579
27658
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -27583,17 +27662,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27583
27662
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27584
27663
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27585
27664
|
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
27665
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
27596
|
-
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
27597
27666
|
schStyle: z.ZodOptional<z.ZodObject<{
|
|
27598
27667
|
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
27599
27668
|
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
@@ -27604,51 +27673,198 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27604
27673
|
defaultPassiveSize?: string | number | undefined;
|
|
27605
27674
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
27606
27675
|
}>>;
|
|
27607
|
-
relative: z.ZodOptional<z.ZodBoolean>;
|
|
27608
27676
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
27609
|
-
|
|
27677
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
27678
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
27610
27679
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
27611
27680
|
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
|
-
|
|
27681
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
27682
|
+
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
27683
|
+
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27684
|
+
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27685
|
+
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
27686
|
+
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
27687
|
+
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
27688
|
+
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27689
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27690
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27691
|
+
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
27692
|
+
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
27693
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
27694
|
+
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
27695
|
+
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
27696
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
27697
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
27698
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
27699
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
27700
|
+
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27701
|
+
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27702
|
+
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27703
|
+
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27704
|
+
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27705
|
+
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27706
|
+
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27707
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
27708
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
27709
|
+
schTitle: z.ZodOptional<z.ZodString>;
|
|
27710
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
27711
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
27712
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
27713
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
27714
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
27715
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
27716
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27717
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27718
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27719
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
27720
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27721
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27722
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27723
|
+
}, "strip", z.ZodTypeAny, {
|
|
27724
|
+
pins: (string | number)[];
|
|
27725
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27726
|
+
}, {
|
|
27727
|
+
pins: (string | number)[];
|
|
27728
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27729
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27730
|
+
pins: (string | number)[];
|
|
27731
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27732
|
+
}, (string | number)[] | {
|
|
27733
|
+
pins: (string | number)[];
|
|
27734
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27735
|
+
}>>;
|
|
27736
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27737
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27738
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27739
|
+
}, "strip", z.ZodTypeAny, {
|
|
27740
|
+
pins: (string | number)[];
|
|
27741
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27742
|
+
}, {
|
|
27743
|
+
pins: (string | number)[];
|
|
27744
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27745
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27746
|
+
pins: (string | number)[];
|
|
27747
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27748
|
+
}, (string | number)[] | {
|
|
27749
|
+
pins: (string | number)[];
|
|
27750
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27751
|
+
}>>;
|
|
27752
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27753
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27754
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27755
|
+
}, "strip", z.ZodTypeAny, {
|
|
27756
|
+
pins: (string | number)[];
|
|
27757
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27758
|
+
}, {
|
|
27759
|
+
pins: (string | number)[];
|
|
27760
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27761
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27762
|
+
pins: (string | number)[];
|
|
27763
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27764
|
+
}, (string | number)[] | {
|
|
27765
|
+
pins: (string | number)[];
|
|
27766
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27767
|
+
}>>;
|
|
27768
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
27769
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
27770
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
27771
|
+
}, "strip", z.ZodTypeAny, {
|
|
27772
|
+
pins: (string | number)[];
|
|
27773
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27774
|
+
}, {
|
|
27775
|
+
pins: (string | number)[];
|
|
27776
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27777
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
27778
|
+
pins: (string | number)[];
|
|
27779
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27780
|
+
}, (string | number)[] | {
|
|
27781
|
+
pins: (string | number)[];
|
|
27782
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27783
|
+
}>>;
|
|
27784
|
+
}, "strip", z.ZodTypeAny, {
|
|
27785
|
+
leftSize?: number | undefined;
|
|
27786
|
+
topSize?: number | undefined;
|
|
27787
|
+
rightSize?: number | undefined;
|
|
27788
|
+
bottomSize?: number | undefined;
|
|
27789
|
+
leftSide?: {
|
|
27790
|
+
pins: (string | number)[];
|
|
27791
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27792
|
+
} | undefined;
|
|
27793
|
+
topSide?: {
|
|
27794
|
+
pins: (string | number)[];
|
|
27795
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27796
|
+
} | undefined;
|
|
27797
|
+
rightSide?: {
|
|
27798
|
+
pins: (string | number)[];
|
|
27799
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27800
|
+
} | undefined;
|
|
27801
|
+
bottomSide?: {
|
|
27802
|
+
pins: (string | number)[];
|
|
27803
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27804
|
+
} | undefined;
|
|
27805
|
+
leftPinCount?: number | undefined;
|
|
27806
|
+
rightPinCount?: number | undefined;
|
|
27807
|
+
topPinCount?: number | undefined;
|
|
27808
|
+
bottomPinCount?: number | undefined;
|
|
27809
|
+
}, {
|
|
27810
|
+
leftSize?: number | undefined;
|
|
27811
|
+
topSize?: number | undefined;
|
|
27812
|
+
rightSize?: number | undefined;
|
|
27813
|
+
bottomSize?: number | undefined;
|
|
27814
|
+
leftSide?: (string | number)[] | {
|
|
27815
|
+
pins: (string | number)[];
|
|
27816
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27817
|
+
} | undefined;
|
|
27818
|
+
topSide?: (string | number)[] | {
|
|
27819
|
+
pins: (string | number)[];
|
|
27820
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27821
|
+
} | undefined;
|
|
27822
|
+
rightSide?: (string | number)[] | {
|
|
27823
|
+
pins: (string | number)[];
|
|
27824
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27825
|
+
} | undefined;
|
|
27826
|
+
bottomSide?: (string | number)[] | {
|
|
27827
|
+
pins: (string | number)[];
|
|
27828
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
27829
|
+
} | undefined;
|
|
27830
|
+
leftPinCount?: number | undefined;
|
|
27831
|
+
rightPinCount?: number | undefined;
|
|
27832
|
+
topPinCount?: number | undefined;
|
|
27833
|
+
bottomPinCount?: number | undefined;
|
|
27834
|
+
}>>;
|
|
27835
|
+
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27836
|
+
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
27837
|
+
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27838
|
+
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27839
|
+
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27840
|
+
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27841
|
+
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27842
|
+
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27843
|
+
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27844
|
+
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27845
|
+
}, "strip", z.ZodTypeAny, {
|
|
27846
|
+
marginLeft?: number | undefined;
|
|
27847
|
+
marginRight?: number | undefined;
|
|
27848
|
+
marginTop?: number | undefined;
|
|
27849
|
+
marginBottom?: number | undefined;
|
|
27850
|
+
leftMargin?: number | undefined;
|
|
27851
|
+
rightMargin?: number | undefined;
|
|
27852
|
+
topMargin?: number | undefined;
|
|
27853
|
+
bottomMargin?: number | undefined;
|
|
27854
|
+
}, {
|
|
27855
|
+
marginLeft?: string | number | undefined;
|
|
27856
|
+
marginRight?: string | number | undefined;
|
|
27857
|
+
marginTop?: string | number | undefined;
|
|
27858
|
+
marginBottom?: string | number | undefined;
|
|
27859
|
+
leftMargin?: string | number | undefined;
|
|
27860
|
+
rightMargin?: string | number | undefined;
|
|
27861
|
+
topMargin?: string | number | undefined;
|
|
27862
|
+
bottomMargin?: string | number | undefined;
|
|
27863
|
+
}>>>;
|
|
27650
27864
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27651
27865
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27866
|
+
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27867
|
+
nominalTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27652
27868
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27653
27869
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27654
27870
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
@@ -27888,223 +28104,6 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
27888
28104
|
pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27889
28105
|
pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
27890
28106
|
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
28107
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28109
28108
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28110
28109
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -28279,14 +28278,66 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28279
28278
|
relative_to?: string | undefined;
|
|
28280
28279
|
}[] | undefined;
|
|
28281
28280
|
}>>;
|
|
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
28281
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28286
28282
|
placementDrcChecksDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28287
28283
|
bomDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28288
28284
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28289
|
-
|
|
28285
|
+
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
28286
|
+
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
28287
|
+
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
28288
|
+
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>>>;
|
|
28289
|
+
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
28290
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
28291
|
+
exposeNets: z.ZodOptional<z.ZodBoolean>;
|
|
28292
|
+
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28293
|
+
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28294
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28295
|
+
partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
|
|
28296
|
+
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
28297
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
28298
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
28299
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
28300
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28301
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28302
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
28303
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28304
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28305
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
28306
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
28307
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
28308
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28309
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28310
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28311
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
28312
|
+
pcbFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28313
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
28314
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
28315
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
28316
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
28317
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
28318
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28319
|
+
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
28320
|
+
pcbPackGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28321
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
28322
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28323
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28324
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
28325
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
28326
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
28327
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28328
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28329
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28330
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
28331
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28332
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
28333
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
28334
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
28335
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
28336
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
28337
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
28338
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
28339
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
28340
|
+
} & {
|
|
28290
28341
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1", "flex"]>>;
|
|
28291
28342
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<8>, z.ZodLiteral<10>]>>;
|
|
28292
28343
|
allowBlindAndBuriedVias: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -28304,6 +28355,42 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28304
28355
|
}>>;
|
|
28305
28356
|
anchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
28306
28357
|
boardAnchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
28358
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
28359
|
+
isCastellatedHole: z.ZodOptional<z.ZodBoolean>;
|
|
28360
|
+
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28361
|
+
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
28362
|
+
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
28363
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28364
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
28365
|
+
}, "strip", z.ZodTypeAny, {
|
|
28366
|
+
x: number;
|
|
28367
|
+
y: number;
|
|
28368
|
+
isCastellatedHole?: boolean | undefined;
|
|
28369
|
+
holeDiameter?: number | undefined;
|
|
28370
|
+
padDiameter?: number | undefined;
|
|
28371
|
+
connectsTo?: string | string[] | undefined;
|
|
28372
|
+
}, {
|
|
28373
|
+
x: string | number;
|
|
28374
|
+
y: string | number;
|
|
28375
|
+
isCastellatedHole?: boolean | undefined;
|
|
28376
|
+
holeDiameter?: string | number | undefined;
|
|
28377
|
+
padDiameter?: string | number | undefined;
|
|
28378
|
+
connectsTo?: string | string[] | undefined;
|
|
28379
|
+
}>, {
|
|
28380
|
+
x: number;
|
|
28381
|
+
y: number;
|
|
28382
|
+
isCastellatedHole?: boolean | undefined;
|
|
28383
|
+
holeDiameter?: number | undefined;
|
|
28384
|
+
padDiameter?: number | undefined;
|
|
28385
|
+
connectsTo?: string | string[] | undefined;
|
|
28386
|
+
}, {
|
|
28387
|
+
x: string | number;
|
|
28388
|
+
y: string | number;
|
|
28389
|
+
isCastellatedHole?: boolean | undefined;
|
|
28390
|
+
holeDiameter?: string | number | undefined;
|
|
28391
|
+
padDiameter?: string | number | undefined;
|
|
28392
|
+
connectsTo?: string | string[] | undefined;
|
|
28393
|
+
}>, "many">>;
|
|
28307
28394
|
title: z.ZodOptional<z.ZodString>;
|
|
28308
28395
|
solderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
28309
28396
|
topSolderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
@@ -28313,12 +28400,14 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28313
28400
|
bottomSilkscreenColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
28314
28401
|
doubleSidedAssembly: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
28315
28402
|
isViaInPadAllowed: z.ZodOptional<z.ZodBoolean>;
|
|
28403
|
+
automaticPoursEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
28316
28404
|
schematicDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
28317
28405
|
}, "strip", z.ZodTypeAny, {
|
|
28318
28406
|
layers: 1 | 2 | 4 | 6 | 8 | 10;
|
|
28319
28407
|
material: "flex" | "fr4" | "fr1";
|
|
28320
28408
|
allowBlindAndBuriedVias: boolean;
|
|
28321
28409
|
doubleSidedAssembly: boolean;
|
|
28410
|
+
automaticPoursEnabled: boolean;
|
|
28322
28411
|
symbol?: SymbolProp | undefined;
|
|
28323
28412
|
width?: number | undefined;
|
|
28324
28413
|
height?: number | undefined;
|
|
@@ -28596,6 +28685,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28596
28685
|
outline?: {
|
|
28597
28686
|
x: number;
|
|
28598
28687
|
y: number;
|
|
28688
|
+
isCastellatedHole?: boolean | undefined;
|
|
28689
|
+
holeDiameter?: number | undefined;
|
|
28690
|
+
padDiameter?: number | undefined;
|
|
28691
|
+
connectsTo?: string | string[] | undefined;
|
|
28599
28692
|
}[] | undefined;
|
|
28600
28693
|
outlineOffsetX?: number | undefined;
|
|
28601
28694
|
outlineOffsetY?: number | undefined;
|
|
@@ -28936,6 +29029,10 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28936
29029
|
outline?: {
|
|
28937
29030
|
x: string | number;
|
|
28938
29031
|
y: string | number;
|
|
29032
|
+
isCastellatedHole?: boolean | undefined;
|
|
29033
|
+
holeDiameter?: string | number | undefined;
|
|
29034
|
+
padDiameter?: string | number | undefined;
|
|
29035
|
+
connectsTo?: string | string[] | undefined;
|
|
28939
29036
|
}[] | undefined;
|
|
28940
29037
|
outlineOffsetX?: string | number | undefined;
|
|
28941
29038
|
outlineOffsetY?: string | number | undefined;
|
|
@@ -28995,6 +29092,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
28995
29092
|
bottomSilkscreenColor?: BoardColor | undefined;
|
|
28996
29093
|
doubleSidedAssembly?: boolean | undefined;
|
|
28997
29094
|
isViaInPadAllowed?: boolean | undefined;
|
|
29095
|
+
automaticPoursEnabled?: boolean | undefined;
|
|
28998
29096
|
schematicDisabled?: boolean | undefined;
|
|
28999
29097
|
}>;
|
|
29000
29098
|
|
|
@@ -77852,8 +77950,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
77852
77950
|
pcbSx?: PcbSx | undefined;
|
|
77853
77951
|
pcbRelative?: boolean | undefined;
|
|
77854
77952
|
relative?: boolean | undefined;
|
|
77855
|
-
connectsTo?: string | string[] | undefined;
|
|
77856
77953
|
padDiameter?: number | undefined;
|
|
77954
|
+
connectsTo?: string | string[] | undefined;
|
|
77857
77955
|
portHints?: (string | number)[] | undefined;
|
|
77858
77956
|
solderMaskMargin?: number | undefined;
|
|
77859
77957
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -77892,8 +77990,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
77892
77990
|
pcbSx?: PcbSx | undefined;
|
|
77893
77991
|
pcbRelative?: boolean | undefined;
|
|
77894
77992
|
relative?: boolean | undefined;
|
|
77895
|
-
connectsTo?: string | string[] | undefined;
|
|
77896
77993
|
padDiameter?: string | number | undefined;
|
|
77994
|
+
connectsTo?: string | string[] | undefined;
|
|
77897
77995
|
portHints?: (string | number)[] | undefined;
|
|
77898
77996
|
solderMaskMargin?: string | number | undefined;
|
|
77899
77997
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -78713,8 +78811,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
78713
78811
|
pcbSx?: PcbSx | undefined;
|
|
78714
78812
|
pcbRelative?: boolean | undefined;
|
|
78715
78813
|
relative?: boolean | undefined;
|
|
78716
|
-
connectsTo?: string | string[] | undefined;
|
|
78717
78814
|
holeDiameter?: number | undefined;
|
|
78815
|
+
connectsTo?: string | string[] | undefined;
|
|
78718
78816
|
portHints?: (string | number)[] | undefined;
|
|
78719
78817
|
solderMaskMargin?: number | undefined;
|
|
78720
78818
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -78760,8 +78858,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
78760
78858
|
pcbSx?: PcbSx | undefined;
|
|
78761
78859
|
pcbRelative?: boolean | undefined;
|
|
78762
78860
|
relative?: boolean | undefined;
|
|
78763
|
-
connectsTo?: string | string[] | undefined;
|
|
78764
78861
|
holeDiameter?: string | number | undefined;
|
|
78862
|
+
connectsTo?: string | string[] | undefined;
|
|
78765
78863
|
portHints?: (string | number)[] | undefined;
|
|
78766
78864
|
solderMaskMargin?: string | number | undefined;
|
|
78767
78865
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -78802,8 +78900,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
78802
78900
|
pcbSx?: PcbSx | undefined;
|
|
78803
78901
|
pcbRelative?: boolean | undefined;
|
|
78804
78902
|
relative?: boolean | undefined;
|
|
78805
|
-
connectsTo?: string | string[] | undefined;
|
|
78806
78903
|
padDiameter?: number | undefined;
|
|
78904
|
+
connectsTo?: string | string[] | undefined;
|
|
78807
78905
|
portHints?: (string | number)[] | undefined;
|
|
78808
78906
|
solderMaskMargin?: number | undefined;
|
|
78809
78907
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79031,8 +79129,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79031
79129
|
pcbSx?: PcbSx | undefined;
|
|
79032
79130
|
pcbRelative?: boolean | undefined;
|
|
79033
79131
|
relative?: boolean | undefined;
|
|
79034
|
-
connectsTo?: string | string[] | undefined;
|
|
79035
79132
|
holeDiameter?: number | undefined;
|
|
79133
|
+
connectsTo?: string | string[] | undefined;
|
|
79036
79134
|
portHints?: (string | number)[] | undefined;
|
|
79037
79135
|
solderMaskMargin?: number | undefined;
|
|
79038
79136
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79073,8 +79171,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79073
79171
|
pcbSx?: PcbSx | undefined;
|
|
79074
79172
|
pcbRelative?: boolean | undefined;
|
|
79075
79173
|
relative?: boolean | undefined;
|
|
79076
|
-
connectsTo?: string | string[] | undefined;
|
|
79077
79174
|
padDiameter?: string | number | undefined;
|
|
79175
|
+
connectsTo?: string | string[] | undefined;
|
|
79078
79176
|
portHints?: (string | number)[] | undefined;
|
|
79079
79177
|
solderMaskMargin?: string | number | undefined;
|
|
79080
79178
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79302,8 +79400,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79302
79400
|
pcbSx?: PcbSx | undefined;
|
|
79303
79401
|
pcbRelative?: boolean | undefined;
|
|
79304
79402
|
relative?: boolean | undefined;
|
|
79305
|
-
connectsTo?: string | string[] | undefined;
|
|
79306
79403
|
holeDiameter?: string | number | undefined;
|
|
79404
|
+
connectsTo?: string | string[] | undefined;
|
|
79307
79405
|
portHints?: (string | number)[] | undefined;
|
|
79308
79406
|
solderMaskMargin?: string | number | undefined;
|
|
79309
79407
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79344,8 +79442,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79344
79442
|
pcbSx?: PcbSx | undefined;
|
|
79345
79443
|
pcbRelative?: boolean | undefined;
|
|
79346
79444
|
relative?: boolean | undefined;
|
|
79347
|
-
connectsTo?: string | string[] | undefined;
|
|
79348
79445
|
padDiameter?: number | undefined;
|
|
79446
|
+
connectsTo?: string | string[] | undefined;
|
|
79349
79447
|
portHints?: (string | number)[] | undefined;
|
|
79350
79448
|
solderMaskMargin?: number | undefined;
|
|
79351
79449
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -79573,8 +79671,8 @@ declare const platedHoleProps: z.ZodEffects<z.ZodEffects<z.ZodDiscriminatedUnion
|
|
|
79573
79671
|
pcbSx?: PcbSx | undefined;
|
|
79574
79672
|
pcbRelative?: boolean | undefined;
|
|
79575
79673
|
relative?: boolean | undefined;
|
|
79576
|
-
connectsTo?: string | string[] | undefined;
|
|
79577
79674
|
holeDiameter?: number | undefined;
|
|
79675
|
+
connectsTo?: string | string[] | undefined;
|
|
79578
79676
|
portHints?: (string | number)[] | undefined;
|
|
79579
79677
|
solderMaskMargin?: number | undefined;
|
|
79580
79678
|
coveredWithSolderMask?: boolean | undefined;
|
|
@@ -100522,7 +100620,21 @@ interface StampboardProps extends BoardProps {
|
|
|
100522
100620
|
pinPitch?: number | string;
|
|
100523
100621
|
innerHoles?: boolean;
|
|
100524
100622
|
}
|
|
100525
|
-
declare const stampboardProps: z.ZodObject<
|
|
100623
|
+
declare const stampboardProps: z.ZodObject<{
|
|
100624
|
+
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
100625
|
+
width: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100626
|
+
height: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100627
|
+
name: z.ZodOptional<z.ZodString>;
|
|
100628
|
+
key: z.ZodOptional<z.ZodAny>;
|
|
100629
|
+
layer: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>, z.ZodObject<{
|
|
100630
|
+
name: z.ZodEnum<["top", "bottom", "inner1", "inner2", "inner3", "inner4", "inner5", "inner6", "inner7", "inner8"]>;
|
|
100631
|
+
}, "strip", z.ZodTypeAny, {
|
|
100632
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100633
|
+
}, {
|
|
100634
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100635
|
+
}>]>, "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8", "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
100636
|
+
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
100637
|
+
}>>;
|
|
100526
100638
|
pcbX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
100527
100639
|
pcbY: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
100528
100640
|
pcbLeftEdgeX: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
@@ -100576,6 +100688,8 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100576
100688
|
silkscreenTextVisibility?: "hidden" | "visible" | "inherit" | undefined;
|
|
100577
100689
|
}>>;
|
|
100578
100690
|
pcbSx: z.ZodOptional<z.ZodType<PcbSx, z.ZodTypeDef, PcbSx>>;
|
|
100691
|
+
pcbRelative: z.ZodOptional<z.ZodBoolean>;
|
|
100692
|
+
relative: z.ZodOptional<z.ZodBoolean>;
|
|
100579
100693
|
schMarginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100580
100694
|
schMarginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100581
100695
|
schMarginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -100585,17 +100699,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100585
100699
|
schX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100586
100700
|
schY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100587
100701
|
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
100702
|
footprint: z.ZodOptional<z.ZodType<FootprintProp, z.ZodTypeDef, FootprintProp>>;
|
|
100598
|
-
symbol: z.ZodOptional<z.ZodType<SymbolProp, z.ZodTypeDef, SymbolProp>>;
|
|
100599
100703
|
schStyle: z.ZodOptional<z.ZodObject<{
|
|
100600
100704
|
defaultPassiveSize: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["xs", "sm", "md"]>, z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>]>>;
|
|
100601
100705
|
defaultCapacitorOrientation: z.ZodOptional<z.ZodEnum<["vertical", "none"]>>;
|
|
@@ -100606,51 +100710,198 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100606
100710
|
defaultPassiveSize?: string | number | undefined;
|
|
100607
100711
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
100608
100712
|
}>>;
|
|
100609
|
-
relative: z.ZodOptional<z.ZodBoolean>;
|
|
100610
100713
|
schRelative: z.ZodOptional<z.ZodBoolean>;
|
|
100611
|
-
|
|
100714
|
+
children: z.ZodOptional<z.ZodAny>;
|
|
100715
|
+
schSheetName: z.ZodOptional<z.ZodString>;
|
|
100612
100716
|
grid: z.ZodOptional<z.ZodBoolean>;
|
|
100613
100717
|
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
|
-
|
|
100718
|
+
layoutMode: z.ZodOptional<z.ZodEnum<["grid", "flex", "match-adapt", "relative", "none"]>>;
|
|
100719
|
+
position: z.ZodOptional<z.ZodEnum<["absolute", "relative"]>>;
|
|
100720
|
+
gridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100721
|
+
gridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100722
|
+
gridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
100723
|
+
gridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
100724
|
+
gridTemplate: z.ZodOptional<z.ZodString>;
|
|
100725
|
+
gridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100726
|
+
gridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100727
|
+
gridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100728
|
+
flexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
100729
|
+
alignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
100730
|
+
justifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
100731
|
+
flexRow: z.ZodOptional<z.ZodBoolean>;
|
|
100732
|
+
flexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
100733
|
+
gap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
100734
|
+
pack: z.ZodOptional<z.ZodBoolean>;
|
|
100735
|
+
packOrderStrategy: z.ZodOptional<z.ZodEnum<["largest_to_smallest", "first_to_last", "highest_to_lowest_pin_count"]>>;
|
|
100736
|
+
packPlacementStrategy: z.ZodOptional<z.ZodEnum<["shortest_connection_along_outline"]>>;
|
|
100737
|
+
padding: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100738
|
+
paddingLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100739
|
+
paddingRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100740
|
+
paddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100741
|
+
paddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100742
|
+
paddingX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100743
|
+
paddingY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100744
|
+
matchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
100745
|
+
matchAdaptTemplate: z.ZodOptional<z.ZodAny>;
|
|
100746
|
+
schTitle: z.ZodOptional<z.ZodString>;
|
|
100747
|
+
showAsSchematicBox: z.ZodOptional<z.ZodBoolean>;
|
|
100748
|
+
schPinArrangement: z.ZodOptional<z.ZodObject<{
|
|
100749
|
+
leftSize: z.ZodOptional<z.ZodNumber>;
|
|
100750
|
+
topSize: z.ZodOptional<z.ZodNumber>;
|
|
100751
|
+
rightSize: z.ZodOptional<z.ZodNumber>;
|
|
100752
|
+
bottomSize: z.ZodOptional<z.ZodNumber>;
|
|
100753
|
+
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100754
|
+
rightPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100755
|
+
topPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100756
|
+
bottomPinCount: z.ZodOptional<z.ZodNumber>;
|
|
100757
|
+
leftSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100758
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100759
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100760
|
+
}, "strip", z.ZodTypeAny, {
|
|
100761
|
+
pins: (string | number)[];
|
|
100762
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100763
|
+
}, {
|
|
100764
|
+
pins: (string | number)[];
|
|
100765
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100766
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100767
|
+
pins: (string | number)[];
|
|
100768
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100769
|
+
}, (string | number)[] | {
|
|
100770
|
+
pins: (string | number)[];
|
|
100771
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100772
|
+
}>>;
|
|
100773
|
+
rightSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100774
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100775
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100776
|
+
}, "strip", z.ZodTypeAny, {
|
|
100777
|
+
pins: (string | number)[];
|
|
100778
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100779
|
+
}, {
|
|
100780
|
+
pins: (string | number)[];
|
|
100781
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100782
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100783
|
+
pins: (string | number)[];
|
|
100784
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100785
|
+
}, (string | number)[] | {
|
|
100786
|
+
pins: (string | number)[];
|
|
100787
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100788
|
+
}>>;
|
|
100789
|
+
topSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100790
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100791
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100792
|
+
}, "strip", z.ZodTypeAny, {
|
|
100793
|
+
pins: (string | number)[];
|
|
100794
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100795
|
+
}, {
|
|
100796
|
+
pins: (string | number)[];
|
|
100797
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100798
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100799
|
+
pins: (string | number)[];
|
|
100800
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100801
|
+
}, (string | number)[] | {
|
|
100802
|
+
pins: (string | number)[];
|
|
100803
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100804
|
+
}>>;
|
|
100805
|
+
bottomSide: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodObject<{
|
|
100806
|
+
pins: z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">;
|
|
100807
|
+
direction: z.ZodUnion<[z.ZodLiteral<"top-to-bottom">, z.ZodLiteral<"left-to-right">, z.ZodLiteral<"bottom-to-top">, z.ZodLiteral<"right-to-left">]>;
|
|
100808
|
+
}, "strip", z.ZodTypeAny, {
|
|
100809
|
+
pins: (string | number)[];
|
|
100810
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100811
|
+
}, {
|
|
100812
|
+
pins: (string | number)[];
|
|
100813
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100814
|
+
}>, z.ZodArray<z.ZodUnion<[z.ZodNumber, z.ZodString]>, "many">]>, {
|
|
100815
|
+
pins: (string | number)[];
|
|
100816
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100817
|
+
}, (string | number)[] | {
|
|
100818
|
+
pins: (string | number)[];
|
|
100819
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100820
|
+
}>>;
|
|
100821
|
+
}, "strip", z.ZodTypeAny, {
|
|
100822
|
+
leftSize?: number | undefined;
|
|
100823
|
+
topSize?: number | undefined;
|
|
100824
|
+
rightSize?: number | undefined;
|
|
100825
|
+
bottomSize?: number | undefined;
|
|
100826
|
+
leftSide?: {
|
|
100827
|
+
pins: (string | number)[];
|
|
100828
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100829
|
+
} | undefined;
|
|
100830
|
+
topSide?: {
|
|
100831
|
+
pins: (string | number)[];
|
|
100832
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100833
|
+
} | undefined;
|
|
100834
|
+
rightSide?: {
|
|
100835
|
+
pins: (string | number)[];
|
|
100836
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100837
|
+
} | undefined;
|
|
100838
|
+
bottomSide?: {
|
|
100839
|
+
pins: (string | number)[];
|
|
100840
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100841
|
+
} | undefined;
|
|
100842
|
+
leftPinCount?: number | undefined;
|
|
100843
|
+
rightPinCount?: number | undefined;
|
|
100844
|
+
topPinCount?: number | undefined;
|
|
100845
|
+
bottomPinCount?: number | undefined;
|
|
100846
|
+
}, {
|
|
100847
|
+
leftSize?: number | undefined;
|
|
100848
|
+
topSize?: number | undefined;
|
|
100849
|
+
rightSize?: number | undefined;
|
|
100850
|
+
bottomSize?: number | undefined;
|
|
100851
|
+
leftSide?: (string | number)[] | {
|
|
100852
|
+
pins: (string | number)[];
|
|
100853
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100854
|
+
} | undefined;
|
|
100855
|
+
topSide?: (string | number)[] | {
|
|
100856
|
+
pins: (string | number)[];
|
|
100857
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100858
|
+
} | undefined;
|
|
100859
|
+
rightSide?: (string | number)[] | {
|
|
100860
|
+
pins: (string | number)[];
|
|
100861
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100862
|
+
} | undefined;
|
|
100863
|
+
bottomSide?: (string | number)[] | {
|
|
100864
|
+
pins: (string | number)[];
|
|
100865
|
+
direction: "top-to-bottom" | "left-to-right" | "bottom-to-top" | "right-to-left";
|
|
100866
|
+
} | undefined;
|
|
100867
|
+
leftPinCount?: number | undefined;
|
|
100868
|
+
rightPinCount?: number | undefined;
|
|
100869
|
+
topPinCount?: number | undefined;
|
|
100870
|
+
bottomPinCount?: number | undefined;
|
|
100871
|
+
}>>;
|
|
100872
|
+
schPinSpacing: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100873
|
+
schPinStyle: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
100874
|
+
marginLeft: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100875
|
+
marginRight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100876
|
+
marginTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100877
|
+
marginBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100878
|
+
leftMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100879
|
+
rightMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100880
|
+
topMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100881
|
+
bottomMargin: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100882
|
+
}, "strip", z.ZodTypeAny, {
|
|
100883
|
+
marginLeft?: number | undefined;
|
|
100884
|
+
marginRight?: number | undefined;
|
|
100885
|
+
marginTop?: number | undefined;
|
|
100886
|
+
marginBottom?: number | undefined;
|
|
100887
|
+
leftMargin?: number | undefined;
|
|
100888
|
+
rightMargin?: number | undefined;
|
|
100889
|
+
topMargin?: number | undefined;
|
|
100890
|
+
bottomMargin?: number | undefined;
|
|
100891
|
+
}, {
|
|
100892
|
+
marginLeft?: string | number | undefined;
|
|
100893
|
+
marginRight?: string | number | undefined;
|
|
100894
|
+
marginTop?: string | number | undefined;
|
|
100895
|
+
marginBottom?: string | number | undefined;
|
|
100896
|
+
leftMargin?: string | number | undefined;
|
|
100897
|
+
rightMargin?: string | number | undefined;
|
|
100898
|
+
topMargin?: string | number | undefined;
|
|
100899
|
+
bottomMargin?: string | number | undefined;
|
|
100900
|
+
}>>>;
|
|
100652
100901
|
pcbWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100653
100902
|
pcbHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100903
|
+
minTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100904
|
+
nominalTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100654
100905
|
schWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100655
100906
|
schHeight: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100656
100907
|
pcbLayout: z.ZodOptional<z.ZodObject<{
|
|
@@ -100890,223 +101141,6 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
100890
101141
|
pcbPaddingTop: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100891
101142
|
pcbPaddingBottom: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
100892
101143
|
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
101144
|
minViaHoleEdgeToViaHoleEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101111
101145
|
minViaEdgeToPadEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101112
101146
|
minPlatedHoleDrillEdgeToDrillEdgeClearance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
@@ -101281,14 +101315,66 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101281
101315
|
relative_to?: string | undefined;
|
|
101282
101316
|
}[] | undefined;
|
|
101283
101317
|
}>>;
|
|
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
101318
|
routingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101288
101319
|
placementDrcChecksDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101289
101320
|
bomDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101290
101321
|
defaultTraceWidth: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101291
|
-
|
|
101322
|
+
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
101323
|
+
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
101324
|
+
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
101325
|
+
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>>>;
|
|
101326
|
+
circuitJson: z.ZodOptional<z.ZodArray<z.ZodAny, "many">>;
|
|
101327
|
+
exposedNets: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
101328
|
+
exposeNets: z.ZodOptional<z.ZodBoolean>;
|
|
101329
|
+
schAutoLayoutEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101330
|
+
schTraceAutoLabelEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101331
|
+
schMaxTraceDistance: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101332
|
+
partsEngine: z.ZodOptional<z.ZodType<PartsEngine, z.ZodTypeDef, PartsEngine>>;
|
|
101333
|
+
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
101334
|
+
square: z.ZodOptional<z.ZodBoolean>;
|
|
101335
|
+
emptyArea: z.ZodOptional<z.ZodString>;
|
|
101336
|
+
filledArea: z.ZodOptional<z.ZodString>;
|
|
101337
|
+
outlineOffsetX: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101338
|
+
outlineOffsetY: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101339
|
+
pcbGrid: z.ZodOptional<z.ZodBoolean>;
|
|
101340
|
+
pcbGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101341
|
+
pcbGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101342
|
+
pcbGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
101343
|
+
pcbGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
101344
|
+
pcbGridTemplate: z.ZodOptional<z.ZodString>;
|
|
101345
|
+
pcbGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101346
|
+
pcbGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101347
|
+
pcbGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101348
|
+
pcbFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
101349
|
+
pcbFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101350
|
+
pcbFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
101351
|
+
pcbAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
101352
|
+
pcbJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
101353
|
+
pcbFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
101354
|
+
pcbFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
101355
|
+
pcbGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101356
|
+
pcbPack: z.ZodOptional<z.ZodBoolean>;
|
|
101357
|
+
pcbPackGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101358
|
+
schGrid: z.ZodOptional<z.ZodBoolean>;
|
|
101359
|
+
schGridCols: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101360
|
+
schGridRows: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101361
|
+
schGridTemplateRows: z.ZodOptional<z.ZodString>;
|
|
101362
|
+
schGridTemplateColumns: z.ZodOptional<z.ZodString>;
|
|
101363
|
+
schGridTemplate: z.ZodOptional<z.ZodString>;
|
|
101364
|
+
schGridGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101365
|
+
schGridRowGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101366
|
+
schGridColumnGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101367
|
+
schFlex: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodString]>>;
|
|
101368
|
+
schFlexGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101369
|
+
schFlexDirection: z.ZodOptional<z.ZodEnum<["row", "column"]>>;
|
|
101370
|
+
schAlignItems: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch"]>>;
|
|
101371
|
+
schJustifyContent: z.ZodOptional<z.ZodEnum<["start", "center", "end", "stretch", "space-between", "space-around", "space-evenly"]>>;
|
|
101372
|
+
schFlexRow: z.ZodOptional<z.ZodBoolean>;
|
|
101373
|
+
schFlexColumn: z.ZodOptional<z.ZodBoolean>;
|
|
101374
|
+
schGap: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodString]>>;
|
|
101375
|
+
schPack: z.ZodOptional<z.ZodBoolean>;
|
|
101376
|
+
schMatchAdapt: z.ZodOptional<z.ZodBoolean>;
|
|
101377
|
+
} & {
|
|
101292
101378
|
material: z.ZodDefault<z.ZodEnum<["fr4", "fr1", "flex"]>>;
|
|
101293
101379
|
layers: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<4>, z.ZodLiteral<6>, z.ZodLiteral<8>, z.ZodLiteral<10>]>>;
|
|
101294
101380
|
allowBlindAndBuriedVias: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -101306,6 +101392,42 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101306
101392
|
}>>;
|
|
101307
101393
|
anchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
101308
101394
|
boardAnchorAlignment: z.ZodOptional<z.ZodEnum<["top_left", "top_center", "top_right", "center_left", "center", "center_right", "bottom_left", "bottom_center", "bottom_right"]>>;
|
|
101395
|
+
outline: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodObject<{
|
|
101396
|
+
isCastellatedHole: z.ZodOptional<z.ZodBoolean>;
|
|
101397
|
+
holeDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101398
|
+
padDiameter: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
101399
|
+
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
101400
|
+
x: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
101401
|
+
y: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>;
|
|
101402
|
+
}, "strip", z.ZodTypeAny, {
|
|
101403
|
+
x: number;
|
|
101404
|
+
y: number;
|
|
101405
|
+
isCastellatedHole?: boolean | undefined;
|
|
101406
|
+
holeDiameter?: number | undefined;
|
|
101407
|
+
padDiameter?: number | undefined;
|
|
101408
|
+
connectsTo?: string | string[] | undefined;
|
|
101409
|
+
}, {
|
|
101410
|
+
x: string | number;
|
|
101411
|
+
y: string | number;
|
|
101412
|
+
isCastellatedHole?: boolean | undefined;
|
|
101413
|
+
holeDiameter?: string | number | undefined;
|
|
101414
|
+
padDiameter?: string | number | undefined;
|
|
101415
|
+
connectsTo?: string | string[] | undefined;
|
|
101416
|
+
}>, {
|
|
101417
|
+
x: number;
|
|
101418
|
+
y: number;
|
|
101419
|
+
isCastellatedHole?: boolean | undefined;
|
|
101420
|
+
holeDiameter?: number | undefined;
|
|
101421
|
+
padDiameter?: number | undefined;
|
|
101422
|
+
connectsTo?: string | string[] | undefined;
|
|
101423
|
+
}, {
|
|
101424
|
+
x: string | number;
|
|
101425
|
+
y: string | number;
|
|
101426
|
+
isCastellatedHole?: boolean | undefined;
|
|
101427
|
+
holeDiameter?: string | number | undefined;
|
|
101428
|
+
padDiameter?: string | number | undefined;
|
|
101429
|
+
connectsTo?: string | string[] | undefined;
|
|
101430
|
+
}>, "many">>;
|
|
101309
101431
|
title: z.ZodOptional<z.ZodString>;
|
|
101310
101432
|
solderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
101311
101433
|
topSolderMaskColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
@@ -101315,6 +101437,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101315
101437
|
bottomSilkscreenColor: z.ZodOptional<z.ZodType<BoardColor, z.ZodTypeDef, BoardColor>>;
|
|
101316
101438
|
doubleSidedAssembly: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
101317
101439
|
isViaInPadAllowed: z.ZodOptional<z.ZodBoolean>;
|
|
101440
|
+
automaticPoursEnabled: z.ZodDefault<z.ZodBoolean>;
|
|
101318
101441
|
schematicDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
101319
101442
|
} & {
|
|
101320
101443
|
leftPinCount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -101332,6 +101455,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101332
101455
|
material: "flex" | "fr4" | "fr1";
|
|
101333
101456
|
allowBlindAndBuriedVias: boolean;
|
|
101334
101457
|
doubleSidedAssembly: boolean;
|
|
101458
|
+
automaticPoursEnabled: boolean;
|
|
101335
101459
|
symbol?: SymbolProp | undefined;
|
|
101336
101460
|
width?: number | undefined;
|
|
101337
101461
|
height?: number | undefined;
|
|
@@ -101613,6 +101737,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101613
101737
|
outline?: {
|
|
101614
101738
|
x: number;
|
|
101615
101739
|
y: number;
|
|
101740
|
+
isCastellatedHole?: boolean | undefined;
|
|
101741
|
+
holeDiameter?: number | undefined;
|
|
101742
|
+
padDiameter?: number | undefined;
|
|
101743
|
+
connectsTo?: string | string[] | undefined;
|
|
101616
101744
|
}[] | undefined;
|
|
101617
101745
|
outlineOffsetX?: number | undefined;
|
|
101618
101746
|
outlineOffsetY?: number | undefined;
|
|
@@ -101963,6 +102091,10 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
101963
102091
|
outline?: {
|
|
101964
102092
|
x: string | number;
|
|
101965
102093
|
y: string | number;
|
|
102094
|
+
isCastellatedHole?: boolean | undefined;
|
|
102095
|
+
holeDiameter?: string | number | undefined;
|
|
102096
|
+
padDiameter?: string | number | undefined;
|
|
102097
|
+
connectsTo?: string | string[] | undefined;
|
|
101966
102098
|
}[] | undefined;
|
|
101967
102099
|
outlineOffsetX?: string | number | undefined;
|
|
101968
102100
|
outlineOffsetY?: string | number | undefined;
|
|
@@ -102022,6 +102154,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
102022
102154
|
bottomSilkscreenColor?: BoardColor | undefined;
|
|
102023
102155
|
doubleSidedAssembly?: boolean | undefined;
|
|
102024
102156
|
isViaInPadAllowed?: boolean | undefined;
|
|
102157
|
+
automaticPoursEnabled?: boolean | undefined;
|
|
102025
102158
|
schematicDisabled?: boolean | undefined;
|
|
102026
102159
|
leftPins?: string[] | undefined;
|
|
102027
102160
|
rightPins?: string[] | undefined;
|
|
@@ -107312,16 +107445,16 @@ declare const netProps: z.ZodObject<{
|
|
|
107312
107445
|
name: string;
|
|
107313
107446
|
highlightColor?: string | undefined;
|
|
107314
107447
|
nominalTraceWidth?: number | undefined;
|
|
107315
|
-
routingPhaseIndex?: number | null | undefined;
|
|
107316
107448
|
connectsTo?: string | string[] | undefined;
|
|
107449
|
+
routingPhaseIndex?: number | null | undefined;
|
|
107317
107450
|
isPowerNet?: boolean | undefined;
|
|
107318
107451
|
isGroundNet?: boolean | undefined;
|
|
107319
107452
|
}, {
|
|
107320
107453
|
name: string;
|
|
107321
107454
|
highlightColor?: string | undefined;
|
|
107322
107455
|
nominalTraceWidth?: string | number | undefined;
|
|
107323
|
-
routingPhaseIndex?: number | null | undefined;
|
|
107324
107456
|
connectsTo?: string | string[] | undefined;
|
|
107457
|
+
routingPhaseIndex?: number | null | undefined;
|
|
107325
107458
|
isPowerNet?: boolean | undefined;
|
|
107326
107459
|
isGroundNet?: boolean | undefined;
|
|
107327
107460
|
}>;
|
|
@@ -117202,9 +117335,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117202
117335
|
thickness?: number | undefined;
|
|
117203
117336
|
highlightColor?: string | undefined;
|
|
117204
117337
|
displayName?: string | undefined;
|
|
117338
|
+
connectsTo?: string | string[] | undefined;
|
|
117205
117339
|
routingPhaseIndex?: number | null | undefined;
|
|
117206
117340
|
maxLength?: number | undefined;
|
|
117207
|
-
connectsTo?: string | string[] | undefined;
|
|
117208
117341
|
schematicRouteHints?: {
|
|
117209
117342
|
x: number;
|
|
117210
117343
|
y: number;
|
|
@@ -117245,9 +117378,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117245
117378
|
thickness?: string | number | undefined;
|
|
117246
117379
|
highlightColor?: string | undefined;
|
|
117247
117380
|
displayName?: string | undefined;
|
|
117381
|
+
connectsTo?: string | string[] | undefined;
|
|
117248
117382
|
routingPhaseIndex?: number | null | undefined;
|
|
117249
117383
|
maxLength?: string | number | undefined;
|
|
117250
|
-
connectsTo?: string | string[] | undefined;
|
|
117251
117384
|
schematicRouteHints?: {
|
|
117252
117385
|
x: string | number;
|
|
117253
117386
|
y: string | number;
|
|
@@ -117478,9 +117611,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117478
117611
|
thickness?: number | undefined;
|
|
117479
117612
|
highlightColor?: string | undefined;
|
|
117480
117613
|
displayName?: string | undefined;
|
|
117614
|
+
connectsTo?: string | string[] | undefined;
|
|
117481
117615
|
routingPhaseIndex?: number | null | undefined;
|
|
117482
117616
|
maxLength?: number | undefined;
|
|
117483
|
-
connectsTo?: string | string[] | undefined;
|
|
117484
117617
|
schematicRouteHints?: {
|
|
117485
117618
|
x: number;
|
|
117486
117619
|
y: number;
|
|
@@ -117524,9 +117657,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117524
117657
|
thickness?: string | number | undefined;
|
|
117525
117658
|
highlightColor?: string | undefined;
|
|
117526
117659
|
displayName?: string | undefined;
|
|
117660
|
+
connectsTo?: string | string[] | undefined;
|
|
117527
117661
|
routingPhaseIndex?: number | null | undefined;
|
|
117528
117662
|
maxLength?: string | number | undefined;
|
|
117529
|
-
connectsTo?: string | string[] | undefined;
|
|
117530
117663
|
schematicRouteHints?: {
|
|
117531
117664
|
x: string | number;
|
|
117532
117665
|
y: string | number;
|
|
@@ -117757,9 +117890,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117757
117890
|
thickness?: number | undefined;
|
|
117758
117891
|
highlightColor?: string | undefined;
|
|
117759
117892
|
displayName?: string | undefined;
|
|
117893
|
+
connectsTo?: string | string[] | undefined;
|
|
117760
117894
|
routingPhaseIndex?: number | null | undefined;
|
|
117761
117895
|
maxLength?: number | undefined;
|
|
117762
|
-
connectsTo?: string | string[] | undefined;
|
|
117763
117896
|
schematicRouteHints?: {
|
|
117764
117897
|
x: number;
|
|
117765
117898
|
y: number;
|
|
@@ -117803,9 +117936,9 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
117803
117936
|
thickness?: string | number | undefined;
|
|
117804
117937
|
highlightColor?: string | undefined;
|
|
117805
117938
|
displayName?: string | undefined;
|
|
117939
|
+
connectsTo?: string | string[] | undefined;
|
|
117806
117940
|
routingPhaseIndex?: number | null | undefined;
|
|
117807
117941
|
maxLength?: string | number | undefined;
|
|
117808
|
-
connectsTo?: string | string[] | undefined;
|
|
117809
117942
|
schematicRouteHints?: {
|
|
117810
117943
|
x: string | number;
|
|
117811
117944
|
y: string | number;
|
|
@@ -129754,9 +129887,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
129754
129887
|
}> | undefined;
|
|
129755
129888
|
schWidth?: number | undefined;
|
|
129756
129889
|
schHeight?: number | undefined;
|
|
129890
|
+
holeDiameter?: number | undefined;
|
|
129757
129891
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
129758
129892
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
129759
|
-
holeDiameter?: number | undefined;
|
|
129760
129893
|
pitch?: number | undefined;
|
|
129761
129894
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
129762
129895
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -130472,9 +130605,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
130472
130605
|
}> | undefined;
|
|
130473
130606
|
schWidth?: string | number | undefined;
|
|
130474
130607
|
schHeight?: string | number | undefined;
|
|
130608
|
+
holeDiameter?: string | number | undefined;
|
|
130475
130609
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
130476
130610
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
130477
|
-
holeDiameter?: string | number | undefined;
|
|
130478
130611
|
pitch?: string | number | undefined;
|
|
130479
130612
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
130480
130613
|
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
@@ -131190,9 +131323,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131190
131323
|
}> | undefined;
|
|
131191
131324
|
schWidth?: number | undefined;
|
|
131192
131325
|
schHeight?: number | undefined;
|
|
131326
|
+
holeDiameter?: number | undefined;
|
|
131193
131327
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
131194
131328
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
131195
|
-
holeDiameter?: number | undefined;
|
|
131196
131329
|
pitch?: number | undefined;
|
|
131197
131330
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
131198
131331
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -131908,9 +132041,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
131908
132041
|
}> | undefined;
|
|
131909
132042
|
schWidth?: string | number | undefined;
|
|
131910
132043
|
schHeight?: string | number | undefined;
|
|
132044
|
+
holeDiameter?: string | number | undefined;
|
|
131911
132045
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
131912
132046
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
131913
|
-
holeDiameter?: string | number | undefined;
|
|
131914
132047
|
pitch?: string | number | undefined;
|
|
131915
132048
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
131916
132049
|
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
@@ -132626,9 +132759,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
132626
132759
|
}> | undefined;
|
|
132627
132760
|
schWidth?: number | undefined;
|
|
132628
132761
|
schHeight?: number | undefined;
|
|
132762
|
+
holeDiameter?: number | undefined;
|
|
132629
132763
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
132630
132764
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
132631
|
-
holeDiameter?: number | undefined;
|
|
132632
132765
|
pitch?: number | undefined;
|
|
132633
132766
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
132634
132767
|
showSilkscreenPinLabels?: boolean | undefined;
|
|
@@ -133344,9 +133477,9 @@ declare const pinHeaderProps: z.ZodEffects<z.ZodEffects<z.ZodObject<{
|
|
|
133344
133477
|
}> | undefined;
|
|
133345
133478
|
schWidth?: string | number | undefined;
|
|
133346
133479
|
schHeight?: string | number | undefined;
|
|
133480
|
+
holeDiameter?: string | number | undefined;
|
|
133347
133481
|
pinLabels?: string[] | Record<string, string> | undefined;
|
|
133348
133482
|
pcbPinLabels?: Record<string, string> | undefined;
|
|
133349
|
-
holeDiameter?: string | number | undefined;
|
|
133350
133483
|
pitch?: string | number | undefined;
|
|
133351
133484
|
schFacingDirection?: "up" | "down" | "left" | "right" | undefined;
|
|
133352
133485
|
gender?: "male" | "female" | "unpopulated" | undefined;
|
|
@@ -182523,8 +182656,8 @@ declare const viaProps: z.ZodObject<{
|
|
|
182523
182656
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
182524
182657
|
} | undefined;
|
|
182525
182658
|
schRelative?: boolean | undefined;
|
|
182526
|
-
connectsTo?: string | string[] | undefined;
|
|
182527
182659
|
holeDiameter?: number | undefined;
|
|
182660
|
+
connectsTo?: string | string[] | undefined;
|
|
182528
182661
|
outerDiameter?: number | undefined;
|
|
182529
182662
|
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | undefined;
|
|
182530
182663
|
toLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | undefined;
|
|
@@ -182584,8 +182717,8 @@ declare const viaProps: z.ZodObject<{
|
|
|
182584
182717
|
defaultCapacitorOrientation?: "none" | "vertical" | undefined;
|
|
182585
182718
|
} | undefined;
|
|
182586
182719
|
schRelative?: boolean | undefined;
|
|
182587
|
-
connectsTo?: string | string[] | undefined;
|
|
182588
182720
|
holeDiameter?: string | number | undefined;
|
|
182721
|
+
connectsTo?: string | string[] | undefined;
|
|
182589
182722
|
outerDiameter?: string | number | undefined;
|
|
182590
182723
|
fromLayer?: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8" | {
|
|
182591
182724
|
name: "top" | "bottom" | "inner1" | "inner2" | "inner3" | "inner4" | "inner5" | "inner6" | "inner7" | "inner8";
|
|
@@ -220372,4 +220505,4 @@ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBas
|
|
|
220372
220505
|
}
|
|
220373
220506
|
declare const projectConfig: z.ZodType<ProjectConfig>;
|
|
220374
220507
|
|
|
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 };
|
|
220508
|
+
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 };
|