fix(webhook): 🐛 Sample result w/ multi input blocks
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
import { Result as ResultFromPrisma } from 'db'
|
||||
import { Answer, VariableWithValue } from '.'
|
||||
import { Answer, InputStepType, VariableWithValue } from '.'
|
||||
|
||||
export type Result = Omit<
|
||||
ResultFromPrisma,
|
||||
@ -12,3 +12,11 @@ export type ResultValues = Pick<
|
||||
ResultWithAnswers,
|
||||
'answers' | 'createdAt' | 'prefilledVariables'
|
||||
>
|
||||
|
||||
export type ResultHeaderCell = {
|
||||
label: string
|
||||
stepId?: string
|
||||
stepType?: InputStepType
|
||||
isLong?: boolean
|
||||
variableId?: string
|
||||
}
|
||||
|
Reference in New Issue
Block a user