diff --git a/src/@awesome-cordova-plugins/plugins/intercom/index.ts b/src/@awesome-cordova-plugins/plugins/intercom/index.ts index 35c25decc..8b941832f 100644 --- a/src/@awesome-cordova-plugins/plugins/intercom/index.ts +++ b/src/@awesome-cordova-plugins/plugins/intercom/index.ts @@ -58,6 +58,22 @@ export class Intercom extends AwesomeCordovaNativePlugin { return; } + /** + * Determines if there is currently a user logged in. + */ + isUserLoggedIn(): Promise { + return; + } + + /** + * Fetches the user attribtues of the currently logged in user. + * + * return A user registration object. + */ + fetchLoggedInUserAttributes(): Promise { + return; + } + /** * Set `hash` string if you are using Identity Verification for your Intercom workspace. * @note This should be called before any user login takes place.