diff --git a/tap_instagram/streams.py b/tap_instagram/streams.py index 904e476..4d3c3fd 100644 --- a/tap_instagram/streams.py +++ b/tap_instagram/streams.py @@ -472,7 +472,7 @@ def _metrics_for_media_type(media_type: str, media_product_type: str): ] else: # media_product_type is "AD" or "FEED" metrics = [ - "engagement", + "total_interactions", "impressions", "reach", "saved", @@ -482,11 +482,11 @@ def _metrics_for_media_type(media_type: str, media_product_type: str): return metrics elif media_type == "CAROUSEL_ALBUM": return [ - "carousel_album_engagement", - "carousel_album_impressions", - "carousel_album_reach", - "carousel_album_saved", - "carousel_album_video_views", + "total_interactions", + "impressions", + "reach", + "saved", + "video_views", ] else: raise ValueError( @@ -629,16 +629,16 @@ def _metrics_for_media_type(media_type: str, media_product_type: str): if media_type in ("IMAGE", "VIDEO"): if media_product_type == "STORY": return [ - "exits", + # "exits", "impressions", "reach", "replies", - "taps_forward", - "taps_back", + # "taps_forward", + # "taps_back", ] else: # media_product_type is "AD" or "FEED" metrics = [ - "engagement", + "total_interactions", "impressions", "reach", "saved", @@ -648,11 +648,11 @@ def _metrics_for_media_type(media_type: str, media_product_type: str): return metrics elif media_type == "CAROUSEL_ALBUM": return [ - "carousel_album_engagement", - "carousel_album_impressions", - "carousel_album_reach", - "carousel_album_saved", - "carousel_album_video_views", + "total_interactions", + "impressions", + "reach", + "saved", + "video_views", ] else: raise ValueError(