@speakableio/core 1.0.51 → 1.0.53
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 +10 -1
- package/dist/index.native.d.ts +10 -1
- package/dist/index.web.d.mts +10 -1
- package/package.json +1 -1
package/dist/index.native.d.mts
CHANGED
|
@@ -898,7 +898,16 @@ interface PageScore {
|
|
|
898
898
|
} | null;
|
|
899
899
|
transcriptModel?: 'gemini' | 'assemblyai' | 'whisper';
|
|
900
900
|
createdAt?: CustomTimestamp;
|
|
901
|
-
|
|
901
|
+
completedAt?: CustomTimestamp;
|
|
902
|
+
startedAt?: CustomTimestamp;
|
|
903
|
+
chatMessages?: {
|
|
904
|
+
sender: 'student' | 'teacher' | 'ai';
|
|
905
|
+
content: string;
|
|
906
|
+
timestamp: CustomTimestamp;
|
|
907
|
+
attemptId: string;
|
|
908
|
+
messageId: string;
|
|
909
|
+
audioUrl: string;
|
|
910
|
+
}[] | null;
|
|
902
911
|
}
|
|
903
912
|
|
|
904
913
|
declare enum AssignmentAnalyticsType {
|
package/dist/index.native.d.ts
CHANGED
|
@@ -898,7 +898,16 @@ interface PageScore {
|
|
|
898
898
|
} | null;
|
|
899
899
|
transcriptModel?: 'gemini' | 'assemblyai' | 'whisper';
|
|
900
900
|
createdAt?: CustomTimestamp;
|
|
901
|
-
|
|
901
|
+
completedAt?: CustomTimestamp;
|
|
902
|
+
startedAt?: CustomTimestamp;
|
|
903
|
+
chatMessages?: {
|
|
904
|
+
sender: 'student' | 'teacher' | 'ai';
|
|
905
|
+
content: string;
|
|
906
|
+
timestamp: CustomTimestamp;
|
|
907
|
+
attemptId: string;
|
|
908
|
+
messageId: string;
|
|
909
|
+
audioUrl: string;
|
|
910
|
+
}[] | null;
|
|
902
911
|
}
|
|
903
912
|
|
|
904
913
|
declare enum AssignmentAnalyticsType {
|
package/dist/index.web.d.mts
CHANGED
|
@@ -898,7 +898,16 @@ interface PageScore {
|
|
|
898
898
|
} | null;
|
|
899
899
|
transcriptModel?: 'gemini' | 'assemblyai' | 'whisper';
|
|
900
900
|
createdAt?: CustomTimestamp;
|
|
901
|
-
|
|
901
|
+
completedAt?: CustomTimestamp;
|
|
902
|
+
startedAt?: CustomTimestamp;
|
|
903
|
+
chatMessages?: {
|
|
904
|
+
sender: 'student' | 'teacher' | 'ai';
|
|
905
|
+
content: string;
|
|
906
|
+
timestamp: CustomTimestamp;
|
|
907
|
+
attemptId: string;
|
|
908
|
+
messageId: string;
|
|
909
|
+
audioUrl: string;
|
|
910
|
+
}[] | null;
|
|
902
911
|
}
|
|
903
912
|
|
|
904
913
|
declare enum AssignmentAnalyticsType {
|