Types
The react-native-iap type surface is now generated in one place: src/types.ts. The file is produced by our GraphQL schema and represents the canonical source for all product, purchase, subscription, and request shapes. After updating any schema definitions, run bun run generate:types to refresh the file.
Key runtime helpers that build on these types live alongside them:
src/types.ts– auto-generated enums and interfacessrc/utils/errorMapping.ts– typed error helpers (createPurchaseError,ErrorCodeUtils)src/helpers/subscription.ts– subscription utilities that re-exportActiveSubscription
Below is a curated overview of the most commonly used types. Consult src/types.ts for the full schema.
Core Type Aliases
export type IapPlatform = 'android' | 'ios';
export type ProductType = 'in-app' | 'subs';
export type PurchaseState =
| 'deferred'
| 'failed'
| 'pending'
| 'purchased'
| 'restored'
| 'unknown';
For ErrorCode enum and error handling utilities, see Error Handling.
Product Types
All products share the generated ProductCommon interface. Platform extensions discriminate on the platform field via the IapPlatform string union.
export interface ProductCommon {
id: string;
title: string;
description: string;
type: ProductType;
displayName?: string | null;
displayPrice: string;
currency: string;
price?: number | null;
platform: IapPlatform;
}
export interface ProductAndroid extends ProductCommon {
nameAndroid: string;
oneTimePurchaseOfferDetailsAndroid?: ProductAndroidOneTimePurchaseOfferDetail[] | null;
subscriptionOfferDetailsAndroid?:
| ProductSubscriptionAndroidOfferDetails[]
| null;
}
export interface ProductIOS extends ProductCommon {
displayNameIOS: string;
isFamilyShareableIOS: boolean;
jsonRepresentationIOS: string;
typeIOS: ProductTypeIOS;
subscriptionInfoIOS?: SubscriptionInfoIOS | null;
}
export type Product = ProductAndroid | ProductIOS;
export type ProductSubscription =
| ProductSubscriptionAndroid
| ProductSubscriptionIOS;
The subscriptionOfferDetailsAndroid contains basePlanId, but this field has limitations when retrieving purchases. See Android basePlanId Limitation for details and workarounds.
Android One-Time Purchase Offer Details (v14.6.0+)
Starting from v14.6.0, oneTimePurchaseOfferDetailsAndroid is now an array to support Google Play's one-time product discounts (Billing Library 7.0+).
export interface ProductAndroidOneTimePurchaseOfferDetail {
formattedPrice: string;
priceAmountMicros: string;
priceCurrencyCode: string;
offerId?: string | null;
offerToken: string;
offerTags: string[];
// Discount fields (Billing Library 7.0+)
fullPriceMicros?: string | null;
discountDisplayInfo?: DiscountDisplayInfoAndroid | null;
limitedQuantityInfo?: LimitedQuantityInfoAndroid | null;
validTimeWindow?: ValidTimeWindowAndroid | null;
// Product-specific details
preorderDetailsAndroid?: PreorderDetailsAndroid | null;
rentalDetailsAndroid?: RentalDetailsAndroid | null;
}
export interface DiscountDisplayInfoAndroid {
percentageDiscount?: number | null;
discountAmount?: DiscountAmountAndroid | null;
}
export interface DiscountAmountAndroid {
discountAmountMicros: string;
formattedDiscountAmount: string;
}
export interface LimitedQuantityInfoAndroid {
maximumQuantity: number;
remainingQuantity: number;
}
export interface ValidTimeWindowAndroid {
startTimeMillis: string;
endTimeMillis: string;
}
export interface PreorderDetailsAndroid {
preorderReleaseTimeMillis: string;
preorderPresaleEndTimeMillis: string;
}
export interface RentalDetailsAndroid {
rentalPeriod: string;
rentalExpirationPeriod?: string | null;
}
Purchase Types
Purchases share the PurchaseCommon shape and discriminate on the same platform union. Both variants expose the unified purchaseToken field for server validation.
export interface PurchaseCommon {
id: string;
productId: string;
platform: IapPlatform;
purchaseState: PurchaseState;
transactionDate: number;
quantity: number;
isAutoRenewing: boolean;
purchaseToken?: string | null;
ids?: string[] | null;
}
export interface PurchaseAndroid extends PurchaseCommon {
autoRenewingAndroid?: boolean | null;
packageNameAndroid?: string | null;
signatureAndroid?: string | null;
dataAndroid?: string | null;
isSuspendedAndroid?: boolean | null; // v14.6.0+ (Billing Library 8.1.0+)
}
export interface PurchaseIOS extends PurchaseCommon {
appAccountToken?: string | null;
environmentIOS?: string | null;
expirationDateIOS?: number | null;
originalTransactionIdentifierIOS?: string | null;
offerIOS?: PurchaseOfferIOS | null;
}
export type Purchase = PurchaseAndroid | PurchaseIOS;
Active Subscriptions
ActiveSubscription is now part of the generated schema and shared across helpers.
export interface ActiveSubscription {
productId: string;
isActive: boolean;
transactionId: string;
transactionDate: number;
purchaseToken?: string | null;
autoRenewingAndroid?: boolean | null;
environmentIOS?: string | null;
expirationDateIOS?: number | null;
daysUntilExpirationIOS?: number | null;
willExpireSoon?: boolean | null;
}
The helper getActiveSubscriptions in src/helpers/subscription.ts converts Purchase records into this shape and re-exports the type for convenience.
Request Parameters
The request types have been harmonised to match the schema definitions.
export interface RequestPurchasePropsByPlatforms {
/** Apple-specific purchase parameters */
apple?: RequestPurchaseIosProps | null;
/** Google-specific purchase parameters */
google?: RequestPurchaseAndroidProps | null;
/** @deprecated Use apple instead */
ios?: RequestPurchaseIosProps | null;
/** @deprecated Use google instead */
android?: RequestPurchaseAndroidProps | null;
}
export interface RequestSubscriptionPropsByPlatforms {
/** Apple-specific subscription parameters */
apple?: RequestSubscriptionIosProps | null;
/** Google-specific subscription parameters */
google?: RequestSubscriptionAndroidProps | null;
/** @deprecated Use apple instead */
ios?: RequestSubscriptionIosProps | null;
/** @deprecated Use google instead */
android?: RequestSubscriptionAndroidProps | null;
}
export type MutationRequestPurchaseArgs =
| {
request: RequestPurchasePropsByPlatforms;
type: 'in-app';
}
| {
request: RequestSubscriptionPropsByPlatforms;
type: 'subs';
};
Billing Programs Types (v14.6.0+)
New in v14.6.0, the Billing Programs API provides types for Google Play's external billing programs (Billing Library 8.2.0+).
export type BillingProgramAndroid =
| 'unspecified'
| 'external-content-link'
| 'external-offer';
export type ExternalLinkLaunchModeAndroid =
| 'unspecified'
| 'launch-in-external-browser-or-app'
| 'caller-will-launch-link';
export type ExternalLinkTypeAndroid =
| 'unspecified'
| 'link-to-digital-content-offer'
| 'link-to-app-download';
export interface LaunchExternalLinkParamsAndroid {
billingProgram: BillingProgramAndroid;
launchMode: ExternalLinkLaunchModeAndroid;
linkType: ExternalLinkTypeAndroid;
linkUri: string;
}
export interface BillingProgramAvailabilityResultAndroid {
billingProgram: BillingProgramAndroid;
isAvailable: boolean;
}
export interface BillingProgramReportingDetailsAndroid {
billingProgram: BillingProgramAndroid;
externalTransactionToken: string;
}
Purchase Verification
Purchase verification uses platform-specific options and returns platform-specific results.
VerifyPurchaseProps
The main parameter type for verifyPurchase (and deprecated validateReceipt):
export interface VerifyPurchaseProps {
/** Apple App Store verification parameters */
apple?: VerifyPurchaseAppleOptions | null;
/** Google Play Store verification parameters */
google?: VerifyPurchaseGoogleOptions | null;
/** Meta Horizon (Quest) verification parameters */
horizon?: VerifyPurchaseHorizonOptions | null;
}
Platform-specific Options
// Apple App Store (iOS)
export interface VerifyPurchaseAppleOptions {
/** Product SKU to validate */
sku: string;
}
// Google Play Store (Android)
export interface VerifyPurchaseGoogleOptions {
/** Product SKU to validate */
sku: string;
/** Google OAuth2 access token for API authentication */
accessToken: string;
/** Android package name (e.g., com.example.app) */
packageName: string;
/** Purchase token from the purchase response */
purchaseToken: string;
/** Whether this is a subscription purchase */
isSub?: boolean | null;
}
// Meta Horizon (Quest)
export interface VerifyPurchaseHorizonOptions {
/** SKU for the add-on item */
sku: string;
/** Access token for Meta API authentication */
accessToken: string;
/** User ID to verify purchase for */
userId: string;
}
Verification Results
export type VerifyPurchaseResult =
| VerifyPurchaseResultAndroid
| VerifyPurchaseResultIOS
| VerifyPurchaseResultHorizon;
// Android result
export interface VerifyPurchaseResultAndroid {
autoRenewing: boolean;
betaProduct: boolean;
cancelDate?: number | null;
cancelReason?: string | null;
deferredDate?: number | null;
deferredSku?: string | null;
freeTrialEndDate: number;
gracePeriodEndDate: number;
parentProductId: string;
productId: string;
productType: string;
purchaseDate: number;
quantity: number;
receiptId: string;
renewalDate: number;
term: string;
termSku: string;
testTransaction: boolean;
}
// iOS result
export interface VerifyPurchaseResultIOS {
isValid: boolean;
receiptData: string;
jwsRepresentation: string;
latestTransaction?: Purchase | null;
}
// Horizon result
export interface VerifyPurchaseResultHorizon {
isEntitled: boolean;
grantTime?: number | null;
}
Use the higher-level verifyPurchase helper exported from src/index.ts for a strongly typed wrapper around the native modules.
Where to Find Everything
- For the exhaustive list of enums and interfaces, open
src/types.ts. - For error handling utilities (
createPurchaseError,ErrorCodeUtils), seesrc/utils/errorMapping.ts. - All generated types are re-exported from the package root so consumers can import from
react-native-iapdirectly:
import type {
Product,
Purchase,
ActiveSubscription,
RequestPurchaseProps,
} from 'react-native-iap';
If you need to regenerate types place new schema definitions under the GraphQL inputs and rerun the generator. EOF
