-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Session Replay Dynamic Loading (#832)
- Loading branch information
1 parent
9ad6312
commit 1af7b89
Showing
23 changed files
with
630 additions
and
405 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
export const PREFIX = 'NRBA' | ||
export const DEFAULT_EXPIRES_MS = 14400000 | ||
export const DEFAULT_INACTIVE_MS = 1800000 | ||
|
||
export const SESSION_EVENTS = { | ||
PAUSE: 'session-pause', | ||
RESET: 'session-reset', | ||
RESUME: 'session-resume', | ||
UPDATE: 'session-update' | ||
} | ||
|
||
export const SESSION_EVENT_TYPES = { | ||
SAME_TAB: 'same-tab', | ||
CROSS_TAB: 'cross-tab' | ||
} | ||
|
||
export const MODE = { | ||
OFF: 0, | ||
FULL: 1, | ||
ERROR: 2 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.