fix types
This commit is contained in:
parent
8a90a1a3e4
commit
a4797366ad
|
@ -65,7 +65,6 @@ const INITIAL_FRONTEND_STATE = {
|
||||||
features: {
|
features: {
|
||||||
componentValidation: false,
|
componentValidation: false,
|
||||||
disableUserMetadata: false,
|
disableUserMetadata: false,
|
||||||
enableAutomationChaining: false,
|
|
||||||
},
|
},
|
||||||
errors: [],
|
errors: [],
|
||||||
hasAppPackage: false,
|
hasAppPackage: false,
|
||||||
|
|
|
@ -23,7 +23,7 @@ export interface App extends Document {
|
||||||
automationErrors?: AppMetadataErrors
|
automationErrors?: AppMetadataErrors
|
||||||
icon?: AppIcon
|
icon?: AppIcon
|
||||||
features?: AppFeatures
|
features?: AppFeatures
|
||||||
automations: AutomationSettings
|
automations?: AutomationSettings
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AppInstance {
|
export interface AppInstance {
|
||||||
|
@ -68,7 +68,6 @@ export interface AppIcon {
|
||||||
export interface AppFeatures {
|
export interface AppFeatures {
|
||||||
componentValidation?: boolean
|
componentValidation?: boolean
|
||||||
disableUserMetadata?: boolean
|
disableUserMetadata?: boolean
|
||||||
enableAutomationChaining?: boolean
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface AutomationSettings {
|
export interface AutomationSettings {
|
||||||
|
|
Loading…
Reference in New Issue