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/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
- __loaded_recorder: boolean;
978
+ __loaded_recorder_version: 'v1' | 'v2' | undefined;
978
979
  config: PostHogConfig;
979
980
  persistence: PostHogPersistence;
980
981
  sessionManager: SessionIdManager;