@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.
@@ -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 {
@@ -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 {
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakableio/core",
3
- "version": "1.0.52",
3
+ "version": "1.0.53",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Speakable-io/speakable-core.git"