ahdjs 0.0.25 → 0.0.27

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.
@@ -12,13 +12,18 @@ declare class AHD extends GuideChimp {
12
12
  initializeSiteMap(refetch: boolean): Promise<void>;
13
13
  getHelpContent(url: string, refetch: boolean): Promise<any>;
14
14
  showPageTour(url: string, refetch: boolean): Promise<void>;
15
+ fetchFaqs(slug: any): Promise<any>;
15
16
  showPageBeacons(url: string, refetch: boolean): Promise<void>;
17
+ showPageHighlights(url: string, refetch: boolean, force?: boolean): Promise<void>;
16
18
  clearCachedData(): Promise<void>;
19
+ acknowledgeHighlight(id: string): Promise<void>;
17
20
  private generateDescription;
21
+ private getUnAcknowledgedHightlightsForUrl;
18
22
  private getApplicabeDataForUrl;
19
- private fetchAndCacheData;
20
- private fetchAndCacheHelpData;
23
+ private fetchAndCacheHighlightsData;
24
+ private fetchAndCacheTourData;
21
25
  private fetchAndCachePageVisitsData;
26
+ private updateVisitorStats;
22
27
  private markPageVisited;
23
28
  }
24
29
  declare const AHDjs: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ahdjs",
3
- "version": "0.0.25",
3
+ "version": "0.0.27",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/types/index.d.ts",