From d668173b800118d62f4974b2e5e7022e389e93d3 Mon Sep 17 00:00:00 2001 From: Renan Butkeraites Date: Thu, 24 Oct 2024 19:05:21 -0300 Subject: [PATCH] Define Bank summary as a full sync since the start_date on the config --- tap_xero/streams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tap_xero/streams.py b/tap_xero/streams.py index 49ead58..30052d4 100644 --- a/tap_xero/streams.py +++ b/tap_xero/streams.py @@ -354,6 +354,6 @@ def sync(self, ctx): ReportStream("reports_profit_and_loss", ["from_date"], bookmark_key="to_date"), ReportStream("reports_balance_sheet", ["from_date"], bookmark_key="to_date"), ReportStream("budgets", ["from_date"], bookmark_key="to_date"), - ReportStream("reports_bank_summary", ["from_date"], bookmark_key="to_date"), + ReportStream("reports_bank_summary", ["from_date"]), ] all_stream_ids = [s.tap_stream_id for s in all_streams]