@sailfish-ai/recorder 1.0.0-beta-10 → 1.0.0-beta-11

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/recording.js CHANGED
@@ -9,7 +9,7 @@ function maskInputFn(text, node) {
9
9
  // The maskInputFn logic here
10
10
  return text; // Placeholder return
11
11
  }
12
- export async function initializeRecording(captureSettings, // TODO - Sibyl launch - replace type
12
+ export async function initializeRecording(captureSettings, // TODO - Sibyl post-launch - replace type
13
13
  consoleRecordSettings, networkRecordSettings, backendApi, apiKey, sessionId) {
14
14
  try {
15
15
  record({
@@ -20971,7 +20971,7 @@ var ReconnectingWebSocket = (
20971
20971
  return ReconnectingWebSocket2;
20972
20972
  }()
20973
20973
  );
20974
- const version = "1.0.0-beta-10";
20974
+ const version = "1.0.0-beta-11";
20975
20975
  function initializeWebSocket(backendApi, apiKey, sessionId) {
20976
20976
  const wsHost = getWebSocketHost(backendApi);
20977
20977
  const wsScheme = window.location.protocol === "https:" ? "wss" : "ws";
@@ -20975,7 +20975,7 @@
20975
20975
  return ReconnectingWebSocket2;
20976
20976
  }()
20977
20977
  );
20978
- const version = "1.0.0-beta-10";
20978
+ const version = "1.0.0-beta-11";
20979
20979
  function initializeWebSocket(backendApi, apiKey, sessionId) {
20980
20980
  const wsHost = getWebSocketHost(backendApi);
20981
20981
  const wsScheme = window.location.protocol === "https:" ? "wss" : "ws";
@@ -1,4 +1,4 @@
1
1
  import { LogRecordOptions } from "@sailfish-rrweb/rrweb-plugin-console-record";
2
2
  import { NetworkRecordOptions } from "@sailfish-rrweb/rrweb-plugin-network-record";
3
- export declare function initializeRecording(captureSettings: any, // TODO - Sibyl launch - replace type
3
+ export declare function initializeRecording(captureSettings: any, // TODO - Sibyl post-launch - replace type
4
4
  consoleRecordSettings: LogRecordOptions, networkRecordSettings: NetworkRecordOptions, backendApi: string, apiKey: string, sessionId: string): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sailfish-ai/recorder",
3
- "version": "1.0.0-beta-10",
3
+ "version": "1.0.0-beta-11",
4
4
  "publishPublicly": true,
5
5
  "main": "dist/sailfish-recorder.umd.js",
6
6
  "types": "dist/types/index.d.ts",