freemium-survey-components 2.0.179 → 2.0.181
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 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -514,6 +514,7 @@ export type AudienceType = {
|
|
|
514
514
|
};
|
|
515
515
|
export type SubmitOptionType = 'rightAway' | 'later';
|
|
516
516
|
export type CutOffDateType = 'afterResponses' | 'afterTime';
|
|
517
|
+
export type ThrottleType = 'trigger_once_every_request' | 'trigger_across_contact_requests';
|
|
517
518
|
export type DurationValueOptions = 'SECOND' | 'MINUTE' | 'HOUR' | 'DAY' | 'WEEK' | 'MONTH' | 'YEAR';
|
|
518
519
|
export type ReminderValueOptions = 1 | 2 | 3;
|
|
519
520
|
export type ResponseConfigurationType = {
|
|
@@ -533,6 +534,8 @@ export type CollectorMetaType = {
|
|
|
533
534
|
limit_survey?: boolean | null;
|
|
534
535
|
trigger_survey?: boolean | null;
|
|
535
536
|
response_window?: boolean | null;
|
|
537
|
+
survey_throttling?: boolean | null;
|
|
538
|
+
throttle_type?: ThrottleType | null;
|
|
536
539
|
cutoff_date?: CutOffDateType | null;
|
|
537
540
|
enable_partial_complete_response?: boolean | null;
|
|
538
541
|
response_configuration?: ResponseConfigurationType | null;
|
|
@@ -914,6 +917,10 @@ export type HostAgentType = {
|
|
|
914
917
|
export type HostConfigType = {
|
|
915
918
|
navigation?: NavigationType;
|
|
916
919
|
API_HOST?: string;
|
|
920
|
+
tabOptions?: Record<string, {
|
|
921
|
+
disabled?: boolean;
|
|
922
|
+
hidden?: boolean;
|
|
923
|
+
}>;
|
|
917
924
|
translations?: {
|
|
918
925
|
[key: string]: string;
|
|
919
926
|
};
|