freemium-survey-components 2.0.178 → 2.0.179
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 +5 -0
- package/package.json +1 -1
package/lib/types/types.d.ts
CHANGED
|
@@ -472,6 +472,7 @@ export type PreferredTimeType = {
|
|
|
472
472
|
type NumberOrNull = number | null;
|
|
473
473
|
export type DelayTypes = 'before' | 'after';
|
|
474
474
|
export type DelayPropertyTypes = 'CONTACT' | 'TRANSACTION';
|
|
475
|
+
export type ResetWindowOptionsType = 'NEVER' | 'AFTER_CALENDAR_DAYS' | 'AFTER_BUSINESS_DAYS' | 'AFTER_MONTHS' | 'AFTER_QUARTERS' | 'AFTER_CALENDAR_WEEK_ENDS' | 'AFTER_CALENDAR_MONTH_ENDS' | 'AFTER_QUARTER_ENDS' | 'AFTER_YEAR_ENDS';
|
|
475
476
|
export type SurveyDelayInfoType = {
|
|
476
477
|
initial_survey_delay_by_days?: number | null;
|
|
477
478
|
initial_survey_delay_by_weeks?: number | null;
|
|
@@ -499,6 +500,10 @@ export type ThrottleInfoType = {
|
|
|
499
500
|
limit_per_month?: number | null;
|
|
500
501
|
web_in_app_limit_per_day?: number | null;
|
|
501
502
|
web_in_app_limit_per_month?: number | null;
|
|
503
|
+
trigger_across_contacts_request_percentage?: number | null;
|
|
504
|
+
trigger_once_every_request_for_contact_count?: number | null;
|
|
505
|
+
reset_window_options?: ResetWindowOptionsType | null;
|
|
506
|
+
reset_window_limit?: number | null;
|
|
502
507
|
};
|
|
503
508
|
export type AudienceTypes = 'SEGMENT' | 'LIST' | 'ALL';
|
|
504
509
|
export type AudienceType = {
|