@tscircuit/props 0.0.571 → 0.0.572

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.
@@ -329,6 +329,8 @@ export interface RoutingTolerances {
329
329
 
330
330
  export interface AutorouterConfig {
331
331
  serverUrl?: string
332
+ cacheServerUrl?: string
333
+ shouldUploadToCache?: boolean
332
334
  inputFormat?: "simplified" | "circuit-json"
333
335
  serverMode?: "job" | "solve-endpoint"
334
336
  serverCacheEnabled?: boolean
@@ -398,6 +400,8 @@ export const routingTolerances = z.object({
398
400
 
399
401
  export const autorouterConfig = z.object({
400
402
  serverUrl: url.optional(),
403
+ cacheServerUrl: url.optional(),
404
+ shouldUploadToCache: z.boolean().optional(),
401
405
  inputFormat: z.enum(["simplified", "circuit-json"]).optional(),
402
406
  serverMode: z.enum(["job", "solve-endpoint"]).optional(),
403
407
  serverCacheEnabled: z.boolean().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.571",
3
+ "version": "0.0.572",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",