posthog-js 1.46.2 → 1.48.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/CHANGELOG.md +9 -0
- 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/es.js +1 -8289
- package/dist/es.js.map +1 -1
- package/dist/module.d.ts +2 -1
- package/dist/module.js +1 -8295
- package/dist/module.js.map +1 -1
- package/dist/recorder-v2.js +2 -2
- package/dist/recorder-v2.js.map +1 -1
- package/dist/recorder.js +1 -1
- package/dist/recorder.js.map +1 -1
- package/lib/package.json +2 -2
- package/package.json +2 -2
package/dist/module.d.ts
CHANGED
|
@@ -856,6 +856,7 @@ declare class SessionRecording {
|
|
|
856
856
|
stopRecording(): void;
|
|
857
857
|
isRecordingEnabled(): boolean;
|
|
858
858
|
isConsoleLogCaptureEnabled(): boolean;
|
|
859
|
+
getRecordingVersion(): any;
|
|
859
860
|
afterDecideResponse(response: DecideResponse): void;
|
|
860
861
|
startCaptureAndTrySendingQueuedSnapshots(): void;
|
|
861
862
|
_startCapture(): void;
|
|
@@ -974,7 +975,7 @@ declare class PageViewIdManager {
|
|
|
974
975
|
*/
|
|
975
976
|
declare class PostHog {
|
|
976
977
|
__loaded: boolean;
|
|
977
|
-
|
|
978
|
+
__loaded_recorder_version: 'v1' | 'v2' | undefined;
|
|
978
979
|
config: PostHogConfig;
|
|
979
980
|
persistence: PostHogPersistence;
|
|
980
981
|
sessionManager: SessionIdManager;
|