File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export interface QuizResultData extends Record<string, any> {
127127 variations : Record < string , any > [ ] ;
128128}
129129
130- export type Question = SelectQuestion | FilterValueQuestion | OpenQuestion | CoverQuestion ;
130+ export type Question = SelectQuestion | FilterValueQuestion | OpenQuestion | CoverQuestion | FreeFormQuestion ;
131131
132132export interface BaseQuestion extends Record < string , any > {
133133 id : number ;
@@ -158,6 +158,11 @@ export interface CoverQuestion extends BaseQuestion {
158158 type : 'cover' ;
159159}
160160
161+ export interface FreeFormQuestion extends BaseQuestion {
162+ type : 'free_form' ;
163+ input_placeholder ?: Nullable < string > ;
164+ }
165+
161166export interface QuizResult extends Record < string , any > {
162167 filter_expression : Record < string , any > ;
163168 results_url : string ;
You can’t perform that action at this time.
0 commit comments