@tscircuit/props 0.0.486 → 0.0.487

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.
@@ -75,6 +75,9 @@ export interface PlatformConfig {
75
75
  routingDisabled?: boolean
76
76
  schematicDisabled?: boolean
77
77
  partsEngineDisabled?: boolean
78
+ netlistDrcChecksDisabled?: boolean
79
+ routingDrcChecksDisabled?: boolean
80
+ placementDrcChecksDisabled?: boolean
78
81
 
79
82
  spiceEngineMap?: Record<string, SpiceEngine>
80
83
 
@@ -205,6 +208,9 @@ export const platformConfig = z.object({
205
208
  routingDisabled: z.boolean().optional(),
206
209
  schematicDisabled: z.boolean().optional(),
207
210
  partsEngineDisabled: z.boolean().optional(),
211
+ netlistDrcChecksDisabled: z.boolean().optional(),
212
+ routingDrcChecksDisabled: z.boolean().optional(),
213
+ placementDrcChecksDisabled: z.boolean().optional(),
208
214
  spiceEngineMap: z.record(z.string(), spiceEngineZod).optional(),
209
215
  footprintLibraryMap: z
210
216
  .record(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/props",
3
- "version": "0.0.486",
3
+ "version": "0.0.487",
4
4
  "description": "Props for tscircuit builtin component types",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",