@tscircuit/props 0.0.498 → 0.0.499

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.
@@ -44,6 +44,7 @@ export interface CadModelBase {
44
44
  pcbRotationOffset?: number
45
45
  zOffsetFromSurface?: Distance
46
46
  showAsTranslucentModel?: boolean
47
+ stepUrl?: string
47
48
  }
48
49
 
49
50
  export const cadModelBase = z.object({
@@ -56,6 +57,7 @@ export const cadModelBase = z.object({
56
57
  pcbRotationOffset: z.number().optional(),
57
58
  zOffsetFromSurface: distance.optional(),
58
59
  showAsTranslucentModel: z.boolean().optional(),
60
+ stepUrl: url.optional(),
59
61
  })
60
62
 
61
63
  expectTypesMatch<CadModelBase, z.input<typeof cadModelBase>>(true)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.498",
3
+ "version": "0.0.499",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",