Skip to content
Snippets Groups Projects
Commit d49a275b authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Add missing function to Messenger interface

parent cb0f1a80
No related branches found
No related tags found
2 merge requests!102Release 1.0.0,!95Add missing function to Messenger interface
...@@ -23,6 +23,7 @@ public struct Messenger { ...@@ -23,6 +23,7 @@ public struct Messenger {
public var destroy: MessengerDestroy public var destroy: MessengerDestroy
public var searchContacts: MessengerSearchContacts public var searchContacts: MessengerSearchContacts
public var lookupContact: MessengerLookupContact public var lookupContact: MessengerLookupContact
public var lookupContacts: MessengerLookupContacts
public var registerForNotifications: MessengerRegisterForNotifications public var registerForNotifications: MessengerRegisterForNotifications
public var verifyContact: MessengerVerifyContact public var verifyContact: MessengerVerifyContact
public var sendMessage: MessengerSendMessage public var sendMessage: MessengerSendMessage
...@@ -53,6 +54,7 @@ extension Messenger { ...@@ -53,6 +54,7 @@ extension Messenger {
destroy: .live(env), destroy: .live(env),
searchContacts: .live(env), searchContacts: .live(env),
lookupContact: .live(env), lookupContact: .live(env),
lookupContacts: .live(env),
registerForNotifications: .live(env), registerForNotifications: .live(env),
verifyContact: .live(env), verifyContact: .live(env),
sendMessage: .live(env) sendMessage: .live(env)
...@@ -84,6 +86,7 @@ extension Messenger { ...@@ -84,6 +86,7 @@ extension Messenger {
destroy: .unimplemented, destroy: .unimplemented,
searchContacts: .unimplemented, searchContacts: .unimplemented,
lookupContact: .unimplemented, lookupContact: .unimplemented,
lookupContacts: .unimplemented,
registerForNotifications: .unimplemented, registerForNotifications: .unimplemented,
verifyContact: .unimplemented, verifyContact: .unimplemented,
sendMessage: .unimplemented sendMessage: .unimplemented
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment