@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.
- 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.ts → ICallUniCloudParams.d.ts} +20 -20
- package/hdd-ai-cloud/common/IChatAiMessageItem.d.ts +23 -23
- package/hdd-ai-cloud/common/ICommonError.d.ts +13 -13
- package/hdd-ai-cloud/common/ICommonReqRes.d.ts +23 -23
- package/hdd-ai-cloud/common/{ICommonRequstHead.ts → ICommonRequstHead.d.ts} +17 -17
- package/hdd-ai-cloud/common/IConfigInfo.d.ts +7 -7
- 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 -67
- package/hdd-ai-cloud/common/{IFormatProfessional.ts → IFormatProfessional.d.ts} +29 -29
- package/hdd-ai-cloud/common/IGetRecommendSchool.d.ts +93 -93
- package/hdd-ai-cloud/common/IInquiryBasicInfo.d.ts +43 -43
- 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 +151 -151
- package/hdd-ai-cloud/common/IReportInfo.d.ts +33 -33
- package/hdd-ai-cloud/common/IReportResult.d.ts +23 -23
- 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 -31
- 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 +175 -135
- package/hdd-ai-cloud/common/IThisContext.d.ts +128 -128
- package/hdd-ai-cloud/common/ReportTypeEnum.d.ts +7 -7
- package/hdd-ai-cloud/common/SubReportTypeEnum.d.ts +18 -18
- package/hdd-ai-cloud/common/index.d.ts +29 -29
- package/hdd-ai-cloud/controller/index.d.ts +496 -496
- 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
- package/hdd-ai-cloud/common/ICallUniCloudParams.js +0 -3
- package/hdd-ai-cloud/common/ICallUniCloudParams.js.map +0 -1
- package/hdd-ai-cloud/common/ICommonRequstHead.js +0 -3
- package/hdd-ai-cloud/common/ICommonRequstHead.js.map +0 -1
- package/hdd-ai-cloud/common/IFormatProfessional.js +0 -3
- package/hdd-ai-cloud/common/IFormatProfessional.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* 报告类型枚举
|
|
3
|
-
*/
|
|
4
|
-
export const enum ReportTypeEnum {
|
|
5
|
-
/** 高考志愿填报报告 */
|
|
6
|
-
GAOKAO = 'gaokao'
|
|
7
|
-
}
|
|
1
|
+
/**
|
|
2
|
+
* 报告类型枚举
|
|
3
|
+
*/
|
|
4
|
+
export const enum ReportTypeEnum {
|
|
5
|
+
/** 高考志愿填报报告 */
|
|
6
|
+
GAOKAO = 'gaokao'
|
|
7
|
+
}
|
|
@@ -1,18 +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
|
+
/**
|
|
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,29 +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';
|
|
24
|
-
export * from './ICommonError';
|
|
25
|
-
export * from './ReportTypeEnum';
|
|
26
|
-
export * from './SubReportTypeEnum';
|
|
27
|
-
export * from './IReportData';
|
|
28
|
-
export * from './IFormatGaokaoBasicInfo';
|
|
29
|
-
export * from './IConfigInfo';
|
|
1
|
+
export * from './ICommonReqRes.d.ts';
|
|
2
|
+
export * from './ISessionRole.d.ts';
|
|
3
|
+
export * from './ISessionContent.d.ts';
|
|
4
|
+
export * from './ICounselor.d.ts';
|
|
5
|
+
export * from './IChatAiMessageItem.d.ts';
|
|
6
|
+
export * from './AISceneEnum.d.ts';
|
|
7
|
+
export * from './ISceneAiConfig.d.ts';
|
|
8
|
+
export * from './IAliFcContext.d.ts';
|
|
9
|
+
export * from './ISseChunk.d.ts';
|
|
10
|
+
export * from './ICallUniCloudParams.d.ts';
|
|
11
|
+
export * from './ICommonRequstHead.d.ts';
|
|
12
|
+
export * from './IFormatCutOffCollegeData.d.ts';
|
|
13
|
+
export * from './IFormatProfessional.d.ts';
|
|
14
|
+
export * from './IPicture.d.ts';
|
|
15
|
+
export * from './ISseData.d.ts';
|
|
16
|
+
export * from './ISelectSubject.d.ts';
|
|
17
|
+
export * from './IInquiryBasicInfo.d.ts';
|
|
18
|
+
export * from './IInquirySession.d.ts';
|
|
19
|
+
export * from './ISessionContent.d.ts';
|
|
20
|
+
export * from './IGetRecommendSchool.d.ts';
|
|
21
|
+
export * from './IScoreRank.d.ts';
|
|
22
|
+
export * from './IReportInfo.d.ts';
|
|
23
|
+
export * from './IReportResult.d.ts';
|
|
24
|
+
export * from './ICommonError.d.ts';
|
|
25
|
+
export * from './ReportTypeEnum.d.ts';
|
|
26
|
+
export * from './SubReportTypeEnum.d.ts';
|
|
27
|
+
export * from './IReportData.d.ts';
|
|
28
|
+
export * from './IFormatGaokaoBasicInfo.d.ts';
|
|
29
|
+
export * from './IConfigInfo.d.ts';
|