freemium-survey-components 2.0.72 → 2.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.
- package/lib/types/types.d.ts +3 -2
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -872,14 +872,15 @@ export type AccountMetaType = {
|
|
|
872
872
|
is_question_translation_enabled?: string | null;
|
|
873
873
|
};
|
|
874
874
|
export type HostAgentType = {
|
|
875
|
+
id?: string;
|
|
875
876
|
name?: string;
|
|
876
877
|
first_name?: string;
|
|
877
878
|
label?: string;
|
|
878
879
|
email?: string;
|
|
879
880
|
};
|
|
880
881
|
export type HostConfigType = {
|
|
881
|
-
navigation
|
|
882
|
-
API_HOST
|
|
882
|
+
navigation?: NavigationType;
|
|
883
|
+
API_HOST?: string;
|
|
883
884
|
dependent_apis?: {
|
|
884
885
|
agents?: string;
|
|
885
886
|
};
|