1
0
Fork 0
mirror of synced 2024-06-29 11:31:06 +12:00
budibase/packages/types/src/documents/app/automation.ts

20 lines
321 B
TypeScript
Raw Normal View History

2022-05-21 08:16:29 +12:00
import { Document } from "../document"
2022-05-20 23:29:31 +12:00
export interface Automation extends Document {
definition: {
steps: AutomationStep[]
trigger: AutomationTrigger
}
appId: string
}
2022-05-04 04:13:13 +12:00
export interface AutomationStep {
id: string
stepId: string
}
2022-05-04 04:13:13 +12:00
export interface AutomationTrigger {
id: string
stepId: string
}