freemium-survey-components 2.0.172 → 2.0.174
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 -1
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -927,6 +927,8 @@ export type HostConfigType = {
|
|
|
927
927
|
agents?: HostAgentType[];
|
|
928
928
|
accountMeta?: AccountMetaType;
|
|
929
929
|
supportedLanguages?: string[];
|
|
930
|
+
collectorChannelIcon?: string;
|
|
931
|
+
collectorChannelTitle?: string;
|
|
930
932
|
};
|
|
931
933
|
export type WcTypes = 'list' | 'builder' | 'email' | 'preview' | 'response' | 'template';
|
|
932
934
|
export type ProductType = 'freshsurvey' | 'freshsuccess' | 'freshdesk' | 'freshchat' | 'freshservice' | 'default';
|
|
@@ -988,7 +990,7 @@ export interface SurveyServResponseType {
|
|
|
988
990
|
}
|
|
989
991
|
export type PreviewChannelType = 'whatsapp' | 'email' | 'instagram';
|
|
990
992
|
export type ThemeType = 'light' | 'dark';
|
|
991
|
-
export type AccessTypes = 'survey:read' | 'survey:write' | 'analytics:read' | 'contact:read' | 'contact:write' | 'contact-impexp:write' | 'response:read' | 'response:write' | 'response-impexp:write' | 'response-edit:write' | 'workflow:read' | 'workflow:write' | 'dashboard:read' | 'settings:read' | 'account-transfer:write';
|
|
993
|
+
export type AccessTypes = 'survey:read' | 'survey:write' | 'analytics:read' | 'contact:read' | 'contact:write' | 'contact-impexp:write' | 'response:read' | 'response:write' | 'response-impexp:write' | 'response-edit:write' | 'workflow:read' | 'workflow:write' | 'dashboard:read' | 'settings:read' | 'account-transfer:write' | 'survey:create' | 'survey:delete';
|
|
992
994
|
export type ExportedComponentType = {
|
|
993
995
|
goToRoute: GoToRouteType;
|
|
994
996
|
hostParams: HostParamsType & {
|