@speakableio/core 0.1.41 → 0.1.42

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.
@@ -2723,10 +2723,12 @@ var useBaseOpenAI = ({
2723
2723
  });
2724
2724
  const getTranscript = async (audioUrl, language) => {
2725
2725
  try {
2726
- const { data: transcript } = await (getAssemblyAITranscript == null ? void 0 : getAssemblyAITranscript({
2726
+ const response = await (getAssemblyAITranscript == null ? void 0 : getAssemblyAITranscript({
2727
2727
  audioUrl,
2728
2728
  language
2729
2729
  }));
2730
+ console.log("response (getTranscript) from getAssemblyAITranscript", response);
2731
+ const transcript = response == null ? void 0 : response.data;
2730
2732
  onTranscriptSuccess(transcript);
2731
2733
  return transcript;
2732
2734
  } catch (error) {