Remove deprecated API properties

This commit is contained in:
dangered wolf 2023-04-21 17:41:34 -04:00
parent 8a59b94ace
commit ec8dfbd85a
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 0 additions and 11 deletions

View file

@ -83,14 +83,6 @@ const populateTweetProperties = async (
apiTweet.media.video = mediaObject as APIVideo;
apiTweet.media.videos = apiTweet.media.videos || [];
apiTweet.media.videos.push(mediaObject);
apiTweet.media.video = {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-expect-error Temporary warning
WARNING:
'video is deprecated and will be removed. Please use videos[0] instead.',
...mediaObject
};
}
}
});

View file

@ -29,9 +29,6 @@ export const handleMosaic = async (
}
return {
WARNING: 'height and width of mosaic photos are deprecated and will be removed.',
height: 0,
width: 0,
formats: {
jpeg: `${baseUrl}jpeg/${id}${path}`,
webp: `${baseUrl}webp/${id}${path}`