Skip to content

Commit

Permalink
Merge pull request #3 from prratek/datetime-types
Browse files Browse the repository at this point in the history
Use StringType to prevent BigQuery loader complaining
  • Loading branch information
prratek authored Feb 22, 2022
2 parents 017b860 + 6e53a7a commit fb50aed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions meltano.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
version: 1
send_anonymous_usage_stats: true
project_id: 4128aaae-d007-4963-b48b-dcbbbababbfd
include_paths:
- ./*.meltano.yml
plugins:
extractors:
- name: tap-instagram
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tap-instagram"
version = "0.2.0"
version = "0.3.0"
description = "`tap-instagram` is a Singer tap for Instagram, built with the Meltano SDK for Singer Taps."
authors = ["Prratek Ramchandani"]
keywords = [
Expand Down
4 changes: 2 additions & 2 deletions tap_instagram/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class BaseMediaInsightsStream(InstagramStream):
),
th.Property(
"end_time",
th.DateTimeType,
th.StringType,
description="",
),
th.Property(
Expand Down Expand Up @@ -422,7 +422,7 @@ class UserInsightsStream(InstagramStream):
),
th.Property(
"end_time",
th.DateTimeType,
th.StringType,
description="",
),
th.Property(
Expand Down

0 comments on commit fb50aed

Please sign in to comment.