@typexim/aics-embed-sdk 0.0.22 → 0.0.23

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.
@@ -3,6 +3,6 @@
3
3
  * @param feedId
4
4
  * @returns
5
5
  */
6
- export declare const getCustomerInfo: (feedId: string) => Promise<{
6
+ export declare const getCustomerInfo: (feedId: string) => Promise<Array<{
7
7
  userId: string;
8
- } | null>;
8
+ }> | null>;
@@ -19,4 +19,7 @@ export declare const resetVerification: () => Promise<boolean>;
19
19
  * 获取授权票据
20
20
  * @returns
21
21
  */
22
- export declare const getVerification: () => Promise<string | null>;
22
+ export declare const getVerification: () => Promise<{
23
+ token: string;
24
+ expires_at: number;
25
+ } | null>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typexim/aics-embed-sdk",
3
- "version": "0.0.22",
3
+ "version": "0.0.23",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",