dapi 2.11.1
dapi: ^2.11.1 copied to clipboard
Financial APIs to connect users' bank accounts.
2.0.0 #
- Initial release
2.0.1 #
- Minor fixes
2.1.0 #
- Updated with the latest native SDKs
- Added listeners onBankRequest, onConnectDismissed, onTransferUiDismissed
- Added postSuccessfulConnectionLoadingText
2.2.0 #
- Added support for Dapi Wire endpoints.
2.4.0 #
- Added configurations showTransferSuccessfulResult, showTransferErrorResult to control showing Dapi result UI after transfer attempt.
2.5.0 #
- Added onTransferUiWillSend stream. Invoked when the user is about to send money using Dapi UI.
2.6.0 #
- Added getParameters and createConnection functions.
2.7.0 #
- Various bug fixes
2.8.0 #
- Various bug fixes
2.9.0 #
- General improvements
- Increased default timeout to 135 seconds
- Increased createTransfer and createWireTransfer endpoints timeout to 5 minutes.
2.9.1 #
- Fixed iOS crash caused by empty extraHeaderFields or extraBody
2.9.2 #
- Fixed iOS crash after connect layer failed
2.10.0 #
- Added reference and remark to CreateTransferResponse
2.10.1 #
- Android: Fixed manifest merger theme not found issue.
2.10.2 #
- iOS: Fixed colors in dark mode
2.10.3 #
- iOS: Minor improvement
2.11.0 #
- Added
DapiConnection#presentAccountSelection()that can be used to open Dapi's Accounts Screen to allow your user to select an account - Added
DapiConnection#getTransactions(account, fromDate, toDate, {type})DapiConnection#getTransactions(card, fromDate, toDate, {type})to get the transactions created by the account or the card between the start date and end date according toDapiTransactionsTypefilter.
DapiTransactionsType.ENRICHED -> Each transaction object will have category and brandDetails properties.
DapiTransactionsType.CATEGORIZED -> Each transaction object will have category property.
DapiTransactionsType.DEFAULT -> category and brandDetails won't be included in the response.
Example:-
await connection.getTransactionsForAccount(account, fromDate, toDate, type: DapiTransactionsType.DEFAULT);
- Deprecated
DapiConfigurations#endpointsDapi backend accepts the default endpoints paths only now.
2.11.1 #
- Fixed DapiCard type errors.