-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from AppsFlyerSDK/dev/DELIVERY-54561/Update-v6…
….13.0(DMA) Update plugin to v6.13.0 , added 3 new APIs and updated demo app UI
- Loading branch information
Showing
18 changed files
with
1,502 additions
and
955 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,17 @@ | ||
import { InitSDKOptions, LogEventOptions } from './index'; | ||
export declare const initSdk: (args: InitSDKOptions) => Promise<unknown>; | ||
export declare const logEvent: (args: LogEventOptions) => Promise<unknown>; | ||
export declare const setCustomerUserId: (userId: string) => Promise<unknown>; | ||
export declare const setAppInviteOneLink: (link: string) => Promise<unknown>; | ||
export declare const generateInviteUrl: (args: AppsFlyerLinkGeneratorArgs) => Promise<unknown>; | ||
export declare const stop: (isStopped: bool) => Promise<unknown>; | ||
export declare const setSharingFilter: (partners: Array<string>) => Promise<unknown>; | ||
export declare const setSharingFilterForAllPartners: () => Promise<unknown>; | ||
export declare const _toHashMap: (obj: Object) => javautilHashMap<unknown, unknown>; | ||
export declare const _toValue: (val: any) => any; | ||
import { InitSDKOptions, LogEventOptions, AppsFlyerLinkGeneratorArgs , AppsFlyerConsentArgs } from './index'; | ||
declare const initSdk: (args: InitSDKOptions) => Promise<unknown>; | ||
declare const startSdk: () => void; | ||
declare const logEvent: (args: LogEventOptions) => Promise<unknown>; | ||
declare const setCustomerUserId: (userId: string) => Promise<unknown>; | ||
declare const setAppInviteOneLink: (link: string) => Promise<unknown>; | ||
declare const generateInviteUrl: (args: AppsFlyerLinkGeneratorArgs) => Promise<unknown>; | ||
declare const enableTCFDataCollection: (shouldCollect: boolean) => Promise<unknown>; | ||
declare const setConsentData: (consent: AppsFlyerConsentArgs) => Promise<unknown>; | ||
declare const getAppsFlyerUID: () => string; | ||
declare const stop: (isStopped: boolean) => Promise<unknown>; | ||
declare const setSharingFilter: (partners: Array<string>) => Promise<unknown>; | ||
declare const setSharingFilterForAllPartners: () => Promise<unknown>; | ||
declare const _toHashMap: (obj: Object) => javautilHashMap<unknown, unknown>; | ||
declare const _toValue: (val: any) => any; | ||
export { initSdk, startSdk, logEvent, stop, setCustomerUserId, setAppInviteOneLink, generateInviteUrl, getAppsFlyerUID, enableTCFDataCollection, setConsentData,setSharingFilter,setSharingFilterForAllPartners,_toHashMap ,_toValue}; | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
import { InitSDKOptions, LogEventOptions } from './index'; | ||
import { InitSDKOptions, LogEventOptions , AppsFlyerLinkGeneratorArgs, AppsFlyerConsentArgs} from './index'; | ||
declare const initSdk: (args: InitSDKOptions) => Promise<unknown>; | ||
declare const startSdk: () => void; | ||
declare const logEvent: (args: LogEventOptions) => Promise<unknown>; | ||
declare const stop: (isStopped: bool) => Promise<unknown>; | ||
declare const stop: (isStopped: boolean) => Promise<unknown>; | ||
declare const setConsentData: (consent: AppsFlyerConsentArgs) => Promise<unknown>; | ||
declare const enableTCFDataCollection: (shouldCollect: boolean) => Promise<unknown>; | ||
declare const setCustomerUserId: (userId: string) => Promise<unknown>; | ||
declare const setAppInviteOneLink: (link: string) => Promise<unknown>; | ||
declare const getAppsFlyerUID: () => string; | ||
declare const generateInviteUrl: (args: AppsFlyerLinkGeneratorArgs) => Promise<unknown>; | ||
export { initSdk, logEvent, stop, setCustomerUserId, setAppInviteOneLink, generateInviteUrl, }; | ||
export { initSdk, startSdk, logEvent, stop, setCustomerUserId, setAppInviteOneLink, generateInviteUrl, getAppsFlyerUID, enableTCFDataCollection, setConsentData, }; |
Oops, something went wrong.