@brighterly/lib-core-types 0.18.7 → 0.18.9

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.
@@ -25,9 +25,43 @@ export interface BookingAiSummarize {
25
25
  start: string;
26
26
  topic: string | null;
27
27
  }
28
+ export interface SummarizeAhaMoment {
29
+ timestamp: string;
30
+ kid_quote_verbatim: string;
31
+ one_line_summary: string;
32
+ }
33
+ export interface SummarizeEvidenceMoment {
34
+ timestamp: string;
35
+ label: string;
36
+ }
37
+ export interface SummarizeHighlightMoment {
38
+ timestamp: string;
39
+ title: string;
40
+ explanation: string;
41
+ }
42
+ export interface SummarizeTutorQuote {
43
+ text: string;
44
+ attribution: string;
45
+ }
46
+ export interface SummarizeStats {
47
+ speaking_time_minutes: number;
48
+ speaking_time_pct: number;
49
+ engagement_quality_pct: number;
50
+ lesson_duration_formatted: string;
51
+ }
28
52
  export interface AdditionalAiSummarize {
29
53
  id: number;
30
54
  title: string | null;
55
+ subtitle: string | null;
56
+ aha_moment: SummarizeAhaMoment | null;
57
+ lesson_summary_paragraph: string | null;
58
+ evidence_moments: SummarizeEvidenceMoment[];
59
+ wins: SummarizeHighlightMoment[];
60
+ tricky: SummarizeHighlightMoment[];
61
+ tutor_quote: SummarizeTutorQuote | null;
62
+ kid_quotes: string[];
63
+ stats: SummarizeStats | null;
64
+ engagement_descriptor: string | null;
31
65
  }
32
66
  export interface SummarizeFeedback {
33
67
  rating: number;
@@ -37,6 +37,7 @@ export interface Tutor {
37
37
  slack: string | null;
38
38
  discord: string | null;
39
39
  tutor_discord_link: string;
40
+ tutor_respond_link: string | null;
40
41
  timezone: string;
41
42
  created_at: string;
42
43
  updated_at: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brighterly/lib-core-types",
3
- "version": "0.18.7",
3
+ "version": "0.18.9",
4
4
  "description": "Official Brighterly lib-core-types",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",