@fullstory/browser 1.6.0 → 1.6.1
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 +4 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ type VarScope = 'page';
|
|
|
36
36
|
*
|
|
37
37
|
* `sessionUrl` contains the URL to the current session.
|
|
38
38
|
*/
|
|
39
|
-
type ReadyCallback = ({ sessionUrl: string }) => void;
|
|
39
|
+
type ReadyCallback = (data: { sessionUrl: string }) => void;
|
|
40
40
|
|
|
41
41
|
// API functions that are available as soon as the snippet has executed.
|
|
42
42
|
export function anonymize(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fullstory/browser",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "The official FullStory browser SDK",
|
|
5
5
|
"repository": "git://github.com/fullstorydev/fullstory-browser-sdk.git",
|
|
6
6
|
"homepage": "https://github.com/fullstorydev/fullstory-browser-sdk",
|
package/src/index.d.ts
CHANGED
|
@@ -36,7 +36,7 @@ type VarScope = 'page';
|
|
|
36
36
|
*
|
|
37
37
|
* `sessionUrl` contains the URL to the current session.
|
|
38
38
|
*/
|
|
39
|
-
type ReadyCallback = ({ sessionUrl: string }) => void;
|
|
39
|
+
type ReadyCallback = (data: { sessionUrl: string }) => void;
|
|
40
40
|
|
|
41
41
|
// API functions that are available as soon as the snippet has executed.
|
|
42
42
|
export function anonymize(): void;
|