From 6205eb5fe7b1b3db2b6df461eab44a66763beac1 Mon Sep 17 00:00:00 2001 From: Philip Cesar Garay Date: Mon, 21 Jun 2021 21:30:31 +0800 Subject: [PATCH] - added manageBilling method for InApp Purchases 2 --- src/@ionic-native/plugins/in-app-purchase-2/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/@ionic-native/plugins/in-app-purchase-2/index.ts b/src/@ionic-native/plugins/in-app-purchase-2/index.ts index fbc757cf25..3b0bf12ed8 100644 --- a/src/@ionic-native/plugins/in-app-purchase-2/index.ts +++ b/src/@ionic-native/plugins/in-app-purchase-2/index.ts @@ -903,4 +903,8 @@ export class InAppPurchase2 extends IonicNativePlugin { /** Opens the Code Redemption Sheet on iOS. (AppStore). */ @Cordova({ sync: true }) redeem(): void {} + + /** Opens the Manage Billing page (AppStore, Play, Microsoft, ...), where the user can update his/her payment methods. */ + @Cordova({ sync: true }) + manageBilling(): void {} }