Skip to content

Commit

Permalink
feat: ✨ add missing columns from stream
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiascadee committed Dec 7, 2023
1 parent 944872e commit 62513dd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tap_aircall/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,17 @@ class CallsStream(AircallStream):
records_jsonpath = "$.calls[*]"
schema = PropertiesList(
Property("id", IntegerType),
Property("direct_link", StringType),
Property("started_at", IntegerType),
Property("answered_at", IntegerType),
Property("ended_at", IntegerType),
Property("duration", IntegerType),
Property("status", StringType),
Property("direction", StringType),
Property("raw_digits", StringType),
Property("asset", StringType),
Property("recording", StringType),
Property("voicemail", StringType),
Property("archived", BooleanType),
Property("missed_call_reason", StringType),
Property("cost", StringType),
Expand Down

0 comments on commit 62513dd

Please sign in to comment.