2023-05-12 18:17:35 +03:00
# 1.0.4
* Added processing of Mintsifra certificates in webView to keep banking services working
* Moved the field for customizing the display of the YooKassa logo from TokenizationSettings to CustomizationSettings
* Made UI changes and updated profiling
2022-09-08 11:32:35 +03:00
# 1.0.3
2023-05-12 18:17:35 +03:00
* Fixed iOS confirmation flow. Refactored TokenizationResult, now it's have SuccessTokenizationResult, ErrorTokenizationResult and CanceledTokenizationResult versions. Not to get token from TokenizationResult you need to check it's type:
2022-09-08 11:32:35 +03:00
var result = await YookassaPaymentsFlutter.tokenization(tokenizationModuleInputData);
if (result is SuccessTokenizationResult) {
result.token
}
2022-07-19 12:17:10 +03:00
# 1.0.2
* Made applePayID and moneyAuthClientId fields optional.
2022-07-03 20:52:22 +03:00
# 1.0.1
* Formatted code. Added homepage and repo urls.
# 1.0.0
2023-05-12 18:17:35 +03:00
* Initial development release.