@speakableio/core 0.1.66 → 0.1.67
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/index.native.d.mts
CHANGED
|
@@ -2313,15 +2313,11 @@ declare const useOrganizationAccess: () => {
|
|
|
2313
2313
|
};
|
|
2314
2314
|
|
|
2315
2315
|
declare const useUpdateStudentVocab: (page: PageActivityWithId | null) => {
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
studentVocabMarkVoiceSuccess?: undefined;
|
|
2319
|
-
studentVocabMarkVoiceFail?: undefined;
|
|
2316
|
+
studentVocabMarkVoiceSuccess: undefined;
|
|
2317
|
+
studentVocabMarkVoiceFail: undefined;
|
|
2320
2318
|
} | {
|
|
2321
2319
|
studentVocabMarkVoiceSuccess: () => Promise<void>;
|
|
2322
2320
|
studentVocabMarkVoiceFail: () => Promise<void>;
|
|
2323
|
-
markVoiceSuccess?: undefined;
|
|
2324
|
-
markVoiceFail?: undefined;
|
|
2325
2321
|
};
|
|
2326
2322
|
|
|
2327
2323
|
declare const useBaseOpenAI: ({ onTranscriptSuccess, onTranscriptError, onCompletionSuccess, onCompletionError, aiEnabled, submitAudioResponse, uploadAudioAndGetTranscript, }: {
|
package/dist/index.native.mjs
CHANGED
|
@@ -2689,8 +2689,8 @@ var useUpdateStudentVocab = (page) => {
|
|
|
2689
2689
|
const currentUserId = user == null ? void 0 : user.auth.uid;
|
|
2690
2690
|
if (!page || !currentUserId || !page.target_text || !page.language) {
|
|
2691
2691
|
return {
|
|
2692
|
-
|
|
2693
|
-
|
|
2692
|
+
studentVocabMarkVoiceSuccess: void 0,
|
|
2693
|
+
studentVocabMarkVoiceFail: void 0
|
|
2694
2694
|
};
|
|
2695
2695
|
}
|
|
2696
2696
|
const getDataObject = () => {
|