@speakableio/core 1.0.52 → 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
CHANGED
|
@@ -900,6 +900,14 @@ interface PageScore {
|
|
|
900
900
|
createdAt?: CustomTimestamp;
|
|
901
901
|
completedAt?: CustomTimestamp;
|
|
902
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;
|
|
903
911
|
}
|
|
904
912
|
|
|
905
913
|
declare enum AssignmentAnalyticsType {
|
package/dist/index.native.d.ts
CHANGED
|
@@ -900,6 +900,14 @@ interface PageScore {
|
|
|
900
900
|
createdAt?: CustomTimestamp;
|
|
901
901
|
completedAt?: CustomTimestamp;
|
|
902
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;
|
|
903
911
|
}
|
|
904
912
|
|
|
905
913
|
declare enum AssignmentAnalyticsType {
|
package/dist/index.web.d.mts
CHANGED
|
@@ -900,6 +900,14 @@ interface PageScore {
|
|
|
900
900
|
createdAt?: CustomTimestamp;
|
|
901
901
|
completedAt?: CustomTimestamp;
|
|
902
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;
|
|
903
911
|
}
|
|
904
912
|
|
|
905
913
|
declare enum AssignmentAnalyticsType {
|