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.
- package/lib/types/types.d.ts +7 -1
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -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?:
|
|
898
|
+
agents?: HostAgentType[];
|
|
893
899
|
accountMeta?: AccountMetaType;
|
|
894
900
|
};
|
|
895
901
|
export type WcTypes = 'list' | 'builder' | 'email' | 'preview' | 'response' | 'template';
|