freemium-survey-components 1.0.130 → 1.0.131
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 +4 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -94,6 +94,9 @@ export declare type SurveyQuestionTypeInfo = {
|
|
|
94
94
|
header_text?: string | null;
|
|
95
95
|
};
|
|
96
96
|
export declare type DependentBlockConditionType = 'ALL' | 'EQUALS' | 'BETWEEN';
|
|
97
|
+
export declare type QuestionMetaType = {
|
|
98
|
+
use_rating_for_analytics?: boolean | null;
|
|
99
|
+
};
|
|
97
100
|
export declare type DependentBlockType = {
|
|
98
101
|
condition_type?: DependentBlockConditionType | null;
|
|
99
102
|
values?: string[] | null;
|
|
@@ -117,6 +120,7 @@ export declare type SurveyQuestionType = {
|
|
|
117
120
|
name: string;
|
|
118
121
|
required?: boolean | null;
|
|
119
122
|
type_info?: SurveyQuestionTypeInfo | null;
|
|
123
|
+
meta?: QuestionMetaType | null;
|
|
120
124
|
dependent_blocks?: DependentBlockType[] | null;
|
|
121
125
|
choices?: QuestionChoiceType[] | null;
|
|
122
126
|
};
|