Releases: AcxTechSistemas/pix_bb
Releases · AcxTechSistemas/pix_bb
v1.0.4
Full Changelog: v1.0.3...v1.0.4
v1.0.3
Full Changelog: v1.0.1...v1.0.3
v1.0.2
Full Changelog: v1.0.0...v1.0.2
v1.0.1
Fix Readme typing errors
v1.0.0
This release generated BREAKING CHANGES see the docs!
- Defined the architecture of the project
- Improvements were made to the method for querying received transactions see the docs for more information
- Improvements all error cases see the docs for more information
[v1.0.0] Breaking Changes
-
Changed variable name in PixBB Instantiate :
- dev_app_key => developerApplicationKey
-
Changed the way to use the fetchTransaction method:
- Before
final listPix = await pixBB.fetchRecentReceivedTransactions(
accessToken: token.accessToken,
);
- After
final listPix = await pixBB.fetchTransactions(
token: token,
);
//Returns the last 4 days transactions
final listPix = await pixBB.fetchTransactions(
token: token,
dateTimeRange: DateTimeRange(
start: DateTime.now().subtract(Duration(days: 1)),
end: DateTime.now(),
);
);
//Returns the transactions of the specified date range
// Attention the maximum difference between the dates must be 4 days
Full Changelog: 0.1.7...v1.0.0
0.1.7
Merge pull request #12 from AcxTechSistemas/Fix-Test-Erros Change version