fix(results): 🐛 Collect prefilled variables in db
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
import { Result as ResultFromPrisma } from 'db'
|
||||
import { VariableWithValue } from '.'
|
||||
|
||||
export type Result = Omit<ResultFromPrisma, 'createdAt'> & { createdAt: string }
|
||||
export type Result = Omit<
|
||||
ResultFromPrisma,
|
||||
'createdAt' | 'prefilledVariables'
|
||||
> & { createdAt: string; prefilledVariables: VariableWithValue[] }
|
||||
|
Reference in New Issue
Block a user