freemium-survey-components 2.0.69 → 2.0.72

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.
@@ -871,6 +871,12 @@ export type AccountMetaType = {
871
871
  is_file_qn_enabled?: boolean | null;
872
872
  is_question_translation_enabled?: string | null;
873
873
  };
874
+ export type HostAgentType = {
875
+ name?: string;
876
+ first_name?: string;
877
+ label?: string;
878
+ email?: string;
879
+ };
874
880
  export type HostConfigType = {
875
881
  navigation: NavigationType;
876
882
  API_HOST: string;
@@ -889,7 +895,7 @@ export type HostConfigType = {
889
895
  emailPlaceholders: PlaceholderType[];
890
896
  surveyPlaceholders: PlaceholderType[];
891
897
  };
892
- agents?: any[];
898
+ agents?: HostAgentType[];
893
899
  accountMeta?: AccountMetaType;
894
900
  };
895
901
  export type WcTypes = 'list' | 'builder' | 'email' | 'preview' | 'response' | 'template';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "2.0.69",
3
+ "version": "2.0.72",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",