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.
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "1.0.130",
3
+ "version": "1.0.131",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",