@typexim/aics-embed-sdk 0.0.17 → 0.0.18

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/README.md CHANGED
@@ -58,4 +58,4 @@ sendMessage 1、参数:1.1 message:Message 2、返回值:void 3、说明
58
58
 
59
59
  ### 获取登录信息
60
60
 
61
- getLoginInfo 1、返回值:{email:string;password:string}|null 2、说明:获取当前用户登录信息 3、注意:3.1 如果用户未登录,返回null
61
+ getLoginInfo 1、返回值:{useId:string}|null 2、说明:获取当前用户登录信息 3、注意:3.1 如果用户未登录,返回null
@@ -8,6 +8,5 @@ export declare const isLogin: () => Promise<boolean>;
8
8
  * @returns
9
9
  */
10
10
  export declare const getLoginInfo: () => Promise<{
11
- email: string;
12
- password: string;
11
+ userId: string;
13
12
  } | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typexim/aics-embed-sdk",
3
- "version": "0.0.17",
3
+ "version": "0.0.18",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -44,4 +44,4 @@
44
44
  "access": "public",
45
45
  "registry": "https://registry.npmjs.org/"
46
46
  }
47
- }
47
+ }