@sailfish-ai/recorder 1.7.7 → 1.7.8

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/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  # JS/TS Record-Only Package
2
2
 
3
- ## Force build
3
+ ## Sailfish AI's frontend recorder
package/dist/graphql.js CHANGED
@@ -42,18 +42,16 @@ export function fetchCaptureSettings(apiKey, backendApi) {
42
42
  `, { apiKey, backendApi });
43
43
  }
44
44
  export function startRecordingSession(apiKey, recordingId, backendApi) {
45
- return sendGraphQLRequest("StartSession", `mutation StartSession($apiKey: UUID!, $recordingSessionId: UUID!, $pageSplitRecording: Boolean) {
45
+ return sendGraphQLRequest("StartSession", `mutation StartSession($apiKey: UUID!, $recordingSessionId: UUID!) {
46
46
  startRecordingSession(
47
47
  companyApiKey: $apiKey,
48
- sessionId: $recordingSessionId,
49
- pageSplitRecordingPossible: $pageSplitRecording
48
+ sessionId: $recordingSessionId
50
49
  ) {
51
50
  id
52
51
  }
53
52
  }`, {
54
53
  apiKey,
55
54
  recordingSessionId: recordingId,
56
- pageSplitRecording: true, // for creating shadow session with page split recording data in BE
57
55
  backendApi,
58
56
  });
59
57
  }