@hddjs/hdd-cloud-types 1.0.6 → 1.0.10
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/HddCloud/common/index.d.ts +4 -4
- package/HddCloud/index.d.ts +59 -59
- package/README.md +2 -2
- package/hdd-ai-cloud/common/AISceneEnum.d.ts +54 -54
- package/hdd-ai-cloud/common/IAliFcContext.d.ts +5 -5
- package/hdd-ai-cloud/common/ICallUniCloudParams.js +3 -3
- package/hdd-ai-cloud/common/ICallUniCloudParams.ts +20 -20
- package/hdd-ai-cloud/common/IChatAiMessageItem.d.ts +23 -23
- package/hdd-ai-cloud/common/ICommonError.d.ts +13 -0
- package/hdd-ai-cloud/common/ICommonReqRes.d.ts +23 -30
- package/hdd-ai-cloud/common/ICommonRequstHead.js +3 -3
- package/hdd-ai-cloud/common/ICommonRequstHead.ts +17 -17
- package/hdd-ai-cloud/common/IConfigInfo.d.ts +6 -0
- package/hdd-ai-cloud/common/ICounselor.d.ts +4 -4
- package/hdd-ai-cloud/common/ICounselorType.d.ts +23 -23
- package/hdd-ai-cloud/common/IFormatCutOffCollegeData.d.ts +29 -29
- package/hdd-ai-cloud/common/IFormatGaokaoBasicInfo.d.ts +67 -0
- package/hdd-ai-cloud/common/IFormatProfessional.js +3 -3
- package/hdd-ai-cloud/common/IFormatProfessional.ts +29 -29
- package/hdd-ai-cloud/common/IGetRecommendSchool.d.ts +77 -73
- package/hdd-ai-cloud/common/IInquiryBasicInfo.d.ts +39 -39
- package/hdd-ai-cloud/common/IInquirySession.d.ts +25 -25
- package/hdd-ai-cloud/common/IPicture.d.ts +13 -13
- package/hdd-ai-cloud/common/IReportData.d.ts +136 -0
- package/hdd-ai-cloud/common/ISceneAiConfig.d.ts +27 -27
- package/hdd-ai-cloud/common/IScoreRank.d.ts +18 -18
- package/hdd-ai-cloud/common/ISelectSubject.d.ts +29 -29
- package/hdd-ai-cloud/common/ISessionContent.d.ts +31 -27
- package/hdd-ai-cloud/common/ISessionRole.d.ts +21 -21
- package/hdd-ai-cloud/common/ISseChunk.d.ts +57 -57
- package/hdd-ai-cloud/common/ISseData.d.ts +108 -96
- package/hdd-ai-cloud/common/IThisContext.d.ts +128 -128
- package/hdd-ai-cloud/common/ReportTypeEnum.d.ts +7 -0
- package/hdd-ai-cloud/common/SubReportTypeEnum.d.ts +18 -0
- package/hdd-ai-cloud/common/index.d.ts +29 -23
- package/hdd-ai-cloud/controller/index.d.ts +496 -453
- package/hdd-ai-cloud/index.d.ts +3 -3
- package/hdd-ai-cloud/service/index.d.ts +36 -36
- package/index.d.ts +2 -2
- package/npmPublish.md +10 -10
- package/package.json +11 -11
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 报告类型枚举
|
|
3
|
+
* @enum {string}
|
|
4
|
+
*/
|
|
5
|
+
export const enum SubReportTypeEnum {
|
|
6
|
+
/** 分数定位分析 */
|
|
7
|
+
GAOKAO_SCORE_POSITION = 'gaokao-score-position',
|
|
8
|
+
/** 高考志愿兴趣分析:霍兰德职业兴趣测评报告 */
|
|
9
|
+
GAOKAO_INTEREST = 'gaokao-interest',
|
|
10
|
+
/** 高考志愿推荐:院校排序等推荐 */
|
|
11
|
+
GAOKAO_VOLUNTEER_RECOMMENDATION = 'gaokao-volunteer-recommendation',
|
|
12
|
+
/** 高考志愿专业匹配分析:专业推荐报告(专业匹配分析\排序) */
|
|
13
|
+
GAOKAO_MAJOR_MATCHING = 'gaokao-major-matching',
|
|
14
|
+
/** 高考志愿专业院校解读 */
|
|
15
|
+
GAOKAO_KEY_UNIVERSITY = 'gaokao-key-university',
|
|
16
|
+
/** 高考志愿未来发展:未来发展建议 */
|
|
17
|
+
GAOKAO_FUTURE_DEVELOPMENT = 'gaokao-future-development'
|
|
18
|
+
}
|
|
@@ -1,23 +1,29 @@
|
|
|
1
|
-
export * from './ICommonReqRes';
|
|
2
|
-
export * from './ISessionRole';
|
|
3
|
-
export * from './ISessionContent';
|
|
4
|
-
export * from './ICounselor';
|
|
5
|
-
export * from './IChatAiMessageItem';
|
|
6
|
-
export * from './AISceneEnum';
|
|
7
|
-
export * from './ISceneAiConfig';
|
|
8
|
-
export * from './IAliFcContext';
|
|
9
|
-
export * from './ISseChunk';
|
|
10
|
-
export * from './ICallUniCloudParams';
|
|
11
|
-
export * from './ICommonRequstHead';
|
|
12
|
-
export * from './IFormatCutOffCollegeData';
|
|
13
|
-
export * from './IFormatProfessional.ts';
|
|
14
|
-
export * from './IPicture.ts';
|
|
15
|
-
export * from './ISseData';
|
|
16
|
-
export * from './ISelectSubject';
|
|
17
|
-
export * from './IInquiryBasicInfo';
|
|
18
|
-
export * from './IInquirySession';
|
|
19
|
-
export * from './ISessionContent';
|
|
20
|
-
export * from './IGetRecommendSchool';
|
|
21
|
-
export * from './IScoreRank';
|
|
22
|
-
export * from './IReportInfo';
|
|
23
|
-
export * from './IReportResult';
|
|
1
|
+
export * from './ICommonReqRes';
|
|
2
|
+
export * from './ISessionRole';
|
|
3
|
+
export * from './ISessionContent';
|
|
4
|
+
export * from './ICounselor';
|
|
5
|
+
export * from './IChatAiMessageItem';
|
|
6
|
+
export * from './AISceneEnum';
|
|
7
|
+
export * from './ISceneAiConfig';
|
|
8
|
+
export * from './IAliFcContext';
|
|
9
|
+
export * from './ISseChunk';
|
|
10
|
+
export * from './ICallUniCloudParams';
|
|
11
|
+
export * from './ICommonRequstHead';
|
|
12
|
+
export * from './IFormatCutOffCollegeData';
|
|
13
|
+
export * from './IFormatProfessional.ts';
|
|
14
|
+
export * from './IPicture.ts';
|
|
15
|
+
export * from './ISseData';
|
|
16
|
+
export * from './ISelectSubject';
|
|
17
|
+
export * from './IInquiryBasicInfo';
|
|
18
|
+
export * from './IInquirySession';
|
|
19
|
+
export * from './ISessionContent';
|
|
20
|
+
export * from './IGetRecommendSchool';
|
|
21
|
+
export * from './IScoreRank';
|
|
22
|
+
export * from './IReportInfo';
|
|
23
|
+
export * from './IReportResult';
|
|
24
|
+
export * from './ICommonError';
|
|
25
|
+
export * from './ReportTypeEnum';
|
|
26
|
+
export * from './SubReportTypeEnum';
|
|
27
|
+
export * from './IReportData';
|
|
28
|
+
export * from './IFormatGaokaoBasicInfo';
|
|
29
|
+
export * from './IConfigInfo';
|