freemium-survey-components 1.0.140 → 1.0.142
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/types/types.d.ts +3 -2
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -104,15 +104,16 @@ export declare type DependentBlockType = {
|
|
|
104
104
|
choice_id?: string[] | null;
|
|
105
105
|
};
|
|
106
106
|
export declare type QuestionChoiceMetaType = {
|
|
107
|
+
is_others: boolean;
|
|
107
108
|
is_deleted?: boolean | null;
|
|
108
|
-
|
|
109
|
+
show_comment_box?: boolean | null;
|
|
109
110
|
};
|
|
110
111
|
export declare type QuestionChoiceType = {
|
|
111
112
|
_id?: string | null;
|
|
112
113
|
id?: string | null;
|
|
113
114
|
position?: number | string | null;
|
|
114
115
|
value?: string | null;
|
|
115
|
-
meta
|
|
116
|
+
meta: QuestionChoiceMetaType | null;
|
|
116
117
|
};
|
|
117
118
|
export declare type SurveyQuestionType = {
|
|
118
119
|
id?: string | null;
|