@finch_ren/x-scraper 0.1.0
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/README.md +215 -0
- package/dist/src/api.d.ts +156 -0
- package/dist/src/api.js +245 -0
- package/dist/src/apis/defaultApi.d.ts +25 -0
- package/dist/src/apis/defaultApi.js +44 -0
- package/dist/src/apis/index.d.ts +12 -0
- package/dist/src/apis/index.js +26 -0
- package/dist/src/apis/initialStateApi.d.ts +3 -0
- package/dist/src/apis/initialStateApi.js +7 -0
- package/dist/src/apis/postApi.d.ts +58 -0
- package/dist/src/apis/postApi.js +130 -0
- package/dist/src/apis/spaceApi.d.ts +28 -0
- package/dist/src/apis/spaceApi.js +42 -0
- package/dist/src/apis/tweetApi.d.ts +118 -0
- package/dist/src/apis/tweetApi.js +195 -0
- package/dist/src/apis/userApi.d.ts +27 -0
- package/dist/src/apis/userApi.js +43 -0
- package/dist/src/apis/userListApi.d.ts +67 -0
- package/dist/src/apis/userListApi.js +111 -0
- package/dist/src/apis/usersApi.d.ts +19 -0
- package/dist/src/apis/usersApi.js +25 -0
- package/dist/src/apis/v11GetApi.d.ts +20 -0
- package/dist/src/apis/v11GetApi.js +29 -0
- package/dist/src/apis/v11PostApi.d.ts +26 -0
- package/dist/src/apis/v11PostApi.js +33 -0
- package/dist/src/apis/v20GetApi.d.ts +10 -0
- package/dist/src/apis/v20GetApi.js +12 -0
- package/dist/src/index.d.ts +6 -0
- package/dist/src/index.js +22 -0
- package/dist/src/models/flag.d.ts +6 -0
- package/dist/src/models/flag.js +3 -0
- package/dist/src/models/header.d.ts +15 -0
- package/dist/src/models/header.js +3 -0
- package/dist/src/models/index.d.ts +6 -0
- package/dist/src/models/index.js +22 -0
- package/dist/src/models/response.d.ts +10 -0
- package/dist/src/models/response.js +3 -0
- package/dist/src/models/timeline.d.ts +28 -0
- package/dist/src/models/timeline.js +3 -0
- package/dist/src/models/utils.d.ts +13 -0
- package/dist/src/models/utils.js +3 -0
- package/dist/src/openapi/index.d.ts +4 -0
- package/dist/src/openapi/index.js +24 -0
- package/dist/src/openapi/src/apis/DefaultApi.d.ts +54 -0
- package/dist/src/openapi/src/apis/DefaultApi.js +282 -0
- package/dist/src/openapi/src/apis/OtherApi.d.ts +65 -0
- package/dist/src/openapi/src/apis/OtherApi.js +369 -0
- package/dist/src/openapi/src/apis/PostApi.d.ts +147 -0
- package/dist/src/openapi/src/apis/PostApi.js +874 -0
- package/dist/src/openapi/src/apis/TweetApi.d.ts +280 -0
- package/dist/src/openapi/src/apis/TweetApi.js +1729 -0
- package/dist/src/openapi/src/apis/UserApi.d.ts +54 -0
- package/dist/src/openapi/src/apis/UserApi.js +282 -0
- package/dist/src/openapi/src/apis/UserListApi.d.ts +121 -0
- package/dist/src/openapi/src/apis/UserListApi.js +712 -0
- package/dist/src/openapi/src/apis/UsersApi.d.ts +36 -0
- package/dist/src/openapi/src/apis/UsersApi.js +167 -0
- package/dist/src/openapi/src/apis/V11GetApi.d.ts +88 -0
- package/dist/src/openapi/src/apis/V11GetApi.js +495 -0
- package/dist/src/openapi/src/apis/V11PostApi.d.ts +74 -0
- package/dist/src/openapi/src/apis/V11PostApi.js +437 -0
- package/dist/src/openapi/src/apis/V20GetApi.d.ts +69 -0
- package/dist/src/openapi/src/apis/V20GetApi.js +371 -0
- package/dist/src/openapi/src/apis/index.d.ts +11 -0
- package/dist/src/openapi/src/apis/index.js +29 -0
- package/dist/src/openapi/src/index.d.ts +4 -0
- package/dist/src/openapi/src/index.js +22 -0
- package/dist/src/openapi/src/models/AboutCommunityResult.d.ts +41 -0
- package/dist/src/openapi/src/models/AboutCommunityResult.js +57 -0
- package/dist/src/openapi/src/models/AboutCommunityResults.d.ts +34 -0
- package/dist/src/openapi/src/models/AboutCommunityResults.js +52 -0
- package/dist/src/openapi/src/models/AboutCommunityTweetData.d.ts +34 -0
- package/dist/src/openapi/src/models/AboutCommunityTweetData.js +52 -0
- package/dist/src/openapi/src/models/AdditionalMediaInfo.d.ts +65 -0
- package/dist/src/openapi/src/models/AdditionalMediaInfo.js +63 -0
- package/dist/src/openapi/src/models/AdditionalMediaInfoCallToActions.d.ts +40 -0
- package/dist/src/openapi/src/models/AdditionalMediaInfoCallToActions.js +52 -0
- package/dist/src/openapi/src/models/AdditionalMediaInfoCallToActionsUrl.d.ts +33 -0
- package/dist/src/openapi/src/models/AdditionalMediaInfoCallToActionsUrl.js +51 -0
- package/dist/src/openapi/src/models/AllowDownloadStatus.d.ts +33 -0
- package/dist/src/openapi/src/models/AllowDownloadStatus.js +49 -0
- package/dist/src/openapi/src/models/AnalysisResults.d.ts +34 -0
- package/dist/src/openapi/src/models/AnalysisResults.js +52 -0
- package/dist/src/openapi/src/models/Article.d.ts +34 -0
- package/dist/src/openapi/src/models/Article.js +52 -0
- package/dist/src/openapi/src/models/ArticleCoverMedia.d.ts +52 -0
- package/dist/src/openapi/src/models/ArticleCoverMedia.js +64 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaColorInfo.d.ts +34 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaColorInfo.js +52 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaColorInfoPalette.d.ts +40 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaColorInfoPalette.js +56 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaColorInfoPaletteRGB.d.ts +45 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaColorInfoPaletteRGB.js +59 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaInfo.d.ts +59 -0
- package/dist/src/openapi/src/models/ArticleCoverMediaInfo.js +67 -0
- package/dist/src/openapi/src/models/ArticleLifecycleState.d.ts +33 -0
- package/dist/src/openapi/src/models/ArticleLifecycleState.js +51 -0
- package/dist/src/openapi/src/models/ArticleMetadata.d.ts +33 -0
- package/dist/src/openapi/src/models/ArticleMetadata.js +51 -0
- package/dist/src/openapi/src/models/ArticleResult.d.ts +72 -0
- package/dist/src/openapi/src/models/ArticleResult.js +76 -0
- package/dist/src/openapi/src/models/ArticleResults.d.ts +34 -0
- package/dist/src/openapi/src/models/ArticleResults.js +52 -0
- package/dist/src/openapi/src/models/AudioSpace.d.ts +55 -0
- package/dist/src/openapi/src/models/AudioSpace.js +59 -0
- package/dist/src/openapi/src/models/AudioSpaceByIdResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/AudioSpaceByIdResponse.js +55 -0
- package/dist/src/openapi/src/models/AudioSpaceData.d.ts +34 -0
- package/dist/src/openapi/src/models/AudioSpaceData.js +52 -0
- package/dist/src/openapi/src/models/AudioSpaceMentionedUser.d.ts +33 -0
- package/dist/src/openapi/src/models/AudioSpaceMentionedUser.js +51 -0
- package/dist/src/openapi/src/models/AudioSpaceMetadata.d.ts +208 -0
- package/dist/src/openapi/src/models/AudioSpaceMetadata.js +120 -0
- package/dist/src/openapi/src/models/AudioSpaceParticipant.d.ts +82 -0
- package/dist/src/openapi/src/models/AudioSpaceParticipant.js +70 -0
- package/dist/src/openapi/src/models/AudioSpaceParticipants.d.ts +52 -0
- package/dist/src/openapi/src/models/AudioSpaceParticipants.js +58 -0
- package/dist/src/openapi/src/models/AuthorCommunityRelationship.d.ts +57 -0
- package/dist/src/openapi/src/models/AuthorCommunityRelationship.js +67 -0
- package/dist/src/openapi/src/models/BirdwatchEntity.d.ts +46 -0
- package/dist/src/openapi/src/models/BirdwatchEntity.js +60 -0
- package/dist/src/openapi/src/models/BirdwatchEntityRef.d.ts +66 -0
- package/dist/src/openapi/src/models/BirdwatchEntityRef.js +71 -0
- package/dist/src/openapi/src/models/BirdwatchPivot.d.ts +106 -0
- package/dist/src/openapi/src/models/BirdwatchPivot.js +91 -0
- package/dist/src/openapi/src/models/BirdwatchPivotCallToAction.d.ts +45 -0
- package/dist/src/openapi/src/models/BirdwatchPivotCallToAction.js +59 -0
- package/dist/src/openapi/src/models/BirdwatchPivotFooter.d.ts +40 -0
- package/dist/src/openapi/src/models/BirdwatchPivotFooter.js +56 -0
- package/dist/src/openapi/src/models/BirdwatchPivotNote.d.ts +33 -0
- package/dist/src/openapi/src/models/BirdwatchPivotNote.js +51 -0
- package/dist/src/openapi/src/models/BirdwatchPivotSubtitle.d.ts +40 -0
- package/dist/src/openapi/src/models/BirdwatchPivotSubtitle.js +56 -0
- package/dist/src/openapi/src/models/BookmarksResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/BookmarksResponse.js +53 -0
- package/dist/src/openapi/src/models/BookmarksResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/BookmarksResponseData.js +52 -0
- package/dist/src/openapi/src/models/BookmarksTimeline.d.ts +34 -0
- package/dist/src/openapi/src/models/BookmarksTimeline.js +52 -0
- package/dist/src/openapi/src/models/Broadcast.d.ts +45 -0
- package/dist/src/openapi/src/models/Broadcast.js +59 -0
- package/dist/src/openapi/src/models/BroadcastGraphQL.d.ts +179 -0
- package/dist/src/openapi/src/models/BroadcastGraphQL.js +99 -0
- package/dist/src/openapi/src/models/BroadcastGraphQLUserResults.d.ts +34 -0
- package/dist/src/openapi/src/models/BroadcastGraphQLUserResults.js +50 -0
- package/dist/src/openapi/src/models/BroadcastQueryResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/BroadcastQueryResponse.js +53 -0
- package/dist/src/openapi/src/models/BroadcastQueryResponseData.d.ts +41 -0
- package/dist/src/openapi/src/models/BroadcastQueryResponseData.js +53 -0
- package/dist/src/openapi/src/models/BroadcastQueryResponseDataBroadcastResults.d.ts +34 -0
- package/dist/src/openapi/src/models/BroadcastQueryResponseDataBroadcastResults.js +50 -0
- package/dist/src/openapi/src/models/BroadcastsShowResponse.d.ts +36 -0
- package/dist/src/openapi/src/models/BroadcastsShowResponse.js +53 -0
- package/dist/src/openapi/src/models/Callback.d.ts +33 -0
- package/dist/src/openapi/src/models/Callback.js +51 -0
- package/dist/src/openapi/src/models/ClientEventInfo.d.ts +47 -0
- package/dist/src/openapi/src/models/ClientEventInfo.js +53 -0
- package/dist/src/openapi/src/models/CommunitiesActions.d.ts +33 -0
- package/dist/src/openapi/src/models/CommunitiesActions.js +51 -0
- package/dist/src/openapi/src/models/Community.d.ts +34 -0
- package/dist/src/openapi/src/models/Community.js +52 -0
- package/dist/src/openapi/src/models/CommunityAboutTimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/CommunityAboutTimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/CommunityActions.d.ts +62 -0
- package/dist/src/openapi/src/models/CommunityActions.js +62 -0
- package/dist/src/openapi/src/models/CommunityData.d.ts +220 -0
- package/dist/src/openapi/src/models/CommunityData.js +132 -0
- package/dist/src/openapi/src/models/CommunityDeleteActionResult.d.ts +47 -0
- package/dist/src/openapi/src/models/CommunityDeleteActionResult.js +63 -0
- package/dist/src/openapi/src/models/CommunityInvitesResult.d.ts +53 -0
- package/dist/src/openapi/src/models/CommunityInvitesResult.js +67 -0
- package/dist/src/openapi/src/models/CommunityJoinAction.d.ts +34 -0
- package/dist/src/openapi/src/models/CommunityJoinAction.js +52 -0
- package/dist/src/openapi/src/models/CommunityJoinActionResultUnion.d.ts +28 -0
- package/dist/src/openapi/src/models/CommunityJoinActionResultUnion.js +54 -0
- package/dist/src/openapi/src/models/CommunityJoinActionUnavailable.d.ts +53 -0
- package/dist/src/openapi/src/models/CommunityJoinActionUnavailable.js +67 -0
- package/dist/src/openapi/src/models/CommunityJoinRequestsResult.d.ts +34 -0
- package/dist/src/openapi/src/models/CommunityJoinRequestsResult.js +52 -0
- package/dist/src/openapi/src/models/CommunityLeaveActionResult.d.ts +53 -0
- package/dist/src/openapi/src/models/CommunityLeaveActionResult.js +67 -0
- package/dist/src/openapi/src/models/CommunityMediaTimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/CommunityMediaTimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/CommunityPinActionResult.d.ts +34 -0
- package/dist/src/openapi/src/models/CommunityPinActionResult.js +52 -0
- package/dist/src/openapi/src/models/CommunityRelationship.d.ts +54 -0
- package/dist/src/openapi/src/models/CommunityRelationship.js +64 -0
- package/dist/src/openapi/src/models/CommunityRule.d.ts +45 -0
- package/dist/src/openapi/src/models/CommunityRule.js +57 -0
- package/dist/src/openapi/src/models/CommunityTweetsTimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/CommunityTweetsTimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/CommunityUnpinActionResult.d.ts +34 -0
- package/dist/src/openapi/src/models/CommunityUnpinActionResult.js +52 -0
- package/dist/src/openapi/src/models/CommunityUrls.d.ts +34 -0
- package/dist/src/openapi/src/models/CommunityUrls.js +52 -0
- package/dist/src/openapi/src/models/CommunityUrlsPermalink.d.ts +33 -0
- package/dist/src/openapi/src/models/CommunityUrlsPermalink.js +51 -0
- package/dist/src/openapi/src/models/ContentEntryType.d.ts +27 -0
- package/dist/src/openapi/src/models/ContentEntryType.js +53 -0
- package/dist/src/openapi/src/models/ContentItemType.d.ts +33 -0
- package/dist/src/openapi/src/models/ContentItemType.js +59 -0
- package/dist/src/openapi/src/models/ContentUnion.d.ts +31 -0
- package/dist/src/openapi/src/models/ContentUnion.js +59 -0
- package/dist/src/openapi/src/models/ConversationControl.d.ts +42 -0
- package/dist/src/openapi/src/models/ConversationControl.js +60 -0
- package/dist/src/openapi/src/models/CoverCta.d.ts +67 -0
- package/dist/src/openapi/src/models/CoverCta.js +73 -0
- package/dist/src/openapi/src/models/CreateBookmarkResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/CreateBookmarkResponse.js +55 -0
- package/dist/src/openapi/src/models/CreateBookmarkResponseData.d.ts +33 -0
- package/dist/src/openapi/src/models/CreateBookmarkResponseData.js +49 -0
- package/dist/src/openapi/src/models/CreateRetweet.d.ts +34 -0
- package/dist/src/openapi/src/models/CreateRetweet.js +52 -0
- package/dist/src/openapi/src/models/CreateRetweetResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/CreateRetweetResponse.js +55 -0
- package/dist/src/openapi/src/models/CreateRetweetResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/CreateRetweetResponseData.js +50 -0
- package/dist/src/openapi/src/models/CreateRetweetResponseResult.d.ts +34 -0
- package/dist/src/openapi/src/models/CreateRetweetResponseResult.js +52 -0
- package/dist/src/openapi/src/models/CreateTweet.d.ts +34 -0
- package/dist/src/openapi/src/models/CreateTweet.js +52 -0
- package/dist/src/openapi/src/models/CreateTweetResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/CreateTweetResponse.js +55 -0
- package/dist/src/openapi/src/models/CreateTweetResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/CreateTweetResponseData.js +50 -0
- package/dist/src/openapi/src/models/CreateTweetResponseResult.d.ts +34 -0
- package/dist/src/openapi/src/models/CreateTweetResponseResult.js +52 -0
- package/dist/src/openapi/src/models/CtaClientEventInfo.d.ts +40 -0
- package/dist/src/openapi/src/models/CtaClientEventInfo.js +58 -0
- package/dist/src/openapi/src/models/CursorType.d.ts +30 -0
- package/dist/src/openapi/src/models/CursorType.js +56 -0
- package/dist/src/openapi/src/models/DeleteBookmarkResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/DeleteBookmarkResponse.js +55 -0
- package/dist/src/openapi/src/models/DeleteBookmarkResponseData.d.ts +33 -0
- package/dist/src/openapi/src/models/DeleteBookmarkResponseData.js +49 -0
- package/dist/src/openapi/src/models/DeleteRetweet.d.ts +34 -0
- package/dist/src/openapi/src/models/DeleteRetweet.js +52 -0
- package/dist/src/openapi/src/models/DeleteRetweetResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/DeleteRetweetResponse.js +55 -0
- package/dist/src/openapi/src/models/DeleteRetweetResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/DeleteRetweetResponseData.js +50 -0
- package/dist/src/openapi/src/models/DeleteRetweetResponseResult.d.ts +34 -0
- package/dist/src/openapi/src/models/DeleteRetweetResponseResult.js +50 -0
- package/dist/src/openapi/src/models/DeleteTweetResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/DeleteTweetResponse.js +55 -0
- package/dist/src/openapi/src/models/DeleteTweetResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/DeleteTweetResponseData.js +50 -0
- package/dist/src/openapi/src/models/DeleteTweetResponseResult.d.ts +33 -0
- package/dist/src/openapi/src/models/DeleteTweetResponseResult.js +51 -0
- package/dist/src/openapi/src/models/DisplayTreatment.d.ts +39 -0
- package/dist/src/openapi/src/models/DisplayTreatment.js +53 -0
- package/dist/src/openapi/src/models/DisplayType.d.ts +28 -0
- package/dist/src/openapi/src/models/DisplayType.js +54 -0
- package/dist/src/openapi/src/models/Entities.d.ts +72 -0
- package/dist/src/openapi/src/models/Entities.js +70 -0
- package/dist/src/openapi/src/models/ErrorExtensions.d.ts +64 -0
- package/dist/src/openapi/src/models/ErrorExtensions.js +70 -0
- package/dist/src/openapi/src/models/ErrorResponse.d.ts +91 -0
- package/dist/src/openapi/src/models/ErrorResponse.js +87 -0
- package/dist/src/openapi/src/models/ErrorResponsePathInner.d.ts +22 -0
- package/dist/src/openapi/src/models/ErrorResponsePathInner.js +50 -0
- package/dist/src/openapi/src/models/ExtMediaAvailability.d.ts +47 -0
- package/dist/src/openapi/src/models/ExtMediaAvailability.js +59 -0
- package/dist/src/openapi/src/models/ExtendedEntities.d.ts +34 -0
- package/dist/src/openapi/src/models/ExtendedEntities.js +52 -0
- package/dist/src/openapi/src/models/FavoriteTweet.d.ts +33 -0
- package/dist/src/openapi/src/models/FavoriteTweet.js +49 -0
- package/dist/src/openapi/src/models/FavoriteTweetResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/FavoriteTweetResponse.js +55 -0
- package/dist/src/openapi/src/models/FeedbackInfo.d.ts +40 -0
- package/dist/src/openapi/src/models/FeedbackInfo.js +52 -0
- package/dist/src/openapi/src/models/FollowResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/FollowResponse.js +55 -0
- package/dist/src/openapi/src/models/FollowResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/FollowResponseData.js +50 -0
- package/dist/src/openapi/src/models/FollowResponseResult.d.ts +41 -0
- package/dist/src/openapi/src/models/FollowResponseResult.js +57 -0
- package/dist/src/openapi/src/models/FollowResponseUser.d.ts +34 -0
- package/dist/src/openapi/src/models/FollowResponseUser.js +52 -0
- package/dist/src/openapi/src/models/FollowTimeline.d.ts +34 -0
- package/dist/src/openapi/src/models/FollowTimeline.js +52 -0
- package/dist/src/openapi/src/models/GrokImageAnnotation.d.ts +39 -0
- package/dist/src/openapi/src/models/GrokImageAnnotation.js +55 -0
- package/dist/src/openapi/src/models/GrokShareAttachment.d.ts +34 -0
- package/dist/src/openapi/src/models/GrokShareAttachment.js +52 -0
- package/dist/src/openapi/src/models/GrokShareAttachmentItem.d.ts +46 -0
- package/dist/src/openapi/src/models/GrokShareAttachmentItem.js +58 -0
- package/dist/src/openapi/src/models/Highlight.d.ts +34 -0
- package/dist/src/openapi/src/models/Highlight.js +52 -0
- package/dist/src/openapi/src/models/HomeTimelineHome.d.ts +34 -0
- package/dist/src/openapi/src/models/HomeTimelineHome.js +52 -0
- package/dist/src/openapi/src/models/HomeTimelineResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/HomeTimelineResponseData.js +52 -0
- package/dist/src/openapi/src/models/InstructionType.d.ts +34 -0
- package/dist/src/openapi/src/models/InstructionType.js +60 -0
- package/dist/src/openapi/src/models/InstructionUnion.d.ts +52 -0
- package/dist/src/openapi/src/models/InstructionUnion.js +94 -0
- package/dist/src/openapi/src/models/ItemContentUnion.d.ts +49 -0
- package/dist/src/openapi/src/models/ItemContentUnion.js +89 -0
- package/dist/src/openapi/src/models/ItemResult.d.ts +41 -0
- package/dist/src/openapi/src/models/ItemResult.js +53 -0
- package/dist/src/openapi/src/models/LimitedActionResultsData.d.ts +53 -0
- package/dist/src/openapi/src/models/LimitedActionResultsData.js +71 -0
- package/dist/src/openapi/src/models/ListLatestTweetsTimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/ListLatestTweetsTimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/ListTweetsTimelineData.d.ts +34 -0
- package/dist/src/openapi/src/models/ListTweetsTimelineData.js +52 -0
- package/dist/src/openapi/src/models/ListTweetsTimelineList.d.ts +34 -0
- package/dist/src/openapi/src/models/ListTweetsTimelineList.js +52 -0
- package/dist/src/openapi/src/models/LiveVideoStreamSource.d.ts +51 -0
- package/dist/src/openapi/src/models/LiveVideoStreamSource.js +63 -0
- package/dist/src/openapi/src/models/LiveVideoStreamStatusResponse.d.ts +58 -0
- package/dist/src/openapi/src/models/LiveVideoStreamStatusResponse.js +62 -0
- package/dist/src/openapi/src/models/Location.d.ts +39 -0
- package/dist/src/openapi/src/models/Location.js +55 -0
- package/dist/src/openapi/src/models/Media.d.ts +164 -0
- package/dist/src/openapi/src/models/Media.js +126 -0
- package/dist/src/openapi/src/models/MediaCommunityResult.d.ts +41 -0
- package/dist/src/openapi/src/models/MediaCommunityResult.js +57 -0
- package/dist/src/openapi/src/models/MediaCommunityResults.d.ts +34 -0
- package/dist/src/openapi/src/models/MediaCommunityResults.js +52 -0
- package/dist/src/openapi/src/models/MediaCommunityTweetData.d.ts +34 -0
- package/dist/src/openapi/src/models/MediaCommunityTweetData.js +52 -0
- package/dist/src/openapi/src/models/MediaExtended.d.ts +171 -0
- package/dist/src/openapi/src/models/MediaExtended.js +127 -0
- package/dist/src/openapi/src/models/MediaOriginalInfo.d.ts +46 -0
- package/dist/src/openapi/src/models/MediaOriginalInfo.js +58 -0
- package/dist/src/openapi/src/models/MediaOriginalInfoFocusRect.d.ts +51 -0
- package/dist/src/openapi/src/models/MediaOriginalInfoFocusRect.js +63 -0
- package/dist/src/openapi/src/models/MediaResult.d.ts +40 -0
- package/dist/src/openapi/src/models/MediaResult.js +54 -0
- package/dist/src/openapi/src/models/MediaResults.d.ts +34 -0
- package/dist/src/openapi/src/models/MediaResults.js +52 -0
- package/dist/src/openapi/src/models/MediaSize.d.ts +53 -0
- package/dist/src/openapi/src/models/MediaSize.js +67 -0
- package/dist/src/openapi/src/models/MediaSizes.d.ts +52 -0
- package/dist/src/openapi/src/models/MediaSizes.js +64 -0
- package/dist/src/openapi/src/models/MediaStats.d.ts +33 -0
- package/dist/src/openapi/src/models/MediaStats.js +51 -0
- package/dist/src/openapi/src/models/MediaVideoInfo.d.ts +46 -0
- package/dist/src/openapi/src/models/MediaVideoInfo.js +58 -0
- package/dist/src/openapi/src/models/MediaVideoInfoVariant.d.ts +45 -0
- package/dist/src/openapi/src/models/MediaVideoInfoVariant.js +57 -0
- package/dist/src/openapi/src/models/MediaVisibilityResults.d.ts +34 -0
- package/dist/src/openapi/src/models/MediaVisibilityResults.js +52 -0
- package/dist/src/openapi/src/models/MediaVisibilityResultsBlurredImageInterstitial.d.ts +46 -0
- package/dist/src/openapi/src/models/MediaVisibilityResultsBlurredImageInterstitial.js +60 -0
- package/dist/src/openapi/src/models/ModuleEntry.d.ts +48 -0
- package/dist/src/openapi/src/models/ModuleEntry.js +58 -0
- package/dist/src/openapi/src/models/ModuleItem.d.ts +46 -0
- package/dist/src/openapi/src/models/ModuleItem.js +58 -0
- package/dist/src/openapi/src/models/NoteTweet.d.ts +40 -0
- package/dist/src/openapi/src/models/NoteTweet.js +56 -0
- package/dist/src/openapi/src/models/NoteTweetResult.d.ts +34 -0
- package/dist/src/openapi/src/models/NoteTweetResult.js +52 -0
- package/dist/src/openapi/src/models/NoteTweetResultData.d.ts +60 -0
- package/dist/src/openapi/src/models/NoteTweetResultData.js +66 -0
- package/dist/src/openapi/src/models/NoteTweetResultMedia.d.ts +34 -0
- package/dist/src/openapi/src/models/NoteTweetResultMedia.js +52 -0
- package/dist/src/openapi/src/models/NoteTweetResultMediaInlineMedia.d.ts +39 -0
- package/dist/src/openapi/src/models/NoteTweetResultMediaInlineMedia.js +55 -0
- package/dist/src/openapi/src/models/NoteTweetResultRichText.d.ts +34 -0
- package/dist/src/openapi/src/models/NoteTweetResultRichText.js +52 -0
- package/dist/src/openapi/src/models/NoteTweetResultRichTextTag.d.ts +53 -0
- package/dist/src/openapi/src/models/NoteTweetResultRichTextTag.js +67 -0
- package/dist/src/openapi/src/models/NotificationTemplate.d.ts +46 -0
- package/dist/src/openapi/src/models/NotificationTemplate.js +54 -0
- package/dist/src/openapi/src/models/NotificationsResult.d.ts +47 -0
- package/dist/src/openapi/src/models/NotificationsResult.js +61 -0
- package/dist/src/openapi/src/models/NotificationsTimelineData.d.ts +34 -0
- package/dist/src/openapi/src/models/NotificationsTimelineData.js +52 -0
- package/dist/src/openapi/src/models/NotificationsTimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/NotificationsTimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/NotificationsUserResults.d.ts +34 -0
- package/dist/src/openapi/src/models/NotificationsUserResults.js +52 -0
- package/dist/src/openapi/src/models/NotificationsViewerV2.d.ts +34 -0
- package/dist/src/openapi/src/models/NotificationsViewerV2.js +52 -0
- package/dist/src/openapi/src/models/OneFactorLoginEligibility.d.ts +33 -0
- package/dist/src/openapi/src/models/OneFactorLoginEligibility.js +51 -0
- package/dist/src/openapi/src/models/OtherObjectAll.d.ts +34 -0
- package/dist/src/openapi/src/models/OtherObjectAll.js +50 -0
- package/dist/src/openapi/src/models/PeriscopeUser.d.ts +51 -0
- package/dist/src/openapi/src/models/PeriscopeUser.js +55 -0
- package/dist/src/openapi/src/models/PostCreateBookmarkRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostCreateBookmarkRequest.js +56 -0
- package/dist/src/openapi/src/models/PostCreateBookmarkRequestVariables.d.ts +33 -0
- package/dist/src/openapi/src/models/PostCreateBookmarkRequestVariables.js +51 -0
- package/dist/src/openapi/src/models/PostCreateRetweetRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostCreateRetweetRequest.js +56 -0
- package/dist/src/openapi/src/models/PostCreateRetweetRequestVariables.d.ts +39 -0
- package/dist/src/openapi/src/models/PostCreateRetweetRequestVariables.js +55 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequest.d.ts +47 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequest.js +61 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestFeatures.d.ts +201 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestFeatures.js +163 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariables.d.ts +78 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariables.js +74 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesConversationControl.d.ts +33 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesConversationControl.js +51 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesMedia.d.ts +40 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesMedia.js +54 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesMediaMediaEntitiesInner.d.ts +39 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesMediaMediaEntitiesInner.js +55 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesReply.d.ts +39 -0
- package/dist/src/openapi/src/models/PostCreateTweetRequestVariablesReply.js +55 -0
- package/dist/src/openapi/src/models/PostDeleteBookmarkRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostDeleteBookmarkRequest.js +56 -0
- package/dist/src/openapi/src/models/PostDeleteRetweetRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostDeleteRetweetRequest.js +56 -0
- package/dist/src/openapi/src/models/PostDeleteRetweetRequestVariables.d.ts +39 -0
- package/dist/src/openapi/src/models/PostDeleteRetweetRequestVariables.js +55 -0
- package/dist/src/openapi/src/models/PostDeleteTweetRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostDeleteTweetRequest.js +56 -0
- package/dist/src/openapi/src/models/PostFavoriteTweetRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostFavoriteTweetRequest.js +56 -0
- package/dist/src/openapi/src/models/PostUnfavoriteTweetRequest.d.ts +40 -0
- package/dist/src/openapi/src/models/PostUnfavoriteTweetRequest.js +56 -0
- package/dist/src/openapi/src/models/PrimaryCommunityTopic.d.ts +39 -0
- package/dist/src/openapi/src/models/PrimaryCommunityTopic.js +55 -0
- package/dist/src/openapi/src/models/ProfileResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/ProfileResponse.js +55 -0
- package/dist/src/openapi/src/models/ProfileResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/ProfileResponseData.js +50 -0
- package/dist/src/openapi/src/models/QuotedRefResult.d.ts +34 -0
- package/dist/src/openapi/src/models/QuotedRefResult.js +50 -0
- package/dist/src/openapi/src/models/QuotedStatusPermalink.d.ts +45 -0
- package/dist/src/openapi/src/models/QuotedStatusPermalink.js +59 -0
- package/dist/src/openapi/src/models/RankedCommunityResult.d.ts +41 -0
- package/dist/src/openapi/src/models/RankedCommunityResult.js +57 -0
- package/dist/src/openapi/src/models/RankedCommunityResults.d.ts +34 -0
- package/dist/src/openapi/src/models/RankedCommunityResults.js +52 -0
- package/dist/src/openapi/src/models/RankedCommunityTweetData.d.ts +34 -0
- package/dist/src/openapi/src/models/RankedCommunityTweetData.js +52 -0
- package/dist/src/openapi/src/models/Retweet.d.ts +40 -0
- package/dist/src/openapi/src/models/Retweet.js +56 -0
- package/dist/src/openapi/src/models/RetweetLegacy.d.ts +33 -0
- package/dist/src/openapi/src/models/RetweetLegacy.js +51 -0
- package/dist/src/openapi/src/models/RichMessage.d.ts +39 -0
- package/dist/src/openapi/src/models/RichMessage.js +51 -0
- package/dist/src/openapi/src/models/SearchByRawQuery.d.ts +34 -0
- package/dist/src/openapi/src/models/SearchByRawQuery.js +52 -0
- package/dist/src/openapi/src/models/SearchTimeline.d.ts +34 -0
- package/dist/src/openapi/src/models/SearchTimeline.js +52 -0
- package/dist/src/openapi/src/models/SearchTimelineData.d.ts +34 -0
- package/dist/src/openapi/src/models/SearchTimelineData.js +52 -0
- package/dist/src/openapi/src/models/SearchTimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/SearchTimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/SelfThread.d.ts +33 -0
- package/dist/src/openapi/src/models/SelfThread.js +51 -0
- package/dist/src/openapi/src/models/SensitiveMediaWarning.d.ts +45 -0
- package/dist/src/openapi/src/models/SensitiveMediaWarning.js +53 -0
- package/dist/src/openapi/src/models/Session.d.ts +121 -0
- package/dist/src/openapi/src/models/Session.js +111 -0
- package/dist/src/openapi/src/models/SocialContextLandingUrl.d.ts +55 -0
- package/dist/src/openapi/src/models/SocialContextLandingUrl.js +63 -0
- package/dist/src/openapi/src/models/SocialContextUnion.d.ts +28 -0
- package/dist/src/openapi/src/models/SocialContextUnion.js +54 -0
- package/dist/src/openapi/src/models/SocialContextUnionType.d.ts +26 -0
- package/dist/src/openapi/src/models/SocialContextUnionType.js +52 -0
- package/dist/src/openapi/src/models/SuperFollowsReplyUserResult.d.ts +34 -0
- package/dist/src/openapi/src/models/SuperFollowsReplyUserResult.js +52 -0
- package/dist/src/openapi/src/models/SuperFollowsReplyUserResultData.d.ts +41 -0
- package/dist/src/openapi/src/models/SuperFollowsReplyUserResultData.js +57 -0
- package/dist/src/openapi/src/models/SuperFollowsReplyUserResultLegacy.d.ts +33 -0
- package/dist/src/openapi/src/models/SuperFollowsReplyUserResultLegacy.js +51 -0
- package/dist/src/openapi/src/models/Text.d.ts +40 -0
- package/dist/src/openapi/src/models/Text.js +56 -0
- package/dist/src/openapi/src/models/TextEntity.d.ts +46 -0
- package/dist/src/openapi/src/models/TextEntity.js +60 -0
- package/dist/src/openapi/src/models/TextEntityRef.d.ts +59 -0
- package/dist/src/openapi/src/models/TextEntityRef.js +72 -0
- package/dist/src/openapi/src/models/TextHighlight.d.ts +39 -0
- package/dist/src/openapi/src/models/TextHighlight.js +55 -0
- package/dist/src/openapi/src/models/ThumbnailImage.d.ts +45 -0
- package/dist/src/openapi/src/models/ThumbnailImage.js +53 -0
- package/dist/src/openapi/src/models/Timeline.d.ts +50 -0
- package/dist/src/openapi/src/models/Timeline.js +56 -0
- package/dist/src/openapi/src/models/TimelineAddEntries.d.ts +41 -0
- package/dist/src/openapi/src/models/TimelineAddEntries.js +57 -0
- package/dist/src/openapi/src/models/TimelineAddEntry.d.ts +46 -0
- package/dist/src/openapi/src/models/TimelineAddEntry.js +60 -0
- package/dist/src/openapi/src/models/TimelineAddToModule.d.ts +53 -0
- package/dist/src/openapi/src/models/TimelineAddToModule.js +63 -0
- package/dist/src/openapi/src/models/TimelineClearCache.d.ts +34 -0
- package/dist/src/openapi/src/models/TimelineClearCache.js +52 -0
- package/dist/src/openapi/src/models/TimelineClearEntriesUnreadState.d.ts +34 -0
- package/dist/src/openapi/src/models/TimelineClearEntriesUnreadState.js +52 -0
- package/dist/src/openapi/src/models/TimelineCommunity.d.ts +35 -0
- package/dist/src/openapi/src/models/TimelineCommunity.js +52 -0
- package/dist/src/openapi/src/models/TimelineCoverBehavior.d.ts +48 -0
- package/dist/src/openapi/src/models/TimelineCoverBehavior.js +62 -0
- package/dist/src/openapi/src/models/TimelineCoverBehaviorUrl.d.ts +46 -0
- package/dist/src/openapi/src/models/TimelineCoverBehaviorUrl.js +62 -0
- package/dist/src/openapi/src/models/TimelineGeneralContext.d.ts +74 -0
- package/dist/src/openapi/src/models/TimelineGeneralContext.js +74 -0
- package/dist/src/openapi/src/models/TimelineHalfCover.d.ts +86 -0
- package/dist/src/openapi/src/models/TimelineHalfCover.js +91 -0
- package/dist/src/openapi/src/models/TimelineMarkEntriesUnreadGreaterThanSortIndex.d.ts +40 -0
- package/dist/src/openapi/src/models/TimelineMarkEntriesUnreadGreaterThanSortIndex.js +54 -0
- package/dist/src/openapi/src/models/TimelineMessagePrompt.d.ts +35 -0
- package/dist/src/openapi/src/models/TimelineMessagePrompt.js +52 -0
- package/dist/src/openapi/src/models/TimelineNotification.d.ts +80 -0
- package/dist/src/openapi/src/models/TimelineNotification.js +84 -0
- package/dist/src/openapi/src/models/TimelinePinEntry.d.ts +41 -0
- package/dist/src/openapi/src/models/TimelinePinEntry.js +57 -0
- package/dist/src/openapi/src/models/TimelinePrompt.d.ts +35 -0
- package/dist/src/openapi/src/models/TimelinePrompt.js +52 -0
- package/dist/src/openapi/src/models/TimelineReplaceEntry.d.ts +47 -0
- package/dist/src/openapi/src/models/TimelineReplaceEntry.js +61 -0
- package/dist/src/openapi/src/models/TimelineResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/TimelineResponse.js +55 -0
- package/dist/src/openapi/src/models/TimelineResult.d.ts +40 -0
- package/dist/src/openapi/src/models/TimelineResult.js +52 -0
- package/dist/src/openapi/src/models/TimelineShowAlert.d.ts +102 -0
- package/dist/src/openapi/src/models/TimelineShowAlert.js +87 -0
- package/dist/src/openapi/src/models/TimelineShowAlertRichText.d.ts +41 -0
- package/dist/src/openapi/src/models/TimelineShowAlertRichText.js +51 -0
- package/dist/src/openapi/src/models/TimelineShowCover.d.ts +48 -0
- package/dist/src/openapi/src/models/TimelineShowCover.js +62 -0
- package/dist/src/openapi/src/models/TimelineTerminateTimeline.d.ts +49 -0
- package/dist/src/openapi/src/models/TimelineTerminateTimeline.js +65 -0
- package/dist/src/openapi/src/models/TimelineTimelineCursor.d.ts +73 -0
- package/dist/src/openapi/src/models/TimelineTimelineCursor.js +71 -0
- package/dist/src/openapi/src/models/TimelineTimelineItem.d.ts +63 -0
- package/dist/src/openapi/src/models/TimelineTimelineItem.js +67 -0
- package/dist/src/openapi/src/models/TimelineTimelineModule.d.ts +93 -0
- package/dist/src/openapi/src/models/TimelineTimelineModule.js +77 -0
- package/dist/src/openapi/src/models/TimelineTombstone.d.ts +61 -0
- package/dist/src/openapi/src/models/TimelineTombstone.js +65 -0
- package/dist/src/openapi/src/models/TimelineTopicContext.d.ts +54 -0
- package/dist/src/openapi/src/models/TimelineTopicContext.js +62 -0
- package/dist/src/openapi/src/models/TimelineTrend.d.ts +88 -0
- package/dist/src/openapi/src/models/TimelineTrend.js +80 -0
- package/dist/src/openapi/src/models/TimelineTweet.d.ts +92 -0
- package/dist/src/openapi/src/models/TimelineTweet.js +86 -0
- package/dist/src/openapi/src/models/TimelineUser.d.ts +71 -0
- package/dist/src/openapi/src/models/TimelineUser.js +79 -0
- package/dist/src/openapi/src/models/Timestamp.d.ts +45 -0
- package/dist/src/openapi/src/models/Timestamp.js +59 -0
- package/dist/src/openapi/src/models/TombstoneEntity.d.ts +46 -0
- package/dist/src/openapi/src/models/TombstoneEntity.js +54 -0
- package/dist/src/openapi/src/models/TombstoneInfo.d.ts +40 -0
- package/dist/src/openapi/src/models/TombstoneInfo.js +52 -0
- package/dist/src/openapi/src/models/TombstoneRef.d.ts +59 -0
- package/dist/src/openapi/src/models/TombstoneRef.js +66 -0
- package/dist/src/openapi/src/models/TombstoneRichText.d.ts +46 -0
- package/dist/src/openapi/src/models/TombstoneRichText.js +54 -0
- package/dist/src/openapi/src/models/TopicContext.d.ts +69 -0
- package/dist/src/openapi/src/models/TopicContext.js +61 -0
- package/dist/src/openapi/src/models/Tracing.d.ts +33 -0
- package/dist/src/openapi/src/models/Tracing.js +51 -0
- package/dist/src/openapi/src/models/TrendImage.d.ts +33 -0
- package/dist/src/openapi/src/models/TrendImage.js +49 -0
- package/dist/src/openapi/src/models/TrendMetadata.d.ts +34 -0
- package/dist/src/openapi/src/models/TrendMetadata.js +50 -0
- package/dist/src/openapi/src/models/TrendResults.d.ts +33 -0
- package/dist/src/openapi/src/models/TrendResults.js +51 -0
- package/dist/src/openapi/src/models/Tweet.d.ts +217 -0
- package/dist/src/openapi/src/models/Tweet.js +125 -0
- package/dist/src/openapi/src/models/TweetCard.d.ts +40 -0
- package/dist/src/openapi/src/models/TweetCard.js +52 -0
- package/dist/src/openapi/src/models/TweetCardLegacy.d.ts +60 -0
- package/dist/src/openapi/src/models/TweetCardLegacy.js +66 -0
- package/dist/src/openapi/src/models/TweetCardLegacyBindingValue.d.ts +40 -0
- package/dist/src/openapi/src/models/TweetCardLegacyBindingValue.js +56 -0
- package/dist/src/openapi/src/models/TweetCardLegacyBindingValueData.d.ts +73 -0
- package/dist/src/openapi/src/models/TweetCardLegacyBindingValueData.js +65 -0
- package/dist/src/openapi/src/models/TweetCardLegacyBindingValueDataImage.d.ts +51 -0
- package/dist/src/openapi/src/models/TweetCardLegacyBindingValueDataImage.js +61 -0
- package/dist/src/openapi/src/models/TweetCardPlatform.d.ts +41 -0
- package/dist/src/openapi/src/models/TweetCardPlatform.js +57 -0
- package/dist/src/openapi/src/models/TweetCardPlatformAudience.d.ts +40 -0
- package/dist/src/openapi/src/models/TweetCardPlatformAudience.js +58 -0
- package/dist/src/openapi/src/models/TweetCardPlatformData.d.ts +34 -0
- package/dist/src/openapi/src/models/TweetCardPlatformData.js +52 -0
- package/dist/src/openapi/src/models/TweetCardPlatformDevice.d.ts +39 -0
- package/dist/src/openapi/src/models/TweetCardPlatformDevice.js +55 -0
- package/dist/src/openapi/src/models/TweetDetailResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/TweetDetailResponse.js +55 -0
- package/dist/src/openapi/src/models/TweetDetailResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/TweetDetailResponseData.js +50 -0
- package/dist/src/openapi/src/models/TweetEditControl.d.ts +64 -0
- package/dist/src/openapi/src/models/TweetEditControl.js +60 -0
- package/dist/src/openapi/src/models/TweetEditControlInitial.d.ts +51 -0
- package/dist/src/openapi/src/models/TweetEditControlInitial.js +63 -0
- package/dist/src/openapi/src/models/TweetEditPrespective.d.ts +39 -0
- package/dist/src/openapi/src/models/TweetEditPrespective.js +51 -0
- package/dist/src/openapi/src/models/TweetFavoritersResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/TweetFavoritersResponse.js +55 -0
- package/dist/src/openapi/src/models/TweetFavoritersResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/TweetFavoritersResponseData.js +50 -0
- package/dist/src/openapi/src/models/TweetInterstitial.d.ts +61 -0
- package/dist/src/openapi/src/models/TweetInterstitial.js +73 -0
- package/dist/src/openapi/src/models/TweetInterstitialRevealText.d.ts +46 -0
- package/dist/src/openapi/src/models/TweetInterstitialRevealText.js +60 -0
- package/dist/src/openapi/src/models/TweetInterstitialText.d.ts +46 -0
- package/dist/src/openapi/src/models/TweetInterstitialText.js +60 -0
- package/dist/src/openapi/src/models/TweetInterstitialTextEntity.d.ts +46 -0
- package/dist/src/openapi/src/models/TweetInterstitialTextEntity.js +60 -0
- package/dist/src/openapi/src/models/TweetInterstitialTextEntityRef.d.ts +59 -0
- package/dist/src/openapi/src/models/TweetInterstitialTextEntityRef.js +72 -0
- package/dist/src/openapi/src/models/TweetLegacy.d.ts +236 -0
- package/dist/src/openapi/src/models/TweetLegacy.js +162 -0
- package/dist/src/openapi/src/models/TweetLegacyScopes.d.ts +33 -0
- package/dist/src/openapi/src/models/TweetLegacyScopes.js +51 -0
- package/dist/src/openapi/src/models/TweetLimitedActionResults.d.ts +34 -0
- package/dist/src/openapi/src/models/TweetLimitedActionResults.js +52 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplay.d.ts +55 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplay.js +67 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayCta.d.ts +40 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayCta.js +56 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayCtaUrl.d.ts +48 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayCtaUrl.js +64 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayTweet.d.ts +95 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayTweet.js +93 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayTweetViewCount.d.ts +33 -0
- package/dist/src/openapi/src/models/TweetPreviewDisplayTweetViewCount.js +51 -0
- package/dist/src/openapi/src/models/TweetPreviousCounts.d.ts +57 -0
- package/dist/src/openapi/src/models/TweetPreviousCounts.js +67 -0
- package/dist/src/openapi/src/models/TweetResultByRestIdData.d.ts +34 -0
- package/dist/src/openapi/src/models/TweetResultByRestIdData.js +50 -0
- package/dist/src/openapi/src/models/TweetResultByRestIdResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/TweetResultByRestIdResponse.js +55 -0
- package/dist/src/openapi/src/models/TweetRetweetersResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/TweetRetweetersResponse.js +55 -0
- package/dist/src/openapi/src/models/TweetRetweetersResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/TweetRetweetersResponseData.js +50 -0
- package/dist/src/openapi/src/models/TweetTombstone.d.ts +35 -0
- package/dist/src/openapi/src/models/TweetTombstone.js +52 -0
- package/dist/src/openapi/src/models/TweetUnavailable.d.ts +40 -0
- package/dist/src/openapi/src/models/TweetUnavailable.js +52 -0
- package/dist/src/openapi/src/models/TweetUnion.d.ts +37 -0
- package/dist/src/openapi/src/models/TweetUnion.js +69 -0
- package/dist/src/openapi/src/models/TweetView.d.ts +47 -0
- package/dist/src/openapi/src/models/TweetView.js +61 -0
- package/dist/src/openapi/src/models/TweetWithVisibilityResults.d.ts +63 -0
- package/dist/src/openapi/src/models/TweetWithVisibilityResults.js +65 -0
- package/dist/src/openapi/src/models/TypeName.d.ts +54 -0
- package/dist/src/openapi/src/models/TypeName.js +80 -0
- package/dist/src/openapi/src/models/UnfavoriteTweet.d.ts +33 -0
- package/dist/src/openapi/src/models/UnfavoriteTweet.js +49 -0
- package/dist/src/openapi/src/models/UnfavoriteTweetResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/UnfavoriteTweetResponse.js +55 -0
- package/dist/src/openapi/src/models/UnifiedCard.d.ts +40 -0
- package/dist/src/openapi/src/models/UnifiedCard.js +58 -0
- package/dist/src/openapi/src/models/Url.d.ts +51 -0
- package/dist/src/openapi/src/models/Url.js +61 -0
- package/dist/src/openapi/src/models/UrtEndpointOptions.d.ts +40 -0
- package/dist/src/openapi/src/models/UrtEndpointOptions.js +56 -0
- package/dist/src/openapi/src/models/UrtEndpointRequestParams.d.ts +39 -0
- package/dist/src/openapi/src/models/UrtEndpointRequestParams.js +55 -0
- package/dist/src/openapi/src/models/User.d.ts +281 -0
- package/dist/src/openapi/src/models/User.js +164 -0
- package/dist/src/openapi/src/models/UserAvatar.d.ts +33 -0
- package/dist/src/openapi/src/models/UserAvatar.js +49 -0
- package/dist/src/openapi/src/models/UserCore.d.ts +45 -0
- package/dist/src/openapi/src/models/UserCore.js +59 -0
- package/dist/src/openapi/src/models/UserDmPermissions.d.ts +33 -0
- package/dist/src/openapi/src/models/UserDmPermissions.js +49 -0
- package/dist/src/openapi/src/models/UserFeatures.d.ts +33 -0
- package/dist/src/openapi/src/models/UserFeatures.js +51 -0
- package/dist/src/openapi/src/models/UserHighlightsInfo.d.ts +39 -0
- package/dist/src/openapi/src/models/UserHighlightsInfo.js +55 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsData.d.ts +34 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsData.js +50 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsResponse.js +55 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsResult.d.ts +41 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsResult.js +57 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsTimeline.d.ts +34 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsTimeline.js +52 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsUser.d.ts +34 -0
- package/dist/src/openapi/src/models/UserHighlightsTweetsUser.js +52 -0
- package/dist/src/openapi/src/models/UserLegacy.d.ts +283 -0
- package/dist/src/openapi/src/models/UserLegacy.js +185 -0
- package/dist/src/openapi/src/models/UserLegacyExtendedProfile.d.ts +34 -0
- package/dist/src/openapi/src/models/UserLegacyExtendedProfile.js +50 -0
- package/dist/src/openapi/src/models/UserLegacyExtendedProfileBirthdate.d.ts +79 -0
- package/dist/src/openapi/src/models/UserLegacyExtendedProfileBirthdate.js +86 -0
- package/dist/src/openapi/src/models/UserLocation.d.ts +33 -0
- package/dist/src/openapi/src/models/UserLocation.js +49 -0
- package/dist/src/openapi/src/models/UserMediaPermissions.d.ts +33 -0
- package/dist/src/openapi/src/models/UserMediaPermissions.js +49 -0
- package/dist/src/openapi/src/models/UserPrivacy.d.ts +33 -0
- package/dist/src/openapi/src/models/UserPrivacy.js +49 -0
- package/dist/src/openapi/src/models/UserProfessional.d.ts +54 -0
- package/dist/src/openapi/src/models/UserProfessional.js +68 -0
- package/dist/src/openapi/src/models/UserProfessionalCategory.d.ts +45 -0
- package/dist/src/openapi/src/models/UserProfessionalCategory.js +59 -0
- package/dist/src/openapi/src/models/UserProfileBio.d.ts +33 -0
- package/dist/src/openapi/src/models/UserProfileBio.js +49 -0
- package/dist/src/openapi/src/models/UserRelationshipPerspectives.d.ts +57 -0
- package/dist/src/openapi/src/models/UserRelationshipPerspectives.js +57 -0
- package/dist/src/openapi/src/models/UserResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/UserResponse.js +55 -0
- package/dist/src/openapi/src/models/UserResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/UserResponseData.js +50 -0
- package/dist/src/openapi/src/models/UserResultByScreenName.d.ts +40 -0
- package/dist/src/openapi/src/models/UserResultByScreenName.js +56 -0
- package/dist/src/openapi/src/models/UserResultByScreenNameLegacy.d.ts +69 -0
- package/dist/src/openapi/src/models/UserResultByScreenNameLegacy.js +61 -0
- package/dist/src/openapi/src/models/UserResultByScreenNameResult.d.ts +61 -0
- package/dist/src/openapi/src/models/UserResultByScreenNameResult.js +69 -0
- package/dist/src/openapi/src/models/UserResultCore.d.ts +34 -0
- package/dist/src/openapi/src/models/UserResultCore.js +52 -0
- package/dist/src/openapi/src/models/UserResults.d.ts +34 -0
- package/dist/src/openapi/src/models/UserResults.js +50 -0
- package/dist/src/openapi/src/models/UserTipJarSettings.d.ts +81 -0
- package/dist/src/openapi/src/models/UserTipJarSettings.js +65 -0
- package/dist/src/openapi/src/models/UserTweetsData.d.ts +34 -0
- package/dist/src/openapi/src/models/UserTweetsData.js +50 -0
- package/dist/src/openapi/src/models/UserTweetsResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/UserTweetsResponse.js +55 -0
- package/dist/src/openapi/src/models/UserTweetsResultV1.d.ts +41 -0
- package/dist/src/openapi/src/models/UserTweetsResultV1.js +57 -0
- package/dist/src/openapi/src/models/UserTweetsResultV2.d.ts +41 -0
- package/dist/src/openapi/src/models/UserTweetsResultV2.js +57 -0
- package/dist/src/openapi/src/models/UserTweetsUser.d.ts +34 -0
- package/dist/src/openapi/src/models/UserTweetsUser.js +52 -0
- package/dist/src/openapi/src/models/UserUnavailable.d.ts +46 -0
- package/dist/src/openapi/src/models/UserUnavailable.js +58 -0
- package/dist/src/openapi/src/models/UserUnion.d.ts +28 -0
- package/dist/src/openapi/src/models/UserUnion.js +54 -0
- package/dist/src/openapi/src/models/UserValue.d.ts +33 -0
- package/dist/src/openapi/src/models/UserValue.js +51 -0
- package/dist/src/openapi/src/models/UserVerification.d.ts +33 -0
- package/dist/src/openapi/src/models/UserVerification.js +49 -0
- package/dist/src/openapi/src/models/UserVerificationInfo.d.ts +40 -0
- package/dist/src/openapi/src/models/UserVerificationInfo.js +54 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReason.d.ts +46 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReason.js +58 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReasonDescription.d.ts +40 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReasonDescription.js +56 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReasonDescriptionEntities.d.ts +46 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReasonDescriptionEntities.js +60 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReasonDescriptionEntitiesRef.d.ts +46 -0
- package/dist/src/openapi/src/models/UserVerificationInfoReasonDescriptionEntitiesRef.js +62 -0
- package/dist/src/openapi/src/models/UsersResponse.d.ts +41 -0
- package/dist/src/openapi/src/models/UsersResponse.js +55 -0
- package/dist/src/openapi/src/models/UsersResponseData.d.ts +34 -0
- package/dist/src/openapi/src/models/UsersResponseData.js +50 -0
- package/dist/src/openapi/src/models/index.d.ts +336 -0
- package/dist/src/openapi/src/models/index.js +354 -0
- package/dist/src/openapi/src/runtime.d.ts +185 -0
- package/dist/src/openapi/src/runtime.js +339 -0
- package/dist/src/utils/api.d.ts +30 -0
- package/dist/src/utils/api.js +270 -0
- package/dist/src/utils/index.d.ts +2 -0
- package/dist/src/utils/index.js +18 -0
- package/package.json +41 -0
|
@@ -0,0 +1,495 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Twitter OpenAPI
|
|
6
|
+
* Twitter OpenAPI(Swagger) specification
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.0.1
|
|
9
|
+
* Contact: yuki@yuki0311.com
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
16
|
+
if (k2 === undefined) k2 = k;
|
|
17
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
18
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
19
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
20
|
+
}
|
|
21
|
+
Object.defineProperty(o, k2, desc);
|
|
22
|
+
}) : (function(o, m, k, k2) {
|
|
23
|
+
if (k2 === undefined) k2 = k;
|
|
24
|
+
o[k2] = m[k];
|
|
25
|
+
}));
|
|
26
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
27
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
28
|
+
}) : function(o, v) {
|
|
29
|
+
o["default"] = v;
|
|
30
|
+
});
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
48
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
49
|
+
exports.V11GetApi = void 0;
|
|
50
|
+
const runtime = __importStar(require("../runtime"));
|
|
51
|
+
const index_1 = require("../models/index");
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
*/
|
|
55
|
+
class V11GetApi extends runtime.BaseAPI {
|
|
56
|
+
/**
|
|
57
|
+
* Creates request options for getFriendsFollowingList without sending the request
|
|
58
|
+
*/
|
|
59
|
+
async getFriendsFollowingListRequestOpts(requestParameters) {
|
|
60
|
+
if (requestParameters['includeProfileInterstitialType'] == null) {
|
|
61
|
+
throw new runtime.RequiredError('includeProfileInterstitialType', 'Required parameter "includeProfileInterstitialType" was null or undefined when calling getFriendsFollowingList().');
|
|
62
|
+
}
|
|
63
|
+
if (requestParameters['includeBlocking'] == null) {
|
|
64
|
+
throw new runtime.RequiredError('includeBlocking', 'Required parameter "includeBlocking" was null or undefined when calling getFriendsFollowingList().');
|
|
65
|
+
}
|
|
66
|
+
if (requestParameters['includeBlockedBy'] == null) {
|
|
67
|
+
throw new runtime.RequiredError('includeBlockedBy', 'Required parameter "includeBlockedBy" was null or undefined when calling getFriendsFollowingList().');
|
|
68
|
+
}
|
|
69
|
+
if (requestParameters['includeFollowedBy'] == null) {
|
|
70
|
+
throw new runtime.RequiredError('includeFollowedBy', 'Required parameter "includeFollowedBy" was null or undefined when calling getFriendsFollowingList().');
|
|
71
|
+
}
|
|
72
|
+
if (requestParameters['includeWantRetweets'] == null) {
|
|
73
|
+
throw new runtime.RequiredError('includeWantRetweets', 'Required parameter "includeWantRetweets" was null or undefined when calling getFriendsFollowingList().');
|
|
74
|
+
}
|
|
75
|
+
if (requestParameters['includeMuteEdge'] == null) {
|
|
76
|
+
throw new runtime.RequiredError('includeMuteEdge', 'Required parameter "includeMuteEdge" was null or undefined when calling getFriendsFollowingList().');
|
|
77
|
+
}
|
|
78
|
+
if (requestParameters['includeCanDm'] == null) {
|
|
79
|
+
throw new runtime.RequiredError('includeCanDm', 'Required parameter "includeCanDm" was null or undefined when calling getFriendsFollowingList().');
|
|
80
|
+
}
|
|
81
|
+
if (requestParameters['includeCanMediaTag'] == null) {
|
|
82
|
+
throw new runtime.RequiredError('includeCanMediaTag', 'Required parameter "includeCanMediaTag" was null or undefined when calling getFriendsFollowingList().');
|
|
83
|
+
}
|
|
84
|
+
if (requestParameters['includeExtHasNftAvatar'] == null) {
|
|
85
|
+
throw new runtime.RequiredError('includeExtHasNftAvatar', 'Required parameter "includeExtHasNftAvatar" was null or undefined when calling getFriendsFollowingList().');
|
|
86
|
+
}
|
|
87
|
+
if (requestParameters['includeExtIsBlueVerified'] == null) {
|
|
88
|
+
throw new runtime.RequiredError('includeExtIsBlueVerified', 'Required parameter "includeExtIsBlueVerified" was null or undefined when calling getFriendsFollowingList().');
|
|
89
|
+
}
|
|
90
|
+
if (requestParameters['includeExtVerifiedType'] == null) {
|
|
91
|
+
throw new runtime.RequiredError('includeExtVerifiedType', 'Required parameter "includeExtVerifiedType" was null or undefined when calling getFriendsFollowingList().');
|
|
92
|
+
}
|
|
93
|
+
if (requestParameters['includeExtProfileImageShape'] == null) {
|
|
94
|
+
throw new runtime.RequiredError('includeExtProfileImageShape', 'Required parameter "includeExtProfileImageShape" was null or undefined when calling getFriendsFollowingList().');
|
|
95
|
+
}
|
|
96
|
+
if (requestParameters['skipStatus'] == null) {
|
|
97
|
+
throw new runtime.RequiredError('skipStatus', 'Required parameter "skipStatus" was null or undefined when calling getFriendsFollowingList().');
|
|
98
|
+
}
|
|
99
|
+
if (requestParameters['cursor'] == null) {
|
|
100
|
+
throw new runtime.RequiredError('cursor', 'Required parameter "cursor" was null or undefined when calling getFriendsFollowingList().');
|
|
101
|
+
}
|
|
102
|
+
if (requestParameters['userId'] == null) {
|
|
103
|
+
throw new runtime.RequiredError('userId', 'Required parameter "userId" was null or undefined when calling getFriendsFollowingList().');
|
|
104
|
+
}
|
|
105
|
+
if (requestParameters['count'] == null) {
|
|
106
|
+
throw new runtime.RequiredError('count', 'Required parameter "count" was null or undefined when calling getFriendsFollowingList().');
|
|
107
|
+
}
|
|
108
|
+
if (requestParameters['withTotalCount'] == null) {
|
|
109
|
+
throw new runtime.RequiredError('withTotalCount', 'Required parameter "withTotalCount" was null or undefined when calling getFriendsFollowingList().');
|
|
110
|
+
}
|
|
111
|
+
const queryParameters = {};
|
|
112
|
+
if (requestParameters['includeProfileInterstitialType'] != null) {
|
|
113
|
+
queryParameters['include_profile_interstitial_type'] = requestParameters['includeProfileInterstitialType'];
|
|
114
|
+
}
|
|
115
|
+
if (requestParameters['includeBlocking'] != null) {
|
|
116
|
+
queryParameters['include_blocking'] = requestParameters['includeBlocking'];
|
|
117
|
+
}
|
|
118
|
+
if (requestParameters['includeBlockedBy'] != null) {
|
|
119
|
+
queryParameters['include_blocked_by'] = requestParameters['includeBlockedBy'];
|
|
120
|
+
}
|
|
121
|
+
if (requestParameters['includeFollowedBy'] != null) {
|
|
122
|
+
queryParameters['include_followed_by'] = requestParameters['includeFollowedBy'];
|
|
123
|
+
}
|
|
124
|
+
if (requestParameters['includeWantRetweets'] != null) {
|
|
125
|
+
queryParameters['include_want_retweets'] = requestParameters['includeWantRetweets'];
|
|
126
|
+
}
|
|
127
|
+
if (requestParameters['includeMuteEdge'] != null) {
|
|
128
|
+
queryParameters['include_mute_edge'] = requestParameters['includeMuteEdge'];
|
|
129
|
+
}
|
|
130
|
+
if (requestParameters['includeCanDm'] != null) {
|
|
131
|
+
queryParameters['include_can_dm'] = requestParameters['includeCanDm'];
|
|
132
|
+
}
|
|
133
|
+
if (requestParameters['includeCanMediaTag'] != null) {
|
|
134
|
+
queryParameters['include_can_media_tag'] = requestParameters['includeCanMediaTag'];
|
|
135
|
+
}
|
|
136
|
+
if (requestParameters['includeExtHasNftAvatar'] != null) {
|
|
137
|
+
queryParameters['include_ext_has_nft_avatar'] = requestParameters['includeExtHasNftAvatar'];
|
|
138
|
+
}
|
|
139
|
+
if (requestParameters['includeExtIsBlueVerified'] != null) {
|
|
140
|
+
queryParameters['include_ext_is_blue_verified'] = requestParameters['includeExtIsBlueVerified'];
|
|
141
|
+
}
|
|
142
|
+
if (requestParameters['includeExtVerifiedType'] != null) {
|
|
143
|
+
queryParameters['include_ext_verified_type'] = requestParameters['includeExtVerifiedType'];
|
|
144
|
+
}
|
|
145
|
+
if (requestParameters['includeExtProfileImageShape'] != null) {
|
|
146
|
+
queryParameters['include_ext_profile_image_shape'] = requestParameters['includeExtProfileImageShape'];
|
|
147
|
+
}
|
|
148
|
+
if (requestParameters['skipStatus'] != null) {
|
|
149
|
+
queryParameters['skip_status'] = requestParameters['skipStatus'];
|
|
150
|
+
}
|
|
151
|
+
if (requestParameters['cursor'] != null) {
|
|
152
|
+
queryParameters['cursor'] = requestParameters['cursor'];
|
|
153
|
+
}
|
|
154
|
+
if (requestParameters['userId'] != null) {
|
|
155
|
+
queryParameters['user_id'] = requestParameters['userId'];
|
|
156
|
+
}
|
|
157
|
+
if (requestParameters['count'] != null) {
|
|
158
|
+
queryParameters['count'] = requestParameters['count'];
|
|
159
|
+
}
|
|
160
|
+
if (requestParameters['withTotalCount'] != null) {
|
|
161
|
+
queryParameters['with_total_count'] = requestParameters['withTotalCount'];
|
|
162
|
+
}
|
|
163
|
+
const headerParameters = {};
|
|
164
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
165
|
+
headerParameters["Accept"] = await this.configuration.apiKey("Accept"); // Accept authentication
|
|
166
|
+
}
|
|
167
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
168
|
+
headerParameters["x-twitter-client-language"] = await this.configuration.apiKey("x-twitter-client-language"); // ClientLanguage authentication
|
|
169
|
+
}
|
|
170
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
171
|
+
headerParameters["Priority"] = await this.configuration.apiKey("Priority"); // Priority authentication
|
|
172
|
+
}
|
|
173
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
174
|
+
headerParameters["Referer"] = await this.configuration.apiKey("Referer"); // Referer authentication
|
|
175
|
+
}
|
|
176
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
177
|
+
headerParameters["Sec-Fetch-Dest"] = await this.configuration.apiKey("Sec-Fetch-Dest"); // SecFetchDest authentication
|
|
178
|
+
}
|
|
179
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
180
|
+
headerParameters["Sec-Ch-Ua-Platform"] = await this.configuration.apiKey("Sec-Ch-Ua-Platform"); // SecChUaPlatform authentication
|
|
181
|
+
}
|
|
182
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
183
|
+
headerParameters["Sec-Fetch-Mode"] = await this.configuration.apiKey("Sec-Fetch-Mode"); // SecFetchMode authentication
|
|
184
|
+
}
|
|
185
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
186
|
+
headerParameters["x-csrf-token"] = await this.configuration.apiKey("x-csrf-token"); // CsrfToken authentication
|
|
187
|
+
}
|
|
188
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
189
|
+
headerParameters["x-client-uuid"] = await this.configuration.apiKey("x-client-uuid"); // ClientUuid authentication
|
|
190
|
+
}
|
|
191
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
192
|
+
const token = this.configuration.accessToken;
|
|
193
|
+
const tokenString = await token("BearerAuth", []);
|
|
194
|
+
if (tokenString) {
|
|
195
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
199
|
+
headerParameters["x-guest-token"] = await this.configuration.apiKey("x-guest-token"); // GuestToken authentication
|
|
200
|
+
}
|
|
201
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
202
|
+
headerParameters["Sec-Ch-Ua"] = await this.configuration.apiKey("Sec-Ch-Ua"); // SecChUa authentication
|
|
203
|
+
}
|
|
204
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
205
|
+
headerParameters["x-client-transaction-id"] = await this.configuration.apiKey("x-client-transaction-id"); // ClientTransactionId authentication
|
|
206
|
+
}
|
|
207
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
208
|
+
headerParameters["x-twitter-active-user"] = await this.configuration.apiKey("x-twitter-active-user"); // ActiveUser authentication
|
|
209
|
+
}
|
|
210
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
211
|
+
headerParameters["user-agent"] = await this.configuration.apiKey("user-agent"); // UserAgent authentication
|
|
212
|
+
}
|
|
213
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
214
|
+
headerParameters["Accept-Language"] = await this.configuration.apiKey("Accept-Language"); // AcceptLanguage authentication
|
|
215
|
+
}
|
|
216
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
217
|
+
headerParameters["Sec-Fetch-Site"] = await this.configuration.apiKey("Sec-Fetch-Site"); // SecFetchSite authentication
|
|
218
|
+
}
|
|
219
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
220
|
+
headerParameters["x-twitter-auth-type"] = await this.configuration.apiKey("x-twitter-auth-type"); // AuthType authentication
|
|
221
|
+
}
|
|
222
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
223
|
+
headerParameters["Sec-Ch-Ua-Mobile"] = await this.configuration.apiKey("Sec-Ch-Ua-Mobile"); // SecChUaMobile authentication
|
|
224
|
+
}
|
|
225
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
226
|
+
headerParameters["Accept-Encoding"] = await this.configuration.apiKey("Accept-Encoding"); // AcceptEncoding authentication
|
|
227
|
+
}
|
|
228
|
+
let urlPath = `/1.1/friends/following/list.json`;
|
|
229
|
+
return {
|
|
230
|
+
path: urlPath,
|
|
231
|
+
method: 'GET',
|
|
232
|
+
headers: headerParameters,
|
|
233
|
+
query: queryParameters,
|
|
234
|
+
};
|
|
235
|
+
}
|
|
236
|
+
/**
|
|
237
|
+
* get friends following list
|
|
238
|
+
*/
|
|
239
|
+
async getFriendsFollowingListRaw(requestParameters, initOverrides) {
|
|
240
|
+
const requestOptions = await this.getFriendsFollowingListRequestOpts(requestParameters);
|
|
241
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
242
|
+
return new runtime.VoidApiResponse(response);
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* get friends following list
|
|
246
|
+
*/
|
|
247
|
+
async getFriendsFollowingList(requestParameters, initOverrides) {
|
|
248
|
+
await this.getFriendsFollowingListRaw(requestParameters, initOverrides);
|
|
249
|
+
}
|
|
250
|
+
/**
|
|
251
|
+
* Creates request options for getLiveVideoStreamStatus without sending the request
|
|
252
|
+
*/
|
|
253
|
+
async getLiveVideoStreamStatusRequestOpts(requestParameters) {
|
|
254
|
+
if (requestParameters['mediaKey'] == null) {
|
|
255
|
+
throw new runtime.RequiredError('mediaKey', 'Required parameter "mediaKey" was null or undefined when calling getLiveVideoStreamStatus().');
|
|
256
|
+
}
|
|
257
|
+
if (requestParameters['client'] == null) {
|
|
258
|
+
throw new runtime.RequiredError('client', 'Required parameter "client" was null or undefined when calling getLiveVideoStreamStatus().');
|
|
259
|
+
}
|
|
260
|
+
if (requestParameters['useSyndicationGuestId'] == null) {
|
|
261
|
+
throw new runtime.RequiredError('useSyndicationGuestId', 'Required parameter "useSyndicationGuestId" was null or undefined when calling getLiveVideoStreamStatus().');
|
|
262
|
+
}
|
|
263
|
+
if (requestParameters['cookieSetHost'] == null) {
|
|
264
|
+
throw new runtime.RequiredError('cookieSetHost', 'Required parameter "cookieSetHost" was null or undefined when calling getLiveVideoStreamStatus().');
|
|
265
|
+
}
|
|
266
|
+
const queryParameters = {};
|
|
267
|
+
if (requestParameters['client'] != null) {
|
|
268
|
+
queryParameters['client'] = requestParameters['client'];
|
|
269
|
+
}
|
|
270
|
+
if (requestParameters['useSyndicationGuestId'] != null) {
|
|
271
|
+
queryParameters['use_syndication_guest_id'] = requestParameters['useSyndicationGuestId'];
|
|
272
|
+
}
|
|
273
|
+
if (requestParameters['cookieSetHost'] != null) {
|
|
274
|
+
queryParameters['cookie_set_host'] = requestParameters['cookieSetHost'];
|
|
275
|
+
}
|
|
276
|
+
const headerParameters = {};
|
|
277
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
278
|
+
headerParameters["Accept"] = await this.configuration.apiKey("Accept"); // Accept authentication
|
|
279
|
+
}
|
|
280
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
281
|
+
headerParameters["x-twitter-client-language"] = await this.configuration.apiKey("x-twitter-client-language"); // ClientLanguage authentication
|
|
282
|
+
}
|
|
283
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
284
|
+
headerParameters["Priority"] = await this.configuration.apiKey("Priority"); // Priority authentication
|
|
285
|
+
}
|
|
286
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
287
|
+
headerParameters["Referer"] = await this.configuration.apiKey("Referer"); // Referer authentication
|
|
288
|
+
}
|
|
289
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
290
|
+
headerParameters["Sec-Fetch-Dest"] = await this.configuration.apiKey("Sec-Fetch-Dest"); // SecFetchDest authentication
|
|
291
|
+
}
|
|
292
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
293
|
+
headerParameters["Sec-Ch-Ua-Platform"] = await this.configuration.apiKey("Sec-Ch-Ua-Platform"); // SecChUaPlatform authentication
|
|
294
|
+
}
|
|
295
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
296
|
+
headerParameters["Sec-Fetch-Mode"] = await this.configuration.apiKey("Sec-Fetch-Mode"); // SecFetchMode authentication
|
|
297
|
+
}
|
|
298
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
299
|
+
headerParameters["x-csrf-token"] = await this.configuration.apiKey("x-csrf-token"); // CsrfToken authentication
|
|
300
|
+
}
|
|
301
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
302
|
+
headerParameters["x-client-uuid"] = await this.configuration.apiKey("x-client-uuid"); // ClientUuid authentication
|
|
303
|
+
}
|
|
304
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
305
|
+
const token = this.configuration.accessToken;
|
|
306
|
+
const tokenString = await token("BearerAuth", []);
|
|
307
|
+
if (tokenString) {
|
|
308
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
312
|
+
headerParameters["x-guest-token"] = await this.configuration.apiKey("x-guest-token"); // GuestToken authentication
|
|
313
|
+
}
|
|
314
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
315
|
+
headerParameters["Sec-Ch-Ua"] = await this.configuration.apiKey("Sec-Ch-Ua"); // SecChUa authentication
|
|
316
|
+
}
|
|
317
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
318
|
+
headerParameters["x-client-transaction-id"] = await this.configuration.apiKey("x-client-transaction-id"); // ClientTransactionId authentication
|
|
319
|
+
}
|
|
320
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
321
|
+
headerParameters["x-twitter-active-user"] = await this.configuration.apiKey("x-twitter-active-user"); // ActiveUser authentication
|
|
322
|
+
}
|
|
323
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
324
|
+
headerParameters["user-agent"] = await this.configuration.apiKey("user-agent"); // UserAgent authentication
|
|
325
|
+
}
|
|
326
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
327
|
+
headerParameters["Accept-Language"] = await this.configuration.apiKey("Accept-Language"); // AcceptLanguage authentication
|
|
328
|
+
}
|
|
329
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
330
|
+
headerParameters["Sec-Fetch-Site"] = await this.configuration.apiKey("Sec-Fetch-Site"); // SecFetchSite authentication
|
|
331
|
+
}
|
|
332
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
333
|
+
headerParameters["x-twitter-auth-type"] = await this.configuration.apiKey("x-twitter-auth-type"); // AuthType authentication
|
|
334
|
+
}
|
|
335
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
336
|
+
headerParameters["Sec-Ch-Ua-Mobile"] = await this.configuration.apiKey("Sec-Ch-Ua-Mobile"); // SecChUaMobile authentication
|
|
337
|
+
}
|
|
338
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
339
|
+
headerParameters["Accept-Encoding"] = await this.configuration.apiKey("Accept-Encoding"); // AcceptEncoding authentication
|
|
340
|
+
}
|
|
341
|
+
let urlPath = `/1.1/live_video_stream/status/{mediaKey}`;
|
|
342
|
+
urlPath = urlPath.replace(`{${"mediaKey"}}`, encodeURIComponent(String(requestParameters['mediaKey'])));
|
|
343
|
+
return {
|
|
344
|
+
path: urlPath,
|
|
345
|
+
method: 'GET',
|
|
346
|
+
headers: headerParameters,
|
|
347
|
+
query: queryParameters,
|
|
348
|
+
};
|
|
349
|
+
}
|
|
350
|
+
/**
|
|
351
|
+
* get live video stream status
|
|
352
|
+
*/
|
|
353
|
+
async getLiveVideoStreamStatusRaw(requestParameters, initOverrides) {
|
|
354
|
+
const requestOptions = await this.getLiveVideoStreamStatusRequestOpts(requestParameters);
|
|
355
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
356
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.LiveVideoStreamStatusResponseFromJSON)(jsonValue));
|
|
357
|
+
}
|
|
358
|
+
/**
|
|
359
|
+
* get live video stream status
|
|
360
|
+
*/
|
|
361
|
+
async getLiveVideoStreamStatus(requestParameters, initOverrides) {
|
|
362
|
+
const response = await this.getLiveVideoStreamStatusRaw(requestParameters, initOverrides);
|
|
363
|
+
return await response.value();
|
|
364
|
+
}
|
|
365
|
+
/**
|
|
366
|
+
* Creates request options for getSearchTypeahead without sending the request
|
|
367
|
+
*/
|
|
368
|
+
async getSearchTypeaheadRequestOpts(requestParameters) {
|
|
369
|
+
if (requestParameters['includeExtIsBlueVerified'] == null) {
|
|
370
|
+
throw new runtime.RequiredError('includeExtIsBlueVerified', 'Required parameter "includeExtIsBlueVerified" was null or undefined when calling getSearchTypeahead().');
|
|
371
|
+
}
|
|
372
|
+
if (requestParameters['includeExtVerifiedType'] == null) {
|
|
373
|
+
throw new runtime.RequiredError('includeExtVerifiedType', 'Required parameter "includeExtVerifiedType" was null or undefined when calling getSearchTypeahead().');
|
|
374
|
+
}
|
|
375
|
+
if (requestParameters['includeExtProfileImageShape'] == null) {
|
|
376
|
+
throw new runtime.RequiredError('includeExtProfileImageShape', 'Required parameter "includeExtProfileImageShape" was null or undefined when calling getSearchTypeahead().');
|
|
377
|
+
}
|
|
378
|
+
if (requestParameters['q'] == null) {
|
|
379
|
+
throw new runtime.RequiredError('q', 'Required parameter "q" was null or undefined when calling getSearchTypeahead().');
|
|
380
|
+
}
|
|
381
|
+
if (requestParameters['src'] == null) {
|
|
382
|
+
throw new runtime.RequiredError('src', 'Required parameter "src" was null or undefined when calling getSearchTypeahead().');
|
|
383
|
+
}
|
|
384
|
+
if (requestParameters['resultType'] == null) {
|
|
385
|
+
throw new runtime.RequiredError('resultType', 'Required parameter "resultType" was null or undefined when calling getSearchTypeahead().');
|
|
386
|
+
}
|
|
387
|
+
const queryParameters = {};
|
|
388
|
+
if (requestParameters['includeExtIsBlueVerified'] != null) {
|
|
389
|
+
queryParameters['include_ext_is_blue_verified'] = requestParameters['includeExtIsBlueVerified'];
|
|
390
|
+
}
|
|
391
|
+
if (requestParameters['includeExtVerifiedType'] != null) {
|
|
392
|
+
queryParameters['include_ext_verified_type'] = requestParameters['includeExtVerifiedType'];
|
|
393
|
+
}
|
|
394
|
+
if (requestParameters['includeExtProfileImageShape'] != null) {
|
|
395
|
+
queryParameters['include_ext_profile_image_shape'] = requestParameters['includeExtProfileImageShape'];
|
|
396
|
+
}
|
|
397
|
+
if (requestParameters['q'] != null) {
|
|
398
|
+
queryParameters['q'] = requestParameters['q'];
|
|
399
|
+
}
|
|
400
|
+
if (requestParameters['src'] != null) {
|
|
401
|
+
queryParameters['src'] = requestParameters['src'];
|
|
402
|
+
}
|
|
403
|
+
if (requestParameters['resultType'] != null) {
|
|
404
|
+
queryParameters['result_type'] = requestParameters['resultType'];
|
|
405
|
+
}
|
|
406
|
+
const headerParameters = {};
|
|
407
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
408
|
+
headerParameters["Accept"] = await this.configuration.apiKey("Accept"); // Accept authentication
|
|
409
|
+
}
|
|
410
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
411
|
+
headerParameters["x-twitter-client-language"] = await this.configuration.apiKey("x-twitter-client-language"); // ClientLanguage authentication
|
|
412
|
+
}
|
|
413
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
414
|
+
headerParameters["Priority"] = await this.configuration.apiKey("Priority"); // Priority authentication
|
|
415
|
+
}
|
|
416
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
417
|
+
headerParameters["Referer"] = await this.configuration.apiKey("Referer"); // Referer authentication
|
|
418
|
+
}
|
|
419
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
420
|
+
headerParameters["Sec-Fetch-Dest"] = await this.configuration.apiKey("Sec-Fetch-Dest"); // SecFetchDest authentication
|
|
421
|
+
}
|
|
422
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
423
|
+
headerParameters["Sec-Ch-Ua-Platform"] = await this.configuration.apiKey("Sec-Ch-Ua-Platform"); // SecChUaPlatform authentication
|
|
424
|
+
}
|
|
425
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
426
|
+
headerParameters["Sec-Fetch-Mode"] = await this.configuration.apiKey("Sec-Fetch-Mode"); // SecFetchMode authentication
|
|
427
|
+
}
|
|
428
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
429
|
+
headerParameters["x-csrf-token"] = await this.configuration.apiKey("x-csrf-token"); // CsrfToken authentication
|
|
430
|
+
}
|
|
431
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
432
|
+
headerParameters["x-client-uuid"] = await this.configuration.apiKey("x-client-uuid"); // ClientUuid authentication
|
|
433
|
+
}
|
|
434
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
435
|
+
const token = this.configuration.accessToken;
|
|
436
|
+
const tokenString = await token("BearerAuth", []);
|
|
437
|
+
if (tokenString) {
|
|
438
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
442
|
+
headerParameters["x-guest-token"] = await this.configuration.apiKey("x-guest-token"); // GuestToken authentication
|
|
443
|
+
}
|
|
444
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
445
|
+
headerParameters["Sec-Ch-Ua"] = await this.configuration.apiKey("Sec-Ch-Ua"); // SecChUa authentication
|
|
446
|
+
}
|
|
447
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
448
|
+
headerParameters["x-client-transaction-id"] = await this.configuration.apiKey("x-client-transaction-id"); // ClientTransactionId authentication
|
|
449
|
+
}
|
|
450
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
451
|
+
headerParameters["x-twitter-active-user"] = await this.configuration.apiKey("x-twitter-active-user"); // ActiveUser authentication
|
|
452
|
+
}
|
|
453
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
454
|
+
headerParameters["user-agent"] = await this.configuration.apiKey("user-agent"); // UserAgent authentication
|
|
455
|
+
}
|
|
456
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
457
|
+
headerParameters["Accept-Language"] = await this.configuration.apiKey("Accept-Language"); // AcceptLanguage authentication
|
|
458
|
+
}
|
|
459
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
460
|
+
headerParameters["Sec-Fetch-Site"] = await this.configuration.apiKey("Sec-Fetch-Site"); // SecFetchSite authentication
|
|
461
|
+
}
|
|
462
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
463
|
+
headerParameters["x-twitter-auth-type"] = await this.configuration.apiKey("x-twitter-auth-type"); // AuthType authentication
|
|
464
|
+
}
|
|
465
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
466
|
+
headerParameters["Sec-Ch-Ua-Mobile"] = await this.configuration.apiKey("Sec-Ch-Ua-Mobile"); // SecChUaMobile authentication
|
|
467
|
+
}
|
|
468
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
469
|
+
headerParameters["Accept-Encoding"] = await this.configuration.apiKey("Accept-Encoding"); // AcceptEncoding authentication
|
|
470
|
+
}
|
|
471
|
+
let urlPath = `/1.1/search/typeahead.json`;
|
|
472
|
+
return {
|
|
473
|
+
path: urlPath,
|
|
474
|
+
method: 'GET',
|
|
475
|
+
headers: headerParameters,
|
|
476
|
+
query: queryParameters,
|
|
477
|
+
};
|
|
478
|
+
}
|
|
479
|
+
/**
|
|
480
|
+
* get search typeahead
|
|
481
|
+
*/
|
|
482
|
+
async getSearchTypeaheadRaw(requestParameters, initOverrides) {
|
|
483
|
+
const requestOptions = await this.getSearchTypeaheadRequestOpts(requestParameters);
|
|
484
|
+
const response = await this.request(requestOptions, initOverrides);
|
|
485
|
+
return new runtime.VoidApiResponse(response);
|
|
486
|
+
}
|
|
487
|
+
/**
|
|
488
|
+
* get search typeahead
|
|
489
|
+
*/
|
|
490
|
+
async getSearchTypeahead(requestParameters, initOverrides) {
|
|
491
|
+
await this.getSearchTypeaheadRaw(requestParameters, initOverrides);
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
exports.V11GetApi = V11GetApi;
|
|
495
|
+
//# sourceMappingURL=V11GetApi.js.map
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Twitter OpenAPI
|
|
3
|
+
* Twitter OpenAPI(Swagger) specification
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.0.1
|
|
6
|
+
* Contact: yuki@yuki0311.com
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import * as runtime from '../runtime';
|
|
13
|
+
export interface PostCreateFriendshipsRequest {
|
|
14
|
+
includeBlockedBy: number;
|
|
15
|
+
includeBlocking: number;
|
|
16
|
+
includeCanDm: number;
|
|
17
|
+
includeCanMediaTag: number;
|
|
18
|
+
includeExtHasNftAvatar: number;
|
|
19
|
+
includeExtIsBlueVerified: number;
|
|
20
|
+
includeExtProfileImageShape: number;
|
|
21
|
+
includeExtVerifiedType: number;
|
|
22
|
+
includeFollowedBy: number;
|
|
23
|
+
includeMuteEdge: number;
|
|
24
|
+
includeProfileInterstitialType: number;
|
|
25
|
+
includeWantRetweets: number;
|
|
26
|
+
skipStatus: number;
|
|
27
|
+
userId: string;
|
|
28
|
+
}
|
|
29
|
+
export interface PostDestroyFriendshipsRequest {
|
|
30
|
+
includeBlockedBy: number;
|
|
31
|
+
includeBlocking: number;
|
|
32
|
+
includeCanDm: number;
|
|
33
|
+
includeCanMediaTag: number;
|
|
34
|
+
includeExtHasNftAvatar: number;
|
|
35
|
+
includeExtIsBlueVerified: number;
|
|
36
|
+
includeExtProfileImageShape: number;
|
|
37
|
+
includeExtVerifiedType: number;
|
|
38
|
+
includeFollowedBy: number;
|
|
39
|
+
includeMuteEdge: number;
|
|
40
|
+
includeProfileInterstitialType: number;
|
|
41
|
+
includeWantRetweets: number;
|
|
42
|
+
skipStatus: number;
|
|
43
|
+
userId: string;
|
|
44
|
+
}
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
export declare class V11PostApi extends runtime.BaseAPI {
|
|
49
|
+
/**
|
|
50
|
+
* Creates request options for postCreateFriendships without sending the request
|
|
51
|
+
*/
|
|
52
|
+
postCreateFriendshipsRequestOpts(requestParameters: PostCreateFriendshipsRequest): Promise<runtime.RequestOpts>;
|
|
53
|
+
/**
|
|
54
|
+
* post create friendships
|
|
55
|
+
*/
|
|
56
|
+
postCreateFriendshipsRaw(requestParameters: PostCreateFriendshipsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
57
|
+
/**
|
|
58
|
+
* post create friendships
|
|
59
|
+
*/
|
|
60
|
+
postCreateFriendships(requestParameters: PostCreateFriendshipsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
61
|
+
/**
|
|
62
|
+
* Creates request options for postDestroyFriendships without sending the request
|
|
63
|
+
*/
|
|
64
|
+
postDestroyFriendshipsRequestOpts(requestParameters: PostDestroyFriendshipsRequest): Promise<runtime.RequestOpts>;
|
|
65
|
+
/**
|
|
66
|
+
* post destroy friendships
|
|
67
|
+
*/
|
|
68
|
+
postDestroyFriendshipsRaw(requestParameters: PostDestroyFriendshipsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
69
|
+
/**
|
|
70
|
+
* post destroy friendships
|
|
71
|
+
*/
|
|
72
|
+
postDestroyFriendships(requestParameters: PostDestroyFriendshipsRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
73
|
+
}
|
|
74
|
+
//# sourceMappingURL=V11PostApi.d.ts.map
|