@imam-inter/wasm-client-sdk 3.8.4-patch.17 → 3.8.4-patch.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.
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
export declare function insertFriendRequest(localFriendRequestStr: string): Promise<string>;
|
|
2
2
|
export declare function deleteFriendRequestBothUserID(fromUserID: string, toUserID: string): Promise<string>;
|
|
3
|
-
export declare function deleteFriendRequestsByFriendUserID(loginUserID: string, friendUserID: string): Promise<string>;
|
|
4
3
|
export declare function updateFriendRequest(localFriendRequestStr: string): Promise<string>;
|
|
5
4
|
export declare function getRecvFriendApplication(loginUserID: string): Promise<string>;
|
|
6
5
|
export declare function getSendFriendApplication(fromUserId: string): Promise<string>;
|
|
@@ -5,7 +5,6 @@ export declare type LocalFriendRequest = {
|
|
|
5
5
|
export declare function localFriendRequests(db: Database): QueryExecResult[];
|
|
6
6
|
export declare function insertFriendRequest(db: Database, localFriendRequest: LocalFriendRequest): QueryExecResult[];
|
|
7
7
|
export declare function deleteFriendRequestBothUserID(db: Database, fromUserID: string, toUserID: string): QueryExecResult[];
|
|
8
|
-
export declare function deleteFriendRequestsByFriendUserID(db: Database, loginUserID: string, friendUserID: string): QueryExecResult[];
|
|
9
8
|
export declare function updateFriendRequest(db: Database, localFriendRequest: LocalFriendRequest): QueryExecResult[];
|
|
10
9
|
export declare function getRecvFriendApplication(db: Database, loginUserID: string): QueryExecResult[];
|
|
11
10
|
export declare function getSendFriendApplication(db: Database, loginUserID: string): QueryExecResult[];
|