Updated on 2026-08-14

This commit is contained in:
Tangem 2023-01-11 15:04:07 +03:00
commit 1f97352e5a
3 changed files with 9 additions and 4 deletions

@ -1 +1 @@
Subproject commit 897f0f7c402fd53c5ee1fa4ab601ecd4e43ff389
Subproject commit 93150ef69daf244a92266d7cdfbc9294b745b4e2

View file

@ -103,7 +103,7 @@ class ConfigManager {
tronGridApiKey = values.tronGridApiKey,
saltPayAuthToken = values.saltPay.credentials.token,
),
appsFlyerDevKey = values.appsFlyerDevKey,
appsFlyerDevKey = values.appsFlyer.appsFlyerDevKey,
amplitudeApiKey = values.amplitudeApiKey,
shopify = values.shopifyShop,
zendesk = values.zendesk,
@ -132,7 +132,7 @@ class ConfigManager {
infuraProjectId = values.infuraProjectId,
saltPayAuthToken = values.saltPay.credentials.token,
),
appsFlyerDevKey = values.appsFlyerDevKey,
appsFlyerDevKey = values.appsFlyer.appsFlyerDevKey,
amplitudeApiKey = values.amplitudeApiKey,
shopify = values.shopifyShop,
zendesk = values.zendesk,

View file

@ -29,7 +29,7 @@ class ConfigValueModel(
val bscQuiknodeApiKey: String,
val blockcypherTokens: Set<String>?,
val infuraProjectId: String?,
val appsFlyerDevKey: String,
val appsFlyer: AppsFlyer,
val shopifyShop: ShopifyShop?,
val zendesk: ZendeskConfig?,
val saltPay: SaltPayConfig,
@ -37,6 +37,11 @@ class ConfigValueModel(
val amplitudeApiKey: String,
)
data class AppsFlyer(
val appsFlyerDevKey: String,
val appsFlyerAppID: String,
)
class ConfigModel(
val features: FeatureModel?,
val configValues: ConfigValueModel?,