From c943c097fecc24c39648af8d7f21c05426dff02f Mon Sep 17 00:00:00 2001 From: Damien Erambert Date: Tue, 11 Apr 2023 19:14:58 -0700 Subject: [PATCH] Add `replying_to_status` field --- src/api/status.ts | 1 + src/types/types.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/api/status.ts b/src/api/status.ts index 83b23e3..515c0f4 100644 --- a/src/api/status.ts +++ b/src/api/status.ts @@ -55,6 +55,7 @@ const populateTweetProperties = async ( } apiTweet.replying_to = tweet.in_reply_to_screen_name || null; + apiTweet.replying_to_status = tweet.in_reply_to_status_id_str || null; const mediaList = Array.from( tweet.extended_entities?.media || tweet.entities?.media || [] diff --git a/src/types/types.d.ts b/src/types/types.d.ts index f52b16d..855ade1 100644 --- a/src/types/types.d.ts +++ b/src/types/types.d.ts @@ -134,6 +134,7 @@ interface APITweet { lang: string | null; replying_to: string | null; + replying_to_status: string | null; source: string;