Skip to content

Commit

Permalink
feat: Add missing fields to reports
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Dec 3, 2022
1 parent 2d24eab commit 8331f51
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tap_jotform/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,11 @@ class ReportsStream(JotformStream):
th.Property("status", th.StringType, allowed_values=["ENABLED", "DELETED"]),
th.Property("url", th.StringType),
th.Property("isProtected", th.BooleanType),
th.Property("type", th.StringType),
th.Property("form_title", th.StringType),
th.Property("form_count", th.IntegerType),
th.Property("form_url", th.StringType),
th.Property("last_submission", th.DateTimeType),
).to_dict()

def post_process(self, row: dict, context: dict | None = None) -> dict:
Expand Down

0 comments on commit 8331f51

Please sign in to comment.