@sailfish-ai/recorder 1.7.34 → 1.7.35

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/graphql.js CHANGED
@@ -44,7 +44,7 @@ export function fetchCaptureSettings(apiKey, backendApi) {
44
44
  export function startRecordingSession(apiKey, recordingId, backendApi, serviceIdentifier, serviceVersion, mapUuid, gitSha, library, serviceAdditionalMetadata) {
45
45
  // These must be sent as None/Null for now (not user-provided)
46
46
  const startRecordingFilePath = null;
47
- const startRecordingFileNumber = null;
47
+ const startRecordingLineNumber = null;
48
48
  return sendGraphQLRequest("StartSession", `mutation StartSession(
49
49
  $apiKey: UUID!,
50
50
  $recordingSessionId: UUID!,
@@ -55,7 +55,7 @@ export function startRecordingSession(apiKey, recordingId, backendApi, serviceId
55
55
  $library: String,
56
56
  $serviceAdditionalMetadata: JSON,
57
57
  $startRecordingFilePath: String,
58
- $startRecordingFileNumber: Int
58
+ $startRecordingLineNumber: Int
59
59
  ) {
60
60
  startRecordingSession(
61
61
  companyApiKey: $apiKey,
@@ -67,7 +67,7 @@ export function startRecordingSession(apiKey, recordingId, backendApi, serviceId
67
67
  library: $library,
68
68
  serviceAdditionalMetadata: $serviceAdditionalMetadata,
69
69
  startRecordingFilePath: $startRecordingFilePath,
70
- startRecordingFileNumber: $startRecordingFileNumber
70
+ startRecordingLineNumber: $startRecordingLineNumber
71
71
  ) {
72
72
  id
73
73
  }
@@ -82,7 +82,7 @@ export function startRecordingSession(apiKey, recordingId, backendApi, serviceId
82
82
  library,
83
83
  serviceAdditionalMetadata,
84
84
  startRecordingFilePath,
85
- startRecordingFileNumber,
85
+ startRecordingLineNumber,
86
86
  });
87
87
  }
88
88
  export function sendDomainsToNotPropagateHeaderTo(apiKey, domains, backendApi) {