@hddjs/hdd-cloud-types 1.0.25 → 1.0.28
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.
- package/hdd-ai-cloud/common/IInquirySession.d.ts +4 -0
- package/hdd-ai-cloud/common/IReportBasicInfo.d.ts +8 -0
- package/hdd-ai-cloud/common/ISessionContent.d.ts +4 -0
- package/hdd-ai-cloud/common/ReportTypeEnum.d.ts +3 -1
- package/hdd-ai-cloud/common/SubReportTypeEnum.d.ts +7 -1
- package/hdd-ai-cloud/controller/index.d.ts +23 -1
- package/package.json +1 -1
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
* 报告基础信息
|
|
3
3
|
*/
|
|
4
4
|
export interface IReportBasicInfo {
|
|
5
|
+
/**
|
|
6
|
+
* 昵称
|
|
7
|
+
*/
|
|
8
|
+
nickname?: string;
|
|
5
9
|
/**
|
|
6
10
|
* 分数
|
|
7
11
|
*/
|
|
@@ -18,4 +22,8 @@ export interface IReportBasicInfo {
|
|
|
18
22
|
* 比例
|
|
19
23
|
*/
|
|
20
24
|
rate?: number;
|
|
25
|
+
/**
|
|
26
|
+
* 选课情况
|
|
27
|
+
*/
|
|
28
|
+
selectSubject?: string;
|
|
21
29
|
}
|
|
@@ -14,5 +14,11 @@ export const enum SubReportTypeEnum {
|
|
|
14
14
|
/** 高考志愿专业院校解读 */
|
|
15
15
|
GAOKAO_KEY_UNIVERSITY = 'gaokao-key-university',
|
|
16
16
|
/** 高考志愿未来发展:未来发展建议 */
|
|
17
|
-
GAOKAO_FUTURE_DEVELOPMENT = 'gaokao-future-development'
|
|
17
|
+
GAOKAO_FUTURE_DEVELOPMENT = 'gaokao-future-development',
|
|
18
|
+
/** 职业测评概览模块 */
|
|
19
|
+
CAREER_OVERVIEW = 'career-overview',
|
|
20
|
+
/** 职业匹配排名模块 */
|
|
21
|
+
CAREER_RANKING = 'career-ranking',
|
|
22
|
+
/** 职业发展前景模块 */
|
|
23
|
+
CAREER_DEVELOPMENT = 'career-development'
|
|
18
24
|
}
|
|
@@ -562,7 +562,12 @@ export interface IGetConfigInfoRes extends ICommonRes {
|
|
|
562
562
|
/**
|
|
563
563
|
* 获取报告列表req
|
|
564
564
|
*/
|
|
565
|
-
export interface IGetReportInfoReq extends ICommonReq {
|
|
565
|
+
export interface IGetReportInfoReq extends ICommonReq {
|
|
566
|
+
/**
|
|
567
|
+
* 关键字
|
|
568
|
+
*/
|
|
569
|
+
keyword?: string;
|
|
570
|
+
}
|
|
566
571
|
|
|
567
572
|
/**
|
|
568
573
|
* 获取报告列表res
|
|
@@ -571,6 +576,23 @@ export interface IGetReportInfoRes extends ICommonRes {
|
|
|
571
576
|
data?: IReportList[];
|
|
572
577
|
}
|
|
573
578
|
|
|
579
|
+
/**
|
|
580
|
+
* 查询报告详情 req
|
|
581
|
+
*/
|
|
582
|
+
export interface IGetReportDetailReq extends ICommonReq {
|
|
583
|
+
/**
|
|
584
|
+
* 父报告 id
|
|
585
|
+
*/
|
|
586
|
+
reportId: string;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* 查询报告详情 res
|
|
591
|
+
*/
|
|
592
|
+
export interface IGetReportDetailRes extends ICommonRes {
|
|
593
|
+
data?: IReportResult;
|
|
594
|
+
}
|
|
595
|
+
|
|
574
596
|
/**
|
|
575
597
|
* 添加邀请码 req
|
|
576
598
|
*/
|