Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Check our main [developer changelog](https://developer.paddle.com/?utm_source=dx
- Added support for `wechat_pay` payment method type. See [related changelog](https://developer.paddle.com/changelog/2025/wechat-pay-payment-method?utm_source=dx&utm_medium=paddle-python-sdk)
- Added `grand_total_tax` to transaction totals and adjusted totals. See [related changelog](https://developer.paddle.com/changelog/2026/grand-total-tax-field?utm_source=dx&utm_medium=paddle-python-sdk)

### Deprecated
- `CreateBalanceReport` is deprecated, use `CreatePayoutReconciliationReport` instead, see [changelog](https://developer.paddle.com/changelog/2025/payout-reconciliation-report?utm_source=dx&utm_medium=paddle-python-sdk)

## 1.12.0 - 2025-11-12

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@

@dataclass
class CreateBalanceReport(CreateReport):
"""
Deprecated: Use CreatePayoutReconciliationReport instead.
"""

type: BalanceReportType
filters: list[UpdatedAtFilter] = field(default_factory=list)

Expand Down