eli-video-interview 1.2.3-5.alpha.2 → 1.2.3-5.alpha.3
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.
|
@@ -24,4 +24,4 @@ export var GetAbilityDetail = function (data) { return POST({ url: '/standard/b/
|
|
|
24
24
|
// 能力名称查重
|
|
25
25
|
export var CheckDuplicateCollection = function (data) { return POST({ url: '/standard/b/questionCollection/checkDuplicateCollection', data: data }); };
|
|
26
26
|
// 获取 AI 成能力列表
|
|
27
|
-
export var GetAiAbilityList = function (data) { return GET({ url: '/standard/b/examAbilities',
|
|
27
|
+
export var GetAiAbilityList = function (data) { return GET({ url: '/standard/b/examAbilities', params: data }); };
|
|
@@ -33,5 +33,5 @@ exports.GetAbilityDetail = GetAbilityDetail;
|
|
|
33
33
|
var CheckDuplicateCollection = function (data) { return (0, request_1.POST)({ url: '/standard/b/questionCollection/checkDuplicateCollection', data: data }); };
|
|
34
34
|
exports.CheckDuplicateCollection = CheckDuplicateCollection;
|
|
35
35
|
// 获取 AI 成能力列表
|
|
36
|
-
var GetAiAbilityList = function (data) { return (0, request_1.GET)({ url: '/standard/b/examAbilities',
|
|
36
|
+
var GetAiAbilityList = function (data) { return (0, request_1.GET)({ url: '/standard/b/examAbilities', params: data }); };
|
|
37
37
|
exports.GetAiAbilityList = GetAiAbilityList;
|