freemium-survey-components 2.0.177 → 2.0.178
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
|
@@ -474,6 +474,8 @@ export type DelayTypes = 'before' | 'after';
|
|
|
474
474
|
export type DelayPropertyTypes = 'CONTACT' | 'TRANSACTION';
|
|
475
475
|
export type SurveyDelayInfoType = {
|
|
476
476
|
initial_survey_delay_by_days?: number | null;
|
|
477
|
+
initial_survey_delay_by_weeks?: number | null;
|
|
478
|
+
initial_survey_delay_by_months?: number | null;
|
|
477
479
|
based_on?: string | null;
|
|
478
480
|
delay_type?: DelayTypes | null;
|
|
479
481
|
delay_property?: DelayPropertyTypes | null;
|
|
@@ -494,7 +496,9 @@ export type ScheduleInfoType = {
|
|
|
494
496
|
};
|
|
495
497
|
export type ThrottleInfoType = {
|
|
496
498
|
limit_per_day?: number | null;
|
|
499
|
+
limit_per_month?: number | null;
|
|
497
500
|
web_in_app_limit_per_day?: number | null;
|
|
501
|
+
web_in_app_limit_per_month?: number | null;
|
|
498
502
|
};
|
|
499
503
|
export type AudienceTypes = 'SEGMENT' | 'LIST' | 'ALL';
|
|
500
504
|
export type AudienceType = {
|