react-native-appsflyer
Advanced tools
Comparing version 6.0.20 to 6.0.30
# Versions | ||
## 6.0.30 | ||
- iOS SDK 6.0.3 | ||
_init options properties renamed:_ | ||
| Old API | New API | | ||
| ------------------------------|-----------------------------------| | ||
| timeToWaitForAdvertiserID | timeToWaitForATTUserAuthorization | | ||
## 6.0.20 | ||
@@ -4,0 +14,0 @@ |
@@ -25,4 +25,2 @@ /** | ||
NONE, | ||
SHA1, | ||
MD5, | ||
SHA256 | ||
@@ -35,3 +33,3 @@ } | ||
isDebug?:boolean; | ||
timeToWaitForAdvertiserID?:number; // iOS only | ||
timeToWaitForATTUserAuthorization?:number; // iOS only | ||
} | ||
@@ -41,3 +39,3 @@ | ||
emails?:string[]; | ||
emailsCryptType:AF_EMAIL_CRYPT_TYPE | 0 | 1 | 2 | 3; | ||
emailsCryptType:AF_EMAIL_CRYPT_TYPE | 0 | 3; | ||
} | ||
@@ -60,3 +58,3 @@ | ||
logEvent(eventName: string, eventValues: object, successC?: SuccessCB, errorC?: ErrorCB): Response<string> | ||
setUserEmails(options: SetEmailsOptions, successC?: SuccessCB, errorC?: ErrorCB): void | ||
setUserEmails(options: SetEmailsOptions, successC: SuccessCB, errorC: ErrorCB): void | ||
setAdditionalData(additionalData: object, successC?: SuccessCB): void | ||
@@ -67,13 +65,13 @@ getAppsFlyerUID(callback: (error: Error, uid: string) => any): void | ||
setAppInviteOneLinkID(oneLinkID: string, successC?: SuccessCB): void | ||
generateInviteLink(params: GenerateInviteLinkParams, successC?: SuccessCB, errorC?: ErrorCB): void | ||
generateInviteLink(params: GenerateInviteLinkParams, successC: SuccessCB, errorC: ErrorCB): void | ||
logCrossPromotionImpression(appId: string, campaign: string, parameters: object): void | ||
logCrossPromotionAndOpenStore(appId: string, campaign: string, params: object): void | ||
setCurrencyCode(currencyCode: string, successC: SuccessCB): void | ||
anonymizeUser(shouldAnonymize: boolean, successC: SuccessCB): void | ||
setOneLinkCustomDomains(domains: string[], successC?: SuccessCB, errorC?: ErrorCB): void | ||
setResolveDeepLinkURLs(urls: string[], successC?: SuccessCB, errorC?: ErrorCB): void | ||
performOnAppAttribution(urlString, callback): void | ||
setCurrencyCode(currencyCode: string, successC?: SuccessCB): void | ||
anonymizeUser(shouldAnonymize: boolean, successC?: SuccessCB): void | ||
setOneLinkCustomDomains(domains: string[], successC: SuccessCB, errorC: ErrorCB): void | ||
setResolveDeepLinkURLs(urls: string[], successC: SuccessCB, errorC: ErrorCB): void | ||
performOnAppAttribution(urlString, successC: SuccessCB, errorC: ErrorCB): void | ||
setSharingFilterForAllPartners(): void | ||
setSharingFilter(partners, successC, errorC): void | ||
logLocation(longitude: number, latitude: number, callback: SuccessCB): void | ||
logLocation(longitude: number, latitude: number, successC?: SuccessCB): void | ||
@@ -80,0 +78,0 @@ /** |
@@ -348,4 +348,4 @@ import {NativeEventEmitter, NativeModules} from "react-native"; | ||
*/ | ||
appsFlyer.performOnAppAttribution = (urlString, callback) => { | ||
return RNAppsFlyer.performOnAppAttribution(urlString, callback); | ||
appsFlyer.performOnAppAttribution = (urlString, successC, errorC) => { | ||
return RNAppsFlyer.performOnAppAttribution(urlString, successC, errorC); | ||
} | ||
@@ -352,0 +352,0 @@ |
{ | ||
"name": "react-native-appsflyer", | ||
"version": "6.0.20", | ||
"version": "6.0.30", | ||
"description": "React Native Appsflyer plugin", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -23,3 +23,3 @@ | ||
- iOS AppsFlyerSDK **v6.0.2** | ||
- iOS AppsFlyerSDK **v6.0.3** | ||
- Android AppsFlyerSDK **v5.4.3** | ||
@@ -37,3 +37,3 @@ | ||
| trackCrossPromotionImpression | logCrossPromotionImpression | | ||
| trackAndOpenStore | logCrossPromotionAndOpenStore | | ||
| trackAndOpenStore | logCrossPromotionAndOpenStore | | ||
| setDeviceTrackingDisabled | anonymizeUser | | ||
@@ -40,0 +40,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
660397
441