@koredev/kore-web-sdk 11.18.0-rc.f92a18a → 11.18.0-rc.fbcaa35
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/README.md +7 -3
- package/dist/esm/plugins/multi-file-upload.js +1 -1
- package/dist/esm/plugins/proactive-web-campaign.js +1 -1
- package/dist/plugins/proactiveWebCampaign/proactiveWebCampaign.d.ts +6 -1
- package/dist/umd/plugins/multi-file-upload.js +1 -1
- package/dist/umd/plugins/proactive-web-campaign.js +1 -1
- package/package.json +1 -1
|
@@ -237,7 +237,12 @@ declare class ProactiveWebCampaignPlugin {
|
|
|
237
237
|
* @returns true if the recent journey matches the required sequence, false otherwise
|
|
238
238
|
*/
|
|
239
239
|
isJourneyValid(pageVisitArray: any, websiteArray: any): boolean;
|
|
240
|
-
|
|
240
|
+
/**
|
|
241
|
+
* Checks if the current time is within the engagement hours specified in engStrategy
|
|
242
|
+
* @param engStrategy - Engagement strategy object with engagement hours settings
|
|
243
|
+
* @returns {boolean} - Returns true if current time is within engagement hours, false otherwise
|
|
244
|
+
*/
|
|
245
|
+
checkEngagementHours(engStrategy: any): boolean;
|
|
241
246
|
createTimeSpentObjs(): void;
|
|
242
247
|
getLocationDetails(): void;
|
|
243
248
|
/**
|