Skip to content

Commit

Permalink
fix: fixes some sendgrid resources fetching incomplete data
Browse files Browse the repository at this point in the history
  • Loading branch information
a-rampalli committed Dec 13, 2023
1 parent c236c25 commit 5386caf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def initial_path() -> str:
return "templates"


class Messages(SendgridStream, SendgridStreamIncrementalMixin):
class Messages(SendgridStreamOffsetPagination, SendgridStreamIncrementalMixin):
"""
https://docs.sendgrid.com/api-reference/e-mail-activity/filter-all-messages
"""
Expand Down Expand Up @@ -273,7 +273,7 @@ def path(self, **kwargs) -> str:
return "suppression/blocks"


class Bounces(SendgridStream, SendgridStreamIncrementalMixin):
class Bounces(SendgridStreamOffsetPagination, SendgridStreamIncrementalMixin):
primary_key = "email"

def path(self, **kwargs) -> str:
Expand Down

0 comments on commit 5386caf

Please sign in to comment.