@oscloudlab/vgen-agent-assistant 0.0.4 → 0.0.5

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.
@@ -6,6 +6,7 @@ export interface VgenAgentProps {
6
6
  viewMode?: viewModeType;
7
7
  courseInfo?: courseInfoProps;
8
8
  videoInfo?: videoInfoProps;
9
+ initPos?: CSSProperties;
9
10
  initStyle?: CSSProperties;
10
11
  hoverTip?: string;
11
12
  }
@@ -13,6 +14,7 @@ export type viewModeType = 'video' | 'course' | 'default';
13
14
  export interface videoInfoProps {
14
15
  name: string;
15
16
  recordId: string;
17
+ description: string;
16
18
  }
17
19
  export interface courseInfoProps {
18
20
  id: number;
@@ -34,7 +36,8 @@ export declare enum msgType {
34
36
  REL_KNOWLEDGE_CARD = "rel_knowledge_card",// 知识卡片锚点
35
37
  RECOMMEND_VIDEO = "recommend_video",// 视频推荐
36
38
  LEARN_PATH_TREE = "learn_path_tree",// 学习路径树数据
37
- REL_LEARN_TASK = "rel_learn_task"
39
+ REL_LEARN_TASK = "rel_learn_task",// 学习任务锚点
40
+ INVISIBLE_TEXT = "invisible_text"
38
41
  }
39
42
  export interface MessageProps {
40
43
  id: number | string;