Skip to content

Commit

Permalink
Resolve merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-lohra committed Dec 3, 2024
1 parent b21e788 commit e82d637
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1098,20 +1098,20 @@ internal class StreamVideoClient internal constructor(
}

suspend fun startTranscription(type: String, id: String, externalStorage: String? = null): Result<StartTranscriptionResponse> {
return wrapAPICall {
return apiCall {
val startTranscriptionRequest = StartTranscriptionRequest(externalStorage)
coordinatorConnectionModule.api.startTranscription(type, id, startTranscriptionRequest)
}
}

suspend fun stopTranscription(type: String, id: String): Result<StopTranscriptionResponse> {
return wrapAPICall {
return apiCall {
coordinatorConnectionModule.api.stopTranscription(type, id)
}
}

suspend fun listTranscription(type: String, id: String): Result<ListTranscriptionsResponse> {
return wrapAPICall {
return apiCall {
coordinatorConnectionModule.api.listTranscriptions(type, id)
}
}
Expand Down

0 comments on commit e82d637

Please sign in to comment.