diff --git a/tap_stripe/streams.py b/tap_stripe/streams.py index e3fc123..fb6a35b 100644 --- a/tap_stripe/streams.py +++ b/tap_stripe/streams.py @@ -810,8 +810,9 @@ def apply_catalog(self, catalog) -> None: class ChargesStream(stripeStream): name = "charges" - object = "charges" + object = "charge" replication_key = "updated" + event_filter = "charge.*" @property def path(self): @@ -860,7 +861,6 @@ def path(self): th.Property("transfer_data", th.StringType), th.Property("transfer_data", th.StringType), th.Property("transfer_group", th.StringType), - ).to_dict() class CheckoutSessionsStream(stripeStream):