freemium-survey-components 1.0.72 → 1.0.73

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.
@@ -1,6 +1,4 @@
1
1
  import { SurveyType } from './types';
2
- export declare const surveyCSAT: SurveyType;
3
- export declare const surveyYesNo: SurveyType;
4
2
  export declare const newSurvey: SurveyType;
5
3
  export declare const mockPlaceholders: {
6
4
  '{{contact.user_created_date}}': string;
@@ -43,6 +43,19 @@ export declare type QuestionScalePropertiesType = {
43
43
  button_style?: ScalePropertiesButtonStyleType | null;
44
44
  labels?: ScalePropertiesLabelsType | null;
45
45
  };
46
+ export declare type ReviewPageType = {
47
+ name?: string | null;
48
+ img?: string | null;
49
+ };
50
+ export declare type pagesType = {
51
+ name?: string | null;
52
+ url?: string | null;
53
+ };
54
+ export declare type GetReviewType = {
55
+ is_enabled?: boolean | null;
56
+ title_text?: string | null;
57
+ pages?: pagesType[] | null;
58
+ };
46
59
  export declare type QuestionTypeInfoMetaType = {
47
60
  others?: string | null;
48
61
  is_deleted?: boolean | null;
@@ -54,6 +67,8 @@ export declare type QuestionTypeInfoMetaType = {
54
67
  autoProceedDelay?: number | null;
55
68
  proceedBtnText?: string | null;
56
69
  deleted_on?: string | null;
70
+ image_url?: string | null;
71
+ get_reviews?: GetReviewType | null;
57
72
  };
58
73
  export declare type SurveyQuestionTypeInfo = {
59
74
  comment?: boolean | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",