@hddjs/hdd-cloud-types 1.0.13-SNAPSHOT → 1.0.14-SNAPSHOT.1

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.
Files changed (46) hide show
  1. package/HddCloud/common/index.d.ts +4 -4
  2. package/HddCloud/index.d.ts +59 -59
  3. package/README.md +2 -2
  4. package/hdd-ai-cloud/common/AISceneEnum.d.ts +54 -54
  5. package/hdd-ai-cloud/common/IAliFcContext.d.ts +5 -5
  6. package/hdd-ai-cloud/common/{ICallUniCloudParams.ts → ICallUniCloudParams.d.ts} +20 -20
  7. package/hdd-ai-cloud/common/IChatAiMessageItem.d.ts +23 -23
  8. package/hdd-ai-cloud/common/ICommonError.d.ts +13 -13
  9. package/hdd-ai-cloud/common/ICommonReqRes.d.ts +23 -23
  10. package/hdd-ai-cloud/common/{ICommonRequstHead.ts → ICommonRequstHead.d.ts} +17 -17
  11. package/hdd-ai-cloud/common/IConfigInfo.d.ts +7 -7
  12. package/hdd-ai-cloud/common/ICounselor.d.ts +4 -4
  13. package/hdd-ai-cloud/common/ICounselorType.d.ts +23 -23
  14. package/hdd-ai-cloud/common/IFormatCutOffCollegeData.d.ts +29 -29
  15. package/hdd-ai-cloud/common/IFormatGaokaoBasicInfo.d.ts +67 -67
  16. package/hdd-ai-cloud/common/{IFormatProfessional.ts → IFormatProfessional.d.ts} +29 -29
  17. package/hdd-ai-cloud/common/IGetRecommendSchool.d.ts +93 -93
  18. package/hdd-ai-cloud/common/IInquiryBasicInfo.d.ts +43 -43
  19. package/hdd-ai-cloud/common/IInquirySession.d.ts +25 -25
  20. package/hdd-ai-cloud/common/IPicture.d.ts +13 -13
  21. package/hdd-ai-cloud/common/IReportData.d.ts +151 -151
  22. package/hdd-ai-cloud/common/IReportInfo.d.ts +33 -33
  23. package/hdd-ai-cloud/common/IReportResult.d.ts +23 -23
  24. package/hdd-ai-cloud/common/ISceneAiConfig.d.ts +27 -27
  25. package/hdd-ai-cloud/common/IScoreRank.d.ts +18 -18
  26. package/hdd-ai-cloud/common/ISelectSubject.d.ts +29 -29
  27. package/hdd-ai-cloud/common/ISessionContent.d.ts +31 -31
  28. package/hdd-ai-cloud/common/ISessionRole.d.ts +21 -21
  29. package/hdd-ai-cloud/common/ISseChunk.d.ts +57 -57
  30. package/hdd-ai-cloud/common/ISseData.d.ts +175 -135
  31. package/hdd-ai-cloud/common/IThisContext.d.ts +128 -128
  32. package/hdd-ai-cloud/common/ReportTypeEnum.d.ts +7 -7
  33. package/hdd-ai-cloud/common/SubReportTypeEnum.d.ts +18 -18
  34. package/hdd-ai-cloud/common/index.d.ts +29 -29
  35. package/hdd-ai-cloud/controller/index.d.ts +496 -496
  36. package/hdd-ai-cloud/index.d.ts +3 -3
  37. package/hdd-ai-cloud/service/index.d.ts +36 -36
  38. package/index.d.ts +2 -2
  39. package/npmPublish.md +10 -10
  40. package/package.json +11 -11
  41. package/hdd-ai-cloud/common/ICallUniCloudParams.js +0 -3
  42. package/hdd-ai-cloud/common/ICallUniCloudParams.js.map +0 -1
  43. package/hdd-ai-cloud/common/ICommonRequstHead.js +0 -3
  44. package/hdd-ai-cloud/common/ICommonRequstHead.js.map +0 -1
  45. package/hdd-ai-cloud/common/IFormatProfessional.js +0 -3
  46. package/hdd-ai-cloud/common/IFormatProfessional.js.map +0 -1
@@ -1,67 +1,67 @@
1
- /**
2
- * 格式化高考基础信息的类型定义
3
- */
4
- export interface IFormatGaokaoBasicInfo {
5
- /**
6
- * 高考基础信息
7
- */
8
- gaokao?: {
9
- /**
10
- * 省份
11
- */
12
- province?: {
13
- id?: string;
14
- name?: string;
15
- sname?: string;
16
- pinyin?: string;
17
- examType?: string;
18
- isActived?: boolean;
19
- };
20
- /**
21
- * 分数
22
- */
23
- score?: string | number;
24
- /**
25
- * 排名
26
- */
27
- rank?: string | number;
28
- /**
29
- * 选课
30
- */
31
- subjects?: string[];
32
- };
33
- /**
34
- * 三维探索 包括专业、城市、学校
35
- */
36
- explore?: {
37
- /**
38
- * 优先级 城市优先 学校优先 专业优先
39
- */
40
- priority?: string;
41
- /**
42
- * 意向专业
43
- */
44
- major?: string;
45
- /**
46
- * 意向城市
47
- */
48
- city?: string;
49
- /**
50
- * 意向学校
51
- */
52
- school?: string;
53
- };
54
- /**
55
- * 其他信息
56
- */
57
- otherInfo?: {
58
- /**
59
- * 未来计划
60
- */
61
- futurePlan?: string;
62
- /**
63
- * 经济计划
64
- */
65
- economicPlan?: string;
66
- };
67
- }
1
+ /**
2
+ * 格式化高考基础信息的类型定义
3
+ */
4
+ export interface IFormatGaokaoBasicInfo {
5
+ /**
6
+ * 高考基础信息
7
+ */
8
+ gaokao?: {
9
+ /**
10
+ * 省份
11
+ */
12
+ province?: {
13
+ id?: string;
14
+ name?: string;
15
+ sname?: string;
16
+ pinyin?: string;
17
+ examType?: string;
18
+ isActived?: boolean;
19
+ };
20
+ /**
21
+ * 分数
22
+ */
23
+ score?: string | number;
24
+ /**
25
+ * 排名
26
+ */
27
+ rank?: string | number;
28
+ /**
29
+ * 选课
30
+ */
31
+ subjects?: string[];
32
+ };
33
+ /**
34
+ * 三维探索 包括专业、城市、学校
35
+ */
36
+ explore?: {
37
+ /**
38
+ * 优先级 城市优先 学校优先 专业优先
39
+ */
40
+ priority?: string;
41
+ /**
42
+ * 意向专业
43
+ */
44
+ major?: string;
45
+ /**
46
+ * 意向城市
47
+ */
48
+ city?: string;
49
+ /**
50
+ * 意向学校
51
+ */
52
+ school?: string;
53
+ };
54
+ /**
55
+ * 其他信息
56
+ */
57
+ otherInfo?: {
58
+ /**
59
+ * 未来计划
60
+ */
61
+ futurePlan?: string;
62
+ /**
63
+ * 经济计划
64
+ */
65
+ economicPlan?: string;
66
+ };
67
+ }
@@ -1,29 +1,29 @@
1
- /**
2
- * 专业信息(来源招生计划表)
3
- */
4
- export interface IFormatProfessional {
5
- /**
6
- * 专业名称
7
- */
8
- professionalName?: string;
9
- /**
10
- * 专业填报要求
11
- */
12
- professionalRequirements?: string;
13
- /**
14
- * 专业备注
15
- */
16
- professionalRemark?: string;
17
- /**
18
- * 学费
19
- */
20
- tuitionFee?: number;
21
- /**
22
- * 计划招生人数
23
- */
24
- plannedNumber?: number;
25
- /**
26
- * 专业代码
27
- */
28
- professionalCode?: string;
29
- }
1
+ /**
2
+ * 专业信息(来源招生计划表)
3
+ */
4
+ export interface IFormatProfessional {
5
+ /**
6
+ * 专业名称
7
+ */
8
+ professionalName?: string;
9
+ /**
10
+ * 专业填报要求
11
+ */
12
+ professionalRequirements?: string;
13
+ /**
14
+ * 专业备注
15
+ */
16
+ professionalRemark?: string;
17
+ /**
18
+ * 学费
19
+ */
20
+ tuitionFee?: number;
21
+ /**
22
+ * 计划招生人数
23
+ */
24
+ plannedNumber?: number;
25
+ /**
26
+ * 专业代码
27
+ */
28
+ professionalCode?: string;
29
+ }
@@ -1,93 +1,93 @@
1
- /**
2
- * 推荐学校
3
- */
4
- export interface IGetRecommendSchool {
5
- /**
6
- * 年份
7
- */
8
- year?: number;
9
- /**
10
- * 分数
11
- */
12
- grade?: number;
13
- /**
14
- * 学校id
15
- */
16
- schoolId?: number;
17
- /**
18
- * 学校名称
19
- */
20
- schoolName?: String;
21
- /**
22
- * 省份id
23
- */
24
- provinceId?: string;
25
- /**
26
- * 省份名称
27
- */
28
- schoolProvince?: string;
29
- /**
30
- * 区
31
- */
32
- townName?: string;
33
- /**
34
- * 属性
35
- */
36
- attrList?: string[];
37
- /**
38
- * 标签
39
- */
40
- labelList?: string[];
41
- /**
42
- * icon的url
43
- */
44
- iconUrl?: string;
45
- /**
46
- * 组别id
47
- */
48
- groupId?: number;
49
- /**
50
- * 批次id
51
- */
52
- batchId?: string;
53
- /**
54
- * 专业标识
55
- */
56
- majorGroupId?: string;
57
- /**
58
- * 专业选科要求
59
- */
60
- majorRequirement?: string;
61
- /**
62
- * 专业选科要求id
63
- */
64
- majorRequirementId?: number;
65
- /**
66
- * 省控线
67
- */
68
- minControlLine?: number;
69
- /**
70
- * 排名
71
- */
72
- rank?: number;
73
- /**
74
- * 招生代码
75
- */
76
- enrollmentId?: string;
77
- /**
78
- * 专业名称
79
- */
80
- majorName?: string;
81
- /**
82
- * 学费
83
- */
84
- money?: number;
85
- /**
86
- * 招生人数
87
- */
88
- hc?: number;
89
- /**
90
- * 冲稳保标识
91
- */
92
- strategyTag?: 'chong' | 'wen' | 'bao';
93
- }
1
+ /**
2
+ * 推荐学校
3
+ */
4
+ export interface IGetRecommendSchool {
5
+ /**
6
+ * 年份
7
+ */
8
+ year?: number;
9
+ /**
10
+ * 分数
11
+ */
12
+ grade?: number;
13
+ /**
14
+ * 学校id
15
+ */
16
+ schoolId?: number;
17
+ /**
18
+ * 学校名称
19
+ */
20
+ schoolName?: String;
21
+ /**
22
+ * 省份id
23
+ */
24
+ provinceId?: string;
25
+ /**
26
+ * 省份名称
27
+ */
28
+ schoolProvince?: string;
29
+ /**
30
+ * 区
31
+ */
32
+ townName?: string;
33
+ /**
34
+ * 属性
35
+ */
36
+ attrList?: string[];
37
+ /**
38
+ * 标签
39
+ */
40
+ labelList?: string[];
41
+ /**
42
+ * icon的url
43
+ */
44
+ iconUrl?: string;
45
+ /**
46
+ * 组别id
47
+ */
48
+ groupId?: number;
49
+ /**
50
+ * 批次id
51
+ */
52
+ batchId?: string;
53
+ /**
54
+ * 专业标识
55
+ */
56
+ majorGroupId?: string;
57
+ /**
58
+ * 专业选科要求
59
+ */
60
+ majorRequirement?: string;
61
+ /**
62
+ * 专业选科要求id
63
+ */
64
+ majorRequirementId?: number;
65
+ /**
66
+ * 省控线
67
+ */
68
+ minControlLine?: number;
69
+ /**
70
+ * 排名
71
+ */
72
+ rank?: number;
73
+ /**
74
+ * 招生代码
75
+ */
76
+ enrollmentId?: string;
77
+ /**
78
+ * 专业名称
79
+ */
80
+ majorName?: string;
81
+ /**
82
+ * 学费
83
+ */
84
+ money?: number;
85
+ /**
86
+ * 招生人数
87
+ */
88
+ hc?: number;
89
+ /**
90
+ * 冲稳保标识
91
+ */
92
+ strategyTag?: 'chong' | 'wen' | 'bao';
93
+ }
@@ -1,43 +1,43 @@
1
- import { type ISelectSubject } from './ISelectSubject';
2
-
3
- /**
4
- * 基础信息
5
- */
6
- export interface IInquiryBasicInfo {
7
- /**
8
- * 选科信息
9
- */
10
- selectSubject?: ISelectSubject;
11
- /**
12
- * 会话id
13
- */
14
- sessionId?: string;
15
- /**
16
- * 省份id
17
- */
18
- provinceId?: string;
19
- /**
20
- * 省份
21
- */
22
- province?: string;
23
- /**
24
- * 昵称
25
- */
26
- nickname?: string;
27
- /**
28
- * 年份
29
- */
30
- year?: number;
31
- /**
32
- * 分数
33
- */
34
- grade?: number | null;
35
- /**
36
- * 排名
37
- */
38
- rank?: number | null;
39
- /**
40
- * 组别id
41
- */
42
- groupId?: number;
43
- }
1
+ import { type ISelectSubject } from './ISelectSubject';
2
+
3
+ /**
4
+ * 基础信息
5
+ */
6
+ export interface IInquiryBasicInfo {
7
+ /**
8
+ * 选科信息
9
+ */
10
+ selectSubject?: ISelectSubject;
11
+ /**
12
+ * 会话id
13
+ */
14
+ sessionId?: string;
15
+ /**
16
+ * 省份id
17
+ */
18
+ provinceId?: string;
19
+ /**
20
+ * 省份
21
+ */
22
+ province?: string;
23
+ /**
24
+ * 昵称
25
+ */
26
+ nickname?: string | null;
27
+ /**
28
+ * 年份
29
+ */
30
+ year?: number;
31
+ /**
32
+ * 分数
33
+ */
34
+ grade?: number | null;
35
+ /**
36
+ * 排名
37
+ */
38
+ rank?: number | null;
39
+ /**
40
+ * 组别id
41
+ */
42
+ groupId?: number;
43
+ }
@@ -1,25 +1,25 @@
1
- /**
2
- * 问询会话
3
- */
4
- export interface IInquirySession {
5
- /**
6
- * 用户id
7
- */
8
- uid?: string;
9
- /**
10
- * 咨询师id
11
- */
12
- counselorId?: string;
13
- /**
14
- * 咨询师name
15
- */
16
- counselorName?: string;
17
- /**
18
- * 会话标题
19
- */
20
- sessionTitle?: string;
21
- /**
22
- * 当前步骤
23
- */
24
- currentStepId?: string;
25
- }
1
+ /**
2
+ * 问询会话
3
+ */
4
+ export interface IInquirySession {
5
+ /**
6
+ * 用户id
7
+ */
8
+ uid?: string;
9
+ /**
10
+ * 咨询师id
11
+ */
12
+ counselorId?: string;
13
+ /**
14
+ * 咨询师name
15
+ */
16
+ counselorName?: string;
17
+ /**
18
+ * 会话标题
19
+ */
20
+ sessionTitle?: string;
21
+ /**
22
+ * 当前步骤
23
+ */
24
+ currentStepId?: string;
25
+ }
@@ -1,13 +1,13 @@
1
- /**
2
- * 会话内容
3
- */
4
- export interface IPicture {
5
- /**
6
- * domain的类型,ali、qiniu
7
- */
8
- domainType?: string | null;
9
- /**
10
- * 图片path
11
- */
12
- path?: string | null;
13
- }
1
+ /**
2
+ * 会话内容
3
+ */
4
+ export interface IPicture {
5
+ /**
6
+ * domain的类型,ali、qiniu
7
+ */
8
+ domainType?: string | null;
9
+ /**
10
+ * 图片path
11
+ */
12
+ path?: string | null;
13
+ }