@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,52 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfUserHighlightsTweetsUser = instanceOfUserHighlightsTweetsUser;
|
|
17
|
+
exports.UserHighlightsTweetsUserFromJSON = UserHighlightsTweetsUserFromJSON;
|
|
18
|
+
exports.UserHighlightsTweetsUserFromJSONTyped = UserHighlightsTweetsUserFromJSONTyped;
|
|
19
|
+
exports.UserHighlightsTweetsUserToJSON = UserHighlightsTweetsUserToJSON;
|
|
20
|
+
exports.UserHighlightsTweetsUserToJSONTyped = UserHighlightsTweetsUserToJSONTyped;
|
|
21
|
+
const UserHighlightsTweetsResult_1 = require("./UserHighlightsTweetsResult");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the UserHighlightsTweetsUser interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfUserHighlightsTweetsUser(value) {
|
|
26
|
+
if (!('result' in value) || value['result'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
return true;
|
|
29
|
+
}
|
|
30
|
+
function UserHighlightsTweetsUserFromJSON(json) {
|
|
31
|
+
return UserHighlightsTweetsUserFromJSONTyped(json, false);
|
|
32
|
+
}
|
|
33
|
+
function UserHighlightsTweetsUserFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if (json == null) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'result': (0, UserHighlightsTweetsResult_1.UserHighlightsTweetsResultFromJSON)(json['result']),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function UserHighlightsTweetsUserToJSON(json) {
|
|
42
|
+
return UserHighlightsTweetsUserToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function UserHighlightsTweetsUserToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'result': (0, UserHighlightsTweetsResult_1.UserHighlightsTweetsResultToJSON)(value['result']),
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
//# sourceMappingURL=UserHighlightsTweetsUser.js.map
|
|
@@ -0,0 +1,283 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UserLegacy
|
|
16
|
+
*/
|
|
17
|
+
export interface UserLegacy {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof UserLegacy
|
|
22
|
+
*/
|
|
23
|
+
blockedBy?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {boolean}
|
|
27
|
+
* @memberof UserLegacy
|
|
28
|
+
*/
|
|
29
|
+
blocking?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof UserLegacy
|
|
34
|
+
*/
|
|
35
|
+
canDm?: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {boolean}
|
|
39
|
+
* @memberof UserLegacy
|
|
40
|
+
*/
|
|
41
|
+
canMediaTag?: boolean;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UserLegacy
|
|
46
|
+
*/
|
|
47
|
+
createdAt: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {boolean}
|
|
51
|
+
* @memberof UserLegacy
|
|
52
|
+
*/
|
|
53
|
+
defaultProfile: boolean;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {boolean}
|
|
57
|
+
* @memberof UserLegacy
|
|
58
|
+
*/
|
|
59
|
+
defaultProfileImage: boolean;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof UserLegacy
|
|
64
|
+
*/
|
|
65
|
+
description: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {{ [key: string]: any; }}
|
|
69
|
+
* @memberof UserLegacy
|
|
70
|
+
*/
|
|
71
|
+
entities: {
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
*
|
|
76
|
+
* @type {number}
|
|
77
|
+
* @memberof UserLegacy
|
|
78
|
+
*/
|
|
79
|
+
fastFollowersCount: number;
|
|
80
|
+
/**
|
|
81
|
+
*
|
|
82
|
+
* @type {number}
|
|
83
|
+
* @memberof UserLegacy
|
|
84
|
+
*/
|
|
85
|
+
favouritesCount: number;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* @type {boolean}
|
|
89
|
+
* @memberof UserLegacy
|
|
90
|
+
*/
|
|
91
|
+
followRequestSent?: boolean;
|
|
92
|
+
/**
|
|
93
|
+
*
|
|
94
|
+
* @type {boolean}
|
|
95
|
+
* @memberof UserLegacy
|
|
96
|
+
*/
|
|
97
|
+
followedBy?: boolean;
|
|
98
|
+
/**
|
|
99
|
+
*
|
|
100
|
+
* @type {number}
|
|
101
|
+
* @memberof UserLegacy
|
|
102
|
+
*/
|
|
103
|
+
followersCount: number;
|
|
104
|
+
/**
|
|
105
|
+
*
|
|
106
|
+
* @type {boolean}
|
|
107
|
+
* @memberof UserLegacy
|
|
108
|
+
*/
|
|
109
|
+
following?: boolean;
|
|
110
|
+
/**
|
|
111
|
+
*
|
|
112
|
+
* @type {number}
|
|
113
|
+
* @memberof UserLegacy
|
|
114
|
+
*/
|
|
115
|
+
friendsCount: number;
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @type {boolean}
|
|
119
|
+
* @memberof UserLegacy
|
|
120
|
+
*/
|
|
121
|
+
hasCustomTimelines: boolean;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {boolean}
|
|
125
|
+
* @memberof UserLegacy
|
|
126
|
+
*/
|
|
127
|
+
isTranslator: boolean;
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @type {number}
|
|
131
|
+
* @memberof UserLegacy
|
|
132
|
+
*/
|
|
133
|
+
listedCount: number;
|
|
134
|
+
/**
|
|
135
|
+
*
|
|
136
|
+
* @type {string}
|
|
137
|
+
* @memberof UserLegacy
|
|
138
|
+
*/
|
|
139
|
+
location: string;
|
|
140
|
+
/**
|
|
141
|
+
*
|
|
142
|
+
* @type {number}
|
|
143
|
+
* @memberof UserLegacy
|
|
144
|
+
*/
|
|
145
|
+
mediaCount: number;
|
|
146
|
+
/**
|
|
147
|
+
*
|
|
148
|
+
* @type {boolean}
|
|
149
|
+
* @memberof UserLegacy
|
|
150
|
+
*/
|
|
151
|
+
muting?: boolean;
|
|
152
|
+
/**
|
|
153
|
+
*
|
|
154
|
+
* @type {string}
|
|
155
|
+
* @memberof UserLegacy
|
|
156
|
+
*/
|
|
157
|
+
name: string;
|
|
158
|
+
/**
|
|
159
|
+
*
|
|
160
|
+
* @type {number}
|
|
161
|
+
* @memberof UserLegacy
|
|
162
|
+
*/
|
|
163
|
+
normalFollowersCount: number;
|
|
164
|
+
/**
|
|
165
|
+
*
|
|
166
|
+
* @type {boolean}
|
|
167
|
+
* @memberof UserLegacy
|
|
168
|
+
*/
|
|
169
|
+
notifications?: boolean;
|
|
170
|
+
/**
|
|
171
|
+
*
|
|
172
|
+
* @type {Array<string>}
|
|
173
|
+
* @memberof UserLegacy
|
|
174
|
+
*/
|
|
175
|
+
pinnedTweetIdsStr: Array<string>;
|
|
176
|
+
/**
|
|
177
|
+
*
|
|
178
|
+
* @type {boolean}
|
|
179
|
+
* @memberof UserLegacy
|
|
180
|
+
*/
|
|
181
|
+
possiblySensitive: boolean;
|
|
182
|
+
/**
|
|
183
|
+
*
|
|
184
|
+
* @type {object}
|
|
185
|
+
* @memberof UserLegacy
|
|
186
|
+
*/
|
|
187
|
+
profileBannerExtensions?: object;
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @type {string}
|
|
191
|
+
* @memberof UserLegacy
|
|
192
|
+
*/
|
|
193
|
+
profileBannerUrl?: string;
|
|
194
|
+
/**
|
|
195
|
+
*
|
|
196
|
+
* @type {object}
|
|
197
|
+
* @memberof UserLegacy
|
|
198
|
+
*/
|
|
199
|
+
profileImageExtensions?: object;
|
|
200
|
+
/**
|
|
201
|
+
*
|
|
202
|
+
* @type {string}
|
|
203
|
+
* @memberof UserLegacy
|
|
204
|
+
*/
|
|
205
|
+
profileImageUrlHttps: string;
|
|
206
|
+
/**
|
|
207
|
+
*
|
|
208
|
+
* @type {string}
|
|
209
|
+
* @memberof UserLegacy
|
|
210
|
+
*/
|
|
211
|
+
profileInterstitialType: string;
|
|
212
|
+
/**
|
|
213
|
+
*
|
|
214
|
+
* @type {boolean}
|
|
215
|
+
* @memberof UserLegacy
|
|
216
|
+
*/
|
|
217
|
+
_protected?: boolean;
|
|
218
|
+
/**
|
|
219
|
+
*
|
|
220
|
+
* @type {string}
|
|
221
|
+
* @memberof UserLegacy
|
|
222
|
+
*/
|
|
223
|
+
screenName: string;
|
|
224
|
+
/**
|
|
225
|
+
*
|
|
226
|
+
* @type {number}
|
|
227
|
+
* @memberof UserLegacy
|
|
228
|
+
*/
|
|
229
|
+
statusesCount: number;
|
|
230
|
+
/**
|
|
231
|
+
*
|
|
232
|
+
* @type {string}
|
|
233
|
+
* @memberof UserLegacy
|
|
234
|
+
*/
|
|
235
|
+
translatorType: string;
|
|
236
|
+
/**
|
|
237
|
+
*
|
|
238
|
+
* @type {string}
|
|
239
|
+
* @memberof UserLegacy
|
|
240
|
+
*/
|
|
241
|
+
url?: string;
|
|
242
|
+
/**
|
|
243
|
+
*
|
|
244
|
+
* @type {boolean}
|
|
245
|
+
* @memberof UserLegacy
|
|
246
|
+
*/
|
|
247
|
+
verified: boolean;
|
|
248
|
+
/**
|
|
249
|
+
*
|
|
250
|
+
* @type {UserLegacyVerifiedTypeEnum}
|
|
251
|
+
* @memberof UserLegacy
|
|
252
|
+
*/
|
|
253
|
+
verifiedType?: UserLegacyVerifiedTypeEnum;
|
|
254
|
+
/**
|
|
255
|
+
*
|
|
256
|
+
* @type {boolean}
|
|
257
|
+
* @memberof UserLegacy
|
|
258
|
+
*/
|
|
259
|
+
wantRetweets?: boolean;
|
|
260
|
+
/**
|
|
261
|
+
*
|
|
262
|
+
* @type {Array<string>}
|
|
263
|
+
* @memberof UserLegacy
|
|
264
|
+
*/
|
|
265
|
+
withheldInCountries?: Array<string>;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* @export
|
|
269
|
+
*/
|
|
270
|
+
export declare const UserLegacyVerifiedTypeEnum: {
|
|
271
|
+
readonly Business: "Business";
|
|
272
|
+
readonly Government: "Government";
|
|
273
|
+
};
|
|
274
|
+
export type UserLegacyVerifiedTypeEnum = typeof UserLegacyVerifiedTypeEnum[keyof typeof UserLegacyVerifiedTypeEnum];
|
|
275
|
+
/**
|
|
276
|
+
* Check if a given object implements the UserLegacy interface.
|
|
277
|
+
*/
|
|
278
|
+
export declare function instanceOfUserLegacy(value: object): value is UserLegacy;
|
|
279
|
+
export declare function UserLegacyFromJSON(json: any): UserLegacy;
|
|
280
|
+
export declare function UserLegacyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLegacy;
|
|
281
|
+
export declare function UserLegacyToJSON(json: any): UserLegacy;
|
|
282
|
+
export declare function UserLegacyToJSONTyped(value?: UserLegacy | null, ignoreDiscriminator?: boolean): any;
|
|
283
|
+
//# sourceMappingURL=UserLegacy.d.ts.map
|
|
@@ -0,0 +1,185 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.UserLegacyVerifiedTypeEnum = void 0;
|
|
17
|
+
exports.instanceOfUserLegacy = instanceOfUserLegacy;
|
|
18
|
+
exports.UserLegacyFromJSON = UserLegacyFromJSON;
|
|
19
|
+
exports.UserLegacyFromJSONTyped = UserLegacyFromJSONTyped;
|
|
20
|
+
exports.UserLegacyToJSON = UserLegacyToJSON;
|
|
21
|
+
exports.UserLegacyToJSONTyped = UserLegacyToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* @export
|
|
24
|
+
*/
|
|
25
|
+
exports.UserLegacyVerifiedTypeEnum = {
|
|
26
|
+
Business: 'Business',
|
|
27
|
+
Government: 'Government'
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Check if a given object implements the UserLegacy interface.
|
|
31
|
+
*/
|
|
32
|
+
function instanceOfUserLegacy(value) {
|
|
33
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('defaultProfile' in value) || value['defaultProfile'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('defaultProfileImage' in value) || value['defaultProfileImage'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('description' in value) || value['description'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('entities' in value) || value['entities'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('fastFollowersCount' in value) || value['fastFollowersCount'] === undefined)
|
|
44
|
+
return false;
|
|
45
|
+
if (!('favouritesCount' in value) || value['favouritesCount'] === undefined)
|
|
46
|
+
return false;
|
|
47
|
+
if (!('followersCount' in value) || value['followersCount'] === undefined)
|
|
48
|
+
return false;
|
|
49
|
+
if (!('friendsCount' in value) || value['friendsCount'] === undefined)
|
|
50
|
+
return false;
|
|
51
|
+
if (!('hasCustomTimelines' in value) || value['hasCustomTimelines'] === undefined)
|
|
52
|
+
return false;
|
|
53
|
+
if (!('isTranslator' in value) || value['isTranslator'] === undefined)
|
|
54
|
+
return false;
|
|
55
|
+
if (!('listedCount' in value) || value['listedCount'] === undefined)
|
|
56
|
+
return false;
|
|
57
|
+
if (!('location' in value) || value['location'] === undefined)
|
|
58
|
+
return false;
|
|
59
|
+
if (!('mediaCount' in value) || value['mediaCount'] === undefined)
|
|
60
|
+
return false;
|
|
61
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
62
|
+
return false;
|
|
63
|
+
if (!('normalFollowersCount' in value) || value['normalFollowersCount'] === undefined)
|
|
64
|
+
return false;
|
|
65
|
+
if (!('pinnedTweetIdsStr' in value) || value['pinnedTweetIdsStr'] === undefined)
|
|
66
|
+
return false;
|
|
67
|
+
if (!('possiblySensitive' in value) || value['possiblySensitive'] === undefined)
|
|
68
|
+
return false;
|
|
69
|
+
if (!('profileImageUrlHttps' in value) || value['profileImageUrlHttps'] === undefined)
|
|
70
|
+
return false;
|
|
71
|
+
if (!('profileInterstitialType' in value) || value['profileInterstitialType'] === undefined)
|
|
72
|
+
return false;
|
|
73
|
+
if (!('screenName' in value) || value['screenName'] === undefined)
|
|
74
|
+
return false;
|
|
75
|
+
if (!('statusesCount' in value) || value['statusesCount'] === undefined)
|
|
76
|
+
return false;
|
|
77
|
+
if (!('translatorType' in value) || value['translatorType'] === undefined)
|
|
78
|
+
return false;
|
|
79
|
+
if (!('verified' in value) || value['verified'] === undefined)
|
|
80
|
+
return false;
|
|
81
|
+
return true;
|
|
82
|
+
}
|
|
83
|
+
function UserLegacyFromJSON(json) {
|
|
84
|
+
return UserLegacyFromJSONTyped(json, false);
|
|
85
|
+
}
|
|
86
|
+
function UserLegacyFromJSONTyped(json, ignoreDiscriminator) {
|
|
87
|
+
if (json == null) {
|
|
88
|
+
return json;
|
|
89
|
+
}
|
|
90
|
+
return {
|
|
91
|
+
'blockedBy': json['blocked_by'] == null ? undefined : json['blocked_by'],
|
|
92
|
+
'blocking': json['blocking'] == null ? undefined : json['blocking'],
|
|
93
|
+
'canDm': json['can_dm'] == null ? undefined : json['can_dm'],
|
|
94
|
+
'canMediaTag': json['can_media_tag'] == null ? undefined : json['can_media_tag'],
|
|
95
|
+
'createdAt': json['created_at'],
|
|
96
|
+
'defaultProfile': json['default_profile'],
|
|
97
|
+
'defaultProfileImage': json['default_profile_image'],
|
|
98
|
+
'description': json['description'],
|
|
99
|
+
'entities': json['entities'],
|
|
100
|
+
'fastFollowersCount': json['fast_followers_count'],
|
|
101
|
+
'favouritesCount': json['favourites_count'],
|
|
102
|
+
'followRequestSent': json['follow_request_sent'] == null ? undefined : json['follow_request_sent'],
|
|
103
|
+
'followedBy': json['followed_by'] == null ? undefined : json['followed_by'],
|
|
104
|
+
'followersCount': json['followers_count'],
|
|
105
|
+
'following': json['following'] == null ? undefined : json['following'],
|
|
106
|
+
'friendsCount': json['friends_count'],
|
|
107
|
+
'hasCustomTimelines': json['has_custom_timelines'],
|
|
108
|
+
'isTranslator': json['is_translator'],
|
|
109
|
+
'listedCount': json['listed_count'],
|
|
110
|
+
'location': json['location'],
|
|
111
|
+
'mediaCount': json['media_count'],
|
|
112
|
+
'muting': json['muting'] == null ? undefined : json['muting'],
|
|
113
|
+
'name': json['name'],
|
|
114
|
+
'normalFollowersCount': json['normal_followers_count'],
|
|
115
|
+
'notifications': json['notifications'] == null ? undefined : json['notifications'],
|
|
116
|
+
'pinnedTweetIdsStr': json['pinned_tweet_ids_str'],
|
|
117
|
+
'possiblySensitive': json['possibly_sensitive'],
|
|
118
|
+
'profileBannerExtensions': json['profile_banner_extensions'] == null ? undefined : json['profile_banner_extensions'],
|
|
119
|
+
'profileBannerUrl': json['profile_banner_url'] == null ? undefined : json['profile_banner_url'],
|
|
120
|
+
'profileImageExtensions': json['profile_image_extensions'] == null ? undefined : json['profile_image_extensions'],
|
|
121
|
+
'profileImageUrlHttps': json['profile_image_url_https'],
|
|
122
|
+
'profileInterstitialType': json['profile_interstitial_type'],
|
|
123
|
+
'_protected': json['protected'] == null ? undefined : json['protected'],
|
|
124
|
+
'screenName': json['screen_name'],
|
|
125
|
+
'statusesCount': json['statuses_count'],
|
|
126
|
+
'translatorType': json['translator_type'],
|
|
127
|
+
'url': json['url'] == null ? undefined : json['url'],
|
|
128
|
+
'verified': json['verified'],
|
|
129
|
+
'verifiedType': json['verified_type'] == null ? undefined : json['verified_type'],
|
|
130
|
+
'wantRetweets': json['want_retweets'] == null ? undefined : json['want_retweets'],
|
|
131
|
+
'withheldInCountries': json['withheld_in_countries'] == null ? undefined : json['withheld_in_countries'],
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
function UserLegacyToJSON(json) {
|
|
135
|
+
return UserLegacyToJSONTyped(json, false);
|
|
136
|
+
}
|
|
137
|
+
function UserLegacyToJSONTyped(value, ignoreDiscriminator = false) {
|
|
138
|
+
if (value == null) {
|
|
139
|
+
return value;
|
|
140
|
+
}
|
|
141
|
+
return {
|
|
142
|
+
'blocked_by': value['blockedBy'],
|
|
143
|
+
'blocking': value['blocking'],
|
|
144
|
+
'can_dm': value['canDm'],
|
|
145
|
+
'can_media_tag': value['canMediaTag'],
|
|
146
|
+
'created_at': value['createdAt'],
|
|
147
|
+
'default_profile': value['defaultProfile'],
|
|
148
|
+
'default_profile_image': value['defaultProfileImage'],
|
|
149
|
+
'description': value['description'],
|
|
150
|
+
'entities': value['entities'],
|
|
151
|
+
'fast_followers_count': value['fastFollowersCount'],
|
|
152
|
+
'favourites_count': value['favouritesCount'],
|
|
153
|
+
'follow_request_sent': value['followRequestSent'],
|
|
154
|
+
'followed_by': value['followedBy'],
|
|
155
|
+
'followers_count': value['followersCount'],
|
|
156
|
+
'following': value['following'],
|
|
157
|
+
'friends_count': value['friendsCount'],
|
|
158
|
+
'has_custom_timelines': value['hasCustomTimelines'],
|
|
159
|
+
'is_translator': value['isTranslator'],
|
|
160
|
+
'listed_count': value['listedCount'],
|
|
161
|
+
'location': value['location'],
|
|
162
|
+
'media_count': value['mediaCount'],
|
|
163
|
+
'muting': value['muting'],
|
|
164
|
+
'name': value['name'],
|
|
165
|
+
'normal_followers_count': value['normalFollowersCount'],
|
|
166
|
+
'notifications': value['notifications'],
|
|
167
|
+
'pinned_tweet_ids_str': value['pinnedTweetIdsStr'],
|
|
168
|
+
'possibly_sensitive': value['possiblySensitive'],
|
|
169
|
+
'profile_banner_extensions': value['profileBannerExtensions'],
|
|
170
|
+
'profile_banner_url': value['profileBannerUrl'],
|
|
171
|
+
'profile_image_extensions': value['profileImageExtensions'],
|
|
172
|
+
'profile_image_url_https': value['profileImageUrlHttps'],
|
|
173
|
+
'profile_interstitial_type': value['profileInterstitialType'],
|
|
174
|
+
'protected': value['_protected'],
|
|
175
|
+
'screen_name': value['screenName'],
|
|
176
|
+
'statuses_count': value['statusesCount'],
|
|
177
|
+
'translator_type': value['translatorType'],
|
|
178
|
+
'url': value['url'],
|
|
179
|
+
'verified': value['verified'],
|
|
180
|
+
'verified_type': value['verifiedType'],
|
|
181
|
+
'want_retweets': value['wantRetweets'],
|
|
182
|
+
'withheld_in_countries': value['withheldInCountries'],
|
|
183
|
+
};
|
|
184
|
+
}
|
|
185
|
+
//# sourceMappingURL=UserLegacy.js.map
|
|
@@ -0,0 +1,34 @@
|
|
|
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 type { UserLegacyExtendedProfileBirthdate } from './UserLegacyExtendedProfileBirthdate';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface UserLegacyExtendedProfile
|
|
17
|
+
*/
|
|
18
|
+
export interface UserLegacyExtendedProfile {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {UserLegacyExtendedProfileBirthdate}
|
|
22
|
+
* @memberof UserLegacyExtendedProfile
|
|
23
|
+
*/
|
|
24
|
+
birthdate?: UserLegacyExtendedProfileBirthdate;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the UserLegacyExtendedProfile interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfUserLegacyExtendedProfile(value: object): value is UserLegacyExtendedProfile;
|
|
30
|
+
export declare function UserLegacyExtendedProfileFromJSON(json: any): UserLegacyExtendedProfile;
|
|
31
|
+
export declare function UserLegacyExtendedProfileFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLegacyExtendedProfile;
|
|
32
|
+
export declare function UserLegacyExtendedProfileToJSON(json: any): UserLegacyExtendedProfile;
|
|
33
|
+
export declare function UserLegacyExtendedProfileToJSONTyped(value?: UserLegacyExtendedProfile | null, ignoreDiscriminator?: boolean): any;
|
|
34
|
+
//# sourceMappingURL=UserLegacyExtendedProfile.d.ts.map
|
|
@@ -0,0 +1,50 @@
|
|
|
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
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfUserLegacyExtendedProfile = instanceOfUserLegacyExtendedProfile;
|
|
17
|
+
exports.UserLegacyExtendedProfileFromJSON = UserLegacyExtendedProfileFromJSON;
|
|
18
|
+
exports.UserLegacyExtendedProfileFromJSONTyped = UserLegacyExtendedProfileFromJSONTyped;
|
|
19
|
+
exports.UserLegacyExtendedProfileToJSON = UserLegacyExtendedProfileToJSON;
|
|
20
|
+
exports.UserLegacyExtendedProfileToJSONTyped = UserLegacyExtendedProfileToJSONTyped;
|
|
21
|
+
const UserLegacyExtendedProfileBirthdate_1 = require("./UserLegacyExtendedProfileBirthdate");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the UserLegacyExtendedProfile interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfUserLegacyExtendedProfile(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function UserLegacyExtendedProfileFromJSON(json) {
|
|
29
|
+
return UserLegacyExtendedProfileFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function UserLegacyExtendedProfileFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'birthdate': json['birthdate'] == null ? undefined : (0, UserLegacyExtendedProfileBirthdate_1.UserLegacyExtendedProfileBirthdateFromJSON)(json['birthdate']),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function UserLegacyExtendedProfileToJSON(json) {
|
|
40
|
+
return UserLegacyExtendedProfileToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function UserLegacyExtendedProfileToJSONTyped(value, ignoreDiscriminator = false) {
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'birthdate': (0, UserLegacyExtendedProfileBirthdate_1.UserLegacyExtendedProfileBirthdateToJSON)(value['birthdate']),
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=UserLegacyExtendedProfile.js.map
|
|
@@ -0,0 +1,79 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface UserLegacyExtendedProfileBirthdate
|
|
16
|
+
*/
|
|
17
|
+
export interface UserLegacyExtendedProfileBirthdate {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof UserLegacyExtendedProfileBirthdate
|
|
22
|
+
*/
|
|
23
|
+
day: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof UserLegacyExtendedProfileBirthdate
|
|
28
|
+
*/
|
|
29
|
+
month: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {UserLegacyExtendedProfileBirthdateVisibilityEnum}
|
|
33
|
+
* @memberof UserLegacyExtendedProfileBirthdate
|
|
34
|
+
*/
|
|
35
|
+
visibility: UserLegacyExtendedProfileBirthdateVisibilityEnum;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof UserLegacyExtendedProfileBirthdate
|
|
40
|
+
*/
|
|
41
|
+
year?: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {UserLegacyExtendedProfileBirthdateYearVisibilityEnum}
|
|
45
|
+
* @memberof UserLegacyExtendedProfileBirthdate
|
|
46
|
+
*/
|
|
47
|
+
yearVisibility: UserLegacyExtendedProfileBirthdateYearVisibilityEnum;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* @export
|
|
51
|
+
*/
|
|
52
|
+
export declare const UserLegacyExtendedProfileBirthdateVisibilityEnum: {
|
|
53
|
+
readonly Self: "Self";
|
|
54
|
+
readonly Public: "Public";
|
|
55
|
+
readonly MutualFollow: "MutualFollow";
|
|
56
|
+
readonly Followers: "Followers";
|
|
57
|
+
readonly Following: "Following";
|
|
58
|
+
};
|
|
59
|
+
export type UserLegacyExtendedProfileBirthdateVisibilityEnum = typeof UserLegacyExtendedProfileBirthdateVisibilityEnum[keyof typeof UserLegacyExtendedProfileBirthdateVisibilityEnum];
|
|
60
|
+
/**
|
|
61
|
+
* @export
|
|
62
|
+
*/
|
|
63
|
+
export declare const UserLegacyExtendedProfileBirthdateYearVisibilityEnum: {
|
|
64
|
+
readonly Self: "Self";
|
|
65
|
+
readonly Public: "Public";
|
|
66
|
+
readonly MutualFollow: "MutualFollow";
|
|
67
|
+
readonly Followers: "Followers";
|
|
68
|
+
readonly Following: "Following";
|
|
69
|
+
};
|
|
70
|
+
export type UserLegacyExtendedProfileBirthdateYearVisibilityEnum = typeof UserLegacyExtendedProfileBirthdateYearVisibilityEnum[keyof typeof UserLegacyExtendedProfileBirthdateYearVisibilityEnum];
|
|
71
|
+
/**
|
|
72
|
+
* Check if a given object implements the UserLegacyExtendedProfileBirthdate interface.
|
|
73
|
+
*/
|
|
74
|
+
export declare function instanceOfUserLegacyExtendedProfileBirthdate(value: object): value is UserLegacyExtendedProfileBirthdate;
|
|
75
|
+
export declare function UserLegacyExtendedProfileBirthdateFromJSON(json: any): UserLegacyExtendedProfileBirthdate;
|
|
76
|
+
export declare function UserLegacyExtendedProfileBirthdateFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserLegacyExtendedProfileBirthdate;
|
|
77
|
+
export declare function UserLegacyExtendedProfileBirthdateToJSON(json: any): UserLegacyExtendedProfileBirthdate;
|
|
78
|
+
export declare function UserLegacyExtendedProfileBirthdateToJSONTyped(value?: UserLegacyExtendedProfileBirthdate | null, ignoreDiscriminator?: boolean): any;
|
|
79
|
+
//# sourceMappingURL=UserLegacyExtendedProfileBirthdate.d.ts.map
|