From 8331f516860f5d06a238c96cf87afcafdd441dae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Rami=CC=81rez=20Mondrago=CC=81n?= Date: Sat, 3 Dec 2022 13:43:00 -0600 Subject: [PATCH] feat: Add missing fields to `reports` --- tap_jotform/streams.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tap_jotform/streams.py b/tap_jotform/streams.py index 9d1c7fd..93fda64 100644 --- a/tap_jotform/streams.py +++ b/tap_jotform/streams.py @@ -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: