From 383a88463a16b47da8aeb79707f342411028f889 Mon Sep 17 00:00:00 2001 From: Philip Cesar Garay Date: Tue, 29 Jun 2021 19:39:20 +0800 Subject: [PATCH] feat(in-app-purchase-2): added manageBilling method (#3690) --- 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 {} }