@sailfish-ai/recorder 1.8.0 → 1.8.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/index.js +4 -0
- package/dist/recorder.cjs +7278 -0
- package/dist/recorder.js +7310 -0
- package/dist/recorder.js.br +0 -0
- package/dist/recorder.js.gz +0 -0
- package/dist/recorder.umd.cjs +7281 -0
- package/package.json +21 -8
- package/dist/sailfish-recorder.cjs.js +0 -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 +0 -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 +0 -1
- package/dist/sailfish-recorder.umd.js.br +0 -0
- package/dist/sailfish-recorder.umd.js.gz +0 -0
package/dist/index.js
CHANGED
|
@@ -663,6 +663,10 @@ export async function startRecording({ apiKey, backendApi = "https://api-service
|
|
|
663
663
|
console.error("Error starting recording:", error);
|
|
664
664
|
}
|
|
665
665
|
}
|
|
666
|
+
/*
|
|
667
|
+
If there are any interface changes, you MUST change the following file(s):
|
|
668
|
+
=> prefect/workspace/flows/fix_code_issues/tasks/autoinstall/js_ts_frontend/create_sailfish_instrumentation_wrapper_jsx_tsx_component.py
|
|
669
|
+
*/
|
|
666
670
|
export const initRecorder = async (options) => {
|
|
667
671
|
// Only run on the client (browser) environment
|
|
668
672
|
if (typeof window === "undefined")
|