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.
- package/dist/array.full.js +1 -1
- package/dist/array.full.js.map +1 -1
- package/dist/array.js +1 -1
- package/dist/array.js.map +1 -1
- package/dist/lib/src/extensions/exception-autocapture/index.d.ts +1 -1
- package/dist/lib/src/posthog-core.d.ts +2 -0
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/module.d.ts +3 -1
- package/dist/module.js +1 -1
- package/dist/module.js.map +1 -1
- package/lib/package.json +1 -1
- package/lib/src/extensions/exception-autocapture/index.d.ts +1 -1
- package/lib/src/extensions/exception-autocapture/index.js +5 -4
- package/lib/src/extensions/exception-autocapture/index.js.map +1 -1
- package/lib/src/extensions/sentry-integration.js +3 -1
- package/lib/src/extensions/sentry-integration.js.map +1 -1
- package/lib/src/posthog-core.d.ts +2 -0
- package/lib/src/posthog-core.js +15 -6
- package/lib/src/posthog-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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;
|