Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
a56994f
Refactor builder architecture and modernize core infrastructure for v…
buckaroo-shu Apr 15, 2026
8b10194
feat: add usage examples for common payment methods
buckaroo-shu Apr 15, 2026
acf98cf
refactor: simplify iDEAL payment example flow
buckaroo-shu Apr 15, 2026
ee3c85a
refactor: standardize codebase with Ruff, expand builders, and add co…
ShuCh3n Apr 23, 2026
4119d13
refactor: modernize builder API and streamline transaction execution
ShuCh3n Apr 23, 2026
492600c
refactor: streamline transaction execution and simplify follow-up API
ShuCh3n Apr 28, 2026
b595a3b
feat(BTI-978): add In3 route param for ABN-AMRO Achteraf Betalen
vildanbina Jul 2, 2026
cfb2404
style(BTI-978): ruff format in3 builder test
vildanbina Jul 2, 2026
114cee7
Merge pull request #7 from buckaroo-it/BTI-978-in3-route
vildanbina Jul 2, 2026
e5d6437
feat(BTI-721): add Banking service (PaymentOrder payout)
vildanbina Jul 3, 2026
1b103bb
Merge pull request #8 from buckaroo-it/BTI-721-banking-paymentorder
vildanbina Jul 3, 2026
ec9d0f6
feat(BTI-1077): add In3 authorize/capture flow
vildanbina Jul 6, 2026
dc3040b
style(BTI-1077): apply ruff format to in3 feature test
vildanbina Jul 6, 2026
9ffdab7
Merge pull request #9 from buckaroo-it/BTI-1077-in3-authorize-capture
vildanbina Jul 6, 2026
b11ab8d
test(BTI-715): verify In3 CompanyName/CocNumber flow through pay
vildanbina Jul 7, 2026
9acd435
Merge pull request #10 from buckaroo-it/BTI-715-in3-company-coc
vildanbina Jul 7, 2026
b7d8c2f
feat(BTI-584): update Klarna MOR to DataRequestKey flow
vildanbina Jul 7, 2026
bf500ab
Merge pull request #11 from buckaroo-it/BTI-584-klarna-mor
vildanbina Jul 7, 2026
27ca466
feat(BTI-17): add PayPerEmail example and feature test
vildanbina Jul 13, 2026
f41b4b9
Merge pull request #12 from buckaroo-it/BTI-17-payperemail-parity
vildanbina Jul 13, 2026
6822ed2
feat(BTI-20): add iDIN verification method (identify, verify, login)
vildanbina Jul 13, 2026
e080732
Merge pull request #13 from buckaroo-it/BTI-20-idin-verification
vildanbina Jul 13, 2026
a573373
feat(BTI-21): implement instant refunds for iDEAL and Payconiq
vildanbina Jul 14, 2026
f797b65
style(BTI-21): apply ruff format to instant-refund tests
vildanbina Jul 14, 2026
03008a9
Merge pull request #14 from buckaroo-it/BTI-21-instant-refunds
vildanbina Jul 14, 2026
d78a91c
feat(BTI-23): add eMandate solution (B2C + B2B)
vildanbina Jul 14, 2026
ef1f026
Merge pull request #15 from buckaroo-it/BTI-23-emandate-solution
vildanbina Jul 14, 2026
e2e6a2d
Merge branch 'master' into BTI-27
ShuCh3n Jul 15, 2026
149a5fd
Merge branch 'develop' into BTI-27
ShuCh3n Jul 15, 2026
b1fc420
refactor: clean up imports, format code, and improve API robustness
ShuCh3n Jul 15, 2026
b7e0d19
```
ShuCh3n Jul 15, 2026
89bc353
Merge branch 'BTI-27' into BTI-977
ShuCh3n Jul 15, 2026
0ed5bd4
feat(BTI-16): add Split Payments (Marketplaces) solution
vildanbina Jul 15, 2026
0605180
Merge pull request #17 from buckaroo-it/BTI-16-split-payments
vildanbina Jul 15, 2026
3f3ab9e
feat(BTI-977): add Point of Sale (POS) payment method
ShuCh3n Jul 16, 2026
09bf6d7
Merge branch 'develop' into BTI-977
ShuCh3n Jul 16, 2026
6090020
refactor(BTI-977): Remove unused CombinableService import
ShuCh3n Jul 16, 2026
cdbb2cb
feat(BTI-977): add method to merge supplementary services
ShuCh3n Jul 16, 2026
20ea136
feat(BTI-22): add Credit Management solution
vildanbina Jul 17, 2026
8d04564
Merge pull request #20 from buckaroo-it/BTI-22-credit-management-v2
vildanbina Jul 17, 2026
bf5728e
chore: prepare v1.0.0 release for PyPI publish
ShuCh3n Jul 20, 2026
e7622ba
Merge branch 'BTI-977' into BTI-1166
ShuCh3n Jul 20, 2026
2f725df
feat(BTI-977): add Point of Sale (POS) payment method
ShuCh3n Jul 20, 2026
d5d6204
chore(BTI-1166): apply consistent code formatting and style
ShuCh3n Jul 20, 2026
19218df
chore(BTI-1166): set release version to 0.2.0
vildanbina Jul 22, 2026
efcbdfe
test(BTI-1166): update version assertions to 0.2.0
vildanbina Jul 22, 2026
d3ff5dd
Merge pull request #21 from buckaroo-it/BTI-1166
vildanbina Jul 22, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@ htmlcov/
.DS_Store
__pycache__/
*.pyc
__pycache__/
*.pyo

# local environment
.env
.venv/
venv/

# logs
*.log

# type checking
.mypy_cache/
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ All notable changes to this project will be documented in this file.

## [Released]

## [0.2.0]
- BTI-977 Add Point of Sale (POS) payment method
- BTI-22 Add Credit Management solution
- BTI-16 Add Split Payments (Marketplaces) solution
- BTI-23 Add eMandate solution (B2C + B2B)
- BTI-21 Implement instant refunds for iDEAL and Payconiq
- BTI-20 Add iDIN verification method (identify, verify, login)
- BTI-17 Add PayPerEmail example and feature test
- BTI-584 Update Klarna MOR to DataRequestKey flow
- BTI-1077 Add In3 authorize/capture flow
- BTI-721 Add Banking service (PaymentOrder payout)
- BTI-978 Add In3 route param for ABN-AMRO Achteraf Betalen

## [0.1.1]
- BTI-1091 Send the culture code as the `Culture` request header
- Add PayPerEmail builder for PaymentInvitation
Expand Down
Loading
Loading