posthog-js 1.88.0 → 1.88.2

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
@@ -828,12 +828,8 @@ declare global {
828
828
  }
829
829
 
830
830
  declare class SessionRecording {
831
- private _linkedFlagSeen;
832
831
  private instance;
833
832
  private _endpoint;
834
- private windowId;
835
- private sessionId;
836
- private _lastActivityTimestamp;
837
833
  private flushBufferTimer?;
838
834
  private buffer?;
839
835
  private mutationRateLimiter?;
@@ -842,6 +838,10 @@ declare class SessionRecording {
842
838
  private receivedDecide;
843
839
  private rrwebRecord;
844
840
  private isIdle;
841
+ private _linkedFlagSeen;
842
+ private _lastActivityTimestamp;
843
+ private windowId;
844
+ private sessionId;
845
845
  private _linkedFlag;
846
846
  private _sampleRate;
847
847
  private _minimumDuration;
@@ -1131,21 +1131,21 @@ declare class SessionPropsManager {
1131
1131
  _getStoredProps(): StoredSessionSourceProps | undefined;
1132
1132
  _onSessionIdCallback: (sessionId: string) => void;
1133
1133
  getSessionProps(): {
1134
- $client_session_referring_host?: undefined;
1134
+ $client_session_initial_referring_host?: undefined;
1135
1135
  $client_session_initial_pathname?: undefined;
1136
- $client_session_utm_source?: undefined;
1137
- $client_session_utm_campaign?: undefined;
1138
- $client_session_utm_medium?: undefined;
1139
- $client_session_utm_content?: undefined;
1140
- $client_session_utm_term?: undefined;
1136
+ $client_session_initial_utm_source?: undefined;
1137
+ $client_session_initial_utm_campaign?: undefined;
1138
+ $client_session_initial_utm_medium?: undefined;
1139
+ $client_session_initial_utm_content?: undefined;
1140
+ $client_session_initial_utm_term?: undefined;
1141
1141
  } | {
1142
- $client_session_referring_host: string;
1142
+ $client_session_initial_referring_host: string;
1143
1143
  $client_session_initial_pathname: string;
1144
- $client_session_utm_source: string | undefined;
1145
- $client_session_utm_campaign: string | undefined;
1146
- $client_session_utm_medium: string | undefined;
1147
- $client_session_utm_content: string | undefined;
1148
- $client_session_utm_term: string | undefined;
1144
+ $client_session_initial_utm_source: string | undefined;
1145
+ $client_session_initial_utm_campaign: string | undefined;
1146
+ $client_session_initial_utm_medium: string | undefined;
1147
+ $client_session_initial_utm_content: string | undefined;
1148
+ $client_session_initial_utm_term: string | undefined;
1149
1149
  };
1150
1150
  }
1151
1151