From a013e33e2c672c0faef75bef7bf1c28a8a62bb8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uglje=C5=A1a=20Erceg?= Date: Thu, 9 Dec 2021 17:38:54 +0100 Subject: [PATCH] fix(adjust): added missing AdjustConfig method (#3886) --- src/@awesome-cordova-plugins/plugins/adjust/index.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/@awesome-cordova-plugins/plugins/adjust/index.ts b/src/@awesome-cordova-plugins/plugins/adjust/index.ts index b10b9e3b..596708e3 100644 --- a/src/@awesome-cordova-plugins/plugins/adjust/index.ts +++ b/src/@awesome-cordova-plugins/plugins/adjust/index.ts @@ -240,6 +240,10 @@ export class AdjustConfig { private hasDeferredDeeplinkCallbackListener() { return this.deferredDeeplinkCallback !== null; } + + private hasConversionValueUpdatedCallbackListener() { + return this.conversionValueUpdatedCallback !== null; + } } export class AdjustAppStoreSubscription { @@ -766,4 +770,4 @@ export class Adjust extends AwesomeCordovaNativePlugin { getAppTrackingAuthorizationStatus(): Promise { return; } -} +} \ No newline at end of file