Generated by Spark: User might not want every designer feature, make it so we can turn them on and off

This commit is contained in:
2026-01-16 02:19:06 +00:00
committed by GitHub
parent 141e8a6b84
commit 7de782ec62
3 changed files with 422 additions and 155 deletions

View File

@@ -259,6 +259,23 @@ export interface LambdaTrigger {
config: Record<string, any>
}
export interface FeatureToggles {
codeEditor: boolean
models: boolean
components: boolean
componentTrees: boolean
workflows: boolean
lambdas: boolean
styling: boolean
flaskApi: boolean
playwright: boolean
storybook: boolean
unitTests: boolean
errorRepair: boolean
documentation: boolean
sassStyles: boolean
}
export interface Project {
name: string
files: ProjectFile[]
@@ -274,4 +291,5 @@ export interface Project {
flaskConfig?: FlaskConfig
nextjsConfig?: NextJsConfig
npmSettings?: NpmSettings
featureToggles?: FeatureToggles
}