Skip to content

Commit

Permalink
Revert "change date filter to use gte (#26)"
Browse files Browse the repository at this point in the history
This reverts commit 983a6b7.
  • Loading branch information
hsyyid committed Aug 19, 2024
1 parent 6cda907 commit dbbddb8
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 @@ -82,7 +82,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[gte]"] = int(start_date.timestamp())
params["created[gt]"] = 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 dbbddb8

Please sign in to comment.