@tscircuit/props 0.0.613 → 0.0.614

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.
@@ -492,7 +492,15 @@ export interface SubcircuitGroupProps
492
492
 
493
493
  autorouter?: AutorouterProp
494
494
  autorouterEffortLevel?: "1x" | "2x" | "5x" | "10x" | "100x"
495
- autorouterVersion?: "v1" | "v2" | "v3" | "v4" | "v5" | "v6" | "latest"
495
+ autorouterVersion?:
496
+ | "v1"
497
+ | "v2"
498
+ | "v3"
499
+ | "v4"
500
+ | "v5"
501
+ | "v6"
502
+ | "beta_pipeline9"
503
+ | "latest"
496
504
 
497
505
  /**
498
506
  * Serialized circuit JSON describing a precompiled subcircuit
@@ -670,7 +678,7 @@ export const subcircuitGroupProps = baseGroupProps.extend({
670
678
  autorouter: autorouterProp.optional(),
671
679
  autorouterEffortLevel: autorouterEffortLevel.optional(),
672
680
  autorouterVersion: z
673
- .enum(["v1", "v2", "v3", "v4", "v5", "v6", "latest"])
681
+ .enum(["v1", "v2", "v3", "v4", "v5", "v6", "beta_pipeline9", "latest"])
674
682
  .optional(),
675
683
  square: z.boolean().optional(),
676
684
  emptyArea: z.string().optional(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.613",
3
+ "version": "0.0.614",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",