posthog-js 1.158.2 → 1.159.0

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.
@@ -2,7 +2,7 @@ import { PostHog } from '../../posthog-core';
2
2
  import { DecideResponse, Properties } from '../../types';
3
3
  export declare const BASE_ERROR_ENDPOINT = "/e/";
4
4
  export declare class ExceptionObserver {
5
- private _endpoint;
5
+ private _endpointSuffix;
6
6
  instance: PostHog;
7
7
  remoteEnabled: boolean | undefined;
8
8
  private originalOnUnhandledRejectionHandler;
@@ -54,6 +54,7 @@ export declare class PostHog {
54
54
  _retryQueue?: RetryQueue;
55
55
  sessionRecording?: SessionRecording;
56
56
  webPerformance: DeprecatedWebPerformanceObserver;
57
+ _initialPageviewCaptured: boolean;
57
58
  _triggered_notifs: any;
58
59
  compression?: Compression;
59
60
  __request_queue: QueuedRequestOptions[];
@@ -702,6 +703,7 @@ export declare class PostHog {
702
703
  */
703
704
  clear_opt_in_out_capturing(): void;
704
705
  _is_bot(): boolean | undefined;
706
+ _captureInitialPageview(): void;
705
707
  debug(debug?: boolean): void;
706
708
  }
707
709
  export declare function init_from_snippet(): void;