@tscircuit/props 0.0.646 → 0.0.647
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 +5 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/lib/platformConfig.ts +6 -0
- package/package.json +1 -1
package/lib/platformConfig.ts
CHANGED
|
@@ -71,6 +71,11 @@ export interface PlatformConfig {
|
|
|
71
71
|
|
|
72
72
|
autorouterMap?: Record<string, AutorouterDefinition>
|
|
73
73
|
|
|
74
|
+
/** Use networked Pipeline9 node solving at effort 1. Omitted or false keeps local routing.
|
|
75
|
+
* Explicit alternative pipelines and effort levels retain their local solver.
|
|
76
|
+
*/
|
|
77
|
+
useCloudAutorouter?: boolean
|
|
78
|
+
|
|
74
79
|
/**
|
|
75
80
|
* Allows the deprecated sequential_trace and auto_cloud autorouter presets.
|
|
76
81
|
* Defaults to false because these presets are otherwise disabled.
|
|
@@ -265,6 +270,7 @@ export const platformConfig = z.object({
|
|
|
265
270
|
defaultSpiceEngine: defaultSpiceEngine.optional(),
|
|
266
271
|
unitPreference: z.enum(["mm", "in", "mil"]).optional(),
|
|
267
272
|
localCacheEngine: localCacheEngine.optional(),
|
|
273
|
+
useCloudAutorouter: z.boolean().optional(),
|
|
268
274
|
enablePartOrientationAnalysis: z.boolean().optional(),
|
|
269
275
|
pcbPackSolverTimeoutMs: z.number().finite().positive().optional(),
|
|
270
276
|
pcbDisabled: z.boolean().optional(),
|