@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 CHANGED
@@ -2396,6 +2396,11 @@ export interface PlatformConfig {
2396
2396
 
2397
2397
  autorouterMap?: Record<string, AutorouterDefinition>;
2398
2398
 
2399
+ /** Use networked Pipeline9 node solving at effort 1. Omitted or false keeps local routing.
2400
+ * Explicit alternative pipelines and effort levels retain their local solver.
2401
+ */
2402
+ useCloudAutorouter?: boolean;
2403
+
2399
2404
  /**
2400
2405
  * Allows the deprecated sequential_trace and auto_cloud autorouter presets.
2401
2406
  * Defaults to false because these presets are otherwise disabled.
package/dist/index.d.ts CHANGED
@@ -226030,6 +226030,10 @@ interface PlatformConfig {
226030
226030
  partsEngine?: PartsEngine;
226031
226031
  autorouter?: AutorouterProp;
226032
226032
  autorouterMap?: Record<string, AutorouterDefinition>;
226033
+ /** Use networked Pipeline9 node solving at effort 1. Omitted or false keeps local routing.
226034
+ * Explicit alternative pipelines and effort levels retain their local solver.
226035
+ */
226036
+ useCloudAutorouter?: boolean;
226033
226037
  /**
226034
226038
  * Allows the deprecated sequential_trace and auto_cloud autorouter presets.
226035
226039
  * Defaults to false because these presets are otherwise disabled.
package/dist/index.js CHANGED
@@ -19252,6 +19252,7 @@ var platformConfig = z150.object({
19252
19252
  defaultSpiceEngine: defaultSpiceEngine.optional(),
19253
19253
  unitPreference: z150.enum(["mm", "in", "mil"]).optional(),
19254
19254
  localCacheEngine: localCacheEngine.optional(),
19255
+ useCloudAutorouter: z150.boolean().optional(),
19255
19256
  enablePartOrientationAnalysis: z150.boolean().optional(),
19256
19257
  pcbPackSolverTimeoutMs: z150.number().finite().positive().optional(),
19257
19258
  pcbDisabled: z150.boolean().optional(),