File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -185,7 +185,9 @@ LeanEngine 中间件会为这些 Hook 函数检查「Hook 签名」,确保调
185185* `AV.Cloud.onIMConversationStart`
186186* `AV.Cloud.onIMConversationStarted`
187187* `AV.Cloud.onIMConversationAdd`
188+ * `AV.Cloud.onIMConversationAdded`
188189* `AV.Cloud.onIMConversationRemove`
190+ * `AV.Cloud.onIMConversationRemoved`
189191* `AV.Cloud.onIMConversationUpdate`
190192* `AV.Cloud.onIMClientOnline`
191193* `AV.Cloud.onIMClientOffline`
Original file line number Diff line number Diff line change @@ -155,7 +155,9 @@ export namespace Cloud {
155155 export function onIMConversationStart ( handler : CloudFunction ) : void ;
156156 export function onIMConversationStarted ( handler : CloudFunction ) : void ;
157157 export function onIMConversationAdd ( handler : CloudFunction ) : void ;
158+ export function onIMConversationAdded ( handler : CloudFunction ) : void ;
158159 export function onIMConversationRemove ( handler : CloudFunction ) : void ;
160+ export function onIMConversationRemoved ( handler : CloudFunction ) : void ;
159161 export function onIMConversationUpdate ( handler : CloudFunction ) : void ;
160162 export function onIMClientOnline ( handler : CloudFunction ) : void ;
161163 export function onIMClientOffline ( handler : CloudFunction ) : void ;
Original file line number Diff line number Diff line change @@ -20,7 +20,9 @@ exports.realtimeHookMapping = {
2020 onIMConversationStart : '_conversationStart' ,
2121 onIMConversationStarted : '_conversationStarted' ,
2222 onIMConversationAdd : '_conversationAdd' ,
23+ onIMConversationAdded : '_conversationAdded' ,
2324 onIMConversationRemove : '_conversationRemove' ,
25+ onIMConversationRemoved : '_conversationRemoved' ,
2426 onIMConversationUpdate : '_conversationUpdate' ,
2527 onIMClientOnline : '_clientOnline' ,
2628 onIMClientOffline : '_clientOffline' ,
You can’t perform that action at this time.
0 commit comments