@freelog/tools-lib 0.1.165 → 0.1.166

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.
@@ -284,3 +284,17 @@ export function getSignInfo() {
284
284
  url: `/v2/activities/facade/signInfo`,
285
285
  });
286
286
  }
287
+
288
+ interface SearchForConsoleParamsType {
289
+ skip?: number;
290
+ limit?: number;
291
+ keywords?: string;
292
+ }
293
+
294
+ export function searchForConsole(params: SearchForConsoleParamsType = {}) {
295
+ return FUtil.Request({
296
+ method: 'GET',
297
+ url: '/v2/users/searchForConsole',
298
+ params: params,
299
+ })
300
+ }