@tscircuit/props 0.0.493 → 0.0.494

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.
@@ -79,6 +79,7 @@ export interface PlatformConfig {
79
79
  netlistDrcChecksDisabled?: boolean
80
80
  routingDrcChecksDisabled?: boolean
81
81
  placementDrcChecksDisabled?: boolean
82
+ pinSpecificationDrcChecksDisabled?: boolean
82
83
 
83
84
  spiceEngineMap?: Record<string, SpiceEngine>
84
85
 
@@ -213,6 +214,7 @@ export const platformConfig = z.object({
213
214
  netlistDrcChecksDisabled: z.boolean().optional(),
214
215
  routingDrcChecksDisabled: z.boolean().optional(),
215
216
  placementDrcChecksDisabled: z.boolean().optional(),
217
+ pinSpecificationDrcChecksDisabled: z.boolean().optional(),
216
218
  spiceEngineMap: z.record(z.string(), spiceEngineZod).optional(),
217
219
  footprintLibraryMap: z
218
220
  .record(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.493",
3
+ "version": "0.0.494",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",