@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.
@@ -898,7 +898,16 @@ interface PageScore {
898
898
  } | null;
899
899
  transcriptModel?: 'gemini' | 'assemblyai' | 'whisper';
900
900
  createdAt?: CustomTimestamp;
901
- finishedAt?: CustomTimestamp;
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 {
@@ -898,7 +898,16 @@ interface PageScore {
898
898
  } | null;
899
899
  transcriptModel?: 'gemini' | 'assemblyai' | 'whisper';
900
900
  createdAt?: CustomTimestamp;
901
- finishedAt?: CustomTimestamp;
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 {
@@ -898,7 +898,16 @@ interface PageScore {
898
898
  } | null;
899
899
  transcriptModel?: 'gemini' | 'assemblyai' | 'whisper';
900
900
  createdAt?: CustomTimestamp;
901
- finishedAt?: CustomTimestamp;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speakableio/core",
3
- "version": "1.0.51",
3
+ "version": "1.0.53",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/Speakable-io/speakable-core.git"