npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

native-purchases

v0.0.1

Published

In-app Subscriptions Made Easy

Downloads

7

Readme

native-purchases

In-app Subscriptions Made Easy

Install

npm install native-purchases
npx cap sync

API

restorePurchases()

restorePurchases() => any

Restores a user's previous and links their appUserIDs to any user's also using those .

Returns: any


purchaseProduct(...)

purchaseProduct(options: { productIdentifier: string; quantity: number; }) => any

| Param | Type | | ------------- | ------------------------------------------------------------- | | options | { productIdentifier: string; quantity: number; } |

Returns: any


getProducts(...)

getProducts(options: { productIdentifiers: string[]; }) => any

| Param | Type | | ------------- | ---------------------------------------- | | options | { productIdentifiers: {}; } |

Returns: any


Interfaces

CustomerInfo

| Prop | Type | Description | | ------------------------------------ | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | activeSubscriptions | [string] | Set of active subscription skus | | allPurchasedProductIdentifiers | [string] | Set of purchased skus, active and inactive | | nonSubscriptionTransactions | {} | Returns all the non-subscription a user has made. The are ordered by purchase date in ascending order. | | latestExpirationDate | string | null | The latest expiration date of all purchased skus | | firstSeen | string | The date this user was first seen in RevenueCat. | | originalAppUserId | string | The original App User Id recorded for this user. | | requestDate | string | Date when this info was requested | | originalApplicationVersion | string | null | Returns the version number for the version of the application when the user bought the app. Use this for grandfathering users when migrating to subscriptions. This corresponds to the value of CFBundleVersion (in iOS) in the Info.plist file when the purchase was originally made. This is always null in Android | | originalPurchaseDate | string | null | Returns the purchase date for the version of the application when the user bought the app. Use this for grandfathering users when migrating to subscriptions. | | managementURL | string | null | URL to manage the active subscription of the user. If this user has an active iOS subscription, this will point to the App Store, if the user has an active Play Store subscription it will point there. If there are no active subscriptions it will be null. If there are multiple for different platforms, it will point to the device store. |

Transaction

| Prop | Type | Description | | --------------------------- | ------------------- | ------------------------------------------------------------------ | | transactionIdentifier | string | RevenueCat Id associated to the transaction. | | productIdentifier | string | Product Id associated with the transaction. | | purchaseDate | string | Purchase date of the transaction in ISO 8601 format. |

Product

| Prop | Type | Description | | --------------------------------- | ----------------------------------------------------------------------- | ------------------------------------------------------------------------ | | identifier | string | Product Id. | | description | string | Description of the product. | | title | string | Title of the product. | | price | number | Price of the product in the local currency. | | priceString | string | Formatted price of the item, including its currency sign, such as €3.99. | | currencyCode | string | Currency code for price and original price. | | currencySymbol | string | Currency symbol for price and original price. | | isFamilyShareable | boolean | Boolean indicating if the product is sharable with family | | subscriptionGroupIdentifier | string | Group identifier for the product. | | subscriptionPeriod | SubscriptionPeriod | The Product subcription group identifier. | | introductoryPrice | SKProductDiscount | null | The Product introductory Price. | | discounts | {} | The Product discounts list. |

SubscriptionPeriod

| Prop | Type | Description | | ------------------- | ------------------- | --------------------------------------- | | numberOfUnits | number | The Subscription Period number of unit. | | unit | number | The Subscription Period unit. |

SKProductDiscount

| Prop | Type | Description | | ------------------------ | ----------------------------------------------------------------- | ------------------------------------------------------------------------ | | identifier | string | The Product discount identifier. | | type | number | The Product discount type. | | price | number | The Product discount price. | | priceString | string | Formatted price of the item, including its currency sign, such as €3.99. | | currencySymbol | string | The Product discount currency symbol. | | currencyCode | string | The Product discount currency code. | | paymentMode | number | The Product discount paymentMode. | | numberOfPeriods | number | The Product discount number Of Periods. | | subscriptionPeriod | SubscriptionPeriod | The Product discount subscription period. |