react-native-iap 9.0.0 → 9.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -250,7 +250,7 @@ const requestPurchase = _ref => {
250
250
  return getIosModule().buyProduct(sku, andDangerouslyFinishTransactionAutomaticallyIOS, applicationUsername);
251
251
  },
252
252
  android: async () => {
253
- return getAndroidModule().buyItemByType(ANDROID_ITEM_TYPE_IAP, skus !== null && skus !== void 0 && skus.length ? skus : [sku], null, -1, obfuscatedAccountIdAndroid, obfuscatedProfileIdAndroid, undefined, isOfferPersonalized ?? false);
253
+ return getAndroidModule().buyItemByType(ANDROID_ITEM_TYPE_IAP, skus !== null && skus !== void 0 && skus.length ? skus : [sku], null, -1, obfuscatedAccountIdAndroid, obfuscatedProfileIdAndroid, [], isOfferPersonalized ?? false);
254
254
  }
255
255
  }) || Promise.resolve)();
256
256
  };
@@ -1 +1 @@
1
- {"version":3,"names":["RNIapIos","RNIapModule","RNIapAmazonModule","NativeModules","isAndroid","Platform","OS","isAmazon","isIos","ANDROID_ITEM_TYPE_SUBSCRIPTION","ANDROID_ITEM_TYPE_IAP","IapError","constructor","code","message","getInstallSourceAndroid","InstallSourceAndroid","GOOGLE_PLAY","AMAZON","androidNativeModule","setAndroidNativeModule","nativeModule","checkNativeAndroidAvailable","Error","IAPErrorCode","E_IAP_NOT_AVAILABLE","getAndroidModule","checkNativeIOSAvailable","getIosModule","getNativeModule","initConnection","endConnection","flushFailedPurchasesCachedAsPendingAndroid","flushFailedPurchasesCachedAsPending","fillProductsAdditionalData","products","user","getUser","currencies","CA","ES","AU","DE","IN","US","JP","GB","IT","BR","FR","currency","userMarketplaceAmazon","forEach","product","getProducts","skus","select","ios","items","getItems","filter","item","includes","productId","type","android","getItemsByType","Promise","resolve","getSubscriptions","subscriptions","getPurchaseHistory","getAvailableItems","getPurchaseHistoryByType","concat","getAvailablePurchases","getAvailableItemsByType","requestPurchase","sku","andDangerouslyFinishTransactionAutomaticallyIOS","obfuscatedAccountIdAndroid","obfuscatedProfileIdAndroid","applicationUsername","isOfferPersonalized","undefined","console","warn","buyProduct","buyItemByType","length","requestSubscription","purchaseTokenAndroid","prorationModeAndroid","subscriptionOffers","reject","map","so","offerToken","requestPurchaseWithQuantityIOS","quantity","buyProductWithQuantityIOS","finishTransaction","purchase","isConsumable","developerPayloadAndroid","transactionId","consumeProduct","purchaseToken","userIdAmazon","isAcknowledgedAndroid","purchaseStateAndroid","PurchaseStateAndroid","PURCHASED","acknowledgePurchase","clearTransactionIOS","clearTransaction","clearProductsIOS","clearProducts","acknowledgePurchaseAndroid","token","developerPayload","deepLinkToSubscriptionsAndroid","Linking","openURL","getPackageName","getPromotedProductIOS","promotedProduct","buyPromotedProductIOS","buyPromotedProduct","fetchJsonOrThrow","url","receiptBody","response","fetch","method","headers","Accept","body","JSON","stringify","ok","Object","assign","statusText","statusCode","status","json","requestAgnosticReceiptValidationIos","ReceiptValidationStatus","TEST_RECEIPT","testResponse","requestPurchaseWithOfferIOS","forUser","withOffer","buyProductWithOffer","validateReceiptIos","isTest","validateReceiptAndroid","packageName","productToken","accessToken","isSub","validateReceiptAmazon","developerSecret","userId","receiptId","useSandbox","sandBoxUrl","purchaseUpdatedListener","listener","emitterSubscription","NativeEventEmitter","addListener","startListening","purchaseErrorListener","promotedProductListener","getPendingPurchasesIOS","getPendingTransactions","getReceiptIOS","forceRefresh","requestReceipt","presentCodeRedemptionSheetIOS","presentCodeRedemptionSheet"],"sources":["iap.ts"],"sourcesContent":["import {\n EmitterSubscription,\n Linking,\n NativeEventEmitter,\n NativeModules,\n Platform,\n} from 'react-native';\n\nimport type * as Amazon from './types/amazon';\nimport type * as Android from './types/android';\nimport type * as Apple from './types/apple';\nimport {ReceiptValidationStatus} from './types/apple';\nimport type {\n InAppPurchase,\n Product,\n ProductCommon,\n ProductPurchase,\n PurchaseError,\n PurchaseResult,\n RequestPurchase,\n RequestSubscription,\n Subscription,\n SubscriptionPurchase,\n} from './types';\nimport {\n IAPErrorCode,\n InstallSourceAndroid,\n PurchaseStateAndroid,\n} from './types';\n\nconst {RNIapIos, RNIapModule, RNIapAmazonModule} = NativeModules;\nconst isAndroid = Platform.OS === 'android';\nconst isAmazon = isAndroid && !!RNIapAmazonModule;\nconst isIos = Platform.OS === 'ios';\nconst ANDROID_ITEM_TYPE_SUBSCRIPTION = 'subs';\nconst ANDROID_ITEM_TYPE_IAP = 'inapp';\n\nexport class IapError implements PurchaseError {\n constructor(public code?: string, public message?: string) {\n this.code = code;\n this.message = message;\n }\n}\n\nexport const getInstallSourceAndroid = (): InstallSourceAndroid => {\n return RNIapModule\n ? InstallSourceAndroid.GOOGLE_PLAY\n : InstallSourceAndroid.AMAZON;\n};\n\nlet androidNativeModule = RNIapModule;\n\nexport const setAndroidNativeModule = (\n nativeModule: typeof RNIapModule,\n): void => {\n androidNativeModule = nativeModule;\n};\n\nconst checkNativeAndroidAvailable = (): void => {\n if (!RNIapModule && !RNIapAmazonModule) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getAndroidModule = (): typeof RNIapModule | typeof RNIapAmazonModule => {\n checkNativeAndroidAvailable();\n\n return androidNativeModule\n ? androidNativeModule\n : RNIapModule\n ? RNIapModule\n : RNIapAmazonModule;\n};\n\nconst checkNativeIOSAvailable = (): void => {\n if (!RNIapIos) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getIosModule = (): typeof RNIapIos => {\n checkNativeIOSAvailable();\n\n return RNIapIos;\n};\n\nconst getNativeModule = ():\n | typeof RNIapModule\n | typeof RNIapAmazonModule\n | typeof RNIapIos => {\n return isAndroid ? getAndroidModule() : getIosModule();\n};\n\n/**\n * Init module for purchase flow. Required on Android. In ios it will check whether user canMakePayment.\n * @returns {Promise<boolean>}\n */\nexport const initConnection = (): Promise<boolean> =>\n getNativeModule().initConnection();\n\n/**\n * End module for purchase flow.\n * @returns {Promise<void>}\n */\nexport const endConnection = (): Promise<void> =>\n getNativeModule().endConnection();\n\n/**\n * Consume all 'ghost' purchases (that is, pending payment that already failed but is still marked as pending in Play Store cache). Android only.\n * @returns {Promise<boolean>}\n */\nexport const flushFailedPurchasesCachedAsPendingAndroid = (): Promise<\n string[]\n> => getAndroidModule().flushFailedPurchasesCachedAsPending();\n\n/**\n * Fill products with additional data\n * @param {Array<ProductCommon>} products Products\n */\nconst fillProductsAdditionalData = async (\n products: Array<ProductCommon>,\n): Promise<Array<ProductCommon>> => {\n // Amazon\n if (RNIapAmazonModule) {\n // On amazon we must get the user marketplace to detect the currency\n const user = await RNIapAmazonModule.getUser();\n\n const currencies = {\n CA: 'CAD',\n ES: 'EUR',\n AU: 'AUD',\n DE: 'EUR',\n IN: 'INR',\n US: 'USD',\n JP: 'JPY',\n GB: 'GBP',\n IT: 'EUR',\n BR: 'BRL',\n FR: 'EUR',\n };\n\n const currency =\n currencies[user.userMarketplaceAmazon as keyof typeof currencies];\n\n // Add currency to products\n products.forEach((product) => {\n if (currency) {\n product.currency = currency;\n }\n });\n }\n\n return products;\n};\n\n/**\n * Get a list of products (consumable and non-consumable items, but not subscriptions)\n * @param {string[]} skus The item skus\n * @returns {Promise<Product[]>}\n */\nexport const getProducts = (skus: string[]): Promise<Array<Product>> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Product) =>\n skus.includes(item.productId) && item.type === 'iap',\n );\n },\n android: async () => {\n const products = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n skus,\n );\n\n return fillProductsAdditionalData(products);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get a list of subscriptions\n * @param {string[]} skus The item skus\n * @returns {Promise<Subscription[]>}\n */\nexport const getSubscriptions = (skus: string[]): Promise<Subscription[]> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Subscription) =>\n skus.includes(item.productId) && item.type === 'subs',\n );\n },\n android: async () => {\n const subscriptions = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n skus,\n );\n\n return fillProductsAdditionalData(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Gets an inventory of purchases made by the user regardless of consumption status\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getPurchaseHistory = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get all purchases made by the user (either non-consumable, or haven't been consumed yet)\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getAvailablePurchases = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {string[]} [skus] Product Ids to purchase. Note that this is only for Android. iOS only uses a single SKU. If not provided, it'll default to using [sku] for backward-compatibility\n * @param {boolean} [isOfferPersonalized] Defaults to false, Only for Android V5\n * @returns {Promise<InAppPurchase>}\n */\n\nexport const requestPurchase = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n applicationUsername,\n skus, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n}: RequestPurchase): Promise<InAppPurchase> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n return getAndroidModule().buyItemByType(\n ANDROID_ITEM_TYPE_IAP,\n skus?.length ? skus : [sku],\n null,\n -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n undefined,\n isOfferPersonalized ?? false,\n );\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} [sku] The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [purchaseTokenAndroid] purchaseToken that the user is upgrading or downgrading from (Android).\n * @param {ProrationModesAndroid} [prorationModeAndroid] UNKNOWN_SUBSCRIPTION_UPGRADE_DOWNGRADE_POLICY, IMMEDIATE_WITH_TIME_PRORATION, IMMEDIATE_AND_CHARGE_PRORATED_PRICE, IMMEDIATE_WITHOUT_PRORATION, DEFERRED\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {SubscriptionOffers[]} [subscriptionOffers] Array of SubscriptionOffers. Every sku must be paired with a corresponding offerToken\n * @returns {Promise<SubscriptionPurchase | null>} Promise resolves to null when using proratioModesAndroid=DEFERRED, and to a SubscriptionPurchase otherwise\n */\nexport const requestSubscription = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n purchaseTokenAndroid,\n prorationModeAndroid = -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers = undefined, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n applicationUsername,\n}: RequestSubscription): Promise<SubscriptionPurchase | null> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n if (isAmazon) {\n return RNIapAmazonModule.buyItemByType(sku);\n } else {\n if (!subscriptionOffers?.length) {\n Promise.reject(\n 'subscriptionOffers are required for Google Play Subscriptions',\n );\n return;\n }\n return RNIapModule.buyItemByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n subscriptionOffers?.map((so) => so.sku),\n purchaseTokenAndroid,\n prorationModeAndroid,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers?.map((so) => so.offerToken),\n isOfferPersonalized ?? false,\n );\n }\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithQuantityIOS = (\n sku: string,\n quantity: number,\n): Promise<InAppPurchase> =>\n getIosModule().buyProductWithQuantityIOS(sku, quantity);\n\n/**\n * Finish Transaction (both platforms)\n * Abstracts Finish Transaction\n * iOS: Tells StoreKit that you have delivered the purchase to the user and StoreKit can now let go of the transaction.\n * Call this after you have persisted the purchased state to your server or local data in your app.\n * `react-native-iap` will continue to deliver the purchase updated events with the successful purchase until you finish the transaction. **Even after the app has relaunched.**\n * Android: it will consume purchase for consumables and acknowledge purchase for non-consumables.\n * @param {object} purchase The purchase that you would like to finish.\n * @param {boolean} isConsumable Checks if purchase is consumable. Has effect on `android`.\n * @param {string} developerPayloadAndroid Android developerPayload.\n * @returns {Promise<string | void> }\n */\nexport const finishTransaction = (\n purchase: InAppPurchase | ProductPurchase,\n isConsumable?: boolean,\n developerPayloadAndroid?: string,\n): Promise<string | void> => {\n return (\n Platform.select({\n ios: async () => {\n return getIosModule().finishTransaction(purchase.transactionId);\n },\n android: async () => {\n if (purchase) {\n if (isConsumable) {\n return getAndroidModule().consumeProduct(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else if (\n purchase.userIdAmazon ||\n (!purchase.isAcknowledgedAndroid &&\n purchase.purchaseStateAndroid === PurchaseStateAndroid.PURCHASED)\n ) {\n return getAndroidModule().acknowledgePurchase(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else {\n throw new Error('purchase is not suitable to be purchased');\n }\n } else {\n throw new Error('purchase is not assigned');\n }\n },\n }) || Promise.resolve\n )();\n};\n\n/**\n * Clear Transaction (iOS only)\n * Finish remaining transactions. Related to issue #257 and #801\n * link : https://github.com/dooboolab/react-native-iap/issues/257\n * https://github.com/dooboolab/react-native-iap/issues/801\n * @returns {Promise<void>}\n */\nexport const clearTransactionIOS = (): Promise<void> =>\n getIosModule().clearTransaction();\n\n/**\n * Clear valid Products (iOS only)\n * Remove all products which are validated by Apple server.\n * @returns {void}\n */\nexport const clearProductsIOS = (): Promise<void> =>\n getIosModule().clearProducts();\n\n/**\n * Acknowledge a product (on Android.) No-op on iOS.\n * @param {string} token The product's token (on Android)\n * @returns {Promise<PurchaseResult | void>}\n */\nexport const acknowledgePurchaseAndroid = (\n token: string,\n developerPayload?: string,\n): Promise<PurchaseResult | void> => {\n return getAndroidModule().acknowledgePurchase(token, developerPayload);\n};\n\n/**\n * Deep link to subscriptions screen on Android. No-op on iOS.\n * @param {string} sku The product's SKU (on Android)\n * @returns {Promise<void>}\n */\nexport const deepLinkToSubscriptionsAndroid = async (\n sku: string,\n): Promise<void> => {\n checkNativeAndroidAvailable();\n\n return Linking.openURL(\n `https://play.google.com/store/account/subscriptions?package=${await RNIapModule.getPackageName()}&sku=${sku}`,\n );\n};\n\n/**\n * Should Add Store Payment (iOS only)\n * Indicates the the App Store purchase should continue from the app instead of the App Store.\n * @returns {Promise<Product | null>} promoted product\n */\nexport const getPromotedProductIOS = (): Promise<Product | null> =>\n getIosModule().promotedProduct();\n\n/**\n * Buy the currently selected promoted product (iOS only)\n * Initiates the payment process for a promoted product. Should only be called in response to the `iap-promoted-product` event.\n * @returns {Promise<void>}\n */\nexport const buyPromotedProductIOS = (): Promise<void> =>\n getIosModule().buyPromotedProduct();\n\nconst fetchJsonOrThrow = async (\n url: string,\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetch(url, {\n method: 'POST',\n headers: {\n Accept: 'application/json',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(receiptBody),\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\nconst requestAgnosticReceiptValidationIos = async (\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetchJsonOrThrow(\n 'https://buy.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n // Best practice is to check for test receipt and check sandbox instead\n // https://developer.apple.com/documentation/appstorereceipts/verifyreceipt\n if (response && response.status === ReceiptValidationStatus.TEST_RECEIPT) {\n const testResponse = await fetchJsonOrThrow(\n 'https://sandbox.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n return testResponse;\n }\n\n return response;\n};\n\n/**\n * Buy products or subscriptions with offers (iOS only)\n *\n * Runs the payment process with some info you must fetch\n * from your server.\n * @param {string} sku The product identifier\n * @param {string} forUser An user identifier on you system\n * @param {Apple.PaymentDiscount} withOffer The offer information\n * @param {string} withOffer.identifier The offer identifier\n * @param {string} withOffer.keyIdentifier Key identifier that it uses to generate the signature\n * @param {string} withOffer.nonce An UUID returned from the server\n * @param {string} withOffer.signature The actual signature returned from the server\n * @param {number} withOffer.timestamp The timestamp of the signature\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithOfferIOS = (\n sku: string,\n forUser: string,\n withOffer: Apple.PaymentDiscount,\n): Promise<void> => getIosModule().buyProductWithOffer(sku, forUser, withOffer);\n\n/**\n * Validate receipt for iOS.\n * @param {object} receiptBody the receipt body to send to apple server.\n * @param {boolean} isTest whether this is in test environment which is sandbox.\n * @returns {Promise<Apple.ReceiptValidationResponse | false>}\n */\nexport const validateReceiptIos = async (\n receiptBody: Record<string, unknown>,\n isTest?: boolean,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n if (isTest == null) {\n return await requestAgnosticReceiptValidationIos(receiptBody);\n }\n\n const url = isTest\n ? 'https://sandbox.itunes.apple.com/verifyReceipt'\n : 'https://buy.itunes.apple.com/verifyReceipt';\n\n const response = await fetchJsonOrThrow(url, receiptBody);\n\n return response;\n};\n\n/**\n * Validate receipt for Android. NOTE: This method is here for debugging purposes only. Including\n * your access token in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} packageName package name of your app.\n * @param {string} productId product id for your in app product.\n * @param {string} productToken token for your purchase.\n * @param {string} accessToken accessToken from googleApis.\n * @param {boolean} isSub whether this is subscription or inapp. `true` for subscription.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAndroid = async (\n packageName: string,\n productId: string,\n productToken: string,\n accessToken: string,\n isSub?: boolean,\n): Promise<Android.ReceiptType> => {\n const type = isSub ? 'subscriptions' : 'products';\n\n const url =\n 'https://androidpublisher.googleapis.com/androidpublisher/v3/applications' +\n `/${packageName}/purchases/${type}/${productId}` +\n `/tokens/${productToken}?access_token=${accessToken}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Validate receipt for Amazon. NOTE: This method is here for debugging purposes only. Including\n * your developer secret in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} developerSecret: from the Amazon developer console.\n * @param {string} userId who purchased the item.\n * @param {string} receiptId long obfuscated string returned when purchasing the item\n * @param {boolean} useSandbox Defaults to true, use sandbox environment or production.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAmazon = async (\n developerSecret: string,\n userId: string,\n receiptId: string,\n useSandbox: boolean = true,\n): Promise<Amazon.ReceiptType> => {\n const sandBoxUrl = useSandbox ? 'sandbox/' : '';\n const url = `https://appstore-sdk.amazon.com/${sandBoxUrl}version/1.0/verifyReceiptId/developer/${developerSecret}/user/${userId}/receiptId/${receiptId}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Add IAP purchase event\n * @returns {callback(e: InAppPurchase | ProductPurchase)}\n */\nexport const purchaseUpdatedListener = (\n listener: (event: InAppPurchase | SubscriptionPurchase) => void,\n): EmitterSubscription => {\n const emitterSubscription = new NativeEventEmitter(\n getNativeModule(),\n ).addListener('purchase-updated', listener);\n\n if (isAndroid) {\n getAndroidModule().startListening();\n }\n\n return emitterSubscription;\n};\n\n/**\n * Add IAP purchase error event\n * @returns {callback(e: PurchaseError)}\n */\nexport const purchaseErrorListener = (\n listener: (errorEvent: PurchaseError) => void,\n): EmitterSubscription =>\n new NativeEventEmitter(getNativeModule()).addListener(\n 'purchase-error',\n listener,\n );\n\n/**\n * Add IAP promoted subscription event\n * Only available on iOS\n */\nexport const promotedProductListener = (\n listener: (productId?: string) => void,\n): EmitterSubscription | null => {\n if (isIos) {\n return new NativeEventEmitter(getIosModule()).addListener(\n 'iap-promoted-product',\n listener,\n );\n }\n return null;\n};\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<ProductPurchase[]>}\n */\nexport const getPendingPurchasesIOS = async (): Promise<ProductPurchase[]> =>\n getIosModule().getPendingTransactions();\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<string>}\n */\nexport const getReceiptIOS = async (forceRefresh?: boolean): Promise<string> =>\n getIosModule().requestReceipt(forceRefresh ?? false);\n\n/**\n * Launches a modal to register the redeem offer code in IOS.\n * @returns {Promise<null>}\n */\nexport const presentCodeRedemptionSheetIOS = async (): Promise<null> =>\n getIosModule().presentCodeRedemptionSheet();\n"],"mappings":";;;;;;;AAAA;;AAWA;;AAaA;;AAMA,MAAM;EAACA,QAAD;EAAWC,WAAX;EAAwBC;AAAxB,IAA6CC,0BAAnD;AACA,MAAMC,SAAS,GAAGC,qBAAA,CAASC,EAAT,KAAgB,SAAlC;AACA,MAAMC,QAAQ,GAAGH,SAAS,IAAI,CAAC,CAACF,iBAAhC;AACA,MAAMM,KAAK,GAAGH,qBAAA,CAASC,EAAT,KAAgB,KAA9B;AACA,MAAMG,8BAA8B,GAAG,MAAvC;AACA,MAAMC,qBAAqB,GAAG,OAA9B;;AAEO,MAAMC,QAAN,CAAwC;EAC7CC,WAAW,CAAQC,IAAR,EAA8BC,OAA9B,EAAgD;IAAA,KAAxCD,IAAwC,GAAxCA,IAAwC;IAAA,KAAlBC,OAAkB,GAAlBA,OAAkB;IACzD,KAAKD,IAAL,GAAYA,IAAZ;IACA,KAAKC,OAAL,GAAeA,OAAf;EACD;;AAJ4C;;;;AAOxC,MAAMC,uBAAuB,GAAG,MAA4B;EACjE,OAAOd,WAAW,GACde,2BAAA,CAAqBC,WADP,GAEdD,2BAAA,CAAqBE,MAFzB;AAGD,CAJM;;;AAMP,IAAIC,mBAAmB,GAAGlB,WAA1B;;AAEO,MAAMmB,sBAAsB,GACjCC,YADoC,IAE3B;EACTF,mBAAmB,GAAGE,YAAtB;AACD,CAJM;;;;AAMP,MAAMC,2BAA2B,GAAG,MAAY;EAC9C,IAAI,CAACrB,WAAD,IAAgB,CAACC,iBAArB,EAAwC;IACtC,MAAM,IAAIqB,KAAJ,CAAUC,mBAAA,CAAaC,mBAAvB,CAAN;EACD;AACF,CAJD;;AAMA,MAAMC,gBAAgB,GAAG,MAAqD;EAC5EJ,2BAA2B;EAE3B,OAAOH,mBAAmB,GACtBA,mBADsB,GAEtBlB,WAAW,GACXA,WADW,GAEXC,iBAJJ;AAKD,CARD;;AAUA,MAAMyB,uBAAuB,GAAG,MAAY;EAC1C,IAAI,CAAC3B,QAAL,EAAe;IACb,MAAM,IAAIuB,KAAJ,CAAUC,mBAAA,CAAaC,mBAAvB,CAAN;EACD;AACF,CAJD;;AAMA,MAAMG,YAAY,GAAG,MAAuB;EAC1CD,uBAAuB;EAEvB,OAAO3B,QAAP;AACD,CAJD;;AAMA,MAAM6B,eAAe,GAAG,MAGD;EACrB,OAAOzB,SAAS,GAAGsB,gBAAgB,EAAnB,GAAwBE,YAAY,EAApD;AACD,CALD;AAOA;AACA;AACA;AACA;;;AACO,MAAME,cAAc,GAAG,MAC5BD,eAAe,GAAGC,cAAlB,EADK;AAGP;AACA;AACA;AACA;;;;;AACO,MAAMC,aAAa,GAAG,MAC3BF,eAAe,GAAGE,aAAlB,EADK;AAGP;AACA;AACA;AACA;;;;;AACO,MAAMC,0CAA0C,GAAG,MAErDN,gBAAgB,GAAGO,mCAAnB,EAFE;AAIP;AACA;AACA;AACA;;;;;AACA,MAAMC,0BAA0B,GAAG,MACjCC,QADiC,IAEC;EAClC;EACA,IAAIjC,iBAAJ,EAAuB;IACrB;IACA,MAAMkC,IAAI,GAAG,MAAMlC,iBAAiB,CAACmC,OAAlB,EAAnB;IAEA,MAAMC,UAAU,GAAG;MACjBC,EAAE,EAAE,KADa;MAEjBC,EAAE,EAAE,KAFa;MAGjBC,EAAE,EAAE,KAHa;MAIjBC,EAAE,EAAE,KAJa;MAKjBC,EAAE,EAAE,KALa;MAMjBC,EAAE,EAAE,KANa;MAOjBC,EAAE,EAAE,KAPa;MAQjBC,EAAE,EAAE,KARa;MASjBC,EAAE,EAAE,KATa;MAUjBC,EAAE,EAAE,KAVa;MAWjBC,EAAE,EAAE;IAXa,CAAnB;IAcA,MAAMC,QAAQ,GACZZ,UAAU,CAACF,IAAI,CAACe,qBAAN,CADZ,CAlBqB,CAqBrB;;IACAhB,QAAQ,CAACiB,OAAT,CAAkBC,OAAD,IAAa;MAC5B,IAAIH,QAAJ,EAAc;QACZG,OAAO,CAACH,QAAR,GAAmBA,QAAnB;MACD;IACF,CAJD;EAKD;;EAED,OAAOf,QAAP;AACD,CAlCD;AAoCA;AACA;AACA;AACA;AACA;;;AACO,MAAMmB,WAAW,GAAIC,IAAD,IACzB,CACElD,qBAAA,CAASmD,MAAT,CAAgB;EACdC,GAAG,EAAE,YAAY;IACf,MAAMC,KAAK,GAAG,MAAM9B,YAAY,GAAG+B,QAAf,CAAwBJ,IAAxB,CAApB;IAEA,OAAOG,KAAK,CAACE,MAAN,CACJC,IAAD,IACEN,IAAI,CAACO,QAAL,CAAcD,IAAI,CAACE,SAAnB,KAAiCF,IAAI,CAACG,IAAL,KAAc,KAF5C,CAAP;EAID,CARa;EASdC,OAAO,EAAE,YAAY;IACnB,MAAM9B,QAAQ,GAAG,MAAMT,gBAAgB,GAAGwC,cAAnB,CACrBxD,qBADqB,EAErB6C,IAFqB,CAAvB;IAKA,OAAOrB,0BAA0B,CAACC,QAAD,CAAjC;EACD;AAhBa,CAAhB,KAiBMgC,OAAO,CAACC,OAlBhB,GADK;AAsBP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMC,gBAAgB,GAAId,IAAD,IAC9B,CACElD,qBAAA,CAASmD,MAAT,CAAgB;EACdC,GAAG,EAAE,YAAY;IACf,MAAMC,KAAK,GAAG,MAAM9B,YAAY,GAAG+B,QAAf,CAAwBJ,IAAxB,CAApB;IAEA,OAAOG,KAAK,CAACE,MAAN,CACJC,IAAD,IACEN,IAAI,CAACO,QAAL,CAAcD,IAAI,CAACE,SAAnB,KAAiCF,IAAI,CAACG,IAAL,KAAc,MAF5C,CAAP;EAID,CARa;EASdC,OAAO,EAAE,YAAY;IACnB,MAAMK,aAAa,GAAG,MAAM5C,gBAAgB,GAAGwC,cAAnB,CAC1BzD,8BAD0B,EAE1B8C,IAF0B,CAA5B;IAKA,OAAOrB,0BAA0B,CAACoC,aAAD,CAAjC;EACD;AAhBa,CAAhB,KAiBMH,OAAO,CAACC,OAlBhB,GADK;AAsBP;AACA;AACA;AACA;;;;;AACO,MAAMG,kBAAkB,GAAG,MAGhC,CACElE,qBAAA,CAASmD,MAAT,CAAgB;EACdC,GAAG,EAAE,YAAY;IACf,OAAO7B,YAAY,GAAG4C,iBAAf,EAAP;EACD,CAHa;EAIdP,OAAO,EAAE,YAAY;IACnB,IAAI/D,iBAAJ,EAAuB;MACrB,OAAO,MAAMA,iBAAiB,CAACsE,iBAAlB,EAAb;IACD;;IAED,MAAMrC,QAAQ,GAAG,MAAMT,gBAAgB,GAAG+C,wBAAnB,CACrB/D,qBADqB,CAAvB;IAIA,MAAM4D,aAAa,GAAG,MAAM5C,gBAAgB,GAAG+C,wBAAnB,CAC1BhE,8BAD0B,CAA5B;IAIA,OAAO0B,QAAQ,CAACuC,MAAT,CAAgBJ,aAAhB,CAAP;EACD;AAlBa,CAAhB,KAmBMH,OAAO,CAACC,OApBhB,GAHK;AA0BP;AACA;AACA;AACA;;;;;AACO,MAAMO,qBAAqB,GAAG,MAGnC,CACEtE,qBAAA,CAASmD,MAAT,CAAgB;EACdC,GAAG,EAAE,YAAY;IACf,OAAO7B,YAAY,GAAG4C,iBAAf,EAAP;EACD,CAHa;EAIdP,OAAO,EAAE,YAAY;IACnB,IAAI/D,iBAAJ,EAAuB;MACrB,OAAO,MAAMA,iBAAiB,CAACsE,iBAAlB,EAAb;IACD;;IAED,MAAMrC,QAAQ,GAAG,MAAMT,gBAAgB,GAAGkD,uBAAnB,CACrBlE,qBADqB,CAAvB;IAIA,MAAM4D,aAAa,GAAG,MAAM5C,gBAAgB,GAAGkD,uBAAnB,CAC1BnE,8BAD0B,CAA5B;IAIA,OAAO0B,QAAQ,CAACuC,MAAT,CAAgBJ,aAAhB,CAAP;EACD;AAlBa,CAAhB,KAmBMH,OAAO,CAACC,OApBhB,GAHK;AA0BP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AAEO,MAAMS,eAAe,GAAG;EAAA,IAAC;IAC9BC,GAD8B;IAE9BC,+CAA+C,GAAG,KAFpB;IAG9BC,0BAH8B;IAI9BC,0BAJ8B;IAK9BC,mBAL8B;IAM9B3B,IAN8B;IAMxB;IACN4B,mBAAmB,GAAGC,SAPQ,CAOG;;EAPH,CAAD;EAAA,OAS7B,CACE/E,qBAAA,CAASmD,MAAT,CAAgB;IACdC,GAAG,EAAE,YAAY;MACf,IAAIsB,+CAAJ,EAAqD;QACnDM,OAAO,CAACC,IAAR,CACE,wXADF;MAGD;;MAED,OAAO1D,YAAY,GAAG2D,UAAf,CACLT,GADK,EAELC,+CAFK,EAGLG,mBAHK,CAAP;IAKD,CAba;IAcdjB,OAAO,EAAE,YAAY;MACnB,OAAOvC,gBAAgB,GAAG8D,aAAnB,CACL9E,qBADK,EAEL6C,IAAI,SAAJ,IAAAA,IAAI,WAAJ,IAAAA,IAAI,CAAEkC,MAAN,GAAelC,IAAf,GAAsB,CAACuB,GAAD,CAFjB,EAGL,IAHK,EAIL,CAAC,CAJI,EAKLE,0BALK,EAMLC,0BANK,EAOLG,SAPK,EAQLD,mBAAmB,IAAI,KARlB,CAAP;IAUD;EAzBa,CAAhB,KA0BMhB,OAAO,CAACC,OA3BhB,GAT6B;AAAA,CAAxB;AAuCP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AACO,MAAMsB,mBAAmB,GAAG;EAAA,IAAC;IAClCZ,GADkC;IAElCC,+CAA+C,GAAG,KAFhB;IAGlCY,oBAHkC;IAIlCC,oBAAoB,GAAG,CAAC,CAJU;IAKlCZ,0BALkC;IAMlCC,0BANkC;IAOlCY,kBAAkB,GAAGT,SAPa;IAOF;IAChCD,mBAAmB,GAAGC,SARY;IAQD;IACjCF;EATkC,CAAD;EAAA,OAWjC,CACE7E,qBAAA,CAASmD,MAAT,CAAgB;IACdC,GAAG,EAAE,YAAY;MACf,IAAIsB,+CAAJ,EAAqD;QACnDM,OAAO,CAACC,IAAR,CACE,wXADF;MAGD;;MAED,OAAO1D,YAAY,GAAG2D,UAAf,CACLT,GADK,EAELC,+CAFK,EAGLG,mBAHK,CAAP;IAKD,CAba;IAcdjB,OAAO,EAAE,YAAY;MACnB,IAAI1D,QAAJ,EAAc;QACZ,OAAOL,iBAAiB,CAACsF,aAAlB,CAAgCV,GAAhC,CAAP;MACD,CAFD,MAEO;QACL,IAAI,EAACe,kBAAD,aAACA,kBAAD,eAACA,kBAAkB,CAAEJ,MAArB,CAAJ,EAAiC;UAC/BtB,OAAO,CAAC2B,MAAR,CACE,+DADF;UAGA;QACD;;QACD,OAAO7F,WAAW,CAACuF,aAAZ,CACL/E,8BADK,EAELoF,kBAFK,aAELA,kBAFK,uBAELA,kBAAkB,CAAEE,GAApB,CAAyBC,EAAD,IAAQA,EAAE,CAAClB,GAAnC,CAFK,EAGLa,oBAHK,EAILC,oBAJK,EAKLZ,0BALK,EAMLC,0BANK,EAOLY,kBAPK,aAOLA,kBAPK,uBAOLA,kBAAkB,CAAEE,GAApB,CAAyBC,EAAD,IAAQA,EAAE,CAACC,UAAnC,CAPK,EAQLd,mBAAmB,IAAI,KARlB,CAAP;MAUD;IACF;EAnCa,CAAhB,KAoCMhB,OAAO,CAACC,OArChB,GAXiC;AAAA,CAA5B;AAmDP;AACA;AACA;AACA;AACA;;;;;AACO,MAAM8B,8BAA8B,GAAG,CAC5CpB,GAD4C,EAE5CqB,QAF4C,KAI5CvE,YAAY,GAAGwE,yBAAf,CAAyCtB,GAAzC,EAA8CqB,QAA9C,CAJK;AAMP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AACO,MAAME,iBAAiB,GAAG,CAC/BC,QAD+B,EAE/BC,YAF+B,EAG/BC,uBAH+B,KAIJ;EAC3B,OAAO,CACLnG,qBAAA,CAASmD,MAAT,CAAgB;IACdC,GAAG,EAAE,YAAY;MACf,OAAO7B,YAAY,GAAGyE,iBAAf,CAAiCC,QAAQ,CAACG,aAA1C,CAAP;IACD,CAHa;IAIdxC,OAAO,EAAE,YAAY;MACnB,IAAIqC,QAAJ,EAAc;QACZ,IAAIC,YAAJ,EAAkB;UAChB,OAAO7E,gBAAgB,GAAGgF,cAAnB,CACLJ,QAAQ,CAACK,aADJ,EAELH,uBAFK,CAAP;QAID,CALD,MAKO,IACLF,QAAQ,CAACM,YAAT,IACC,CAACN,QAAQ,CAACO,qBAAV,IACCP,QAAQ,CAACQ,oBAAT,KAAkCC,2BAAA,CAAqBC,SAHpD,EAIL;UACA,OAAOtF,gBAAgB,GAAGuF,mBAAnB,CACLX,QAAQ,CAACK,aADJ,EAELH,uBAFK,CAAP;QAID,CATM,MASA;UACL,MAAM,IAAIjF,KAAJ,CAAU,0CAAV,CAAN;QACD;MACF,CAlBD,MAkBO;QACL,MAAM,IAAIA,KAAJ,CAAU,0BAAV,CAAN;MACD;IACF;EA1Ba,CAAhB,KA2BM4C,OAAO,CAACC,OA5BT,GAAP;AA8BD,CAnCM;AAqCP;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AACO,MAAM8C,mBAAmB,GAAG,MACjCtF,YAAY,GAAGuF,gBAAf,EADK;AAGP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMC,gBAAgB,GAAG,MAC9BxF,YAAY,GAAGyF,aAAf,EADK;AAGP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMC,0BAA0B,GAAG,CACxCC,KADwC,EAExCC,gBAFwC,KAGL;EACnC,OAAO9F,gBAAgB,GAAGuF,mBAAnB,CAAuCM,KAAvC,EAA8CC,gBAA9C,CAAP;AACD,CALM;AAOP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMC,8BAA8B,GAAG,MAC5C3C,GAD4C,IAE1B;EAClBxD,2BAA2B;EAE3B,OAAOoG,oBAAA,CAAQC,OAAR,CACJ,+DAA8D,MAAM1H,WAAW,CAAC2H,cAAZ,EAA6B,QAAO9C,GAAI,EADxG,CAAP;AAGD,CARM;AAUP;AACA;AACA;AACA;AACA;;;;;AACO,MAAM+C,qBAAqB,GAAG,MACnCjG,YAAY,GAAGkG,eAAf,EADK;AAGP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMC,qBAAqB,GAAG,MACnCnG,YAAY,GAAGoG,kBAAf,EADK;;;;AAGP,MAAMC,gBAAgB,GAAG,OACvBC,GADuB,EAEvBC,WAFuB,KAG8B;EACrD,MAAMC,QAAQ,GAAG,MAAMC,KAAK,CAACH,GAAD,EAAM;IAChCI,MAAM,EAAE,MADwB;IAEhCC,OAAO,EAAE;MACPC,MAAM,EAAE,kBADD;MAEP,gBAAgB;IAFT,CAFuB;IAMhCC,IAAI,EAAEC,IAAI,CAACC,SAAL,CAAeR,WAAf;EAN0B,CAAN,CAA5B;;EASA,IAAI,CAACC,QAAQ,CAACQ,EAAd,EAAkB;IAChB,MAAMC,MAAM,CAACC,MAAP,CAAc,IAAIvH,KAAJ,CAAU6G,QAAQ,CAACW,UAAnB,CAAd,EAA8C;MAClDC,UAAU,EAAEZ,QAAQ,CAACa;IAD6B,CAA9C,CAAN;EAGD;;EAED,OAAOb,QAAQ,CAACc,IAAT,EAAP;AACD,CApBD;;AAsBA,MAAMC,mCAAmC,GAAG,MAC1ChB,WAD0C,IAEW;EACrD,MAAMC,QAAQ,GAAG,MAAMH,gBAAgB,CACrC,4CADqC,EAErCE,WAFqC,CAAvC,CADqD,CAMrD;EACA;;EACA,IAAIC,QAAQ,IAAIA,QAAQ,CAACa,MAAT,KAAoBG,8BAAA,CAAwBC,YAA5D,EAA0E;IACxE,MAAMC,YAAY,GAAG,MAAMrB,gBAAgB,CACzC,gDADyC,EAEzCE,WAFyC,CAA3C;IAKA,OAAOmB,YAAP;EACD;;EAED,OAAOlB,QAAP;AACD,CApBD;AAsBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AACO,MAAMmB,2BAA2B,GAAG,CACzCzE,GADyC,EAEzC0E,OAFyC,EAGzCC,SAHyC,KAIvB7H,YAAY,GAAG8H,mBAAf,CAAmC5E,GAAnC,EAAwC0E,OAAxC,EAAiDC,SAAjD,CAJb;AAMP;AACA;AACA;AACA;AACA;AACA;;;;;AACO,MAAME,kBAAkB,GAAG,OAChCxB,WADgC,EAEhCyB,MAFgC,KAGqB;EACrD,IAAIA,MAAM,IAAI,IAAd,EAAoB;IAClB,OAAO,MAAMT,mCAAmC,CAAChB,WAAD,CAAhD;EACD;;EAED,MAAMD,GAAG,GAAG0B,MAAM,GACd,gDADc,GAEd,4CAFJ;EAIA,MAAMxB,QAAQ,GAAG,MAAMH,gBAAgB,CAACC,GAAD,EAAMC,WAAN,CAAvC;EAEA,OAAOC,QAAP;AACD,CAfM;AAiBP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AACO,MAAMyB,sBAAsB,GAAG,OACpCC,WADoC,EAEpC/F,SAFoC,EAGpCgG,YAHoC,EAIpCC,WAJoC,EAKpCC,KALoC,KAMH;EACjC,MAAMjG,IAAI,GAAGiG,KAAK,GAAG,eAAH,GAAqB,UAAvC;EAEA,MAAM/B,GAAG,GACP,6EACC,IAAG4B,WAAY,cAAa9F,IAAK,IAAGD,SAAU,EAD/C,GAEC,WAAUgG,YAAa,iBAAgBC,WAAY,EAHtD;EAKA,MAAM5B,QAAQ,GAAG,MAAMC,KAAK,CAACH,GAAD,EAAM;IAChCI,MAAM,EAAE,KADwB;IAEhCC,OAAO,EAAE;MACP,gBAAgB;IADT;EAFuB,CAAN,CAA5B;;EAOA,IAAI,CAACH,QAAQ,CAACQ,EAAd,EAAkB;IAChB,MAAMC,MAAM,CAACC,MAAP,CAAc,IAAIvH,KAAJ,CAAU6G,QAAQ,CAACW,UAAnB,CAAd,EAA8C;MAClDC,UAAU,EAAEZ,QAAQ,CAACa;IAD6B,CAA9C,CAAN;EAGD;;EAED,OAAOb,QAAQ,CAACc,IAAT,EAAP;AACD,CA5BM;AA8BP;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;AACO,MAAMgB,qBAAqB,GAAG,gBACnCC,eADmC,EAEnCC,MAFmC,EAGnCC,SAHmC,EAKH;EAAA,IADhCC,UACgC,uEADV,IACU;EAChC,MAAMC,UAAU,GAAGD,UAAU,GAAG,UAAH,GAAgB,EAA7C;EACA,MAAMpC,GAAG,GAAI,mCAAkCqC,UAAW,yCAAwCJ,eAAgB,SAAQC,MAAO,cAAaC,SAAU,EAAxJ;EAEA,MAAMjC,QAAQ,GAAG,MAAMC,KAAK,CAACH,GAAD,EAAM;IAChCI,MAAM,EAAE,KADwB;IAEhCC,OAAO,EAAE;MACP,gBAAgB;IADT;EAFuB,CAAN,CAA5B;;EAOA,IAAI,CAACH,QAAQ,CAACQ,EAAd,EAAkB;IAChB,MAAMC,MAAM,CAACC,MAAP,CAAc,IAAIvH,KAAJ,CAAU6G,QAAQ,CAACW,UAAnB,CAAd,EAA8C;MAClDC,UAAU,EAAEZ,QAAQ,CAACa;IAD6B,CAA9C,CAAN;EAGD;;EAED,OAAOb,QAAQ,CAACc,IAAT,EAAP;AACD,CAvBM;AAyBP;AACA;AACA;AACA;;;;;AACO,MAAMsB,uBAAuB,GAClCC,QADqC,IAEb;EACxB,MAAMC,mBAAmB,GAAG,IAAIC,+BAAJ,CAC1B9I,eAAe,EADW,EAE1B+I,WAF0B,CAEd,kBAFc,EAEMH,QAFN,CAA5B;;EAIA,IAAIrK,SAAJ,EAAe;IACbsB,gBAAgB,GAAGmJ,cAAnB;EACD;;EAED,OAAOH,mBAAP;AACD,CAZM;AAcP;AACA;AACA;AACA;;;;;AACO,MAAMI,qBAAqB,GAChCL,QADmC,IAGnC,IAAIE,+BAAJ,CAAuB9I,eAAe,EAAtC,EAA0C+I,WAA1C,CACE,gBADF,EAEEH,QAFF,CAHK;AAQP;AACA;AACA;AACA;;;;;AACO,MAAMM,uBAAuB,GAClCN,QADqC,IAEN;EAC/B,IAAIjK,KAAJ,EAAW;IACT,OAAO,IAAImK,+BAAJ,CAAuB/I,YAAY,EAAnC,EAAuCgJ,WAAvC,CACL,sBADK,EAELH,QAFK,CAAP;EAID;;EACD,OAAO,IAAP;AACD,CAVM;AAYP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMO,sBAAsB,GAAG,YACpCpJ,YAAY,GAAGqJ,sBAAf,EADK;AAGP;AACA;AACA;AACA;AACA;;;;;AACO,MAAMC,aAAa,GAAG,MAAOC,YAAP,IAC3BvJ,YAAY,GAAGwJ,cAAf,CAA8BD,YAAY,IAAI,KAA9C,CADK;AAGP;AACA;AACA;AACA;;;;;AACO,MAAME,6BAA6B,GAAG,YAC3CzJ,YAAY,GAAG0J,0BAAf,EADK"}
1
+ {"version":3,"names":["RNIapIos","RNIapModule","RNIapAmazonModule","NativeModules","isAndroid","Platform","OS","isAmazon","isIos","ANDROID_ITEM_TYPE_SUBSCRIPTION","ANDROID_ITEM_TYPE_IAP","IapError","constructor","code","message","getInstallSourceAndroid","InstallSourceAndroid","GOOGLE_PLAY","AMAZON","androidNativeModule","setAndroidNativeModule","nativeModule","checkNativeAndroidAvailable","Error","IAPErrorCode","E_IAP_NOT_AVAILABLE","getAndroidModule","checkNativeIOSAvailable","getIosModule","getNativeModule","initConnection","endConnection","flushFailedPurchasesCachedAsPendingAndroid","flushFailedPurchasesCachedAsPending","fillProductsAdditionalData","products","user","getUser","currencies","CA","ES","AU","DE","IN","US","JP","GB","IT","BR","FR","currency","userMarketplaceAmazon","forEach","product","getProducts","skus","select","ios","items","getItems","filter","item","includes","productId","type","android","getItemsByType","Promise","resolve","getSubscriptions","subscriptions","getPurchaseHistory","getAvailableItems","getPurchaseHistoryByType","concat","getAvailablePurchases","getAvailableItemsByType","requestPurchase","sku","andDangerouslyFinishTransactionAutomaticallyIOS","obfuscatedAccountIdAndroid","obfuscatedProfileIdAndroid","applicationUsername","isOfferPersonalized","undefined","console","warn","buyProduct","buyItemByType","length","requestSubscription","purchaseTokenAndroid","prorationModeAndroid","subscriptionOffers","reject","map","so","offerToken","requestPurchaseWithQuantityIOS","quantity","buyProductWithQuantityIOS","finishTransaction","purchase","isConsumable","developerPayloadAndroid","transactionId","consumeProduct","purchaseToken","userIdAmazon","isAcknowledgedAndroid","purchaseStateAndroid","PurchaseStateAndroid","PURCHASED","acknowledgePurchase","clearTransactionIOS","clearTransaction","clearProductsIOS","clearProducts","acknowledgePurchaseAndroid","token","developerPayload","deepLinkToSubscriptionsAndroid","Linking","openURL","getPackageName","getPromotedProductIOS","promotedProduct","buyPromotedProductIOS","buyPromotedProduct","fetchJsonOrThrow","url","receiptBody","response","fetch","method","headers","Accept","body","JSON","stringify","ok","Object","assign","statusText","statusCode","status","json","requestAgnosticReceiptValidationIos","ReceiptValidationStatus","TEST_RECEIPT","testResponse","requestPurchaseWithOfferIOS","forUser","withOffer","buyProductWithOffer","validateReceiptIos","isTest","validateReceiptAndroid","packageName","productToken","accessToken","isSub","validateReceiptAmazon","developerSecret","userId","receiptId","useSandbox","sandBoxUrl","purchaseUpdatedListener","listener","emitterSubscription","NativeEventEmitter","addListener","startListening","purchaseErrorListener","promotedProductListener","getPendingPurchasesIOS","getPendingTransactions","getReceiptIOS","forceRefresh","requestReceipt","presentCodeRedemptionSheetIOS","presentCodeRedemptionSheet"],"sources":["iap.ts"],"sourcesContent":["import {\n EmitterSubscription,\n Linking,\n NativeEventEmitter,\n NativeModules,\n Platform,\n} from 'react-native';\n\nimport type * as Amazon from './types/amazon';\nimport type * as Android from './types/android';\nimport type * as Apple from './types/apple';\nimport {ReceiptValidationStatus} from './types/apple';\nimport type {\n InAppPurchase,\n Product,\n ProductCommon,\n ProductPurchase,\n PurchaseError,\n PurchaseResult,\n RequestPurchase,\n RequestSubscription,\n Subscription,\n SubscriptionPurchase,\n} from './types';\nimport {\n IAPErrorCode,\n InstallSourceAndroid,\n PurchaseStateAndroid,\n} from './types';\n\nconst {RNIapIos, RNIapModule, RNIapAmazonModule} = NativeModules;\nconst isAndroid = Platform.OS === 'android';\nconst isAmazon = isAndroid && !!RNIapAmazonModule;\nconst isIos = Platform.OS === 'ios';\nconst ANDROID_ITEM_TYPE_SUBSCRIPTION = 'subs';\nconst ANDROID_ITEM_TYPE_IAP = 'inapp';\n\nexport class IapError implements PurchaseError {\n constructor(public code?: string, public message?: string) {\n this.code = code;\n this.message = message;\n }\n}\n\nexport const getInstallSourceAndroid = (): InstallSourceAndroid => {\n return RNIapModule\n ? InstallSourceAndroid.GOOGLE_PLAY\n : InstallSourceAndroid.AMAZON;\n};\n\nlet androidNativeModule = RNIapModule;\n\nexport const setAndroidNativeModule = (\n nativeModule: typeof RNIapModule,\n): void => {\n androidNativeModule = nativeModule;\n};\n\nconst checkNativeAndroidAvailable = (): void => {\n if (!RNIapModule && !RNIapAmazonModule) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getAndroidModule = (): typeof RNIapModule | typeof RNIapAmazonModule => {\n checkNativeAndroidAvailable();\n\n return androidNativeModule\n ? androidNativeModule\n : RNIapModule\n ? RNIapModule\n : RNIapAmazonModule;\n};\n\nconst checkNativeIOSAvailable = (): void => {\n if (!RNIapIos) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getIosModule = (): typeof RNIapIos => {\n checkNativeIOSAvailable();\n\n return RNIapIos;\n};\n\nconst getNativeModule = ():\n | typeof RNIapModule\n | typeof RNIapAmazonModule\n | typeof RNIapIos => {\n return isAndroid ? getAndroidModule() : getIosModule();\n};\n\n/**\n * Init module for purchase flow. Required on Android. In ios it will check whether user canMakePayment.\n * @returns {Promise<boolean>}\n */\nexport const initConnection = (): Promise<boolean> =>\n getNativeModule().initConnection();\n\n/**\n * End module for purchase flow.\n * @returns {Promise<void>}\n */\nexport const endConnection = (): Promise<void> =>\n getNativeModule().endConnection();\n\n/**\n * Consume all 'ghost' purchases (that is, pending payment that already failed but is still marked as pending in Play Store cache). Android only.\n * @returns {Promise<boolean>}\n */\nexport const flushFailedPurchasesCachedAsPendingAndroid = (): Promise<\n string[]\n> => getAndroidModule().flushFailedPurchasesCachedAsPending();\n\n/**\n * Fill products with additional data\n * @param {Array<ProductCommon>} products Products\n */\nconst fillProductsAdditionalData = async (\n products: Array<ProductCommon>,\n): Promise<Array<ProductCommon>> => {\n // Amazon\n if (RNIapAmazonModule) {\n // On amazon we must get the user marketplace to detect the currency\n const user = await RNIapAmazonModule.getUser();\n\n const currencies = {\n CA: 'CAD',\n ES: 'EUR',\n AU: 'AUD',\n DE: 'EUR',\n IN: 'INR',\n US: 'USD',\n JP: 'JPY',\n GB: 'GBP',\n IT: 'EUR',\n BR: 'BRL',\n FR: 'EUR',\n };\n\n const currency =\n currencies[user.userMarketplaceAmazon as keyof typeof currencies];\n\n // Add currency to products\n products.forEach((product) => {\n if (currency) {\n product.currency = currency;\n }\n });\n }\n\n return products;\n};\n\n/**\n * Get a list of products (consumable and non-consumable items, but not subscriptions)\n * @param {string[]} skus The item skus\n * @returns {Promise<Product[]>}\n */\nexport const getProducts = (skus: string[]): Promise<Array<Product>> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Product) =>\n skus.includes(item.productId) && item.type === 'iap',\n );\n },\n android: async () => {\n const products = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n skus,\n );\n\n return fillProductsAdditionalData(products);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get a list of subscriptions\n * @param {string[]} skus The item skus\n * @returns {Promise<Subscription[]>}\n */\nexport const getSubscriptions = (skus: string[]): Promise<Subscription[]> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Subscription) =>\n skus.includes(item.productId) && item.type === 'subs',\n );\n },\n android: async () => {\n const subscriptions = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n skus,\n );\n\n return fillProductsAdditionalData(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Gets an inventory of purchases made by the user regardless of consumption status\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getPurchaseHistory = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get all purchases made by the user (either non-consumable, or haven't been consumed yet)\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getAvailablePurchases = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {string[]} [skus] Product Ids to purchase. Note that this is only for Android. iOS only uses a single SKU. If not provided, it'll default to using [sku] for backward-compatibility\n * @param {boolean} [isOfferPersonalized] Defaults to false, Only for Android V5\n * @returns {Promise<InAppPurchase>}\n */\n\nexport const requestPurchase = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n applicationUsername,\n skus, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n}: RequestPurchase): Promise<InAppPurchase> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n return getAndroidModule().buyItemByType(\n ANDROID_ITEM_TYPE_IAP,\n skus?.length ? skus : [sku],\n null,\n -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n [],\n isOfferPersonalized ?? false,\n );\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} [sku] The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [purchaseTokenAndroid] purchaseToken that the user is upgrading or downgrading from (Android).\n * @param {ProrationModesAndroid} [prorationModeAndroid] UNKNOWN_SUBSCRIPTION_UPGRADE_DOWNGRADE_POLICY, IMMEDIATE_WITH_TIME_PRORATION, IMMEDIATE_AND_CHARGE_PRORATED_PRICE, IMMEDIATE_WITHOUT_PRORATION, DEFERRED\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {SubscriptionOffers[]} [subscriptionOffers] Array of SubscriptionOffers. Every sku must be paired with a corresponding offerToken\n * @returns {Promise<SubscriptionPurchase | null>} Promise resolves to null when using proratioModesAndroid=DEFERRED, and to a SubscriptionPurchase otherwise\n */\nexport const requestSubscription = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n purchaseTokenAndroid,\n prorationModeAndroid = -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers = undefined, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n applicationUsername,\n}: RequestSubscription): Promise<SubscriptionPurchase | null> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n if (isAmazon) {\n return RNIapAmazonModule.buyItemByType(sku);\n } else {\n if (!subscriptionOffers?.length) {\n Promise.reject(\n 'subscriptionOffers are required for Google Play Subscriptions',\n );\n return;\n }\n return RNIapModule.buyItemByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n subscriptionOffers?.map((so) => so.sku),\n purchaseTokenAndroid,\n prorationModeAndroid,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers?.map((so) => so.offerToken),\n isOfferPersonalized ?? false,\n );\n }\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithQuantityIOS = (\n sku: string,\n quantity: number,\n): Promise<InAppPurchase> =>\n getIosModule().buyProductWithQuantityIOS(sku, quantity);\n\n/**\n * Finish Transaction (both platforms)\n * Abstracts Finish Transaction\n * iOS: Tells StoreKit that you have delivered the purchase to the user and StoreKit can now let go of the transaction.\n * Call this after you have persisted the purchased state to your server or local data in your app.\n * `react-native-iap` will continue to deliver the purchase updated events with the successful purchase until you finish the transaction. **Even after the app has relaunched.**\n * Android: it will consume purchase for consumables and acknowledge purchase for non-consumables.\n * @param {object} purchase The purchase that you would like to finish.\n * @param {boolean} isConsumable Checks if purchase is consumable. Has effect on `android`.\n * @param {string} developerPayloadAndroid Android developerPayload.\n * @returns {Promise<string | void> }\n */\nexport const finishTransaction = (\n purchase: InAppPurchase | ProductPurchase,\n isConsumable?: boolean,\n developerPayloadAndroid?: string,\n): Promise<string | void> => {\n return (\n Platform.select({\n ios: async () => {\n return getIosModule().finishTransaction(purchase.transactionId);\n },\n android: async () => {\n if (purchase) {\n if (isConsumable) {\n return getAndroidModule().consumeProduct(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else if (\n purchase.userIdAmazon ||\n (!purchase.isAcknowledgedAndroid &&\n purchase.purchaseStateAndroid === PurchaseStateAndroid.PURCHASED)\n ) {\n return getAndroidModule().acknowledgePurchase(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else {\n throw new Error('purchase is not suitable to be purchased');\n }\n } else {\n throw new Error('purchase is not assigned');\n }\n },\n }) || Promise.resolve\n )();\n};\n\n/**\n * Clear Transaction (iOS only)\n * Finish remaining transactions. Related to issue #257 and #801\n * link : https://github.com/dooboolab/react-native-iap/issues/257\n * https://github.com/dooboolab/react-native-iap/issues/801\n * @returns {Promise<void>}\n */\nexport const clearTransactionIOS = (): Promise<void> =>\n getIosModule().clearTransaction();\n\n/**\n * Clear valid Products (iOS only)\n * Remove all products which are validated by Apple server.\n * @returns {void}\n */\nexport const clearProductsIOS = (): Promise<void> =>\n getIosModule().clearProducts();\n\n/**\n * Acknowledge a product (on Android.) No-op on iOS.\n * @param {string} token The product's token (on Android)\n * @returns {Promise<PurchaseResult | void>}\n */\nexport const acknowledgePurchaseAndroid = (\n token: string,\n developerPayload?: string,\n): Promise<PurchaseResult | void> => {\n return getAndroidModule().acknowledgePurchase(token, developerPayload);\n};\n\n/**\n * Deep link to subscriptions screen on Android. No-op on iOS.\n * @param {string} sku The product's SKU (on Android)\n * @returns {Promise<void>}\n */\nexport const deepLinkToSubscriptionsAndroid = async (\n sku: string,\n): Promise<void> => {\n checkNativeAndroidAvailable();\n\n return Linking.openURL(\n `https://play.google.com/store/account/subscriptions?package=${await RNIapModule.getPackageName()}&sku=${sku}`,\n );\n};\n\n/**\n * Should Add Store Payment (iOS only)\n * Indicates the the App Store purchase should continue from the app instead of the App Store.\n * @returns {Promise<Product | null>} promoted product\n */\nexport const getPromotedProductIOS = (): Promise<Product | null> =>\n getIosModule().promotedProduct();\n\n/**\n * Buy the currently selected promoted product (iOS only)\n * Initiates the payment process for a promoted product. Should only be called in response to the `iap-promoted-product` event.\n * @returns {Promise<void>}\n */\nexport const buyPromotedProductIOS = (): Promise<void> =>\n getIosModule().buyPromotedProduct();\n\nconst fetchJsonOrThrow = async (\n url: string,\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetch(url, {\n method: 'POST',\n headers: {\n Accept: 'application/json',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(receiptBody),\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\nconst requestAgnosticReceiptValidationIos = async (\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetchJsonOrThrow(\n 'https://buy.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n // Best practice is to check for test receipt and check sandbox instead\n // https://developer.apple.com/documentation/appstorereceipts/verifyreceipt\n if (response && response.status === ReceiptValidationStatus.TEST_RECEIPT) {\n const testResponse = await fetchJsonOrThrow(\n 'https://sandbox.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n return testResponse;\n }\n\n return response;\n};\n\n/**\n * Buy products or subscriptions with offers (iOS only)\n *\n * Runs the payment process with some info you must fetch\n * from your server.\n * @param {string} sku The product identifier\n * @param {string} forUser An user identifier on you system\n * @param {Apple.PaymentDiscount} withOffer The offer information\n * @param {string} withOffer.identifier The offer identifier\n * @param {string} withOffer.keyIdentifier Key identifier that it uses to generate the signature\n * @param {string} withOffer.nonce An UUID returned from the server\n * @param {string} withOffer.signature The actual signature returned from the server\n * @param {number} withOffer.timestamp The timestamp of the signature\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithOfferIOS = (\n sku: string,\n forUser: string,\n withOffer: Apple.PaymentDiscount,\n): Promise<void> => getIosModule().buyProductWithOffer(sku, forUser, withOffer);\n\n/**\n * Validate receipt for iOS.\n * @param {object} receiptBody the receipt body to send to apple server.\n * @param {boolean} isTest whether this is in test environment which is sandbox.\n * @returns {Promise<Apple.ReceiptValidationResponse | false>}\n */\nexport const validateReceiptIos = async (\n receiptBody: Record<string, unknown>,\n isTest?: boolean,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n if (isTest == null) {\n return await requestAgnosticReceiptValidationIos(receiptBody);\n }\n\n const url = isTest\n ? 'https://sandbox.itunes.apple.com/verifyReceipt'\n : 'https://buy.itunes.apple.com/verifyReceipt';\n\n const response = await fetchJsonOrThrow(url, receiptBody);\n\n return response;\n};\n\n/**\n * Validate receipt for Android. NOTE: This method is here for debugging purposes only. Including\n * your access token in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} packageName package name of your app.\n * @param {string} productId product id for your in app product.\n * @param {string} productToken token for your purchase.\n * @param {string} accessToken accessToken from googleApis.\n * @param {boolean} isSub whether this is subscription or inapp. `true` for subscription.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAndroid = async (\n packageName: string,\n productId: string,\n productToken: string,\n accessToken: string,\n isSub?: boolean,\n): Promise<Android.ReceiptType> => {\n const type = isSub ? 'subscriptions' : 'products';\n\n const url =\n 'https://androidpublisher.googleapis.com/androidpublisher/v3/applications' +\n `/${packageName}/purchases/${type}/${productId}` +\n `/tokens/${productToken}?access_token=${accessToken}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Validate receipt for Amazon. NOTE: This method is here for debugging purposes only. Including\n * your developer secret in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} developerSecret: from the Amazon developer console.\n * @param {string} userId who purchased the item.\n * @param {string} receiptId long obfuscated string returned when purchasing the item\n * @param {boolean} useSandbox Defaults to true, use sandbox environment or production.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAmazon = async (\n developerSecret: string,\n userId: string,\n receiptId: string,\n useSandbox: boolean = true,\n): Promise<Amazon.ReceiptType> => {\n const sandBoxUrl = useSandbox ? 'sandbox/' : '';\n const url = `https://appstore-sdk.amazon.com/${sandBoxUrl}version/1.0/verifyReceiptId/developer/${developerSecret}/user/${userId}/receiptId/${receiptId}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Add IAP purchase event\n * @returns {callback(e: InAppPurchase | ProductPurchase)}\n */\nexport const purchaseUpdatedListener = (\n listener: (event: InAppPurchase | SubscriptionPurchase) => void,\n): EmitterSubscription => {\n const emitterSubscription = new NativeEventEmitter(\n getNativeModule(),\n ).addListener('purchase-updated', listener);\n\n if (isAndroid) {\n getAndroidModule().startListening();\n }\n\n return emitterSubscription;\n};\n\n/**\n * Add IAP purchase error event\n * @returns {callback(e: PurchaseError)}\n */\nexport const purchaseErrorListener = (\n listener: (errorEvent: PurchaseError) => void,\n): EmitterSubscription =>\n new NativeEventEmitter(getNativeModule()).addListener(\n 'purchase-error',\n listener,\n );\n\n/**\n * Add IAP promoted subscription event\n * Only available on iOS\n */\nexport const promotedProductListener = (\n listener: (productId?: string) => void,\n): EmitterSubscription | null => {\n if (isIos) {\n return new NativeEventEmitter(getIosModule()).addListener(\n 'iap-promoted-product',\n listener,\n );\n }\n return null;\n};\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<ProductPurchase[]>}\n */\nexport const getPendingPurchasesIOS = async (): Promise<ProductPurchase[]> =>\n getIosModule().getPendingTransactions();\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<string>}\n */\nexport const getReceiptIOS = async (forceRefresh?: boolean): Promise<string> =>\n getIosModule().requestReceipt(forceRefresh ?? false);\n\n/**\n * Launches a modal to register the redeem offer code in IOS.\n * @returns {Promise<null>}\n */\nexport const presentCodeRedemptionSheetIOS = async (): Promise<null> =>\n getIosModule().presentCodeRedemptionSheet();\n"],"mappings":"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"}
package/lib/module/iap.js CHANGED
@@ -210,7 +210,7 @@ export const requestPurchase = _ref => {
210
210
  return getIosModule().buyProduct(sku, andDangerouslyFinishTransactionAutomaticallyIOS, applicationUsername);
211
211
  },
212
212
  android: async () => {
213
- return getAndroidModule().buyItemByType(ANDROID_ITEM_TYPE_IAP, skus !== null && skus !== void 0 && skus.length ? skus : [sku], null, -1, obfuscatedAccountIdAndroid, obfuscatedProfileIdAndroid, undefined, isOfferPersonalized ?? false);
213
+ return getAndroidModule().buyItemByType(ANDROID_ITEM_TYPE_IAP, skus !== null && skus !== void 0 && skus.length ? skus : [sku], null, -1, obfuscatedAccountIdAndroid, obfuscatedProfileIdAndroid, [], isOfferPersonalized ?? false);
214
214
  }
215
215
  }) || Promise.resolve)();
216
216
  };
@@ -1 +1 @@
1
- {"version":3,"names":["Linking","NativeEventEmitter","NativeModules","Platform","ReceiptValidationStatus","IAPErrorCode","InstallSourceAndroid","PurchaseStateAndroid","RNIapIos","RNIapModule","RNIapAmazonModule","isAndroid","OS","isAmazon","isIos","ANDROID_ITEM_TYPE_SUBSCRIPTION","ANDROID_ITEM_TYPE_IAP","IapError","constructor","code","message","getInstallSourceAndroid","GOOGLE_PLAY","AMAZON","androidNativeModule","setAndroidNativeModule","nativeModule","checkNativeAndroidAvailable","Error","E_IAP_NOT_AVAILABLE","getAndroidModule","checkNativeIOSAvailable","getIosModule","getNativeModule","initConnection","endConnection","flushFailedPurchasesCachedAsPendingAndroid","flushFailedPurchasesCachedAsPending","fillProductsAdditionalData","products","user","getUser","currencies","CA","ES","AU","DE","IN","US","JP","GB","IT","BR","FR","currency","userMarketplaceAmazon","forEach","product","getProducts","skus","select","ios","items","getItems","filter","item","includes","productId","type","android","getItemsByType","Promise","resolve","getSubscriptions","subscriptions","getPurchaseHistory","getAvailableItems","getPurchaseHistoryByType","concat","getAvailablePurchases","getAvailableItemsByType","requestPurchase","sku","andDangerouslyFinishTransactionAutomaticallyIOS","obfuscatedAccountIdAndroid","obfuscatedProfileIdAndroid","applicationUsername","isOfferPersonalized","undefined","console","warn","buyProduct","buyItemByType","length","requestSubscription","purchaseTokenAndroid","prorationModeAndroid","subscriptionOffers","reject","map","so","offerToken","requestPurchaseWithQuantityIOS","quantity","buyProductWithQuantityIOS","finishTransaction","purchase","isConsumable","developerPayloadAndroid","transactionId","consumeProduct","purchaseToken","userIdAmazon","isAcknowledgedAndroid","purchaseStateAndroid","PURCHASED","acknowledgePurchase","clearTransactionIOS","clearTransaction","clearProductsIOS","clearProducts","acknowledgePurchaseAndroid","token","developerPayload","deepLinkToSubscriptionsAndroid","openURL","getPackageName","getPromotedProductIOS","promotedProduct","buyPromotedProductIOS","buyPromotedProduct","fetchJsonOrThrow","url","receiptBody","response","fetch","method","headers","Accept","body","JSON","stringify","ok","Object","assign","statusText","statusCode","status","json","requestAgnosticReceiptValidationIos","TEST_RECEIPT","testResponse","requestPurchaseWithOfferIOS","forUser","withOffer","buyProductWithOffer","validateReceiptIos","isTest","validateReceiptAndroid","packageName","productToken","accessToken","isSub","validateReceiptAmazon","developerSecret","userId","receiptId","useSandbox","sandBoxUrl","purchaseUpdatedListener","listener","emitterSubscription","addListener","startListening","purchaseErrorListener","promotedProductListener","getPendingPurchasesIOS","getPendingTransactions","getReceiptIOS","forceRefresh","requestReceipt","presentCodeRedemptionSheetIOS","presentCodeRedemptionSheet"],"sources":["iap.ts"],"sourcesContent":["import {\n EmitterSubscription,\n Linking,\n NativeEventEmitter,\n NativeModules,\n Platform,\n} from 'react-native';\n\nimport type * as Amazon from './types/amazon';\nimport type * as Android from './types/android';\nimport type * as Apple from './types/apple';\nimport {ReceiptValidationStatus} from './types/apple';\nimport type {\n InAppPurchase,\n Product,\n ProductCommon,\n ProductPurchase,\n PurchaseError,\n PurchaseResult,\n RequestPurchase,\n RequestSubscription,\n Subscription,\n SubscriptionPurchase,\n} from './types';\nimport {\n IAPErrorCode,\n InstallSourceAndroid,\n PurchaseStateAndroid,\n} from './types';\n\nconst {RNIapIos, RNIapModule, RNIapAmazonModule} = NativeModules;\nconst isAndroid = Platform.OS === 'android';\nconst isAmazon = isAndroid && !!RNIapAmazonModule;\nconst isIos = Platform.OS === 'ios';\nconst ANDROID_ITEM_TYPE_SUBSCRIPTION = 'subs';\nconst ANDROID_ITEM_TYPE_IAP = 'inapp';\n\nexport class IapError implements PurchaseError {\n constructor(public code?: string, public message?: string) {\n this.code = code;\n this.message = message;\n }\n}\n\nexport const getInstallSourceAndroid = (): InstallSourceAndroid => {\n return RNIapModule\n ? InstallSourceAndroid.GOOGLE_PLAY\n : InstallSourceAndroid.AMAZON;\n};\n\nlet androidNativeModule = RNIapModule;\n\nexport const setAndroidNativeModule = (\n nativeModule: typeof RNIapModule,\n): void => {\n androidNativeModule = nativeModule;\n};\n\nconst checkNativeAndroidAvailable = (): void => {\n if (!RNIapModule && !RNIapAmazonModule) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getAndroidModule = (): typeof RNIapModule | typeof RNIapAmazonModule => {\n checkNativeAndroidAvailable();\n\n return androidNativeModule\n ? androidNativeModule\n : RNIapModule\n ? RNIapModule\n : RNIapAmazonModule;\n};\n\nconst checkNativeIOSAvailable = (): void => {\n if (!RNIapIos) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getIosModule = (): typeof RNIapIos => {\n checkNativeIOSAvailable();\n\n return RNIapIos;\n};\n\nconst getNativeModule = ():\n | typeof RNIapModule\n | typeof RNIapAmazonModule\n | typeof RNIapIos => {\n return isAndroid ? getAndroidModule() : getIosModule();\n};\n\n/**\n * Init module for purchase flow. Required on Android. In ios it will check whether user canMakePayment.\n * @returns {Promise<boolean>}\n */\nexport const initConnection = (): Promise<boolean> =>\n getNativeModule().initConnection();\n\n/**\n * End module for purchase flow.\n * @returns {Promise<void>}\n */\nexport const endConnection = (): Promise<void> =>\n getNativeModule().endConnection();\n\n/**\n * Consume all 'ghost' purchases (that is, pending payment that already failed but is still marked as pending in Play Store cache). Android only.\n * @returns {Promise<boolean>}\n */\nexport const flushFailedPurchasesCachedAsPendingAndroid = (): Promise<\n string[]\n> => getAndroidModule().flushFailedPurchasesCachedAsPending();\n\n/**\n * Fill products with additional data\n * @param {Array<ProductCommon>} products Products\n */\nconst fillProductsAdditionalData = async (\n products: Array<ProductCommon>,\n): Promise<Array<ProductCommon>> => {\n // Amazon\n if (RNIapAmazonModule) {\n // On amazon we must get the user marketplace to detect the currency\n const user = await RNIapAmazonModule.getUser();\n\n const currencies = {\n CA: 'CAD',\n ES: 'EUR',\n AU: 'AUD',\n DE: 'EUR',\n IN: 'INR',\n US: 'USD',\n JP: 'JPY',\n GB: 'GBP',\n IT: 'EUR',\n BR: 'BRL',\n FR: 'EUR',\n };\n\n const currency =\n currencies[user.userMarketplaceAmazon as keyof typeof currencies];\n\n // Add currency to products\n products.forEach((product) => {\n if (currency) {\n product.currency = currency;\n }\n });\n }\n\n return products;\n};\n\n/**\n * Get a list of products (consumable and non-consumable items, but not subscriptions)\n * @param {string[]} skus The item skus\n * @returns {Promise<Product[]>}\n */\nexport const getProducts = (skus: string[]): Promise<Array<Product>> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Product) =>\n skus.includes(item.productId) && item.type === 'iap',\n );\n },\n android: async () => {\n const products = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n skus,\n );\n\n return fillProductsAdditionalData(products);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get a list of subscriptions\n * @param {string[]} skus The item skus\n * @returns {Promise<Subscription[]>}\n */\nexport const getSubscriptions = (skus: string[]): Promise<Subscription[]> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Subscription) =>\n skus.includes(item.productId) && item.type === 'subs',\n );\n },\n android: async () => {\n const subscriptions = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n skus,\n );\n\n return fillProductsAdditionalData(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Gets an inventory of purchases made by the user regardless of consumption status\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getPurchaseHistory = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get all purchases made by the user (either non-consumable, or haven't been consumed yet)\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getAvailablePurchases = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {string[]} [skus] Product Ids to purchase. Note that this is only for Android. iOS only uses a single SKU. If not provided, it'll default to using [sku] for backward-compatibility\n * @param {boolean} [isOfferPersonalized] Defaults to false, Only for Android V5\n * @returns {Promise<InAppPurchase>}\n */\n\nexport const requestPurchase = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n applicationUsername,\n skus, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n}: RequestPurchase): Promise<InAppPurchase> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n return getAndroidModule().buyItemByType(\n ANDROID_ITEM_TYPE_IAP,\n skus?.length ? skus : [sku],\n null,\n -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n undefined,\n isOfferPersonalized ?? false,\n );\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} [sku] The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [purchaseTokenAndroid] purchaseToken that the user is upgrading or downgrading from (Android).\n * @param {ProrationModesAndroid} [prorationModeAndroid] UNKNOWN_SUBSCRIPTION_UPGRADE_DOWNGRADE_POLICY, IMMEDIATE_WITH_TIME_PRORATION, IMMEDIATE_AND_CHARGE_PRORATED_PRICE, IMMEDIATE_WITHOUT_PRORATION, DEFERRED\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {SubscriptionOffers[]} [subscriptionOffers] Array of SubscriptionOffers. Every sku must be paired with a corresponding offerToken\n * @returns {Promise<SubscriptionPurchase | null>} Promise resolves to null when using proratioModesAndroid=DEFERRED, and to a SubscriptionPurchase otherwise\n */\nexport const requestSubscription = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n purchaseTokenAndroid,\n prorationModeAndroid = -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers = undefined, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n applicationUsername,\n}: RequestSubscription): Promise<SubscriptionPurchase | null> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n if (isAmazon) {\n return RNIapAmazonModule.buyItemByType(sku);\n } else {\n if (!subscriptionOffers?.length) {\n Promise.reject(\n 'subscriptionOffers are required for Google Play Subscriptions',\n );\n return;\n }\n return RNIapModule.buyItemByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n subscriptionOffers?.map((so) => so.sku),\n purchaseTokenAndroid,\n prorationModeAndroid,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers?.map((so) => so.offerToken),\n isOfferPersonalized ?? false,\n );\n }\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithQuantityIOS = (\n sku: string,\n quantity: number,\n): Promise<InAppPurchase> =>\n getIosModule().buyProductWithQuantityIOS(sku, quantity);\n\n/**\n * Finish Transaction (both platforms)\n * Abstracts Finish Transaction\n * iOS: Tells StoreKit that you have delivered the purchase to the user and StoreKit can now let go of the transaction.\n * Call this after you have persisted the purchased state to your server or local data in your app.\n * `react-native-iap` will continue to deliver the purchase updated events with the successful purchase until you finish the transaction. **Even after the app has relaunched.**\n * Android: it will consume purchase for consumables and acknowledge purchase for non-consumables.\n * @param {object} purchase The purchase that you would like to finish.\n * @param {boolean} isConsumable Checks if purchase is consumable. Has effect on `android`.\n * @param {string} developerPayloadAndroid Android developerPayload.\n * @returns {Promise<string | void> }\n */\nexport const finishTransaction = (\n purchase: InAppPurchase | ProductPurchase,\n isConsumable?: boolean,\n developerPayloadAndroid?: string,\n): Promise<string | void> => {\n return (\n Platform.select({\n ios: async () => {\n return getIosModule().finishTransaction(purchase.transactionId);\n },\n android: async () => {\n if (purchase) {\n if (isConsumable) {\n return getAndroidModule().consumeProduct(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else if (\n purchase.userIdAmazon ||\n (!purchase.isAcknowledgedAndroid &&\n purchase.purchaseStateAndroid === PurchaseStateAndroid.PURCHASED)\n ) {\n return getAndroidModule().acknowledgePurchase(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else {\n throw new Error('purchase is not suitable to be purchased');\n }\n } else {\n throw new Error('purchase is not assigned');\n }\n },\n }) || Promise.resolve\n )();\n};\n\n/**\n * Clear Transaction (iOS only)\n * Finish remaining transactions. Related to issue #257 and #801\n * link : https://github.com/dooboolab/react-native-iap/issues/257\n * https://github.com/dooboolab/react-native-iap/issues/801\n * @returns {Promise<void>}\n */\nexport const clearTransactionIOS = (): Promise<void> =>\n getIosModule().clearTransaction();\n\n/**\n * Clear valid Products (iOS only)\n * Remove all products which are validated by Apple server.\n * @returns {void}\n */\nexport const clearProductsIOS = (): Promise<void> =>\n getIosModule().clearProducts();\n\n/**\n * Acknowledge a product (on Android.) No-op on iOS.\n * @param {string} token The product's token (on Android)\n * @returns {Promise<PurchaseResult | void>}\n */\nexport const acknowledgePurchaseAndroid = (\n token: string,\n developerPayload?: string,\n): Promise<PurchaseResult | void> => {\n return getAndroidModule().acknowledgePurchase(token, developerPayload);\n};\n\n/**\n * Deep link to subscriptions screen on Android. No-op on iOS.\n * @param {string} sku The product's SKU (on Android)\n * @returns {Promise<void>}\n */\nexport const deepLinkToSubscriptionsAndroid = async (\n sku: string,\n): Promise<void> => {\n checkNativeAndroidAvailable();\n\n return Linking.openURL(\n `https://play.google.com/store/account/subscriptions?package=${await RNIapModule.getPackageName()}&sku=${sku}`,\n );\n};\n\n/**\n * Should Add Store Payment (iOS only)\n * Indicates the the App Store purchase should continue from the app instead of the App Store.\n * @returns {Promise<Product | null>} promoted product\n */\nexport const getPromotedProductIOS = (): Promise<Product | null> =>\n getIosModule().promotedProduct();\n\n/**\n * Buy the currently selected promoted product (iOS only)\n * Initiates the payment process for a promoted product. Should only be called in response to the `iap-promoted-product` event.\n * @returns {Promise<void>}\n */\nexport const buyPromotedProductIOS = (): Promise<void> =>\n getIosModule().buyPromotedProduct();\n\nconst fetchJsonOrThrow = async (\n url: string,\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetch(url, {\n method: 'POST',\n headers: {\n Accept: 'application/json',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(receiptBody),\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\nconst requestAgnosticReceiptValidationIos = async (\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetchJsonOrThrow(\n 'https://buy.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n // Best practice is to check for test receipt and check sandbox instead\n // https://developer.apple.com/documentation/appstorereceipts/verifyreceipt\n if (response && response.status === ReceiptValidationStatus.TEST_RECEIPT) {\n const testResponse = await fetchJsonOrThrow(\n 'https://sandbox.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n return testResponse;\n }\n\n return response;\n};\n\n/**\n * Buy products or subscriptions with offers (iOS only)\n *\n * Runs the payment process with some info you must fetch\n * from your server.\n * @param {string} sku The product identifier\n * @param {string} forUser An user identifier on you system\n * @param {Apple.PaymentDiscount} withOffer The offer information\n * @param {string} withOffer.identifier The offer identifier\n * @param {string} withOffer.keyIdentifier Key identifier that it uses to generate the signature\n * @param {string} withOffer.nonce An UUID returned from the server\n * @param {string} withOffer.signature The actual signature returned from the server\n * @param {number} withOffer.timestamp The timestamp of the signature\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithOfferIOS = (\n sku: string,\n forUser: string,\n withOffer: Apple.PaymentDiscount,\n): Promise<void> => getIosModule().buyProductWithOffer(sku, forUser, withOffer);\n\n/**\n * Validate receipt for iOS.\n * @param {object} receiptBody the receipt body to send to apple server.\n * @param {boolean} isTest whether this is in test environment which is sandbox.\n * @returns {Promise<Apple.ReceiptValidationResponse | false>}\n */\nexport const validateReceiptIos = async (\n receiptBody: Record<string, unknown>,\n isTest?: boolean,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n if (isTest == null) {\n return await requestAgnosticReceiptValidationIos(receiptBody);\n }\n\n const url = isTest\n ? 'https://sandbox.itunes.apple.com/verifyReceipt'\n : 'https://buy.itunes.apple.com/verifyReceipt';\n\n const response = await fetchJsonOrThrow(url, receiptBody);\n\n return response;\n};\n\n/**\n * Validate receipt for Android. NOTE: This method is here for debugging purposes only. Including\n * your access token in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} packageName package name of your app.\n * @param {string} productId product id for your in app product.\n * @param {string} productToken token for your purchase.\n * @param {string} accessToken accessToken from googleApis.\n * @param {boolean} isSub whether this is subscription or inapp. `true` for subscription.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAndroid = async (\n packageName: string,\n productId: string,\n productToken: string,\n accessToken: string,\n isSub?: boolean,\n): Promise<Android.ReceiptType> => {\n const type = isSub ? 'subscriptions' : 'products';\n\n const url =\n 'https://androidpublisher.googleapis.com/androidpublisher/v3/applications' +\n `/${packageName}/purchases/${type}/${productId}` +\n `/tokens/${productToken}?access_token=${accessToken}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Validate receipt for Amazon. NOTE: This method is here for debugging purposes only. Including\n * your developer secret in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} developerSecret: from the Amazon developer console.\n * @param {string} userId who purchased the item.\n * @param {string} receiptId long obfuscated string returned when purchasing the item\n * @param {boolean} useSandbox Defaults to true, use sandbox environment or production.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAmazon = async (\n developerSecret: string,\n userId: string,\n receiptId: string,\n useSandbox: boolean = true,\n): Promise<Amazon.ReceiptType> => {\n const sandBoxUrl = useSandbox ? 'sandbox/' : '';\n const url = `https://appstore-sdk.amazon.com/${sandBoxUrl}version/1.0/verifyReceiptId/developer/${developerSecret}/user/${userId}/receiptId/${receiptId}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Add IAP purchase event\n * @returns {callback(e: InAppPurchase | ProductPurchase)}\n */\nexport const purchaseUpdatedListener = (\n listener: (event: InAppPurchase | SubscriptionPurchase) => void,\n): EmitterSubscription => {\n const emitterSubscription = new NativeEventEmitter(\n getNativeModule(),\n ).addListener('purchase-updated', listener);\n\n if (isAndroid) {\n getAndroidModule().startListening();\n }\n\n return emitterSubscription;\n};\n\n/**\n * Add IAP purchase error event\n * @returns {callback(e: PurchaseError)}\n */\nexport const purchaseErrorListener = (\n listener: (errorEvent: PurchaseError) => void,\n): EmitterSubscription =>\n new NativeEventEmitter(getNativeModule()).addListener(\n 'purchase-error',\n listener,\n );\n\n/**\n * Add IAP promoted subscription event\n * Only available on iOS\n */\nexport const promotedProductListener = (\n listener: (productId?: string) => void,\n): EmitterSubscription | null => {\n if (isIos) {\n return new NativeEventEmitter(getIosModule()).addListener(\n 'iap-promoted-product',\n listener,\n );\n }\n return null;\n};\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<ProductPurchase[]>}\n */\nexport const getPendingPurchasesIOS = async (): Promise<ProductPurchase[]> =>\n getIosModule().getPendingTransactions();\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<string>}\n */\nexport const getReceiptIOS = async (forceRefresh?: boolean): Promise<string> =>\n getIosModule().requestReceipt(forceRefresh ?? false);\n\n/**\n * Launches a modal to register the redeem offer code in IOS.\n * @returns {Promise<null>}\n */\nexport const presentCodeRedemptionSheetIOS = async (): Promise<null> =>\n getIosModule().presentCodeRedemptionSheet();\n"],"mappings":"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"}
1
+ {"version":3,"names":["Linking","NativeEventEmitter","NativeModules","Platform","ReceiptValidationStatus","IAPErrorCode","InstallSourceAndroid","PurchaseStateAndroid","RNIapIos","RNIapModule","RNIapAmazonModule","isAndroid","OS","isAmazon","isIos","ANDROID_ITEM_TYPE_SUBSCRIPTION","ANDROID_ITEM_TYPE_IAP","IapError","constructor","code","message","getInstallSourceAndroid","GOOGLE_PLAY","AMAZON","androidNativeModule","setAndroidNativeModule","nativeModule","checkNativeAndroidAvailable","Error","E_IAP_NOT_AVAILABLE","getAndroidModule","checkNativeIOSAvailable","getIosModule","getNativeModule","initConnection","endConnection","flushFailedPurchasesCachedAsPendingAndroid","flushFailedPurchasesCachedAsPending","fillProductsAdditionalData","products","user","getUser","currencies","CA","ES","AU","DE","IN","US","JP","GB","IT","BR","FR","currency","userMarketplaceAmazon","forEach","product","getProducts","skus","select","ios","items","getItems","filter","item","includes","productId","type","android","getItemsByType","Promise","resolve","getSubscriptions","subscriptions","getPurchaseHistory","getAvailableItems","getPurchaseHistoryByType","concat","getAvailablePurchases","getAvailableItemsByType","requestPurchase","sku","andDangerouslyFinishTransactionAutomaticallyIOS","obfuscatedAccountIdAndroid","obfuscatedProfileIdAndroid","applicationUsername","isOfferPersonalized","undefined","console","warn","buyProduct","buyItemByType","length","requestSubscription","purchaseTokenAndroid","prorationModeAndroid","subscriptionOffers","reject","map","so","offerToken","requestPurchaseWithQuantityIOS","quantity","buyProductWithQuantityIOS","finishTransaction","purchase","isConsumable","developerPayloadAndroid","transactionId","consumeProduct","purchaseToken","userIdAmazon","isAcknowledgedAndroid","purchaseStateAndroid","PURCHASED","acknowledgePurchase","clearTransactionIOS","clearTransaction","clearProductsIOS","clearProducts","acknowledgePurchaseAndroid","token","developerPayload","deepLinkToSubscriptionsAndroid","openURL","getPackageName","getPromotedProductIOS","promotedProduct","buyPromotedProductIOS","buyPromotedProduct","fetchJsonOrThrow","url","receiptBody","response","fetch","method","headers","Accept","body","JSON","stringify","ok","Object","assign","statusText","statusCode","status","json","requestAgnosticReceiptValidationIos","TEST_RECEIPT","testResponse","requestPurchaseWithOfferIOS","forUser","withOffer","buyProductWithOffer","validateReceiptIos","isTest","validateReceiptAndroid","packageName","productToken","accessToken","isSub","validateReceiptAmazon","developerSecret","userId","receiptId","useSandbox","sandBoxUrl","purchaseUpdatedListener","listener","emitterSubscription","addListener","startListening","purchaseErrorListener","promotedProductListener","getPendingPurchasesIOS","getPendingTransactions","getReceiptIOS","forceRefresh","requestReceipt","presentCodeRedemptionSheetIOS","presentCodeRedemptionSheet"],"sources":["iap.ts"],"sourcesContent":["import {\n EmitterSubscription,\n Linking,\n NativeEventEmitter,\n NativeModules,\n Platform,\n} from 'react-native';\n\nimport type * as Amazon from './types/amazon';\nimport type * as Android from './types/android';\nimport type * as Apple from './types/apple';\nimport {ReceiptValidationStatus} from './types/apple';\nimport type {\n InAppPurchase,\n Product,\n ProductCommon,\n ProductPurchase,\n PurchaseError,\n PurchaseResult,\n RequestPurchase,\n RequestSubscription,\n Subscription,\n SubscriptionPurchase,\n} from './types';\nimport {\n IAPErrorCode,\n InstallSourceAndroid,\n PurchaseStateAndroid,\n} from './types';\n\nconst {RNIapIos, RNIapModule, RNIapAmazonModule} = NativeModules;\nconst isAndroid = Platform.OS === 'android';\nconst isAmazon = isAndroid && !!RNIapAmazonModule;\nconst isIos = Platform.OS === 'ios';\nconst ANDROID_ITEM_TYPE_SUBSCRIPTION = 'subs';\nconst ANDROID_ITEM_TYPE_IAP = 'inapp';\n\nexport class IapError implements PurchaseError {\n constructor(public code?: string, public message?: string) {\n this.code = code;\n this.message = message;\n }\n}\n\nexport const getInstallSourceAndroid = (): InstallSourceAndroid => {\n return RNIapModule\n ? InstallSourceAndroid.GOOGLE_PLAY\n : InstallSourceAndroid.AMAZON;\n};\n\nlet androidNativeModule = RNIapModule;\n\nexport const setAndroidNativeModule = (\n nativeModule: typeof RNIapModule,\n): void => {\n androidNativeModule = nativeModule;\n};\n\nconst checkNativeAndroidAvailable = (): void => {\n if (!RNIapModule && !RNIapAmazonModule) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getAndroidModule = (): typeof RNIapModule | typeof RNIapAmazonModule => {\n checkNativeAndroidAvailable();\n\n return androidNativeModule\n ? androidNativeModule\n : RNIapModule\n ? RNIapModule\n : RNIapAmazonModule;\n};\n\nconst checkNativeIOSAvailable = (): void => {\n if (!RNIapIos) {\n throw new Error(IAPErrorCode.E_IAP_NOT_AVAILABLE);\n }\n};\n\nconst getIosModule = (): typeof RNIapIos => {\n checkNativeIOSAvailable();\n\n return RNIapIos;\n};\n\nconst getNativeModule = ():\n | typeof RNIapModule\n | typeof RNIapAmazonModule\n | typeof RNIapIos => {\n return isAndroid ? getAndroidModule() : getIosModule();\n};\n\n/**\n * Init module for purchase flow. Required on Android. In ios it will check whether user canMakePayment.\n * @returns {Promise<boolean>}\n */\nexport const initConnection = (): Promise<boolean> =>\n getNativeModule().initConnection();\n\n/**\n * End module for purchase flow.\n * @returns {Promise<void>}\n */\nexport const endConnection = (): Promise<void> =>\n getNativeModule().endConnection();\n\n/**\n * Consume all 'ghost' purchases (that is, pending payment that already failed but is still marked as pending in Play Store cache). Android only.\n * @returns {Promise<boolean>}\n */\nexport const flushFailedPurchasesCachedAsPendingAndroid = (): Promise<\n string[]\n> => getAndroidModule().flushFailedPurchasesCachedAsPending();\n\n/**\n * Fill products with additional data\n * @param {Array<ProductCommon>} products Products\n */\nconst fillProductsAdditionalData = async (\n products: Array<ProductCommon>,\n): Promise<Array<ProductCommon>> => {\n // Amazon\n if (RNIapAmazonModule) {\n // On amazon we must get the user marketplace to detect the currency\n const user = await RNIapAmazonModule.getUser();\n\n const currencies = {\n CA: 'CAD',\n ES: 'EUR',\n AU: 'AUD',\n DE: 'EUR',\n IN: 'INR',\n US: 'USD',\n JP: 'JPY',\n GB: 'GBP',\n IT: 'EUR',\n BR: 'BRL',\n FR: 'EUR',\n };\n\n const currency =\n currencies[user.userMarketplaceAmazon as keyof typeof currencies];\n\n // Add currency to products\n products.forEach((product) => {\n if (currency) {\n product.currency = currency;\n }\n });\n }\n\n return products;\n};\n\n/**\n * Get a list of products (consumable and non-consumable items, but not subscriptions)\n * @param {string[]} skus The item skus\n * @returns {Promise<Product[]>}\n */\nexport const getProducts = (skus: string[]): Promise<Array<Product>> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Product) =>\n skus.includes(item.productId) && item.type === 'iap',\n );\n },\n android: async () => {\n const products = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n skus,\n );\n\n return fillProductsAdditionalData(products);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get a list of subscriptions\n * @param {string[]} skus The item skus\n * @returns {Promise<Subscription[]>}\n */\nexport const getSubscriptions = (skus: string[]): Promise<Subscription[]> =>\n (\n Platform.select({\n ios: async () => {\n const items = await getIosModule().getItems(skus);\n\n return items.filter(\n (item: Subscription) =>\n skus.includes(item.productId) && item.type === 'subs',\n );\n },\n android: async () => {\n const subscriptions = await getAndroidModule().getItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n skus,\n );\n\n return fillProductsAdditionalData(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Gets an inventory of purchases made by the user regardless of consumption status\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getPurchaseHistory = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getPurchaseHistoryByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Get all purchases made by the user (either non-consumable, or haven't been consumed yet)\n * @returns {Promise<(InAppPurchase | SubscriptionPurchase)[]>}\n */\nexport const getAvailablePurchases = (): Promise<\n (InAppPurchase | SubscriptionPurchase)[]\n> =>\n (\n Platform.select({\n ios: async () => {\n return getIosModule().getAvailableItems();\n },\n android: async () => {\n if (RNIapAmazonModule) {\n return await RNIapAmazonModule.getAvailableItems();\n }\n\n const products = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_IAP,\n );\n\n const subscriptions = await getAndroidModule().getAvailableItemsByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n );\n\n return products.concat(subscriptions);\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {string[]} [skus] Product Ids to purchase. Note that this is only for Android. iOS only uses a single SKU. If not provided, it'll default to using [sku] for backward-compatibility\n * @param {boolean} [isOfferPersonalized] Defaults to false, Only for Android V5\n * @returns {Promise<InAppPurchase>}\n */\n\nexport const requestPurchase = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n applicationUsername,\n skus, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n}: RequestPurchase): Promise<InAppPurchase> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n return getAndroidModule().buyItemByType(\n ANDROID_ITEM_TYPE_IAP,\n skus?.length ? skus : [sku],\n null,\n -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n [],\n isOfferPersonalized ?? false,\n );\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} [sku] The product's sku/ID\n * @param {string} [applicationUsername] The purchaser's user ID\n * @param {boolean} [andDangerouslyFinishTransactionAutomaticallyIOS] You should set this to false and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.\n * @param {string} [purchaseTokenAndroid] purchaseToken that the user is upgrading or downgrading from (Android).\n * @param {ProrationModesAndroid} [prorationModeAndroid] UNKNOWN_SUBSCRIPTION_UPGRADE_DOWNGRADE_POLICY, IMMEDIATE_WITH_TIME_PRORATION, IMMEDIATE_AND_CHARGE_PRORATED_PRICE, IMMEDIATE_WITHOUT_PRORATION, DEFERRED\n * @param {string} [obfuscatedAccountIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's account in your app.\n * @param {string} [obfuscatedProfileIdAndroid] Specifies an optional obfuscated string that is uniquely associated with the user's profile in your app.\n * @param {SubscriptionOffers[]} [subscriptionOffers] Array of SubscriptionOffers. Every sku must be paired with a corresponding offerToken\n * @returns {Promise<SubscriptionPurchase | null>} Promise resolves to null when using proratioModesAndroid=DEFERRED, and to a SubscriptionPurchase otherwise\n */\nexport const requestSubscription = ({\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS = false,\n purchaseTokenAndroid,\n prorationModeAndroid = -1,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers = undefined, // Android Billing V5\n isOfferPersonalized = undefined, // Android Billing V5\n applicationUsername,\n}: RequestSubscription): Promise<SubscriptionPurchase | null> =>\n (\n Platform.select({\n ios: async () => {\n if (andDangerouslyFinishTransactionAutomaticallyIOS) {\n console.warn(\n 'You are dangerously allowing react-native-iap to finish your transaction automatically. You should set andDangerouslyFinishTransactionAutomatically to false when calling requestPurchase and call finishTransaction manually when you have delivered the purchased goods to the user. It defaults to true to provide backwards compatibility. Will default to false in version 4.0.0.',\n );\n }\n\n return getIosModule().buyProduct(\n sku,\n andDangerouslyFinishTransactionAutomaticallyIOS,\n applicationUsername,\n );\n },\n android: async () => {\n if (isAmazon) {\n return RNIapAmazonModule.buyItemByType(sku);\n } else {\n if (!subscriptionOffers?.length) {\n Promise.reject(\n 'subscriptionOffers are required for Google Play Subscriptions',\n );\n return;\n }\n return RNIapModule.buyItemByType(\n ANDROID_ITEM_TYPE_SUBSCRIPTION,\n subscriptionOffers?.map((so) => so.sku),\n purchaseTokenAndroid,\n prorationModeAndroid,\n obfuscatedAccountIdAndroid,\n obfuscatedProfileIdAndroid,\n subscriptionOffers?.map((so) => so.offerToken),\n isOfferPersonalized ?? false,\n );\n }\n },\n }) || Promise.resolve\n )();\n\n/**\n * Request a purchase for product. This will be received in `PurchaseUpdatedListener`.\n * @param {string} sku The product's sku/ID\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithQuantityIOS = (\n sku: string,\n quantity: number,\n): Promise<InAppPurchase> =>\n getIosModule().buyProductWithQuantityIOS(sku, quantity);\n\n/**\n * Finish Transaction (both platforms)\n * Abstracts Finish Transaction\n * iOS: Tells StoreKit that you have delivered the purchase to the user and StoreKit can now let go of the transaction.\n * Call this after you have persisted the purchased state to your server or local data in your app.\n * `react-native-iap` will continue to deliver the purchase updated events with the successful purchase until you finish the transaction. **Even after the app has relaunched.**\n * Android: it will consume purchase for consumables and acknowledge purchase for non-consumables.\n * @param {object} purchase The purchase that you would like to finish.\n * @param {boolean} isConsumable Checks if purchase is consumable. Has effect on `android`.\n * @param {string} developerPayloadAndroid Android developerPayload.\n * @returns {Promise<string | void> }\n */\nexport const finishTransaction = (\n purchase: InAppPurchase | ProductPurchase,\n isConsumable?: boolean,\n developerPayloadAndroid?: string,\n): Promise<string | void> => {\n return (\n Platform.select({\n ios: async () => {\n return getIosModule().finishTransaction(purchase.transactionId);\n },\n android: async () => {\n if (purchase) {\n if (isConsumable) {\n return getAndroidModule().consumeProduct(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else if (\n purchase.userIdAmazon ||\n (!purchase.isAcknowledgedAndroid &&\n purchase.purchaseStateAndroid === PurchaseStateAndroid.PURCHASED)\n ) {\n return getAndroidModule().acknowledgePurchase(\n purchase.purchaseToken,\n developerPayloadAndroid,\n );\n } else {\n throw new Error('purchase is not suitable to be purchased');\n }\n } else {\n throw new Error('purchase is not assigned');\n }\n },\n }) || Promise.resolve\n )();\n};\n\n/**\n * Clear Transaction (iOS only)\n * Finish remaining transactions. Related to issue #257 and #801\n * link : https://github.com/dooboolab/react-native-iap/issues/257\n * https://github.com/dooboolab/react-native-iap/issues/801\n * @returns {Promise<void>}\n */\nexport const clearTransactionIOS = (): Promise<void> =>\n getIosModule().clearTransaction();\n\n/**\n * Clear valid Products (iOS only)\n * Remove all products which are validated by Apple server.\n * @returns {void}\n */\nexport const clearProductsIOS = (): Promise<void> =>\n getIosModule().clearProducts();\n\n/**\n * Acknowledge a product (on Android.) No-op on iOS.\n * @param {string} token The product's token (on Android)\n * @returns {Promise<PurchaseResult | void>}\n */\nexport const acknowledgePurchaseAndroid = (\n token: string,\n developerPayload?: string,\n): Promise<PurchaseResult | void> => {\n return getAndroidModule().acknowledgePurchase(token, developerPayload);\n};\n\n/**\n * Deep link to subscriptions screen on Android. No-op on iOS.\n * @param {string} sku The product's SKU (on Android)\n * @returns {Promise<void>}\n */\nexport const deepLinkToSubscriptionsAndroid = async (\n sku: string,\n): Promise<void> => {\n checkNativeAndroidAvailable();\n\n return Linking.openURL(\n `https://play.google.com/store/account/subscriptions?package=${await RNIapModule.getPackageName()}&sku=${sku}`,\n );\n};\n\n/**\n * Should Add Store Payment (iOS only)\n * Indicates the the App Store purchase should continue from the app instead of the App Store.\n * @returns {Promise<Product | null>} promoted product\n */\nexport const getPromotedProductIOS = (): Promise<Product | null> =>\n getIosModule().promotedProduct();\n\n/**\n * Buy the currently selected promoted product (iOS only)\n * Initiates the payment process for a promoted product. Should only be called in response to the `iap-promoted-product` event.\n * @returns {Promise<void>}\n */\nexport const buyPromotedProductIOS = (): Promise<void> =>\n getIosModule().buyPromotedProduct();\n\nconst fetchJsonOrThrow = async (\n url: string,\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetch(url, {\n method: 'POST',\n headers: {\n Accept: 'application/json',\n 'Content-Type': 'application/json',\n },\n body: JSON.stringify(receiptBody),\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\nconst requestAgnosticReceiptValidationIos = async (\n receiptBody: Record<string, unknown>,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n const response = await fetchJsonOrThrow(\n 'https://buy.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n // Best practice is to check for test receipt and check sandbox instead\n // https://developer.apple.com/documentation/appstorereceipts/verifyreceipt\n if (response && response.status === ReceiptValidationStatus.TEST_RECEIPT) {\n const testResponse = await fetchJsonOrThrow(\n 'https://sandbox.itunes.apple.com/verifyReceipt',\n receiptBody,\n );\n\n return testResponse;\n }\n\n return response;\n};\n\n/**\n * Buy products or subscriptions with offers (iOS only)\n *\n * Runs the payment process with some info you must fetch\n * from your server.\n * @param {string} sku The product identifier\n * @param {string} forUser An user identifier on you system\n * @param {Apple.PaymentDiscount} withOffer The offer information\n * @param {string} withOffer.identifier The offer identifier\n * @param {string} withOffer.keyIdentifier Key identifier that it uses to generate the signature\n * @param {string} withOffer.nonce An UUID returned from the server\n * @param {string} withOffer.signature The actual signature returned from the server\n * @param {number} withOffer.timestamp The timestamp of the signature\n * @returns {Promise<void>}\n */\nexport const requestPurchaseWithOfferIOS = (\n sku: string,\n forUser: string,\n withOffer: Apple.PaymentDiscount,\n): Promise<void> => getIosModule().buyProductWithOffer(sku, forUser, withOffer);\n\n/**\n * Validate receipt for iOS.\n * @param {object} receiptBody the receipt body to send to apple server.\n * @param {boolean} isTest whether this is in test environment which is sandbox.\n * @returns {Promise<Apple.ReceiptValidationResponse | false>}\n */\nexport const validateReceiptIos = async (\n receiptBody: Record<string, unknown>,\n isTest?: boolean,\n): Promise<Apple.ReceiptValidationResponse | false> => {\n if (isTest == null) {\n return await requestAgnosticReceiptValidationIos(receiptBody);\n }\n\n const url = isTest\n ? 'https://sandbox.itunes.apple.com/verifyReceipt'\n : 'https://buy.itunes.apple.com/verifyReceipt';\n\n const response = await fetchJsonOrThrow(url, receiptBody);\n\n return response;\n};\n\n/**\n * Validate receipt for Android. NOTE: This method is here for debugging purposes only. Including\n * your access token in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} packageName package name of your app.\n * @param {string} productId product id for your in app product.\n * @param {string} productToken token for your purchase.\n * @param {string} accessToken accessToken from googleApis.\n * @param {boolean} isSub whether this is subscription or inapp. `true` for subscription.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAndroid = async (\n packageName: string,\n productId: string,\n productToken: string,\n accessToken: string,\n isSub?: boolean,\n): Promise<Android.ReceiptType> => {\n const type = isSub ? 'subscriptions' : 'products';\n\n const url =\n 'https://androidpublisher.googleapis.com/androidpublisher/v3/applications' +\n `/${packageName}/purchases/${type}/${productId}` +\n `/tokens/${productToken}?access_token=${accessToken}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Validate receipt for Amazon. NOTE: This method is here for debugging purposes only. Including\n * your developer secret in the binary you ship to users is potentially dangerous.\n * Use server side validation instead for your production builds\n * @param {string} developerSecret: from the Amazon developer console.\n * @param {string} userId who purchased the item.\n * @param {string} receiptId long obfuscated string returned when purchasing the item\n * @param {boolean} useSandbox Defaults to true, use sandbox environment or production.\n * @returns {Promise<object>}\n */\nexport const validateReceiptAmazon = async (\n developerSecret: string,\n userId: string,\n receiptId: string,\n useSandbox: boolean = true,\n): Promise<Amazon.ReceiptType> => {\n const sandBoxUrl = useSandbox ? 'sandbox/' : '';\n const url = `https://appstore-sdk.amazon.com/${sandBoxUrl}version/1.0/verifyReceiptId/developer/${developerSecret}/user/${userId}/receiptId/${receiptId}`;\n\n const response = await fetch(url, {\n method: 'GET',\n headers: {\n 'Content-Type': 'application/json',\n },\n });\n\n if (!response.ok) {\n throw Object.assign(new Error(response.statusText), {\n statusCode: response.status,\n });\n }\n\n return response.json();\n};\n\n/**\n * Add IAP purchase event\n * @returns {callback(e: InAppPurchase | ProductPurchase)}\n */\nexport const purchaseUpdatedListener = (\n listener: (event: InAppPurchase | SubscriptionPurchase) => void,\n): EmitterSubscription => {\n const emitterSubscription = new NativeEventEmitter(\n getNativeModule(),\n ).addListener('purchase-updated', listener);\n\n if (isAndroid) {\n getAndroidModule().startListening();\n }\n\n return emitterSubscription;\n};\n\n/**\n * Add IAP purchase error event\n * @returns {callback(e: PurchaseError)}\n */\nexport const purchaseErrorListener = (\n listener: (errorEvent: PurchaseError) => void,\n): EmitterSubscription =>\n new NativeEventEmitter(getNativeModule()).addListener(\n 'purchase-error',\n listener,\n );\n\n/**\n * Add IAP promoted subscription event\n * Only available on iOS\n */\nexport const promotedProductListener = (\n listener: (productId?: string) => void,\n): EmitterSubscription | null => {\n if (isIos) {\n return new NativeEventEmitter(getIosModule()).addListener(\n 'iap-promoted-product',\n listener,\n );\n }\n return null;\n};\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<ProductPurchase[]>}\n */\nexport const getPendingPurchasesIOS = async (): Promise<ProductPurchase[]> =>\n getIosModule().getPendingTransactions();\n\n/**\n * Get the current receipt base64 encoded in IOS.\n * @param {forceRefresh?:boolean}\n * @returns {Promise<string>}\n */\nexport const getReceiptIOS = async (forceRefresh?: boolean): Promise<string> =>\n getIosModule().requestReceipt(forceRefresh ?? false);\n\n/**\n * Launches a modal to register the redeem offer code in IOS.\n * @returns {Promise<null>}\n */\nexport const presentCodeRedemptionSheetIOS = async (): Promise<null> =>\n getIosModule().presentCodeRedemptionSheet();\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-iap",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "React Native In App Purchase Module.",
5
5
  "repository": "https://github.com/dooboolab/react-native-iap",
6
6
  "author": "dooboolab <support@dooboolab.com> (https://github.com/dooboolab)",
@@ -44,10 +44,11 @@
44
44
  "lib",
45
45
  "android",
46
46
  "ios",
47
- "cpp",
48
47
  "RNIap.podspec",
49
- "!lib/typescript/example",
48
+ "!android/.gradle",
49
+ "!android/.idea",
50
50
  "!android/build",
51
+ "!android/src/testPlay",
51
52
  "!ios/build",
52
53
  "!**/__tests__",
53
54
  "!**/__fixtures__",
package/src/iap.ts CHANGED
@@ -311,7 +311,7 @@ export const requestPurchase = ({
311
311
  -1,
312
312
  obfuscatedAccountIdAndroid,
313
313
  obfuscatedProfileIdAndroid,
314
- undefined,
314
+ [],
315
315
  isOfferPersonalized ?? false,
316
316
  );
317
317
  },
@@ -1,295 +0,0 @@
1
- package com.dooboolab.RNIap
2
-
3
- import com.android.billingclient.api.BillingClient
4
- import com.android.billingclient.api.BillingClientStateListener
5
- import com.android.billingclient.api.BillingResult
6
- import com.android.billingclient.api.ConsumeResponseListener
7
- import com.android.billingclient.api.ProductDetailsResponseListener
8
- import com.android.billingclient.api.Purchase
9
- import com.android.billingclient.api.PurchasesResponseListener
10
- import com.android.billingclient.api.QueryPurchasesParams
11
- import com.facebook.react.bridge.Arguments
12
- import com.facebook.react.bridge.Promise
13
- import com.facebook.react.bridge.ReactApplicationContext
14
- import com.facebook.react.bridge.ReadableArray
15
- import com.facebook.react.bridge.ReadableType
16
- import com.facebook.react.bridge.WritableArray
17
- import com.facebook.react.bridge.WritableMap
18
- import com.google.android.gms.common.ConnectionResult
19
- import com.google.android.gms.common.GoogleApiAvailability
20
- import io.mockk.MockKAnnotations
21
- import io.mockk.every
22
- import io.mockk.impl.annotations.MockK
23
- import io.mockk.just
24
- import io.mockk.mockk
25
- import io.mockk.mockkStatic
26
- import io.mockk.runs
27
- import io.mockk.slot
28
- import io.mockk.verify
29
- import org.junit.Assert.assertEquals
30
- import org.junit.Assert.assertTrue
31
- import org.junit.Before
32
- import org.junit.Test
33
-
34
- class RNIapModuleTest {
35
-
36
- @MockK
37
- lateinit var context: ReactApplicationContext
38
-
39
- @MockK
40
- lateinit var builder: BillingClient.Builder
41
-
42
- @MockK
43
- lateinit var billingClient: BillingClient
44
-
45
- @MockK
46
- lateinit var availability: GoogleApiAvailability
47
-
48
- private lateinit var module: RNIapModule
49
-
50
- @Before
51
- fun setUp() {
52
- MockKAnnotations.init(this, relaxUnitFun = true)
53
- every { builder.setListener(any()) } returns builder
54
- every { builder.build() } returns billingClient
55
- module = RNIapModule(context, builder, availability)
56
- }
57
-
58
- @Test
59
- fun `initConnection Already connected should resolve to true`() {
60
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
61
- module.initConnection(mockk())
62
-
63
- every { billingClient.isReady } returns true
64
-
65
- val promise = mockk<Promise>(relaxed = true)
66
- // Already connected
67
- module.initConnection(promise)
68
- verify(exactly = 0) { promise.reject(any(), any<String>()) }
69
- verify { promise.resolve(true) }
70
- }
71
-
72
- @Test
73
- fun `initConnection Play Services not available on device should reject`() {
74
- every { billingClient.isReady } returns false
75
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.DEVELOPER_ERROR
76
- val promise = mockk<Promise>(relaxed = true)
77
-
78
- module.initConnection(promise)
79
- verify { promise.safeReject(any(), any<String>()) }
80
- verify(exactly = 0) { promise.resolve(any()) }
81
- }
82
-
83
- @Test
84
- fun `initConnection start new connection succeeds`() {
85
- every { billingClient.isReady } returns false
86
- val listener = slot<BillingClientStateListener>()
87
- every { billingClient.startConnection(capture(listener)) } answers {
88
- listener.captured.onBillingSetupFinished(
89
- BillingResult.newBuilder().setResponseCode(BillingClient.BillingResponseCode.OK)
90
- .build()
91
- )
92
- }
93
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
94
- val promise = mockk<Promise>(relaxed = true)
95
-
96
- module.initConnection(promise)
97
- verify(exactly = 0) { promise.reject(any(), any<String>()) }
98
- verify { promise.resolve(any()) }
99
- }
100
-
101
- @Test
102
- fun `initConnection start new connection fails`() {
103
- every { billingClient.isReady } returns false
104
- val listener = slot<BillingClientStateListener>()
105
- every { billingClient.startConnection(capture(listener)) } answers {
106
- listener.captured.onBillingSetupFinished(
107
- BillingResult.newBuilder().setResponseCode(BillingClient.BillingResponseCode.ERROR)
108
- .build()
109
- )
110
- }
111
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
112
- val promise = mockk<Promise>(relaxed = true)
113
-
114
- module.initConnection(promise)
115
- verify { promise.safeReject(any(), any<String>()) }
116
- verify(exactly = 0) { promise.resolve(any()) }
117
- }
118
-
119
- @Test
120
- fun `endConnection resolves`() {
121
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
122
- val promise = mockk<Promise>(relaxed = true)
123
-
124
- module.initConnection(mockk())
125
- module.endConnection(promise)
126
-
127
- verify { billingClient.endConnection() }
128
- verify(exactly = 0) { promise.reject(any(), any<String>()) }
129
- verify { promise.resolve(true) }
130
- }
131
-
132
- @Test
133
- fun `flushFailedPurchasesCachedAsPending resolves to false if no pending purchases`() {
134
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
135
- every { billingClient.isReady } returns true
136
- val promise = mockk<Promise>(relaxed = true)
137
- val listener = slot<PurchasesResponseListener>()
138
- every { billingClient.queryPurchasesAsync(any<QueryPurchasesParams>(), capture(listener)) } answers {
139
- listener.captured.onQueryPurchasesResponse(BillingResult.newBuilder().build(), listOf())
140
- }
141
- module.initConnection(mockk())
142
- module.flushFailedPurchasesCachedAsPending(promise)
143
-
144
- verify(exactly = 0) { promise.reject(any(), any<String>()) }
145
- verify { promise.resolve(false) } // empty list
146
- }
147
-
148
- @Test
149
- fun `flushFailedPurchasesCachedAsPending resolves to true if pending purchases`() {
150
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
151
- every { billingClient.isReady } returns true
152
- val promise = mockk<Promise>(relaxed = true)
153
- val listener = slot<PurchasesResponseListener>()
154
- every { billingClient.queryPurchasesAsync(any<QueryPurchasesParams>(), capture(listener)) } answers {
155
- listener.captured.onQueryPurchasesResponse(
156
- BillingResult.newBuilder().build(),
157
- listOf(
158
- // 4 = Pending
159
- mockk<Purchase> {
160
- every { purchaseState } returns 2
161
- every { purchaseToken } returns "token"
162
- },
163
- Purchase("", "1")
164
- )
165
- )
166
- }
167
- val consumeListener = slot<ConsumeResponseListener>()
168
- every { billingClient.consumeAsync(any(), capture(consumeListener)) } answers {
169
- consumeListener.captured.onConsumeResponse(
170
- BillingResult.newBuilder()
171
- .setResponseCode(BillingClient.BillingResponseCode.ITEM_NOT_OWNED).build(),
172
- ""
173
- )
174
- }
175
- module.initConnection(mockk())
176
- module.flushFailedPurchasesCachedAsPending(promise)
177
-
178
- verify(exactly = 0) { promise.reject(any(), any<String>()) }
179
- verify { promise.resolve(true) } // at least one pending transactions
180
- }
181
-
182
- @Test
183
- fun `ensureConnection should attempt to reconnect, if not in ready state`() {
184
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
185
- val promise = mockk<Promise>(relaxed = true)
186
- var isCallbackCalled = false
187
- val callback = { _: BillingClient ->
188
- isCallbackCalled = true
189
- promise.resolve(true)
190
- }
191
-
192
- every { billingClient.isReady } returns true
193
- val listener = slot<BillingClientStateListener>()
194
- every { billingClient.startConnection(capture(listener)) } answers {
195
- listener.captured.onBillingSetupFinished(
196
- BillingResult.newBuilder().setResponseCode(BillingClient.BillingResponseCode.OK)
197
- .build()
198
- )
199
- }
200
-
201
- module.ensureConnection(promise, callback)
202
- verify { promise.resolve(true) } // at least one pending transactions
203
- assertTrue("Should call callback", isCallbackCalled)
204
- }
205
-
206
- @Test
207
- fun getItemsByType() {
208
- every { availability.isGooglePlayServicesAvailable(any()) } returns ConnectionResult.SUCCESS
209
- every { billingClient.isReady } returns true
210
- val promise = mockk<Promise>(relaxed = true)
211
- val listener = slot<ProductDetailsResponseListener>()
212
- every { billingClient.queryProductDetailsAsync(any(), capture(listener)) } answers {
213
- listener.captured.onProductDetailsResponse(
214
- BillingResult.newBuilder().build(),
215
- listOf(
216
- mockk {
217
- every { productId } returns "sku1"
218
-
219
- every { title } returns "title2"
220
- every { description } returns "My product"
221
-
222
- every { productType } returns "sub"
223
- every { name } returns "name of product"
224
- every { oneTimePurchaseOfferDetails } returns mockk {
225
- every { priceCurrencyCode} returns "my code"
226
- every {formattedPrice} returns "$20.00"
227
- every { priceAmountMicros } returns 20000
228
-
229
- }
230
- every { subscriptionOfferDetails } returns listOf( mockk {
231
- every { offerToken } returns "sToken"
232
- every { offerTags } returns listOf("offerTag1","offerTag2")
233
- every { pricingPhases} returns mockk{
234
- every { pricingPhaseList } returns listOf(mockk{
235
- every { formattedPrice } returns "$13.0"
236
- every { priceCurrencyCode } returns "USD"
237
- every { billingPeriod } returns "1 week"
238
- every { billingCycleCount } returns 1
239
- every { priceAmountMicros } returns 13000
240
- every { recurrenceMode } returns 2
241
- })
242
- }
243
- })
244
- }
245
- )
246
- )
247
- }
248
- val skus = mockk<ReadableArray>() {
249
- every { size() } returns 1
250
- every { getString(0) } returns "sku0"
251
- every { getType(0) } returns ReadableType.String
252
- }
253
- mockkStatic(Arguments::class)
254
-
255
- val itemsMap = mockk<WritableMap>(relaxed = true)
256
- var itemsSize = 0
257
- val itemsArr = mockk<WritableArray>{
258
- every { pushString(any()) } just runs
259
- every { pushMap(any()) } answers {
260
- itemsSize++
261
- }
262
- }
263
- every { Arguments.createMap() } returns itemsMap
264
- every { Arguments.createArray() } returns itemsArr
265
-
266
- module.initConnection(mockk())
267
- module.getItemsByType("subs", skus, promise)
268
- verify { promise.resolve(any()) }
269
- assertEquals(3, itemsSize)
270
- }
271
-
272
- @Test
273
- fun getAvailableItemsByType() {
274
- }
275
-
276
- @Test
277
- fun getPurchaseHistoryByType() {
278
- }
279
-
280
- @Test
281
- fun buyItemByType() {
282
- }
283
-
284
- @Test
285
- fun acknowledgePurchase() {
286
- }
287
-
288
- @Test
289
- fun consumeProduct() {
290
- }
291
-
292
- @Test
293
- fun onPurchasesUpdated() {
294
- }
295
- }
@@ -1,21 +0,0 @@
1
- "use strict";
2
-
3
- var _reactNative = require("react-native");
4
-
5
- var _iap = require("../iap");
6
-
7
- const rnLib = '../../node_modules/react-native/Libraries';
8
- describe('Google Play IAP', () => {
9
- beforeEach(() => {
10
- jest.mock(rnLib + '/Utilities/Platform', () => ({
11
- OS: 'android',
12
- select: dict => dict.android
13
- }));
14
- });
15
- it("should call init on Google Play's native module but not on Amazon's", async () => {
16
- await (0, _iap.initConnection)();
17
- expect(_reactNative.NativeModules.RNIapModule.initConnection).toBeCalled();
18
- expect(_reactNative.NativeModules.RNIapAmazonModule.initConnection).not.toBeCalled();
19
- });
20
- });
21
- //# sourceMappingURL=iap.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["rnLib","describe","beforeEach","jest","mock","OS","select","dict","android","it","initConnection","expect","NativeModules","RNIapModule","toBeCalled","RNIapAmazonModule","not"],"sources":["iap.test.ts"],"sourcesContent":["import {NativeModules} from 'react-native';\n\nimport {initConnection} from '../iap';\n\nconst rnLib = '../../node_modules/react-native/Libraries';\n\ndescribe('Google Play IAP', () => {\n beforeEach(() => {\n jest.mock(rnLib + '/Utilities/Platform', () => ({\n OS: 'android',\n select: (dict: {[x: string]: any}) => dict.android,\n }));\n });\n\n it(\"should call init on Google Play's native module but not on Amazon's\", async () => {\n await initConnection();\n expect(NativeModules.RNIapModule.initConnection).toBeCalled();\n expect(NativeModules.RNIapAmazonModule.initConnection).not.toBeCalled();\n });\n});\n"],"mappings":";;AAAA;;AAEA;;AAEA,MAAMA,KAAK,GAAG,2CAAd;AAEAC,QAAQ,CAAC,iBAAD,EAAoB,MAAM;EAChCC,UAAU,CAAC,MAAM;IACfC,IAAI,CAACC,IAAL,CAAUJ,KAAK,GAAG,qBAAlB,EAAyC,OAAO;MAC9CK,EAAE,EAAE,SAD0C;MAE9CC,MAAM,EAAGC,IAAD,IAA8BA,IAAI,CAACC;IAFG,CAAP,CAAzC;EAID,CALS,CAAV;EAOAC,EAAE,CAAC,qEAAD,EAAwE,YAAY;IACpF,MAAM,IAAAC,mBAAA,GAAN;IACAC,MAAM,CAACC,0BAAA,CAAcC,WAAd,CAA0BH,cAA3B,CAAN,CAAiDI,UAAjD;IACAH,MAAM,CAACC,0BAAA,CAAcG,iBAAd,CAAgCL,cAAjC,CAAN,CAAuDM,GAAvD,CAA2DF,UAA3D;EACD,CAJC,CAAF;AAKD,CAbO,CAAR"}
@@ -1,17 +0,0 @@
1
- import { NativeModules } from 'react-native';
2
- import { initConnection } from '../iap';
3
- const rnLib = '../../node_modules/react-native/Libraries';
4
- describe('Google Play IAP', () => {
5
- beforeEach(() => {
6
- jest.mock(rnLib + '/Utilities/Platform', () => ({
7
- OS: 'android',
8
- select: dict => dict.android
9
- }));
10
- });
11
- it("should call init on Google Play's native module but not on Amazon's", async () => {
12
- await initConnection();
13
- expect(NativeModules.RNIapModule.initConnection).toBeCalled();
14
- expect(NativeModules.RNIapAmazonModule.initConnection).not.toBeCalled();
15
- });
16
- });
17
- //# sourceMappingURL=iap.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["NativeModules","initConnection","rnLib","describe","beforeEach","jest","mock","OS","select","dict","android","it","expect","RNIapModule","toBeCalled","RNIapAmazonModule","not"],"sources":["iap.test.ts"],"sourcesContent":["import {NativeModules} from 'react-native';\n\nimport {initConnection} from '../iap';\n\nconst rnLib = '../../node_modules/react-native/Libraries';\n\ndescribe('Google Play IAP', () => {\n beforeEach(() => {\n jest.mock(rnLib + '/Utilities/Platform', () => ({\n OS: 'android',\n select: (dict: {[x: string]: any}) => dict.android,\n }));\n });\n\n it(\"should call init on Google Play's native module but not on Amazon's\", async () => {\n await initConnection();\n expect(NativeModules.RNIapModule.initConnection).toBeCalled();\n expect(NativeModules.RNIapAmazonModule.initConnection).not.toBeCalled();\n });\n});\n"],"mappings":"AAAA,SAAQA,aAAR,QAA4B,cAA5B;AAEA,SAAQC,cAAR,QAA6B,QAA7B;AAEA,MAAMC,KAAK,GAAG,2CAAd;AAEAC,QAAQ,CAAC,iBAAD,EAAoB,MAAM;EAChCC,UAAU,CAAC,MAAM;IACfC,IAAI,CAACC,IAAL,CAAUJ,KAAK,GAAG,qBAAlB,EAAyC,OAAO;MAC9CK,EAAE,EAAE,SAD0C;MAE9CC,MAAM,EAAGC,IAAD,IAA8BA,IAAI,CAACC;IAFG,CAAP,CAAzC;EAID,CALS,CAAV;EAOAC,EAAE,CAAC,qEAAD,EAAwE,YAAY;IACpF,MAAMV,cAAc,EAApB;IACAW,MAAM,CAACZ,aAAa,CAACa,WAAd,CAA0BZ,cAA3B,CAAN,CAAiDa,UAAjD;IACAF,MAAM,CAACZ,aAAa,CAACe,iBAAd,CAAgCd,cAAjC,CAAN,CAAuDe,GAAvD,CAA2DF,UAA3D;EACD,CAJC,CAAF;AAKD,CAbO,CAAR"}
@@ -1 +0,0 @@
1
- export {};
@@ -1,20 +0,0 @@
1
- import {NativeModules} from 'react-native';
2
-
3
- import {initConnection} from '../iap';
4
-
5
- const rnLib = '../../node_modules/react-native/Libraries';
6
-
7
- describe('Google Play IAP', () => {
8
- beforeEach(() => {
9
- jest.mock(rnLib + '/Utilities/Platform', () => ({
10
- OS: 'android',
11
- select: (dict: {[x: string]: any}) => dict.android,
12
- }));
13
- });
14
-
15
- it("should call init on Google Play's native module but not on Amazon's", async () => {
16
- await initConnection();
17
- expect(NativeModules.RNIapModule.initConnection).toBeCalled();
18
- expect(NativeModules.RNIapAmazonModule.initConnection).not.toBeCalled();
19
- });
20
- });