Skip to content

Commit 069f56e

Browse files
topefolorunsooctavia-squidington-iiiDanyloGL
authored
Source Instagram: Remove Deprecated Metrics (#55860)
Co-authored-by: Octavia Squidington III <[email protected]> Co-authored-by: daniel.i.jablonski <[email protected]> Co-authored-by: Danylo Jablonski <[email protected]>
1 parent a0f010e commit 069f56e

22 files changed

+248
-338
lines changed

airbyte-integrations/connectors/source-instagram/erd/discovered_catalog.json

-32
Original file line numberDiff line numberDiff line change
@@ -175,10 +175,6 @@
175175
"description": "The total watch time of Instagram Reels videos in seconds.",
176176
"type": ["null", "number"]
177177
},
178-
"impressions": {
179-
"description": "The number of times the media has been displayed to users.",
180-
"type": ["null", "integer"]
181-
},
182178
"reach": {
183179
"description": "The number of unique users who have seen the media.",
184180
"type": ["null", "integer"]
@@ -207,18 +203,6 @@
207203
"description": "The total number of interactions (likes, comments, shares) on the media.",
208204
"type": ["null", "integer"]
209205
},
210-
"plays": {
211-
"description": "The number of times the media has been played.",
212-
"type": ["null", "integer"]
213-
},
214-
"ig_reels_aggregated_all_plays_count": {
215-
"description": "The number of times of Instagram Reels gets reproduced after an impression is counted.",
216-
"type": ["null", "integer"]
217-
},
218-
"clips_replays_count": {
219-
"description": "The number of times the reel gets reproduced after the first one.",
220-
"type": ["null", "integer"]
221-
},
222206
"follows": {
223207
"description": "The number of accounts that started to follow the profile.",
224208
"type": ["null", "integer"]
@@ -427,10 +411,6 @@
427411
"description": "The unique identifier of the story insights record.",
428412
"type": ["null", "string"]
429413
},
430-
"impressions": {
431-
"description": "The number of times the story was viewed.",
432-
"type": ["null", "integer"]
433-
},
434414
"reach": {
435415
"description": "The number of unique accounts that viewed the story.",
436416
"type": ["null", "integer"]
@@ -509,10 +489,6 @@
509489
"description": "The number of clicks to get directions to the user's business location.",
510490
"type": ["null", "integer"]
511491
},
512-
"impressions": {
513-
"description": "The total number of times the user's content has been displayed.",
514-
"type": ["null", "integer"]
515-
},
516492
"phone_call_clicks": {
517493
"description": "The number of clicks to call the user's business phone number.",
518494
"type": ["null", "integer"]
@@ -533,18 +509,10 @@
533509
"description": "The number of clicks on the website link in the user's profile.",
534510
"type": ["null", "integer"]
535511
},
536-
"impressions_week": {
537-
"description": "The total number of impressions in the last week.",
538-
"type": ["null", "integer"]
539-
},
540512
"reach_week": {
541513
"description": "The total reach in the last week.",
542514
"type": ["null", "integer"]
543515
},
544-
"impressions_days_28": {
545-
"description": "The total number of impressions in the last 28 days.",
546-
"type": ["null", "integer"]
547-
},
548516
"reach_days_28": {
549517
"description": "The total reach in the last 28 days.",
550518
"type": ["null", "integer"]

airbyte-integrations/connectors/source-instagram/erd/source.dbml

-8
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,13 @@ Table "media_insights" {
2525
"id" string [pk]
2626
"ig_reels_avg_watch_time" number
2727
"ig_reels_video_view_total_time" number
28-
"impressions" integer
2928
"reach" integer
3029
"saved" integer
3130
"video_views" integer
3231
"comments" integer
3332
"likes" integer
3433
"shares" integer
3534
"total_interactions" integer
36-
"plays" integer
37-
"ig_reels_aggregated_all_plays_count" integer
38-
"clips_replays_count" integer
3935
"follows" integer
4036
"profile_visits" integer
4137
}
@@ -88,7 +84,6 @@ Table "story_insights" {
8884
"business_account_id" string
8985
"page_id" string
9086
"id" string
91-
"impressions" integer
9287
"reach" integer
9388
"replies" integer
9489
"follows" integer
@@ -108,15 +103,12 @@ Table "user_insights" {
108103
"date" string
109104
"follower_count" integer
110105
"get_directions_clicks" integer
111-
"impressions" integer
112106
"phone_call_clicks" integer
113107
"profile_views" integer
114108
"reach" integer
115109
"text_message_clicks" integer
116110
"website_clicks" integer
117-
"impressions_week" integer
118111
"reach_week" integer
119-
"impressions_days_28" integer
120112
"reach_days_28" integer
121113
"online_followers" object
122114
"email_contacts" integer

airbyte-integrations/connectors/source-instagram/metadata.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ data:
77
connectorSubtype: api
88
connectorType: source
99
definitionId: 6acf6b55-4f1e-4fca-944e-1a3caef8aba8
10-
dockerImageTag: 3.2.5
10+
dockerImageTag: 4.0.0
1111
dockerRepository: airbyte/source-instagram
1212
githubIssueLabel: source-instagram
1313
icon: instagram.svg
@@ -26,6 +26,13 @@ data:
2626
releaseStage: generally_available
2727
releases:
2828
breakingChanges:
29+
4.0.0:
30+
message: "This release removes deprecated metrics - `clips_replays_count`, `ig_reels_aggregated_all_plays_count`, `impressions`, and `plays` from `media_insights` stream, and `impressions` from `user_insights` and `story_insights` streams. Customers who these streams must take action with their connections. For more details, see our <a href='https://docs.airbyte.com/integrations/sources/instagram-migrations'>migration guide</a>."
31+
upgradeDeadline: "2025-04-21"
32+
scopedImpact:
33+
- scopeType: stream
34+
impactedScopes:
35+
["media_insights", "user_insights", "story_insights"]
2936
3.0.0:
3037
message: "The existing Instagram API (v11) has been deprecated. Customers who use streams `Media Insights`, `Story Insights` or `User Lifetime Insights` must take action with their connections. Please follow the to update to the latest Instagram API (v18). For more details, see our <a href='https://docs.airbyte.com/integrations/sources/instagram-migrations'>migration guide</a>."
3138
upgradeDeadline: "2024-01-05"

0 commit comments

Comments
 (0)