@sailfish-ai/recorder 1.7.6 → 1.7.7
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/errorInterceptor.js +113 -0
- package/dist/eventCache.js +1 -1
- package/dist/sailfish-recorder.cjs.js +1 -1
- package/dist/sailfish-recorder.cjs.js.br +0 -0
- package/dist/sailfish-recorder.cjs.js.gz +0 -0
- package/dist/sailfish-recorder.es.js +1 -1
- package/dist/sailfish-recorder.es.js.br +0 -0
- package/dist/sailfish-recorder.es.js.gz +0 -0
- package/dist/sailfish-recorder.umd.js +1 -1
- package/dist/sailfish-recorder.umd.js.br +0 -0
- package/dist/sailfish-recorder.umd.js.gz +0 -0
- package/dist/types/errorInterceptor.d.ts +10 -0
- package/package.json +2 -1
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Resolves stack traces using source maps.
|
|
3
|
+
* @param stackTrace - The minified stack trace.
|
|
4
|
+
* @returns The mapped stack trace with original file/line/column.
|
|
5
|
+
*/
|
|
6
|
+
export declare function resolveStackTrace(stackTrace?: string | string[]): Promise<string[]>;
|
|
7
|
+
/**
|
|
8
|
+
* Initializes the error interceptor globally.
|
|
9
|
+
*/
|
|
10
|
+
export declare function initializeErrorInterceptor(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sailfish-ai/recorder",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.7",
|
|
4
4
|
"publishPublicly": true,
|
|
5
5
|
"main": "dist/sailfish-recorder.umd.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"async-mutex": "^0.5.0",
|
|
31
31
|
"react-zendesk": "^0.1.13",
|
|
32
32
|
"reconnecting-websocket": "^4.4.0",
|
|
33
|
+
"source-map-js": "^1.2.1",
|
|
33
34
|
"uuid": "^10.0.0",
|
|
34
35
|
"vite": "^6.2.0",
|
|
35
36
|
"vite-tsconfig-paths": "^4.3.2"
|