Skip to content

Commit

Permalink
handle dates as datetimes
Browse files Browse the repository at this point in the history
  • Loading branch information
pnadolny13 committed Oct 2, 2024
1 parent f881a4a commit 3a27282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tap_service_titan/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -1922,7 +1922,7 @@ def _get_datatype(string_type: str) -> th.JSONTypeHelper:
"String": th.StringType(),
"Number": th.NumberType(),
"Boolean": th.BooleanType(),
"Date": th.DateType(),
"Date": th.DateTimeType(),
"Time": th.StringType(),
}
return mapping.get(string_type, th.StringType())
Expand Down

0 comments on commit 3a27282

Please sign in to comment.