freemium-survey-components 2.0.65 → 2.0.66
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 +4 -1
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -893,9 +893,9 @@ export type WcTypes = 'list' | 'builder' | 'email' | 'preview' | 'response' | 't
|
|
|
893
893
|
export type ProductType = 'freshservice' | 'freshchat' | 'freshsuccess' | 'freshsurvey' | 'default';
|
|
894
894
|
export type HostParamsType = {
|
|
895
895
|
id?: string;
|
|
896
|
+
surveyId?: string;
|
|
896
897
|
collectorId?: string;
|
|
897
898
|
showOnlyQuestionsPreview?: string;
|
|
898
|
-
active?: 'builder' | 'collector';
|
|
899
899
|
isImport?: string;
|
|
900
900
|
};
|
|
901
901
|
export type ComponentQParamsType = {
|
|
@@ -913,5 +913,8 @@ export type ExportedComponentType = {
|
|
|
913
913
|
hostConfig: HostConfigType;
|
|
914
914
|
surveyServAuthInfo: SurveyServAuthType;
|
|
915
915
|
product: ProductType;
|
|
916
|
+
collectorId?: string;
|
|
917
|
+
surveyId?: string;
|
|
918
|
+
locale?: string;
|
|
916
919
|
};
|
|
917
920
|
export {};
|