@koredev/kore-web-sdk 11.16.0-rc.0357b5c → 11.16.0-rc.794ab51

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.
@@ -14,6 +14,7 @@ declare class ProactiveWebCampaignPlugin {
14
14
  pageChangeDebounceTimer: any;
15
15
  customDataObject: any;
16
16
  isInitialPageLoaded: boolean;
17
+ browserSessionId: string;
17
18
  flattenedCustomData: any;
18
19
  previousFlattenedCustomData: any;
19
20
  customColumnConfig: Set<string>;
@@ -22,6 +23,11 @@ declare class ProactiveWebCampaignPlugin {
22
23
  static readonly CUSTOM_OPERATORS: string[];
23
24
  static readonly MAX_FLATTEN_DEPTH = 10;
24
25
  constructor(config: any);
26
+ /**
27
+ * Generates a unique browser session ID for the campaign trigger session
28
+ * @returns Unique browser session ID
29
+ */
30
+ generateBrowserSessionId(): string;
25
31
  onHostCreate(): void;
26
32
  onInit(): void;
27
33
  onUrlChange(callback: () => void): void;