freemium-survey-components 2.0.177 → 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.
@@ -472,8 +472,11 @@ 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;
478
+ initial_survey_delay_by_weeks?: number | null;
479
+ initial_survey_delay_by_months?: number | null;
477
480
  based_on?: string | null;
478
481
  delay_type?: DelayTypes | null;
479
482
  delay_property?: DelayPropertyTypes | null;
@@ -494,7 +497,13 @@ export type ScheduleInfoType = {
494
497
  };
495
498
  export type ThrottleInfoType = {
496
499
  limit_per_day?: number | null;
500
+ limit_per_month?: number | null;
497
501
  web_in_app_limit_per_day?: number | null;
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;
498
507
  };
499
508
  export type AudienceTypes = 'SEGMENT' | 'LIST' | 'ALL';
500
509
  export type AudienceType = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "freemium-survey-components",
3
- "version": "2.0.177",
3
+ "version": "2.0.179",
4
4
  "description": "React Survey Ui Components",
5
5
  "main": "lib/index.cjs.js",
6
6
  "module": "lib/index.esm.js",