@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.
@@ -87,6 +87,12 @@ export interface PlatformConfig {
87
87
  */
88
88
  enablePartOrientationAnalysis?: boolean
89
89
 
90
+ /**
91
+ * Maximum time, in milliseconds, that an individual PCB pack solver may run.
92
+ * The timeout is checked between solver steps.
93
+ */
94
+ pcbPackSolverTimeoutMs?: number
95
+
90
96
  registryApiUrl?: string
91
97
 
92
98
  cloudAutorouterUrl?: string
@@ -255,6 +261,7 @@ export const platformConfig = z.object({
255
261
  unitPreference: z.enum(["mm", "in", "mil"]).optional(),
256
262
  localCacheEngine: localCacheEngine.optional(),
257
263
  enablePartOrientationAnalysis: z.boolean().optional(),
264
+ pcbPackSolverTimeoutMs: z.number().finite().positive().optional(),
258
265
  pcbDisabled: z.boolean().optional(),
259
266
  routingDisabled: z.boolean().optional(),
260
267
  schematicDisabled: z.boolean().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.615",
3
+ "version": "0.0.616",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",