@brighterly/lib-core-types 0.7.4 → 0.7.6
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { Discipline } from '../discipline/enums';
|
|
2
2
|
import type { Feedback, Tutor } from '../tutor/interfaces';
|
|
3
3
|
import { type ActivityStatus, type Reason, type ReasonCategory, type Status, type TutorAction, type Type } from './enums';
|
|
4
|
+
import type { AdditionalAiSummarize } from "../ai-summarize/interfaces.ts";
|
|
4
5
|
export interface RoomData {
|
|
5
6
|
code: string;
|
|
6
7
|
type: 'test' | 'live';
|
|
@@ -34,6 +35,7 @@ export interface Booking {
|
|
|
34
35
|
tutor: Tutor | null;
|
|
35
36
|
tutor_action: Record<TutorAction, any> | null;
|
|
36
37
|
tasks: any[];
|
|
38
|
+
ai_summary: AdditionalAiSummarize | null;
|
|
37
39
|
}
|
|
38
40
|
export interface TimeSlot {
|
|
39
41
|
busy: boolean;
|
package/dist/date/enums.d.ts
CHANGED
package/dist/date/enums.js
CHANGED