We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab44494 commit 6947393Copy full SHA for 6947393
2 files changed
index.d.ts
@@ -104,7 +104,7 @@ declare module "react-native-appsflyer" {
104
105
export enum AFPurchaseType {
106
SUBSCRIPTION = "subscription",
107
- ONE_TIME_PURCHASE = "one-time-purchase"
+ ONE_TIME_PURCHASE = "one_time_purchase"
108
}
109
110
export interface AFPurchaseDetails {
index.js
@@ -878,7 +878,7 @@ appsFlyer.disableCollectASA = (shouldDisable) => {
878
// Export AFPurchaseType enum for the new validateAndLogInAppPurchase API
879
export const AFPurchaseType = {
880
SUBSCRIPTION: "subscription",
881
- ONE_TIME_PURCHASE: "one-time-purchase"
+ ONE_TIME_PURCHASE: "one_time_purchase"
882
};
883
884
/**
0 commit comments