rettiwt-api 5.0.0-alpha.1 → 5.0.0-alpha.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Rettiwt.d.ts +10 -3
- package/dist/Rettiwt.js +19 -7
- package/dist/Rettiwt.js.map +1 -1
- package/dist/collections/Extractors.d.ts +35 -2
- package/dist/collections/Extractors.js +3 -0
- package/dist/collections/Extractors.js.map +1 -1
- package/dist/collections/Groups.js +3 -0
- package/dist/collections/Groups.js.map +1 -1
- package/dist/collections/Requests.js +41 -41
- package/dist/collections/Requests.js.map +1 -1
- package/dist/commands/Tweet.js +33 -7
- package/dist/commands/Tweet.js.map +1 -1
- package/dist/commands/User.js +12 -2
- package/dist/commands/User.js.map +1 -1
- package/dist/enums/Authentication.d.ts +2 -10
- package/dist/enums/Authentication.js +3 -12
- package/dist/enums/Authentication.js.map +1 -1
- package/dist/enums/Data.d.ts +3 -15
- package/dist/enums/Data.js +4 -17
- package/dist/enums/Data.js.map +1 -1
- package/dist/enums/Media.d.ts +10 -0
- package/dist/enums/Media.js +15 -0
- package/dist/enums/Media.js.map +1 -0
- package/dist/enums/Notification.d.ts +12 -0
- package/dist/enums/Notification.js +17 -0
- package/dist/enums/Notification.js.map +1 -0
- package/dist/enums/Resource.d.ts +3 -0
- package/dist/enums/Resource.js +3 -0
- package/dist/enums/Resource.js.map +1 -1
- package/dist/enums/raw/Analytics.d.ts +28 -0
- package/dist/enums/raw/Analytics.js +34 -0
- package/dist/enums/raw/Analytics.js.map +1 -0
- package/dist/enums/raw/Media.d.ts +10 -0
- package/dist/enums/raw/Media.js +15 -0
- package/dist/enums/raw/Media.js.map +1 -0
- package/dist/enums/raw/Notification.d.ts +11 -0
- package/dist/enums/raw/Notification.js +16 -0
- package/dist/enums/raw/Notification.js.map +1 -0
- package/dist/enums/raw/Tweet.d.ts +9 -0
- package/dist/enums/raw/Tweet.js +14 -0
- package/dist/enums/raw/Tweet.js.map +1 -0
- package/dist/helper/TidUtils.d.ts +2 -0
- package/dist/helper/TidUtils.js +162 -0
- package/dist/helper/TidUtils.js.map +1 -0
- package/dist/index.d.ts +75 -4
- package/dist/index.js +26 -5
- package/dist/index.js.map +1 -1
- package/dist/models/RettiwtConfig.d.ts +28 -0
- package/dist/models/RettiwtConfig.js +55 -0
- package/dist/models/RettiwtConfig.js.map +1 -0
- package/dist/models/args/FetchArgs.d.ts +46 -3
- package/dist/models/args/FetchArgs.js +107 -5
- package/dist/models/args/FetchArgs.js.map +1 -1
- package/dist/models/args/PostArgs.d.ts +44 -16
- package/dist/models/args/PostArgs.js +61 -22
- package/dist/models/args/PostArgs.js.map +1 -1
- package/dist/models/auth/AuthCookie.d.ts +2 -0
- package/dist/models/auth/AuthCookie.js +2 -0
- package/dist/models/auth/AuthCookie.js.map +1 -1
- package/dist/models/auth/AuthCredential.d.ts +2 -0
- package/dist/models/auth/AuthCredential.js +2 -0
- package/dist/models/auth/AuthCredential.js.map +1 -1
- package/dist/models/data/CursoredData.d.ts +4 -13
- package/dist/models/data/CursoredData.js +16 -23
- package/dist/models/data/CursoredData.js.map +1 -1
- package/dist/models/data/List.d.ts +5 -1
- package/dist/models/data/List.js +14 -0
- package/dist/models/data/List.js.map +1 -1
- package/dist/models/data/Notification.d.ts +7 -5
- package/dist/models/data/Notification.js +19 -8
- package/dist/models/data/Notification.js.map +1 -1
- package/dist/models/data/Tweet.d.ts +29 -9
- package/dist/models/data/Tweet.js +103 -25
- package/dist/models/data/Tweet.js.map +1 -1
- package/dist/models/data/User.d.ts +17 -8
- package/dist/models/data/User.js +63 -13
- package/dist/models/data/User.js.map +1 -1
- package/dist/models/errors/RettiwtError.d.ts +3 -2
- package/dist/models/errors/RettiwtError.js +3 -2
- package/dist/models/errors/RettiwtError.js.map +1 -1
- package/dist/models/params/Variables.d.ts +41 -0
- package/dist/models/params/Variables.js +61 -0
- package/dist/models/params/Variables.js.map +1 -0
- package/dist/requests/List.d.ts +24 -0
- package/dist/requests/List.js +122 -0
- package/dist/requests/List.js.map +1 -0
- package/dist/requests/Media.d.ts +21 -0
- package/dist/requests/Media.js +70 -0
- package/dist/requests/Media.js.map +1 -0
- package/dist/requests/Tweet.d.ts +75 -0
- package/dist/requests/Tweet.js +500 -0
- package/dist/requests/Tweet.js.map +1 -0
- package/dist/requests/User.d.ts +111 -0
- package/dist/requests/User.js +762 -0
- package/dist/requests/User.js.map +1 -0
- package/dist/services/internal/AuthService.d.ts +3 -5
- package/dist/services/internal/AuthService.js +5 -8
- package/dist/services/internal/AuthService.js.map +1 -1
- package/dist/services/internal/TidService.d.ts +44 -0
- package/dist/services/internal/TidService.js +162 -0
- package/dist/services/internal/TidService.js.map +1 -0
- package/dist/services/public/FetcherService.d.ts +20 -19
- package/dist/services/public/FetcherService.js +67 -49
- package/dist/services/public/FetcherService.js.map +1 -1
- package/dist/services/public/ListService.d.ts +2 -2
- package/dist/services/public/ListService.js.map +1 -1
- package/dist/services/public/TweetService.d.ts +35 -7
- package/dist/services/public/TweetService.js +54 -8
- package/dist/services/public/TweetService.js.map +1 -1
- package/dist/services/public/UserService.d.ts +4 -4
- package/dist/services/public/UserService.js +25 -13
- package/dist/services/public/UserService.js.map +1 -1
- package/dist/types/RettiwtConfig.d.ts +9 -10
- package/dist/types/args/FetchArgs.d.ts +71 -7
- package/dist/types/args/PostArgs.d.ts +62 -18
- package/dist/types/auth/AuthCookie.d.ts +2 -0
- package/dist/types/auth/AuthCredential.d.ts +2 -0
- package/dist/types/auth/TidDynamicArgs.d.ts +10 -0
- package/dist/types/auth/{AccountCredential.js → TidDynamicArgs.js} +1 -1
- package/dist/types/auth/TidDynamicArgs.js.map +1 -0
- package/dist/types/auth/TidHeader.d.ts +8 -0
- package/dist/types/{ReturnTypes.js → auth/TidHeader.js} +1 -1
- package/dist/types/auth/TidHeader.js.map +1 -0
- package/dist/types/auth/TidParams.d.ts +27 -0
- package/dist/types/auth/TidParams.js +3 -0
- package/dist/types/auth/TidParams.js.map +1 -0
- package/dist/types/auth/TidProvider.d.ts +18 -0
- package/dist/types/auth/TidProvider.js +3 -0
- package/dist/types/auth/TidProvider.js.map +1 -0
- package/dist/types/data/CursoredData.d.ts +1 -10
- package/dist/types/data/Notification.d.ts +2 -2
- package/dist/types/data/Tweet.d.ts +2 -2
- package/dist/types/params/Variables.d.ts +27 -0
- package/dist/types/params/Variables.js +3 -0
- package/dist/types/params/Variables.js.map +1 -0
- package/dist/types/raw/base/Analytic.d.ts +21 -0
- package/dist/types/raw/base/Analytic.js +4 -0
- package/dist/types/raw/base/Analytic.js.map +1 -0
- package/dist/types/raw/base/Cursor.d.ts +11 -0
- package/dist/types/raw/base/Cursor.js +4 -0
- package/dist/types/raw/base/Cursor.js.map +1 -0
- package/dist/types/raw/base/LimitedVisibilityTweet.d.ts +32 -0
- package/dist/types/raw/base/LimitedVisibilityTweet.js +4 -0
- package/dist/types/raw/base/LimitedVisibilityTweet.js.map +1 -0
- package/dist/types/raw/base/List.d.ts +43 -0
- package/dist/types/raw/base/List.js +4 -0
- package/dist/types/raw/base/List.js.map +1 -0
- package/dist/types/raw/base/Media.d.ts +43 -0
- package/dist/types/raw/base/Media.js +4 -0
- package/dist/types/raw/base/Media.js.map +1 -0
- package/dist/types/raw/base/Notification.d.ts +53 -0
- package/dist/types/raw/base/Notification.js +4 -0
- package/dist/types/raw/base/Notification.js.map +1 -0
- package/dist/types/raw/base/Space.d.ts +32 -0
- package/dist/types/raw/base/Space.js +4 -0
- package/dist/types/raw/base/Space.js.map +1 -0
- package/dist/types/raw/base/Tweet.d.ts +119 -0
- package/dist/types/raw/base/Tweet.js +4 -0
- package/dist/types/raw/base/Tweet.js.map +1 -0
- package/dist/types/raw/base/User.d.ts +140 -0
- package/dist/types/raw/base/User.js +4 -0
- package/dist/types/raw/base/User.js.map +1 -0
- package/dist/types/raw/composite/DataResult.d.ts +8 -0
- package/dist/types/raw/composite/DataResult.js +3 -0
- package/dist/types/raw/composite/DataResult.js.map +1 -0
- package/dist/types/raw/composite/TimelineTweet.d.ts +11 -0
- package/dist/types/raw/composite/TimelineTweet.js +4 -0
- package/dist/types/raw/composite/TimelineTweet.js.map +1 -0
- package/dist/types/raw/composite/TimelineUser.d.ts +10 -0
- package/dist/types/raw/composite/TimelineUser.js +4 -0
- package/dist/types/raw/composite/TimelineUser.js.map +1 -0
- package/dist/types/raw/generic/Error.d.ts +30 -0
- package/dist/types/raw/generic/Error.js +3 -0
- package/dist/types/raw/generic/Error.js.map +1 -0
- package/dist/types/raw/generic/Response.d.ts +12 -0
- package/dist/types/raw/generic/Response.js +3 -0
- package/dist/types/raw/generic/Response.js.map +1 -0
- package/dist/types/raw/list/Details.d.ts +122 -0
- package/dist/types/raw/list/Details.js +4 -0
- package/dist/types/raw/list/Details.js.map +1 -0
- package/dist/types/raw/list/Members.d.ts +134 -0
- package/dist/types/raw/list/Members.js +4 -0
- package/dist/types/raw/list/Members.js.map +1 -0
- package/dist/types/raw/list/Tweets.d.ts +1968 -0
- package/dist/types/raw/list/Tweets.js +4 -0
- package/dist/types/raw/list/Tweets.js.map +1 -0
- package/dist/types/raw/media/FinalizeUpload.d.ts +18 -0
- package/dist/types/raw/media/FinalizeUpload.js +4 -0
- package/dist/types/raw/media/FinalizeUpload.js.map +1 -0
- package/dist/types/raw/media/InitalizeUpload.d.ts +10 -0
- package/dist/types/raw/media/InitalizeUpload.js +4 -0
- package/dist/types/raw/media/InitalizeUpload.js.map +1 -0
- package/dist/types/raw/media/LiveVideoStream.d.ts +19 -0
- package/dist/types/raw/media/LiveVideoStream.js +4 -0
- package/dist/types/raw/media/LiveVideoStream.js.map +1 -0
- package/dist/types/raw/space/Details.d.ts +315 -0
- package/dist/types/raw/space/Details.js +4 -0
- package/dist/types/raw/space/Details.js.map +1 -0
- package/dist/types/raw/tweet/Details.d.ts +183 -0
- package/dist/types/raw/tweet/Details.js +4 -0
- package/dist/types/raw/tweet/Details.js.map +1 -0
- package/dist/types/raw/tweet/Like.d.ts +12 -0
- package/dist/types/raw/tweet/Like.js +4 -0
- package/dist/types/raw/tweet/Like.js.map +1 -0
- package/dist/types/raw/tweet/Likers.d.ts +170 -0
- package/dist/types/raw/tweet/Likers.js +4 -0
- package/dist/types/raw/tweet/Likers.js.map +1 -0
- package/dist/types/raw/tweet/Post.d.ts +133 -0
- package/dist/types/raw/tweet/Post.js +4 -0
- package/dist/types/raw/tweet/Post.js.map +1 -0
- package/dist/types/raw/tweet/Replies.d.ts +465 -0
- package/dist/types/raw/tweet/Replies.js +4 -0
- package/dist/types/raw/tweet/Replies.js.map +1 -0
- package/dist/types/raw/tweet/Retweet.d.ts +25 -0
- package/dist/types/raw/tweet/Retweet.js +4 -0
- package/dist/types/raw/tweet/Retweet.js.map +1 -0
- package/dist/types/raw/tweet/Retweeters.d.ts +177 -0
- package/dist/types/raw/tweet/Retweeters.js +4 -0
- package/dist/types/raw/tweet/Retweeters.js.map +1 -0
- package/dist/types/raw/tweet/Schedule.d.ts +15 -0
- package/dist/types/raw/tweet/Schedule.js +4 -0
- package/dist/types/raw/tweet/Schedule.js.map +1 -0
- package/dist/types/raw/tweet/Search.d.ts +518 -0
- package/dist/types/raw/tweet/Search.js +4 -0
- package/dist/types/raw/tweet/Search.js.map +1 -0
- package/dist/types/raw/tweet/Unlike.d.ts +12 -0
- package/dist/types/raw/tweet/Unlike.js +4 -0
- package/dist/types/raw/tweet/Unlike.js.map +1 -0
- package/dist/types/raw/tweet/Unpost.d.ts +17 -0
- package/dist/types/raw/tweet/Unpost.js +4 -0
- package/dist/types/raw/tweet/Unpost.js.map +1 -0
- package/dist/types/raw/tweet/Unretweet.d.ts +25 -0
- package/dist/types/raw/tweet/Unretweet.js +4 -0
- package/dist/types/raw/tweet/Unretweet.js.map +1 -0
- package/dist/types/raw/tweet/Unschedule.d.ts +12 -0
- package/dist/types/raw/tweet/Unschedule.js +4 -0
- package/dist/types/raw/tweet/Unschedule.js.map +1 -0
- package/dist/types/raw/user/Affiliates.d.ts +154 -0
- package/dist/types/raw/user/Affiliates.js +4 -0
- package/dist/types/raw/user/Affiliates.js.map +1 -0
- package/dist/types/raw/user/Analytics.d.ts +32 -0
- package/dist/types/raw/user/Analytics.js +4 -0
- package/dist/types/raw/user/Analytics.js.map +1 -0
- package/dist/types/raw/user/Bookmarks.d.ts +550 -0
- package/dist/types/raw/user/Bookmarks.js +4 -0
- package/dist/types/raw/user/Bookmarks.js.map +1 -0
- package/dist/types/raw/user/Details.d.ts +157 -0
- package/dist/types/raw/user/Details.js +4 -0
- package/dist/types/raw/user/Details.js.map +1 -0
- package/dist/types/raw/user/Follow.d.ts +248 -0
- package/dist/types/raw/user/Follow.js +4 -0
- package/dist/types/raw/user/Follow.js.map +1 -0
- package/dist/types/raw/user/Followed.d.ts +1666 -0
- package/dist/types/raw/user/Followed.js +4 -0
- package/dist/types/raw/user/Followed.js.map +1 -0
- package/dist/types/raw/user/Followers.d.ts +182 -0
- package/dist/types/raw/user/Followers.js +4 -0
- package/dist/types/raw/user/Followers.js.map +1 -0
- package/dist/types/raw/user/Following.d.ts +182 -0
- package/dist/types/raw/user/Following.js +4 -0
- package/dist/types/raw/user/Following.js.map +1 -0
- package/dist/types/raw/user/Highlights.d.ts +1106 -0
- package/dist/types/raw/user/Highlights.js +4 -0
- package/dist/types/raw/user/Highlights.js.map +1 -0
- package/dist/types/raw/user/Likes.d.ts +1065 -0
- package/dist/types/raw/user/Likes.js +4 -0
- package/dist/types/raw/user/Likes.js.map +1 -0
- package/dist/types/raw/user/Media.d.ts +1492 -0
- package/dist/types/raw/user/Media.js +4 -0
- package/dist/types/raw/user/Media.js.map +1 -0
- package/dist/types/raw/user/Notifications.d.ts +142 -0
- package/dist/types/raw/user/Notifications.js +4 -0
- package/dist/types/raw/user/Notifications.js.map +1 -0
- package/dist/types/raw/user/Recommended.d.ts +1991 -0
- package/dist/types/raw/user/Recommended.js +4 -0
- package/dist/types/raw/user/Recommended.js.map +1 -0
- package/dist/types/raw/user/Scheduled.d.ts +31 -0
- package/dist/types/raw/user/Scheduled.js +4 -0
- package/dist/types/raw/user/Scheduled.js.map +1 -0
- package/dist/types/raw/user/Subscriptions.d.ts +151 -0
- package/dist/types/raw/user/Subscriptions.js +4 -0
- package/dist/types/raw/user/Subscriptions.js.map +1 -0
- package/dist/types/raw/user/Tweets.d.ts +1065 -0
- package/dist/types/raw/user/Tweets.js +4 -0
- package/dist/types/raw/user/Tweets.js.map +1 -0
- package/dist/types/raw/user/TweetsAndReplies.d.ts +1065 -0
- package/dist/types/raw/user/TweetsAndReplies.js +4 -0
- package/dist/types/raw/user/TweetsAndReplies.js.map +1 -0
- package/dist/types/raw/user/Unfollow.d.ts +248 -0
- package/dist/types/raw/user/Unfollow.js +4 -0
- package/dist/types/raw/user/Unfollow.js.map +1 -0
- package/package.json +3 -3
- package/src/Rettiwt.ts +22 -7
- package/src/collections/Extractors.ts +38 -34
- package/src/collections/Groups.ts +3 -0
- package/src/collections/Requests.ts +43 -42
- package/src/commands/Tweet.ts +35 -7
- package/src/commands/User.ts +13 -2
- package/src/enums/Authentication.ts +2 -11
- package/src/enums/Data.ts +3 -16
- package/src/enums/Media.ts +10 -0
- package/src/enums/Notification.ts +12 -0
- package/src/enums/Resource.ts +3 -0
- package/src/enums/raw/Analytics.ts +29 -0
- package/src/enums/raw/Media.ts +10 -0
- package/src/enums/raw/Notification.ts +11 -0
- package/src/enums/raw/Tweet.ts +9 -0
- package/src/helper/TidUtils.ts +189 -0
- package/src/index.ts +78 -43
- package/src/models/RettiwtConfig.ts +64 -0
- package/src/models/args/FetchArgs.ts +121 -5
- package/src/models/args/PostArgs.ts +61 -21
- package/src/models/auth/AuthCookie.ts +2 -0
- package/src/models/auth/AuthCredential.ts +2 -0
- package/src/models/data/CursoredData.ts +16 -24
- package/src/models/data/List.ts +16 -2
- package/src/models/data/Notification.ts +21 -12
- package/src/models/data/Tweet.ts +120 -39
- package/src/models/data/User.ts +71 -15
- package/src/models/errors/RettiwtError.ts +3 -2
- package/src/models/params/Variables.ts +62 -0
- package/src/requests/List.ts +121 -0
- package/src/requests/Media.ts +67 -0
- package/src/requests/Tweet.ts +516 -0
- package/src/requests/User.ts +783 -0
- package/src/services/internal/AuthService.ts +6 -11
- package/src/services/internal/TidService.ts +147 -0
- package/src/services/public/FetcherService.ts +78 -58
- package/src/services/public/ListService.ts +4 -4
- package/src/services/public/TweetService.ts +87 -40
- package/src/services/public/UserService.ts +47 -35
- package/src/types/RettiwtConfig.ts +11 -12
- package/src/types/args/FetchArgs.ts +92 -8
- package/src/types/args/PostArgs.ts +72 -22
- package/src/types/auth/AuthCookie.ts +2 -0
- package/src/types/auth/AuthCredential.ts +2 -0
- package/src/types/auth/TidDynamicArgs.ts +10 -0
- package/src/types/auth/TidHeader.ts +12 -0
- package/src/types/auth/TidParams.ts +36 -0
- package/src/types/auth/TidProvider.ts +19 -0
- package/src/types/data/CursoredData.ts +1 -11
- package/src/types/data/Notification.ts +2 -2
- package/src/types/data/Tweet.ts +2 -2
- package/src/types/params/Variables.ts +41 -0
- package/src/types/raw/base/Analytic.ts +26 -0
- package/src/types/raw/base/Cursor.ts +13 -0
- package/src/types/raw/base/LimitedVisibilityTweet.ts +40 -0
- package/src/types/raw/base/List.ts +50 -0
- package/src/types/raw/base/Media.ts +53 -0
- package/src/types/raw/base/Notification.ts +67 -0
- package/src/types/raw/base/Space.ts +35 -0
- package/src/types/raw/base/Tweet.ts +139 -0
- package/src/types/raw/base/User.ts +164 -0
- package/src/types/raw/composite/DataResult.ts +8 -0
- package/src/types/raw/composite/TimelineTweet.ts +14 -0
- package/src/types/raw/composite/TimelineUser.ts +13 -0
- package/src/types/raw/generic/Error.ts +35 -0
- package/src/types/raw/generic/Response.ts +13 -0
- package/src/types/raw/list/Details.ts +137 -0
- package/src/types/raw/list/Members.ts +154 -0
- package/src/types/raw/list/Tweets.ts +2296 -0
- package/src/types/raw/media/FinalizeUpload.ts +20 -0
- package/src/types/raw/media/InitalizeUpload.ts +12 -0
- package/src/types/raw/media/LiveVideoStream.ts +21 -0
- package/src/types/raw/space/Details.ts +359 -0
- package/src/types/raw/tweet/Details.ts +210 -0
- package/src/types/raw/tweet/Like.ts +14 -0
- package/src/types/raw/tweet/Likers.ts +200 -0
- package/src/types/raw/tweet/Post.ts +150 -0
- package/src/types/raw/tweet/Replies.ts +539 -0
- package/src/types/raw/tweet/Retweet.ts +31 -0
- package/src/types/raw/tweet/Retweeters.ts +208 -0
- package/src/types/raw/tweet/Schedule.ts +18 -0
- package/src/types/raw/tweet/Search.ts +597 -0
- package/src/types/raw/tweet/Unlike.ts +14 -0
- package/src/types/raw/tweet/Unpost.ts +20 -0
- package/src/types/raw/tweet/Unretweet.ts +31 -0
- package/src/types/raw/tweet/Unschedule.ts +14 -0
- package/src/types/raw/user/Affiliates.ts +179 -0
- package/src/types/raw/user/Analytics.ts +39 -0
- package/src/types/raw/user/Bookmarks.ts +637 -0
- package/src/types/raw/user/Details.ts +185 -0
- package/src/types/raw/user/Follow.ts +280 -0
- package/src/types/raw/user/Followed.ts +1942 -0
- package/src/types/raw/user/Followers.ts +215 -0
- package/src/types/raw/user/Following.ts +215 -0
- package/src/types/raw/user/Highlights.ts +1287 -0
- package/src/types/raw/user/Likes.ts +1254 -0
- package/src/types/raw/user/Media.ts +1738 -0
- package/src/types/raw/user/Notifications.ts +175 -0
- package/src/types/raw/user/Recommended.ts +2319 -0
- package/src/types/raw/user/Scheduled.ts +37 -0
- package/src/types/raw/user/Subscriptions.ts +176 -0
- package/src/types/raw/user/Tweets.ts +1254 -0
- package/src/types/raw/user/TweetsAndReplies.ts +1254 -0
- package/src/types/raw/user/Unfollow.ts +280 -0
- package/dist/models/auth/AccountCredential.d.ts +0 -13
- package/dist/models/auth/AccountCredential.js +0 -21
- package/dist/models/auth/AccountCredential.js.map +0 -1
- package/dist/types/ReturnTypes.d.ts +0 -21
- package/dist/types/ReturnTypes.js.map +0 -1
- package/dist/types/auth/AccountCredential.d.ts +0 -11
- package/dist/types/auth/AccountCredential.js.map +0 -1
- package/src/models/auth/AccountCredential.ts +0 -19
- package/src/types/ReturnTypes.ts +0 -24
- package/src/types/auth/AccountCredential.ts +0 -13
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Tweets.js","sourceRoot":"","sources":["../../../../src/types/raw/list/Tweets.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The raw data received after finalizing upload of a media file.
|
|
3
|
+
*
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface IMediaFinalizeUploadResponse {
|
|
7
|
+
media_id: number;
|
|
8
|
+
media_id_string: string;
|
|
9
|
+
size: number;
|
|
10
|
+
expires_after_secs: number;
|
|
11
|
+
image: Image;
|
|
12
|
+
}
|
|
13
|
+
interface Image {
|
|
14
|
+
image_type: string;
|
|
15
|
+
w: number;
|
|
16
|
+
h: number;
|
|
17
|
+
}
|
|
18
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FinalizeUpload.js","sourceRoot":"","sources":["../../../../src/types/raw/media/FinalizeUpload.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"InitalizeUpload.js","sourceRoot":"","sources":["../../../../src/types/raw/media/InitalizeUpload.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The raw data received when fetching the URL to a live video stream.
|
|
3
|
+
*
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface IMediaLiveVideoStreamResponse {
|
|
7
|
+
source: Source;
|
|
8
|
+
sessionId: string;
|
|
9
|
+
chatToken: string;
|
|
10
|
+
lifecycleToken: string;
|
|
11
|
+
shareUrl: string;
|
|
12
|
+
}
|
|
13
|
+
interface Source {
|
|
14
|
+
location: string;
|
|
15
|
+
noRedirectPlaybackUrl: string;
|
|
16
|
+
status: string;
|
|
17
|
+
streamType: string;
|
|
18
|
+
}
|
|
19
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"LiveVideoStream.js","sourceRoot":"","sources":["../../../../src/types/raw/media/LiveVideoStream.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,315 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The raw data received when fetching the details of a given space.
|
|
3
|
+
*
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface ISpaceDetailsResponse {
|
|
7
|
+
rest_id: string;
|
|
8
|
+
state: string;
|
|
9
|
+
title: string;
|
|
10
|
+
media_key: string;
|
|
11
|
+
created_at: number;
|
|
12
|
+
started_at: number;
|
|
13
|
+
ended_at: string;
|
|
14
|
+
replay_start_time: number;
|
|
15
|
+
updated_at: number;
|
|
16
|
+
creator_results: CreatorResults;
|
|
17
|
+
conversation_controls: number;
|
|
18
|
+
disallow_join: boolean;
|
|
19
|
+
is_employee_only: boolean;
|
|
20
|
+
is_locked: boolean;
|
|
21
|
+
is_muted: boolean;
|
|
22
|
+
is_space_available_for_clipping: boolean;
|
|
23
|
+
is_space_available_for_replay: boolean;
|
|
24
|
+
narrow_cast_space_type: number;
|
|
25
|
+
no_incognito: boolean;
|
|
26
|
+
total_replay_watched: number;
|
|
27
|
+
total_live_listeners: number;
|
|
28
|
+
tweet_results: TweetResults;
|
|
29
|
+
}
|
|
30
|
+
interface CreatorResults {
|
|
31
|
+
result: Result;
|
|
32
|
+
}
|
|
33
|
+
interface Result {
|
|
34
|
+
__typename: string;
|
|
35
|
+
id: string;
|
|
36
|
+
rest_id: string;
|
|
37
|
+
affiliates_highlighted_label: AffiliatesHighlightedLabel;
|
|
38
|
+
has_graduated_access: boolean;
|
|
39
|
+
is_blue_verified: boolean;
|
|
40
|
+
profile_image_shape: string;
|
|
41
|
+
legacy: Legacy;
|
|
42
|
+
professional: Professional;
|
|
43
|
+
verified_phone_status: boolean;
|
|
44
|
+
}
|
|
45
|
+
interface AffiliatesHighlightedLabel {
|
|
46
|
+
label: Label;
|
|
47
|
+
}
|
|
48
|
+
interface Label {
|
|
49
|
+
url: Url;
|
|
50
|
+
badge: Badge;
|
|
51
|
+
description: string;
|
|
52
|
+
userLabelType: string;
|
|
53
|
+
userLabelDisplayType: string;
|
|
54
|
+
}
|
|
55
|
+
interface Url {
|
|
56
|
+
url: string;
|
|
57
|
+
urlType: string;
|
|
58
|
+
}
|
|
59
|
+
interface Badge {
|
|
60
|
+
url: string;
|
|
61
|
+
}
|
|
62
|
+
interface Legacy {
|
|
63
|
+
can_dm: boolean;
|
|
64
|
+
can_media_tag: boolean;
|
|
65
|
+
created_at: string;
|
|
66
|
+
default_profile: boolean;
|
|
67
|
+
default_profile_image: boolean;
|
|
68
|
+
description: string;
|
|
69
|
+
entities: Entities;
|
|
70
|
+
fast_followers_count: number;
|
|
71
|
+
favourites_count: number;
|
|
72
|
+
followers_count: number;
|
|
73
|
+
friends_count: number;
|
|
74
|
+
has_custom_timelines: boolean;
|
|
75
|
+
is_translator: boolean;
|
|
76
|
+
listed_count: number;
|
|
77
|
+
location: string;
|
|
78
|
+
media_count: number;
|
|
79
|
+
name: string;
|
|
80
|
+
normal_followers_count: number;
|
|
81
|
+
pinned_tweet_ids_str: string[];
|
|
82
|
+
possibly_sensitive: boolean;
|
|
83
|
+
profile_banner_url: string;
|
|
84
|
+
profile_image_url_https: string;
|
|
85
|
+
profile_interstitial_type: string;
|
|
86
|
+
screen_name: string;
|
|
87
|
+
statuses_count: number;
|
|
88
|
+
translator_type: string;
|
|
89
|
+
url: string;
|
|
90
|
+
verified: boolean;
|
|
91
|
+
want_retweets: boolean;
|
|
92
|
+
withheld_in_countries: any[];
|
|
93
|
+
}
|
|
94
|
+
interface Entities {
|
|
95
|
+
description: Description;
|
|
96
|
+
url: Url2;
|
|
97
|
+
}
|
|
98
|
+
interface Description {
|
|
99
|
+
urls: any[];
|
|
100
|
+
}
|
|
101
|
+
interface Url2 {
|
|
102
|
+
urls: Url3[];
|
|
103
|
+
}
|
|
104
|
+
interface Url3 {
|
|
105
|
+
display_url: string;
|
|
106
|
+
expanded_url: string;
|
|
107
|
+
url: string;
|
|
108
|
+
indices: number[];
|
|
109
|
+
}
|
|
110
|
+
interface Professional {
|
|
111
|
+
rest_id: string;
|
|
112
|
+
professional_type: string;
|
|
113
|
+
category: Category[];
|
|
114
|
+
}
|
|
115
|
+
interface Category {
|
|
116
|
+
id: number;
|
|
117
|
+
name: string;
|
|
118
|
+
icon_name: string;
|
|
119
|
+
}
|
|
120
|
+
interface TweetResults {
|
|
121
|
+
result: Result2;
|
|
122
|
+
}
|
|
123
|
+
interface Result2 {
|
|
124
|
+
__typename: string;
|
|
125
|
+
rest_id: string;
|
|
126
|
+
core: Core;
|
|
127
|
+
card: Card;
|
|
128
|
+
voiceInfo: VoiceInfo;
|
|
129
|
+
unmention_data: UnmentionData;
|
|
130
|
+
unified_card: UnifiedCard;
|
|
131
|
+
edit_control: EditControl;
|
|
132
|
+
is_translatable: boolean;
|
|
133
|
+
views: Views;
|
|
134
|
+
source: string;
|
|
135
|
+
legacy: Legacy4;
|
|
136
|
+
}
|
|
137
|
+
interface Core {
|
|
138
|
+
user_results: UserResults;
|
|
139
|
+
}
|
|
140
|
+
interface UserResults {
|
|
141
|
+
result: Result3;
|
|
142
|
+
}
|
|
143
|
+
interface Result3 {
|
|
144
|
+
__typename: string;
|
|
145
|
+
id: string;
|
|
146
|
+
rest_id: string;
|
|
147
|
+
affiliates_highlighted_label: AffiliatesHighlightedLabel2;
|
|
148
|
+
has_graduated_access: boolean;
|
|
149
|
+
is_blue_verified: boolean;
|
|
150
|
+
profile_image_shape: string;
|
|
151
|
+
legacy: Legacy2;
|
|
152
|
+
professional: Professional2;
|
|
153
|
+
verified_phone_status: boolean;
|
|
154
|
+
}
|
|
155
|
+
interface AffiliatesHighlightedLabel2 {
|
|
156
|
+
label: Label2;
|
|
157
|
+
}
|
|
158
|
+
interface Label2 {
|
|
159
|
+
url: Url4;
|
|
160
|
+
badge: Badge2;
|
|
161
|
+
description: string;
|
|
162
|
+
userLabelType: string;
|
|
163
|
+
userLabelDisplayType: string;
|
|
164
|
+
}
|
|
165
|
+
interface Url4 {
|
|
166
|
+
url: string;
|
|
167
|
+
urlType: string;
|
|
168
|
+
}
|
|
169
|
+
interface Badge2 {
|
|
170
|
+
url: string;
|
|
171
|
+
}
|
|
172
|
+
interface Legacy2 {
|
|
173
|
+
can_dm: boolean;
|
|
174
|
+
can_media_tag: boolean;
|
|
175
|
+
created_at: string;
|
|
176
|
+
default_profile: boolean;
|
|
177
|
+
default_profile_image: boolean;
|
|
178
|
+
description: string;
|
|
179
|
+
entities: Entities2;
|
|
180
|
+
fast_followers_count: number;
|
|
181
|
+
favourites_count: number;
|
|
182
|
+
followers_count: number;
|
|
183
|
+
friends_count: number;
|
|
184
|
+
has_custom_timelines: boolean;
|
|
185
|
+
is_translator: boolean;
|
|
186
|
+
listed_count: number;
|
|
187
|
+
location: string;
|
|
188
|
+
media_count: number;
|
|
189
|
+
name: string;
|
|
190
|
+
normal_followers_count: number;
|
|
191
|
+
pinned_tweet_ids_str: string[];
|
|
192
|
+
possibly_sensitive: boolean;
|
|
193
|
+
profile_banner_url: string;
|
|
194
|
+
profile_image_url_https: string;
|
|
195
|
+
profile_interstitial_type: string;
|
|
196
|
+
screen_name: string;
|
|
197
|
+
statuses_count: number;
|
|
198
|
+
translator_type: string;
|
|
199
|
+
url: string;
|
|
200
|
+
verified: boolean;
|
|
201
|
+
want_retweets: boolean;
|
|
202
|
+
withheld_in_countries: any[];
|
|
203
|
+
}
|
|
204
|
+
interface Entities2 {
|
|
205
|
+
description: Description2;
|
|
206
|
+
url: Url5;
|
|
207
|
+
}
|
|
208
|
+
interface Description2 {
|
|
209
|
+
urls: any[];
|
|
210
|
+
}
|
|
211
|
+
interface Url5 {
|
|
212
|
+
urls: Url6[];
|
|
213
|
+
}
|
|
214
|
+
interface Url6 {
|
|
215
|
+
display_url: string;
|
|
216
|
+
expanded_url: string;
|
|
217
|
+
url: string;
|
|
218
|
+
indices: number[];
|
|
219
|
+
}
|
|
220
|
+
interface Professional2 {
|
|
221
|
+
rest_id: string;
|
|
222
|
+
professional_type: string;
|
|
223
|
+
category: Category2[];
|
|
224
|
+
}
|
|
225
|
+
interface Category2 {
|
|
226
|
+
id: number;
|
|
227
|
+
name: string;
|
|
228
|
+
icon_name: string;
|
|
229
|
+
}
|
|
230
|
+
interface Card {
|
|
231
|
+
rest_id: string;
|
|
232
|
+
legacy: Legacy3;
|
|
233
|
+
}
|
|
234
|
+
interface Legacy3 {
|
|
235
|
+
binding_values: BindingValue[];
|
|
236
|
+
card_platform: CardPlatform;
|
|
237
|
+
name: string;
|
|
238
|
+
url: string;
|
|
239
|
+
user_refs_results: any[];
|
|
240
|
+
}
|
|
241
|
+
interface BindingValue {
|
|
242
|
+
key: string;
|
|
243
|
+
value: Value;
|
|
244
|
+
}
|
|
245
|
+
interface Value {
|
|
246
|
+
string_value: string;
|
|
247
|
+
type: string;
|
|
248
|
+
scribe_key?: string;
|
|
249
|
+
}
|
|
250
|
+
interface CardPlatform {
|
|
251
|
+
platform: Platform;
|
|
252
|
+
}
|
|
253
|
+
interface Platform {
|
|
254
|
+
audience: Audience;
|
|
255
|
+
device: Device;
|
|
256
|
+
}
|
|
257
|
+
interface Audience {
|
|
258
|
+
name: string;
|
|
259
|
+
}
|
|
260
|
+
interface Device {
|
|
261
|
+
name: string;
|
|
262
|
+
version: string;
|
|
263
|
+
}
|
|
264
|
+
interface VoiceInfo {
|
|
265
|
+
}
|
|
266
|
+
interface UnmentionData {
|
|
267
|
+
}
|
|
268
|
+
interface UnifiedCard {
|
|
269
|
+
card_fetch_state: string;
|
|
270
|
+
}
|
|
271
|
+
interface EditControl {
|
|
272
|
+
edit_tweet_ids: string[];
|
|
273
|
+
editable_until_msecs: string;
|
|
274
|
+
is_edit_eligible: boolean;
|
|
275
|
+
edits_remaining: string;
|
|
276
|
+
}
|
|
277
|
+
interface Views {
|
|
278
|
+
count: string;
|
|
279
|
+
state: string;
|
|
280
|
+
}
|
|
281
|
+
interface Legacy4 {
|
|
282
|
+
bookmark_count: number;
|
|
283
|
+
bookmarked: boolean;
|
|
284
|
+
created_at: string;
|
|
285
|
+
conversation_id_str: string;
|
|
286
|
+
display_text_range: number[];
|
|
287
|
+
entities: Entities3;
|
|
288
|
+
favorite_count: number;
|
|
289
|
+
favorited: boolean;
|
|
290
|
+
full_text: string;
|
|
291
|
+
is_quote_status: boolean;
|
|
292
|
+
lang: string;
|
|
293
|
+
possibly_sensitive: boolean;
|
|
294
|
+
possibly_sensitive_editable: boolean;
|
|
295
|
+
quote_count: number;
|
|
296
|
+
reply_count: number;
|
|
297
|
+
retweet_count: number;
|
|
298
|
+
retweeted: boolean;
|
|
299
|
+
user_id_str: string;
|
|
300
|
+
id_str: string;
|
|
301
|
+
}
|
|
302
|
+
interface Entities3 {
|
|
303
|
+
hashtags: any[];
|
|
304
|
+
symbols: any[];
|
|
305
|
+
timestamps: any[];
|
|
306
|
+
urls: Url7[];
|
|
307
|
+
user_mentions: any[];
|
|
308
|
+
}
|
|
309
|
+
interface Url7 {
|
|
310
|
+
display_url: string;
|
|
311
|
+
expanded_url: string;
|
|
312
|
+
url: string;
|
|
313
|
+
indices: number[];
|
|
314
|
+
}
|
|
315
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Details.js","sourceRoot":"","sources":["../../../../src/types/raw/space/Details.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The raw data received when fetching the details of a given tweet.
|
|
3
|
+
*
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface ITweetDetailsResponse {
|
|
7
|
+
data: Data;
|
|
8
|
+
}
|
|
9
|
+
interface Data {
|
|
10
|
+
tweetResult: TweetResult;
|
|
11
|
+
}
|
|
12
|
+
interface TweetResult {
|
|
13
|
+
result: Result;
|
|
14
|
+
}
|
|
15
|
+
interface Result {
|
|
16
|
+
__typename: string;
|
|
17
|
+
rest_id: string;
|
|
18
|
+
has_birdwatch_notes: boolean;
|
|
19
|
+
core: Core;
|
|
20
|
+
unmention_data: UnmentionData;
|
|
21
|
+
edit_control: EditControl;
|
|
22
|
+
is_translatable: boolean;
|
|
23
|
+
views: Views;
|
|
24
|
+
source: string;
|
|
25
|
+
note_tweet: NoteTweet;
|
|
26
|
+
legacy: Legacy2;
|
|
27
|
+
quick_promote_eligibility: QuickPromoteEligibility;
|
|
28
|
+
}
|
|
29
|
+
interface Core {
|
|
30
|
+
user_results: UserResults;
|
|
31
|
+
}
|
|
32
|
+
interface UserResults {
|
|
33
|
+
result: Result2;
|
|
34
|
+
}
|
|
35
|
+
interface Result2 {
|
|
36
|
+
__typename: string;
|
|
37
|
+
id: string;
|
|
38
|
+
rest_id: string;
|
|
39
|
+
affiliates_highlighted_label: AffiliatesHighlightedLabel;
|
|
40
|
+
has_graduated_access: boolean;
|
|
41
|
+
is_blue_verified: boolean;
|
|
42
|
+
profile_image_shape: string;
|
|
43
|
+
legacy: Legacy;
|
|
44
|
+
professional: Professional;
|
|
45
|
+
verified_phone_status: boolean;
|
|
46
|
+
}
|
|
47
|
+
interface AffiliatesHighlightedLabel {
|
|
48
|
+
}
|
|
49
|
+
interface Legacy {
|
|
50
|
+
can_dm: boolean;
|
|
51
|
+
can_media_tag: boolean;
|
|
52
|
+
created_at: string;
|
|
53
|
+
default_profile: boolean;
|
|
54
|
+
default_profile_image: boolean;
|
|
55
|
+
description: string;
|
|
56
|
+
entities: Entities;
|
|
57
|
+
fast_followers_count: number;
|
|
58
|
+
favourites_count: number;
|
|
59
|
+
followers_count: number;
|
|
60
|
+
friends_count: number;
|
|
61
|
+
has_custom_timelines: boolean;
|
|
62
|
+
is_translator: boolean;
|
|
63
|
+
listed_count: number;
|
|
64
|
+
location: string;
|
|
65
|
+
media_count: number;
|
|
66
|
+
name: string;
|
|
67
|
+
normal_followers_count: number;
|
|
68
|
+
pinned_tweet_ids_str: string[];
|
|
69
|
+
possibly_sensitive: boolean;
|
|
70
|
+
profile_image_url_https: string;
|
|
71
|
+
profile_interstitial_type: string;
|
|
72
|
+
screen_name: string;
|
|
73
|
+
statuses_count: number;
|
|
74
|
+
translator_type: string;
|
|
75
|
+
url: string;
|
|
76
|
+
verified: boolean;
|
|
77
|
+
want_retweets: boolean;
|
|
78
|
+
withheld_in_countries: any[];
|
|
79
|
+
}
|
|
80
|
+
interface Entities {
|
|
81
|
+
description: Description;
|
|
82
|
+
url: Url2;
|
|
83
|
+
}
|
|
84
|
+
interface Description {
|
|
85
|
+
urls: Url[];
|
|
86
|
+
}
|
|
87
|
+
interface Url {
|
|
88
|
+
display_url: string;
|
|
89
|
+
expanded_url: string;
|
|
90
|
+
url: string;
|
|
91
|
+
indices: number[];
|
|
92
|
+
}
|
|
93
|
+
interface Url2 {
|
|
94
|
+
urls: Url3[];
|
|
95
|
+
}
|
|
96
|
+
interface Url3 {
|
|
97
|
+
display_url: string;
|
|
98
|
+
expanded_url: string;
|
|
99
|
+
url: string;
|
|
100
|
+
indices: number[];
|
|
101
|
+
}
|
|
102
|
+
interface Professional {
|
|
103
|
+
rest_id: string;
|
|
104
|
+
professional_type: string;
|
|
105
|
+
category: Category[];
|
|
106
|
+
}
|
|
107
|
+
interface Category {
|
|
108
|
+
id: number;
|
|
109
|
+
name: string;
|
|
110
|
+
icon_name: string;
|
|
111
|
+
}
|
|
112
|
+
interface UnmentionData {
|
|
113
|
+
}
|
|
114
|
+
interface EditControl {
|
|
115
|
+
edit_tweet_ids: string[];
|
|
116
|
+
editable_until_msecs: string;
|
|
117
|
+
is_edit_eligible: boolean;
|
|
118
|
+
edits_remaining: string;
|
|
119
|
+
}
|
|
120
|
+
interface Views {
|
|
121
|
+
count: string;
|
|
122
|
+
state: string;
|
|
123
|
+
}
|
|
124
|
+
interface NoteTweet {
|
|
125
|
+
is_expandable: boolean;
|
|
126
|
+
note_tweet_results: NoteTweetResults;
|
|
127
|
+
}
|
|
128
|
+
interface NoteTweetResults {
|
|
129
|
+
result: Result3;
|
|
130
|
+
}
|
|
131
|
+
interface Result3 {
|
|
132
|
+
id: string;
|
|
133
|
+
text: string;
|
|
134
|
+
entity_set: EntitySet;
|
|
135
|
+
richtext: Richtext;
|
|
136
|
+
media: Media;
|
|
137
|
+
}
|
|
138
|
+
interface EntitySet {
|
|
139
|
+
user_mentions: any[];
|
|
140
|
+
urls: any[];
|
|
141
|
+
hashtags: any[];
|
|
142
|
+
symbols: any[];
|
|
143
|
+
}
|
|
144
|
+
interface Richtext {
|
|
145
|
+
richtext_tags: RichtextTag[];
|
|
146
|
+
}
|
|
147
|
+
interface RichtextTag {
|
|
148
|
+
from_index: number;
|
|
149
|
+
to_index: number;
|
|
150
|
+
richtext_types: string[];
|
|
151
|
+
}
|
|
152
|
+
interface Media {
|
|
153
|
+
inline_media: any[];
|
|
154
|
+
}
|
|
155
|
+
interface Legacy2 {
|
|
156
|
+
bookmark_count: number;
|
|
157
|
+
bookmarked: boolean;
|
|
158
|
+
created_at: string;
|
|
159
|
+
conversation_id_str: string;
|
|
160
|
+
display_text_range: number[];
|
|
161
|
+
entities: Entities2;
|
|
162
|
+
favorite_count: number;
|
|
163
|
+
favorited: boolean;
|
|
164
|
+
full_text: string;
|
|
165
|
+
is_quote_status: boolean;
|
|
166
|
+
lang: string;
|
|
167
|
+
quote_count: number;
|
|
168
|
+
reply_count: number;
|
|
169
|
+
retweet_count: number;
|
|
170
|
+
retweeted: boolean;
|
|
171
|
+
user_id_str: string;
|
|
172
|
+
id_str: string;
|
|
173
|
+
}
|
|
174
|
+
interface Entities2 {
|
|
175
|
+
user_mentions: any[];
|
|
176
|
+
urls: any[];
|
|
177
|
+
hashtags: any[];
|
|
178
|
+
symbols: any[];
|
|
179
|
+
}
|
|
180
|
+
interface QuickPromoteEligibility {
|
|
181
|
+
eligibility: string;
|
|
182
|
+
}
|
|
183
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Details.js","sourceRoot":"","sources":["../../../../src/types/raw/tweet/Details.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Like.js","sourceRoot":"","sources":["../../../../src/types/raw/tweet/Like.ts"],"names":[],"mappings":";AAAA,oBAAoB"}
|