Skip to content

Commit

Permalink
change date filter to use gte (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyn4 authored Aug 12, 2024
1 parent b14866c commit 983a6b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_stripe/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def get_url_params(
params["starting_after"] = next_page_token
if self.replication_key and self.path != "credit_notes":
start_date = self.get_starting_time(context)
params["created[gt]"] = int(start_date.timestamp())
params["created[gte]"] = int(start_date.timestamp())
if self.path == "events" and self.event_filter:
params["type"] = self.event_filter
if not self.get_from_events and self.expand:
Expand Down

0 comments on commit 983a6b7

Please sign in to comment.