diff --git a/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts b/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts index ae2d739ad..175266858 100644 --- a/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts +++ b/src/@awesome-cordova-plugins/plugins/unvired-cordova-sdk/index.ts @@ -1663,4 +1663,13 @@ export class UnviredCordovaSDK extends AwesomeCordovaNativePlugin { registerForPushNotification(): Promise { return; } + + /** + * Regenerates the JWT token used for communicating with the UMP server. + * The updated token will be available via the registered NotificationListener's callback |JWTTokenReceived| + */ + @Cordova() + refreshJWTToken(): Promise { + return; + } }