@tscircuit/props 0.0.587 → 0.0.588

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.
package/README.md CHANGED
@@ -2164,6 +2164,8 @@ export interface ProjectConfig extends Pick<
2164
2164
  | "includeBoardFiles"
2165
2165
  | "snapshotsDir"
2166
2166
  | "defaultSpiceEngine"
2167
+ | "pcbDisabled"
2168
+ | "schematicDisabled"
2167
2169
  > {}
2168
2170
  ```
2169
2171
 
package/dist/index.d.ts CHANGED
@@ -191508,7 +191508,7 @@ interface PlatformConfig {
191508
191508
  }
191509
191509
  declare const platformConfig: z.ZodType<PlatformConfig>;
191510
191510
 
191511
- interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine"> {
191511
+ interface ProjectConfig extends Pick<PlatformConfig, "projectName" | "projectBaseUrl" | "version" | "url" | "printBoardInformationToSilkscreen" | "includeBoardFiles" | "snapshotsDir" | "defaultSpiceEngine" | "pcbDisabled" | "schematicDisabled"> {
191512
191512
  }
191513
191513
  declare const projectConfig: z.ZodType<ProjectConfig>;
191514
191514
 
package/dist/index.js CHANGED
@@ -18678,7 +18678,9 @@ var projectConfig = platformConfigObject.pick({
18678
18678
  printBoardInformationToSilkscreen: true,
18679
18679
  includeBoardFiles: true,
18680
18680
  snapshotsDir: true,
18681
- defaultSpiceEngine: true
18681
+ defaultSpiceEngine: true,
18682
+ pcbDisabled: true,
18683
+ schematicDisabled: true
18682
18684
  });
18683
18685
  expectTypesMatch(true);
18684
18686
  export {