Skip to content

Commit

Permalink
fix: Add disabled_at field to source and destination schemas (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Apr 1, 2024
1 parent 93058a0 commit 06984d9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tap_hookdeck/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
th.Property("archived_at", th.DateTimeType),
th.Property("updated_at", th.DateTimeType, required=True),
th.Property("created_at", th.DateTimeType, required=True),
th.Property("disabled_at", th.DateTimeType),
]

SOURCE: list[th.Property[Any]] = [
Expand Down Expand Up @@ -76,6 +77,7 @@
th.Property("archived_at", th.DateTimeType),
th.Property("updated_at", th.DateTimeType, required=True),
th.Property("created_at", th.DateTimeType, required=True),
th.Property("disabled_at", th.DateTimeType),
]


Expand Down

0 comments on commit 06984d9

Please sign in to comment.