@tscircuit/props 0.0.612 → 0.0.614
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +34 -25
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/lib/components/group.ts +10 -2
- package/lib/components/trace.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -18241,7 +18241,7 @@ interface SubcircuitGroupProps extends BaseGroupProps, RoutingTolerances {
|
|
|
18241
18241
|
pcbRouteCache?: PcbRouteCache;
|
|
18242
18242
|
autorouter?: AutorouterProp;
|
|
18243
18243
|
autorouterEffortLevel?: "1x" | "2x" | "5x" | "10x" | "100x";
|
|
18244
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest";
|
|
18244
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest";
|
|
18245
18245
|
/**
|
|
18246
18246
|
* Serialized circuit JSON describing a precompiled subcircuit
|
|
18247
18247
|
*/
|
|
@@ -19931,7 +19931,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
19931
19931
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
19932
19932
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
19933
19933
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
19934
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
19934
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
19935
19935
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
19936
19936
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
19937
19937
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -20395,7 +20395,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20395
20395
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
20396
20396
|
autorouter?: AutorouterProp | undefined;
|
|
20397
20397
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
20398
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
20398
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
20399
20399
|
circuitJson?: any[] | undefined;
|
|
20400
20400
|
exposedNets?: string[] | undefined;
|
|
20401
20401
|
exposeNets?: boolean | undefined;
|
|
@@ -20717,7 +20717,7 @@ declare const subcircuitGroupProps: z.ZodObject<{
|
|
|
20717
20717
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
20718
20718
|
autorouter?: AutorouterProp | undefined;
|
|
20719
20719
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
20720
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
20720
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
20721
20721
|
circuitJson?: any[] | undefined;
|
|
20722
20722
|
exposedNets?: string[] | undefined;
|
|
20723
20723
|
exposeNets?: boolean | undefined;
|
|
@@ -21337,7 +21337,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21337
21337
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
21338
21338
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
21339
21339
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
21340
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
21340
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
21341
21341
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
21342
21342
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
21343
21343
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -21804,7 +21804,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
21804
21804
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
21805
21805
|
autorouter?: AutorouterProp | undefined;
|
|
21806
21806
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
21807
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
21807
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
21808
21808
|
circuitJson?: any[] | undefined;
|
|
21809
21809
|
exposedNets?: string[] | undefined;
|
|
21810
21810
|
exposeNets?: boolean | undefined;
|
|
@@ -22127,7 +22127,7 @@ declare const subcircuitGroupPropsWithBool: z.ZodObject<{
|
|
|
22127
22127
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
22128
22128
|
autorouter?: AutorouterProp | undefined;
|
|
22129
22129
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
22130
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
22130
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
22131
22131
|
circuitJson?: any[] | undefined;
|
|
22132
22132
|
exposedNets?: string[] | undefined;
|
|
22133
22133
|
exposeNets?: boolean | undefined;
|
|
@@ -23830,7 +23830,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
23830
23830
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
23831
23831
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
23832
23832
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
23833
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
23833
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
23834
23834
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
23835
23835
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
23836
23836
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -24297,7 +24297,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24297
24297
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
24298
24298
|
autorouter?: AutorouterProp | undefined;
|
|
24299
24299
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
24300
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
24300
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
24301
24301
|
circuitJson?: any[] | undefined;
|
|
24302
24302
|
exposedNets?: string[] | undefined;
|
|
24303
24303
|
exposeNets?: boolean | undefined;
|
|
@@ -24620,7 +24620,7 @@ declare const groupProps: z.ZodDiscriminatedUnion<"subcircuit", [z.ZodObject<{
|
|
|
24620
24620
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
24621
24621
|
autorouter?: AutorouterProp | undefined;
|
|
24622
24622
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
24623
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
24623
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
24624
24624
|
circuitJson?: any[] | undefined;
|
|
24625
24625
|
exposedNets?: string[] | undefined;
|
|
24626
24626
|
exposeNets?: boolean | undefined;
|
|
@@ -25273,7 +25273,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25273
25273
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
25274
25274
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
25275
25275
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
25276
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
25276
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
25277
25277
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
25278
25278
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
25279
25279
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -25767,7 +25767,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
25767
25767
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
25768
25768
|
autorouter?: AutorouterProp | undefined;
|
|
25769
25769
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
25770
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
25770
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
25771
25771
|
circuitJson?: any[] | undefined;
|
|
25772
25772
|
exposedNets?: string[] | undefined;
|
|
25773
25773
|
exposeNets?: boolean | undefined;
|
|
@@ -26106,7 +26106,7 @@ declare const boardProps: z.ZodObject<Omit<{
|
|
|
26106
26106
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
26107
26107
|
autorouter?: AutorouterProp | undefined;
|
|
26108
26108
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
26109
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
26109
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
26110
26110
|
circuitJson?: any[] | undefined;
|
|
26111
26111
|
exposedNets?: string[] | undefined;
|
|
26112
26112
|
exposeNets?: boolean | undefined;
|
|
@@ -29251,7 +29251,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29251
29251
|
_subcircuitCachingEnabled: z.ZodOptional<z.ZodBoolean>;
|
|
29252
29252
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
29253
29253
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
29254
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
29254
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
29255
29255
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
29256
29256
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
29257
29257
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -29763,7 +29763,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
29763
29763
|
defaultTraceWidth?: number | undefined;
|
|
29764
29764
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
29765
29765
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
29766
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
29766
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
29767
29767
|
circuitJson?: any[] | undefined;
|
|
29768
29768
|
exposedNets?: string[] | undefined;
|
|
29769
29769
|
exposeNets?: boolean | undefined;
|
|
@@ -30096,7 +30096,7 @@ declare const breakoutProps: z.ZodObject<{
|
|
|
30096
30096
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
30097
30097
|
autorouter?: AutorouterProp | undefined;
|
|
30098
30098
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
30099
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
30099
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
30100
30100
|
circuitJson?: any[] | undefined;
|
|
30101
30101
|
exposedNets?: string[] | undefined;
|
|
30102
30102
|
exposeNets?: boolean | undefined;
|
|
@@ -89951,7 +89951,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
89951
89951
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
89952
89952
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
89953
89953
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
89954
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
89954
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
89955
89955
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
89956
89956
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
89957
89957
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -90460,7 +90460,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90460
90460
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
90461
90461
|
autorouter?: AutorouterProp | undefined;
|
|
90462
90462
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
90463
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
90463
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
90464
90464
|
circuitJson?: any[] | undefined;
|
|
90465
90465
|
exposedNets?: string[] | undefined;
|
|
90466
90466
|
exposeNets?: boolean | undefined;
|
|
@@ -90809,7 +90809,7 @@ declare const stampboardProps: z.ZodObject<Omit<{
|
|
|
90809
90809
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
90810
90810
|
autorouter?: AutorouterProp | undefined;
|
|
90811
90811
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
90812
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
90812
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
90813
90813
|
circuitJson?: any[] | undefined;
|
|
90814
90814
|
exposedNets?: string[] | undefined;
|
|
90815
90815
|
exposeNets?: boolean | undefined;
|
|
@@ -104671,6 +104671,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104671
104671
|
schStroke: z.ZodOptional<z.ZodString>;
|
|
104672
104672
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
104673
104673
|
maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
104674
|
+
maxViaCount: z.ZodOptional<z.ZodNumber>;
|
|
104674
104675
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
104675
104676
|
} & {
|
|
104676
104677
|
path: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
@@ -104720,6 +104721,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104720
104721
|
pcbStraightLine?: boolean | undefined;
|
|
104721
104722
|
schDisplayLabel?: string | undefined;
|
|
104722
104723
|
schStroke?: string | undefined;
|
|
104724
|
+
maxViaCount?: number | undefined;
|
|
104723
104725
|
}, {
|
|
104724
104726
|
path: (string | {
|
|
104725
104727
|
getPortSelector: () => string;
|
|
@@ -104772,6 +104774,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104772
104774
|
pcbStraightLine?: boolean | undefined;
|
|
104773
104775
|
schDisplayLabel?: string | undefined;
|
|
104774
104776
|
schStroke?: string | undefined;
|
|
104777
|
+
maxViaCount?: number | undefined;
|
|
104775
104778
|
}>, z.ZodObject<{
|
|
104776
104779
|
key: z.ZodOptional<z.ZodString>;
|
|
104777
104780
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -104936,6 +104939,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104936
104939
|
schStroke: z.ZodOptional<z.ZodString>;
|
|
104937
104940
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
104938
104941
|
maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
104942
|
+
maxViaCount: z.ZodOptional<z.ZodNumber>;
|
|
104939
104943
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
104940
104944
|
} & {
|
|
104941
104945
|
from: z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
@@ -104993,6 +104997,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
104993
104997
|
pcbStraightLine?: boolean | undefined;
|
|
104994
104998
|
schDisplayLabel?: string | undefined;
|
|
104995
104999
|
schStroke?: string | undefined;
|
|
105000
|
+
maxViaCount?: number | undefined;
|
|
104996
105001
|
}, {
|
|
104997
105002
|
from: string | {
|
|
104998
105003
|
getPortSelector: () => string;
|
|
@@ -105048,6 +105053,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
105048
105053
|
pcbStraightLine?: boolean | undefined;
|
|
105049
105054
|
schDisplayLabel?: string | undefined;
|
|
105050
105055
|
schStroke?: string | undefined;
|
|
105056
|
+
maxViaCount?: number | undefined;
|
|
105051
105057
|
}>, z.ZodObject<{
|
|
105052
105058
|
key: z.ZodOptional<z.ZodString>;
|
|
105053
105059
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -105212,6 +105218,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
105212
105218
|
schStroke: z.ZodOptional<z.ZodString>;
|
|
105213
105219
|
highlightColor: z.ZodOptional<z.ZodString>;
|
|
105214
105220
|
maxLength: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodNumber]>, number, string | number>>;
|
|
105221
|
+
maxViaCount: z.ZodOptional<z.ZodNumber>;
|
|
105215
105222
|
connectsTo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
|
|
105216
105223
|
} & {
|
|
105217
105224
|
start: z.ZodUnion<[z.ZodString, z.ZodType<{
|
|
@@ -105269,6 +105276,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
105269
105276
|
pcbStraightLine?: boolean | undefined;
|
|
105270
105277
|
schDisplayLabel?: string | undefined;
|
|
105271
105278
|
schStroke?: string | undefined;
|
|
105279
|
+
maxViaCount?: number | undefined;
|
|
105272
105280
|
}, {
|
|
105273
105281
|
start: string | {
|
|
105274
105282
|
getPortSelector: () => string;
|
|
@@ -105324,6 +105332,7 @@ declare const traceProps: z.ZodUnion<[z.ZodObject<{
|
|
|
105324
105332
|
pcbStraightLine?: boolean | undefined;
|
|
105325
105333
|
schDisplayLabel?: string | undefined;
|
|
105326
105334
|
schStroke?: string | undefined;
|
|
105335
|
+
maxViaCount?: number | undefined;
|
|
105327
105336
|
}>]>;
|
|
105328
105337
|
type TraceProps = z.input<typeof traceProps>;
|
|
105329
105338
|
|
|
@@ -110601,7 +110610,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
110601
110610
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
110602
110611
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
110603
110612
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
110604
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
110613
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
110605
110614
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
110606
110615
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
110607
110616
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -111210,7 +111219,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
111210
111219
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
111211
111220
|
autorouter?: AutorouterProp | undefined;
|
|
111212
111221
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
111213
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
111222
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
111214
111223
|
circuitJson?: any[] | undefined;
|
|
111215
111224
|
exposedNets?: string[] | undefined;
|
|
111216
111225
|
exposeNets?: boolean | undefined;
|
|
@@ -111571,7 +111580,7 @@ declare const mountedboardProps: z.ZodObject<{
|
|
|
111571
111580
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
111572
111581
|
autorouter?: AutorouterProp | undefined;
|
|
111573
111582
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
111574
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
111583
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
111575
111584
|
circuitJson?: any[] | undefined;
|
|
111576
111585
|
exposedNets?: string[] | undefined;
|
|
111577
111586
|
exposeNets?: boolean | undefined;
|
|
@@ -122156,7 +122165,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
122156
122165
|
pcbRouteCache: z.ZodOptional<z.ZodType<PcbRouteCache, z.ZodTypeDef, PcbRouteCache>>;
|
|
122157
122166
|
autorouter: z.ZodOptional<z.ZodType<AutorouterProp, z.ZodTypeDef, AutorouterProp>>;
|
|
122158
122167
|
autorouterEffortLevel: z.ZodOptional<z.ZodEnum<["1x", "2x", "5x", "10x", "100x"]>>;
|
|
122159
|
-
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "latest"]>>;
|
|
122168
|
+
autorouterVersion: z.ZodOptional<z.ZodEnum<["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]>>;
|
|
122160
122169
|
square: z.ZodOptional<z.ZodBoolean>;
|
|
122161
122170
|
emptyArea: z.ZodOptional<z.ZodString>;
|
|
122162
122171
|
filledArea: z.ZodOptional<z.ZodString>;
|
|
@@ -122620,7 +122629,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
122620
122629
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
122621
122630
|
autorouter?: AutorouterProp | undefined;
|
|
122622
122631
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
122623
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
122632
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
122624
122633
|
circuitJson?: any[] | undefined;
|
|
122625
122634
|
exposedNets?: string[] | undefined;
|
|
122626
122635
|
exposeNets?: boolean | undefined;
|
|
@@ -122942,7 +122951,7 @@ declare const subcircuitProps: z.ZodObject<{
|
|
|
122942
122951
|
pcbRouteCache?: PcbRouteCache | undefined;
|
|
122943
122952
|
autorouter?: AutorouterProp | undefined;
|
|
122944
122953
|
autorouterEffortLevel?: "2x" | "1x" | "5x" | "10x" | "100x" | undefined;
|
|
122945
|
-
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest" | undefined;
|
|
122954
|
+
autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "beta_pipeline9" | "latest" | undefined;
|
|
122946
122955
|
circuitJson?: any[] | undefined;
|
|
122947
122956
|
exposedNets?: string[] | undefined;
|
|
122948
122957
|
exposeNets?: boolean | undefined;
|
package/dist/index.js
CHANGED
|
@@ -16514,7 +16514,7 @@ var subcircuitGroupProps = baseGroupProps.extend({
|
|
|
16514
16514
|
pcbRouteCache: z41.custom((v) => true).optional(),
|
|
16515
16515
|
autorouter: autorouterProp.optional(),
|
|
16516
16516
|
autorouterEffortLevel: autorouterEffortLevel.optional(),
|
|
16517
|
-
autorouterVersion: z41.enum(["v1", "v2", "v3", "v4", "v5", "v6", "latest"]).optional(),
|
|
16517
|
+
autorouterVersion: z41.enum(["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"]).optional(),
|
|
16518
16518
|
square: z41.boolean().optional(),
|
|
16519
16519
|
emptyArea: z41.string().optional(),
|
|
16520
16520
|
filledArea: z41.string().optional(),
|
|
@@ -17383,6 +17383,7 @@ var baseTraceProps = z70.object({
|
|
|
17383
17383
|
schStroke: z70.string().optional(),
|
|
17384
17384
|
highlightColor: z70.string().optional(),
|
|
17385
17385
|
maxLength: distance18.optional(),
|
|
17386
|
+
maxViaCount: z70.number().int().nonnegative().optional().describe("Maximum number of vias allowed in the PCB trace route"),
|
|
17386
17387
|
connectsTo: z70.string().or(z70.array(z70.string())).optional()
|
|
17387
17388
|
});
|
|
17388
17389
|
var traceProps = z70.union([
|