From 588f02806f36019edb29af6888a5adc78c284f8c Mon Sep 17 00:00:00 2001 From: David Grayston Date: Mon, 2 Feb 2026 22:11:57 +0000 Subject: [PATCH] docs: Deprecate CreateBalanceReport --- CHANGELOG.md | 3 +++ .../Resources/Reports/Operations/CreateBalanceReport.py | 4 ++++ 2 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a97b0517..a919a7f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,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) +### 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 diff --git a/paddle_billing/Resources/Reports/Operations/CreateBalanceReport.py b/paddle_billing/Resources/Reports/Operations/CreateBalanceReport.py index 849fbb89..a07b9fa3 100644 --- a/paddle_billing/Resources/Reports/Operations/CreateBalanceReport.py +++ b/paddle_billing/Resources/Reports/Operations/CreateBalanceReport.py @@ -14,6 +14,10 @@ @dataclass class CreateBalanceReport(CreateReport): + """ + Deprecated: Use CreatePayoutReconciliationReport instead. + """ + type: BalanceReportType filters: list[UpdatedAtFilter] = field(default_factory=list)