@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.
@@ -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(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.646",
3
+ "version": "0.0.647",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",