@tscircuit/props 0.0.615 → 0.0.616

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
@@ -2260,6 +2260,12 @@ export interface PlatformConfig {
2260
2260
  */
2261
2261
  enablePartOrientationAnalysis?: boolean;
2262
2262
 
2263
+ /**
2264
+ * Maximum time, in milliseconds, that an individual PCB pack solver may run.
2265
+ * The timeout is checked between solver steps.
2266
+ */
2267
+ pcbPackSolverTimeoutMs?: number;
2268
+
2263
2269
  registryApiUrl?: string;
2264
2270
 
2265
2271
  cloudAutorouterUrl?: string;
package/dist/index.d.ts CHANGED
@@ -193172,6 +193172,11 @@ interface PlatformConfig {
193172
193172
  * align their semantic pin 1 orientations.
193173
193173
  */
193174
193174
  enablePartOrientationAnalysis?: boolean;
193175
+ /**
193176
+ * Maximum time, in milliseconds, that an individual PCB pack solver may run.
193177
+ * The timeout is checked between solver steps.
193178
+ */
193179
+ pcbPackSolverTimeoutMs?: number;
193175
193180
  registryApiUrl?: string;
193176
193181
  cloudAutorouterUrl?: string;
193177
193182
  projectName?: string;
package/dist/index.js CHANGED
@@ -19006,6 +19006,7 @@ var platformConfig = z146.object({
19006
19006
  unitPreference: z146.enum(["mm", "in", "mil"]).optional(),
19007
19007
  localCacheEngine: localCacheEngine.optional(),
19008
19008
  enablePartOrientationAnalysis: z146.boolean().optional(),
19009
+ pcbPackSolverTimeoutMs: z146.number().finite().positive().optional(),
19009
19010
  pcbDisabled: z146.boolean().optional(),
19010
19011
  routingDisabled: z146.boolean().optional(),
19011
19012
  schematicDisabled: z146.boolean().optional(),