Skip to content

Releases: AcxTechSistemas/pix_bb

v1.0.4

16 Apr 13:09
Compare
Choose a tag to compare

v1.0.3

16 Apr 11:16
Compare
Choose a tag to compare

Full Changelog: v1.0.1...v1.0.3

v1.0.2

16 Apr 11:11
Compare
Choose a tag to compare

Full Changelog: v1.0.0...v1.0.2

v1.0.1

25 Mar 22:00
Compare
Choose a tag to compare

Fix Readme typing errors

v1.0.0

25 Mar 21:50
Compare
Choose a tag to compare

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

07 Mar 02:36
9e3335e
Compare
Choose a tag to compare
Merge pull request #12 from AcxTechSistemas/Fix-Test-Erros

Change version