@sailfish-ai/recorder 1.7.7 → 1.7.9
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 +1 -1
- package/dist/graphql.js +2 -4
- 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/package.json +1 -1
package/README.md
CHANGED
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
|
|
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
|
}
|