@brighterly/lib-core-types 0.7.2 → 0.7.4

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.
@@ -18,6 +18,15 @@ export interface SummarizeData {
18
18
  }
19
19
  export interface BookingAiSummarize {
20
20
  booking_id: number;
21
+ ai_summary: AdditionalAiSummarize;
21
22
  start: string;
22
23
  topic: string | null;
23
24
  }
25
+ export interface AdditionalAiSummarize {
26
+ id: number;
27
+ title: string | null;
28
+ }
29
+ export interface SummarizeFeedback {
30
+ rating: number;
31
+ comment: string | null;
32
+ }
@@ -71,6 +71,7 @@ export interface DisciplineInfo {
71
71
  demo: Booking | null;
72
72
  demos?: Booking[];
73
73
  booking_ai_summary: BookingAiSummarize | null;
74
+ bookings_ai_summary: BookingAiSummarize[];
74
75
  progress_reports_exists?: boolean;
75
76
  is_on_activation: boolean;
76
77
  schedule: DisciplineSchedule;
@@ -4,6 +4,7 @@ export interface Options {
4
4
  current_time_utc: string;
5
5
  pricing_discipline_upsell_discount: number;
6
6
  pad_default_discount: number;
7
+ tutor_profile_cs: boolean;
7
8
  }
8
9
  export interface LocaleConfig {
9
10
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brighterly/lib-core-types",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "Official Brighterly lib-core-types",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",