@freelog/tools-lib 0.1.120 → 0.1.123
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/dist/service-API/user.d.ts +0 -4
- package/dist/tools-lib.cjs.development.js +3 -3
- package/dist/tools-lib.cjs.development.js.map +1 -1
- package/dist/tools-lib.cjs.production.min.js +1 -1
- package/dist/tools-lib.cjs.production.min.js.map +1 -1
- package/dist/tools-lib.esm.js +3 -3
- package/dist/tools-lib.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/service-API/testQualifications.ts +96 -96
- package/src/service-API/user.ts +257 -261
|
@@ -15,10 +15,6 @@ interface UsersParamsType {
|
|
|
15
15
|
skip?: number;
|
|
16
16
|
limit?: number;
|
|
17
17
|
keywords?: string;
|
|
18
|
-
userId?: number;
|
|
19
|
-
tagIds?: string;
|
|
20
|
-
startRegisteredDate?: string;
|
|
21
|
-
endRegisteredDate?: string;
|
|
22
18
|
}
|
|
23
19
|
export declare function users(params: UsersParamsType): Promise<any>;
|
|
24
20
|
interface BatchUserListParamsType {
|
|
@@ -2211,7 +2211,7 @@ function logout(_temp) {
|
|
|
2211
2211
|
function users(params) {
|
|
2212
2212
|
return FUtil.Request({
|
|
2213
2213
|
method: 'GET',
|
|
2214
|
-
url: "/v2/users",
|
|
2214
|
+
url: "/v2/users/search",
|
|
2215
2215
|
params: params
|
|
2216
2216
|
});
|
|
2217
2217
|
}
|
|
@@ -2779,7 +2779,7 @@ var _excluded$9 = ["recordId"];
|
|
|
2779
2779
|
function codeDetails1(_ref) {
|
|
2780
2780
|
var code = _ref.code;
|
|
2781
2781
|
return FUtil.Request({
|
|
2782
|
-
method: '
|
|
2782
|
+
method: 'GET',
|
|
2783
2783
|
url: "/v2/testQualifications/beta/codes/" + code
|
|
2784
2784
|
});
|
|
2785
2785
|
}
|
|
@@ -2787,7 +2787,7 @@ function codeDetails2(_ref2) {
|
|
|
2787
2787
|
_objectDestructuringEmpty(_ref2);
|
|
2788
2788
|
|
|
2789
2789
|
return FUtil.Request({
|
|
2790
|
-
method: '
|
|
2790
|
+
method: 'GET',
|
|
2791
2791
|
url: "/v2/testQualifications/beta/codes/userActivateCode"
|
|
2792
2792
|
});
|
|
2793
2793
|
}
|