freemium-survey-components 2.0.66 → 2.0.67
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 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -791,6 +791,8 @@ export type SurveyServAuthAccountType = {
|
|
|
791
791
|
brand_color?: string | null;
|
|
792
792
|
logo_url?: string | null;
|
|
793
793
|
favicon_url?: string | null;
|
|
794
|
+
api_key?: string | null;
|
|
795
|
+
time_format?: string | null;
|
|
794
796
|
verified?: boolean | null;
|
|
795
797
|
dkim_domain?: string | null;
|
|
796
798
|
dkim_verified?: boolean | null;
|
|
@@ -894,12 +896,14 @@ export type ProductType = 'freshservice' | 'freshchat' | 'freshsuccess' | 'fresh
|
|
|
894
896
|
export type HostParamsType = {
|
|
895
897
|
id?: string;
|
|
896
898
|
surveyId?: string;
|
|
899
|
+
cid?: string;
|
|
897
900
|
collectorId?: string;
|
|
898
901
|
showOnlyQuestionsPreview?: string;
|
|
899
902
|
isImport?: string;
|
|
900
903
|
};
|
|
901
904
|
export type ComponentQParamsType = {
|
|
902
905
|
product?: ProductType;
|
|
906
|
+
component?: WcTypes;
|
|
903
907
|
onboarding?: string;
|
|
904
908
|
step?: string;
|
|
905
909
|
tab?: 'builder' | 'collector';
|