├── .env.example ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ └── general_question.md ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── README.md ├── classes │ ├── entities │ │ ├── DirectThreadEntity.md │ │ ├── LiveEntity.md │ │ ├── MediaEntity.md │ │ └── ProfileEntity.md │ ├── errors │ │ ├── IgActionSpamError.md │ │ ├── IgChallengeWrongCodeError.md │ │ ├── IgCheckpointError.md │ │ ├── IgClientError.md │ │ ├── IgConfigureVideoError.md │ │ ├── IgCookieNotFoundError.md │ │ ├── IgExactUserNotFoundError.md │ │ ├── IgInactiveUserError.md │ │ ├── IgLoginBadPasswordError.md │ │ ├── IgLoginInvalidUserError.md │ │ ├── IgLoginRequiredError.md │ │ ├── IgLoginTwoFactorRequiredError.md │ │ ├── IgNetworkError.md │ │ ├── IgNoCheckpointError.md │ │ ├── IgNotFoundError.md │ │ ├── IgParseError.md │ │ ├── IgPrivateUserError.md │ │ ├── IgRequestsLimitError.md │ │ ├── IgResponseError.md │ │ ├── IgSentryBlockError.md │ │ ├── IgUploadVideoError.md │ │ ├── IgUserHasLoggedOutError.md │ │ └── IgUserIdNotFoundError.md │ ├── feeds │ │ ├── AccountFollowersFeed.md │ │ ├── AccountFollowingFeed.md │ │ ├── BestiesFeed.md │ │ ├── BlockedUsersFeed.md │ │ ├── DirectInboxFeed.md │ │ ├── DirectPendingInboxFeed.md │ │ ├── DirectThreadFeed.md │ │ ├── DiscoverFeed.md │ │ ├── IgtvBrowseFeed.md │ │ ├── IgtvChannelFeed.md │ │ ├── LikedFeed.md │ │ ├── LocationFeed.md │ │ ├── MediaCommentsFeed.md │ │ ├── MusicGenreFeed.md │ │ ├── MusicMoodFeed.md │ │ ├── MusicSearchFeed.md │ │ ├── MusicTrendingFeed.md │ │ ├── NewsFeed.md │ │ ├── PendingFriendshipsFeed.md │ │ ├── PostsInsightsFeed.md │ │ ├── ReelsMediaFeed.md │ │ ├── ReelsTrayFeed.md │ │ ├── SavedFeed.md │ │ ├── StoriesInsightsFeed.md │ │ ├── TagFeed.md │ │ ├── TagsFeed.md │ │ ├── TimelineFeed.md │ │ ├── TopicalExploreFeed.md │ │ ├── UserFeed.md │ │ └── UsertagsFeed.md │ ├── index │ │ ├── Entity.md │ │ ├── EntityFactory.md │ │ ├── Feed.md │ │ ├── FeedFactory.md │ │ ├── IgApiClient.md │ │ ├── Request.md │ │ └── State.md │ ├── repositories │ │ ├── AccountRepository.md │ │ ├── AddressBookRepository.md │ │ ├── AdsRepository.md │ │ ├── AttributionRepository.md │ │ ├── ChallengeRepository.md │ │ ├── ConsentRepository.md │ │ ├── CreativesRepository.md │ │ ├── DirectRepository.md │ │ ├── DirectThreadRepository.md │ │ ├── DiscoverRepository.md │ │ ├── FbsearchRepository.md │ │ ├── FriendshipRepository.md │ │ ├── HighlightsRepository.md │ │ ├── IgtvRepository.md │ │ ├── LauncherRepository.md │ │ ├── LinkedAccountRepository.md │ │ ├── LiveRepository.md │ │ ├── LocationRepository.md │ │ ├── LocationSearch.md │ │ ├── LoomRepository.md │ │ ├── MediaRepository.md │ │ ├── MusicRepository.md │ │ ├── NewsRepository.md │ │ ├── QeRepository.md │ │ ├── QpRepository.md │ │ ├── RestrictActionRepository.md │ │ ├── StatusRepository.md │ │ ├── TagRepository.md │ │ ├── UploadRepository.md │ │ ├── UserRepository.md │ │ └── ZrRepository.md │ ├── responses │ │ ├── AccountFollowersFeedResponseUsersItem.md │ │ ├── AccountFollowingFeedResponseUsersItem.md │ │ ├── BestiesFeedResponseUsersItem.md │ │ ├── BlockedUsersFeedResponseBlockedListItem.md │ │ ├── DirectInboxFeedResponseThreadsItem.md │ │ ├── DiscoverFeedResponseUser.md │ │ ├── NewsFeedResponseStoriesItem.md │ │ └── PendingFriendshipsFeedResponseUsersItem.md │ ├── services │ │ ├── InsightsService.md │ │ ├── PublishService.md │ │ ├── SearchService.md │ │ ├── SimulateService.md │ │ └── StoryService.md │ └── sticker_builder │ │ ├── AttachmentSticker.md │ │ ├── ChatSticker.md │ │ ├── CountdownSticker.md │ │ ├── HashtagSticker.md │ │ ├── InstaSticker.md │ │ ├── LocationSticker.md │ │ ├── MentionSticker.md │ │ ├── PollSticker.md │ │ ├── QuestionSticker.md │ │ ├── QuizSticker.md │ │ ├── SliderSticker.md │ │ └── StickerBuilder.md ├── interfaces │ ├── responses │ │ ├── AccountFollowersFeedResponse.md │ │ ├── AccountFollowingFeedResponse.md │ │ ├── AccountRepositoryCurrentUserResponseBiography_with_entities.md │ │ ├── AccountRepositoryCurrentUserResponseHdProfilePicVersionsItem.md │ │ ├── AccountRepositoryCurrentUserResponseHd_profile_pic_url_info.md │ │ ├── AccountRepositoryCurrentUserResponseRootObject.md │ │ ├── AccountRepositoryCurrentUserResponseUser.md │ │ ├── AccountRepositoryLoginBadPasswordResponseButtonsItem.md │ │ ├── AccountRepositoryLoginErrorResponse.md │ │ ├── AccountRepositoryLoginErrorResponsePhoneVerificationSettings.md │ │ ├── AccountRepositoryLoginErrorResponseTwoFactorInfo.md │ │ ├── AccountRepositoryLoginResponseLogged_in_user.md │ │ ├── AccountRepositoryLoginResponseNametag.md │ │ ├── AccountRepositoryLoginResponseRootObject.md │ │ ├── AddressBookRepositoryLinkResponseRootObject.md │ │ ├── AddressBookRepositoryLinkResponseUsersItem.md │ │ ├── BestiesFeedResponse.md │ │ ├── BlockedUsersFeedResponseRootObject.md │ │ ├── ChallengeRepositoryStateResponseStepData.md │ │ ├── ChallengeStateResponse.md │ │ ├── CheckpointResponse.md │ │ ├── CheckpointResponseChallenge.md │ │ ├── DirectInboxFeedResponse.md │ │ ├── DirectInboxFeedResponseFriendshipStatus.md │ │ ├── DirectInboxFeedResponseInbox.md │ │ ├── DirectInboxFeedResponseInviter.md │ │ ├── DirectInboxFeedResponseItemsItem.md │ │ ├── DirectInboxFeedResponseLastPermanentItem.md │ │ ├── DirectInboxFeedResponseLink.md │ │ ├── DirectInboxFeedResponseLinkContext.md │ │ ├── DirectInboxFeedResponseMedia.md │ │ ├── DirectInboxFeedResponseMostRecentInviter.md │ │ ├── DirectInboxFeedResponsePlaceholder.md │ │ ├── DirectInboxFeedResponseProfile.md │ │ ├── DirectInboxFeedResponseReelShare.md │ │ ├── DirectInboxFeedResponseUser.md │ │ ├── DirectInboxFeedResponseUsersItem.md │ │ ├── DirectRepositoryCreateGroupThreadResponseFriendshipStatus.md │ │ ├── DirectRepositoryCreateGroupThreadResponseInviter.md │ │ ├── DirectRepositoryCreateGroupThreadResponseRootObject.md │ │ ├── DirectRepositoryCreateGroupThreadResponseUsersItem.md │ │ ├── DirectRepositoryGetPresenceResponseRootObject.md │ │ ├── DirectRepositoryRankedRecipientsResponseRankedRecipientsItem.md │ │ ├── DirectRepositoryRankedRecipientsResponseRootObject.md │ │ ├── DirectRepositoryRankedRecipientsResponseThread.md │ │ ├── DirectRepositoryRankedRecipientsResponseUser.md │ │ ├── DirectRepositoryRankedRecipientsResponseUsersItem.md │ │ ├── DirectThreadFeedResponse.md │ │ ├── DirectThreadFeedResponse300687565.md │ │ ├── DirectThreadFeedResponseInviter.md │ │ ├── DirectThreadFeedResponseItemsItem.md │ │ ├── DirectThreadFeedResponseLast_permanent_item.md │ │ ├── DirectThreadFeedResponseLast_seen_at.md │ │ ├── DirectThreadFeedResponseThread.md │ │ ├── DirectThreadRepositoryAddUserResponseActionLog.md │ │ ├── DirectThreadRepositoryAddUserResponseBoldItem.md │ │ ├── DirectThreadRepositoryAddUserResponseFriendshipStatus.md │ │ ├── DirectThreadRepositoryAddUserResponseInviter.md │ │ ├── DirectThreadRepositoryAddUserResponseLastPermanentItem.md │ │ ├── DirectThreadRepositoryAddUserResponseRootObject.md │ │ ├── DirectThreadRepositoryAddUserResponseTextAttributesItem.md │ │ ├── DirectThreadRepositoryAddUserResponseThread.md │ │ ├── DirectThreadRepositoryAddUserResponseUsersItem.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseCandidatesItem.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseFb_user_tags.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseFriendship_status.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseImage_versions2.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseInviter.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseItemsItem.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseLast_permanent_item.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseLast_seen_at.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseMedia.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseRootObject.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseStory_share.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseThread.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseUser.md │ │ ├── DirectThreadRepositoryApproveParticipantRequestResponseUsersItem.md │ │ ├── DirectThreadRepositoryBroadcastResponseMessage_metadata.md │ │ ├── DirectThreadRepositoryBroadcastResponsePayload.md │ │ ├── DirectThreadRepositoryBroadcastResponseRootObject.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseFriendshipStatus.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseInviter.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseItemsItem.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseLastPermanentItem.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseRootObject.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseThread.md │ │ ├── DirectThreadRepositoryGetByParticipantsResponseUsersItem.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseActionLog.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseBoldItem.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseFriendshipStatus.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseInviter.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseItemsItem.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseLastPermanentItem.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseRootObject.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseTextAttributesItem.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseThread.md │ │ ├── DirectThreadRepositoryUpdateTitleResponseUsersItem.md │ │ ├── DiscoverFeedResponseNew_suggested_users.md │ │ ├── DiscoverFeedResponseRootObject.md │ │ ├── DiscoverFeedResponseSuggested_users.md │ │ ├── DiscoverFeedResponseSuggestionsItem.md │ │ ├── FbsearchRepositoryPlacesResponseHeader_media.md │ │ ├── FbsearchRepositoryPlacesResponseItemsItem.md │ │ ├── FbsearchRepositoryPlacesResponseLocation.md │ │ ├── FbsearchRepositoryPlacesResponseRootObject.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseFriendship_status.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseHashtag.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseHeader_media.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseListItem.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseLocation.md │ │ ├── FbsearchRepositoryTopsearchFlatResponsePlace.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseRootObject.md │ │ ├── FbsearchRepositoryTopsearchFlatResponseUser.md │ │ ├── FriendshipRepositoryChangeResponseFriendship_status.md │ │ ├── FriendshipRepositoryChangeResponseRootObject.md │ │ ├── FriendshipRepositorySetBestiesResponseRootObject.md │ │ ├── FriendshipRepositorySetBestiesResponseRootObject_status.md │ │ ├── FriendshipRepositoryShowResponseRootObject.md │ │ ├── HighlightsRepositoryCreateReelResponseCandidatesItem.md │ │ ├── HighlightsRepositoryCreateReelResponseCover_media.md │ │ ├── HighlightsRepositoryCreateReelResponseCropped_image_version.md │ │ ├── HighlightsRepositoryCreateReelResponseFull_image_version.md │ │ ├── HighlightsRepositoryCreateReelResponseImage_versions2.md │ │ ├── HighlightsRepositoryCreateReelResponseItemsItem.md │ │ ├── HighlightsRepositoryCreateReelResponseReel.md │ │ ├── HighlightsRepositoryCreateReelResponseRootObject.md │ │ ├── HighlightsRepositoryCreateReelResponseUser.md │ │ ├── HighlightsRepositoryCreateReelResponseVideoVersionsItem.md │ │ ├── HighlightsRepositoryEditReelResponseCandidatesItem.md │ │ ├── HighlightsRepositoryEditReelResponseCover_media.md │ │ ├── HighlightsRepositoryEditReelResponseCreative_config.md │ │ ├── HighlightsRepositoryEditReelResponseCropped_image_version.md │ │ ├── HighlightsRepositoryEditReelResponseFb_user_tags.md │ │ ├── HighlightsRepositoryEditReelResponseFull_image_version.md │ │ ├── HighlightsRepositoryEditReelResponseImage_versions2.md │ │ ├── HighlightsRepositoryEditReelResponseItemsItem.md │ │ ├── HighlightsRepositoryEditReelResponseParticipantsItem.md │ │ ├── HighlightsRepositoryEditReelResponseQuiz_sticker.md │ │ ├── HighlightsRepositoryEditReelResponseReel.md │ │ ├── HighlightsRepositoryEditReelResponseRootObject.md │ │ ├── HighlightsRepositoryEditReelResponseStoryQuizParticipantInfosItem.md │ │ ├── HighlightsRepositoryEditReelResponseStoryQuizsItem.md │ │ ├── HighlightsRepositoryEditReelResponseTalliesItem.md │ │ ├── HighlightsRepositoryEditReelResponseUser.md │ │ ├── HighlightsRepositoryEditReelResponseVideoVersionsItem.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseBiography_with_entities.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseCandidatesItem.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseCaption.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseCover_media.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseCropped_image_version.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseFriendship_status.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseImage_versions2.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseItemsItem.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseMedia_cropping_info.md │ │ ├── HighlightsRepositoryHighlightsTrayResponsePreviewCommentsItem.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseRootObject.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseSeen_state.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseThumbnails.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseTrayItem.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseTv_channel.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseUser.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseUser_dict.md │ │ ├── HighlightsRepositoryHighlightsTrayResponseVideoVersionsItem.md │ │ ├── IgtvBrowseFeedResponseAdditional_candidates.md │ │ ├── IgtvBrowseFeedResponseBadging.md │ │ ├── IgtvBrowseFeedResponseBiography_with_entities.md │ │ ├── IgtvBrowseFeedResponseBrowseItemsItem.md │ │ ├── IgtvBrowseFeedResponseCandidatesItem.md │ │ ├── IgtvBrowseFeedResponseCaption.md │ │ ├── IgtvBrowseFeedResponseChannelsItem.md │ │ ├── IgtvBrowseFeedResponseComposer.md │ │ ├── IgtvBrowseFeedResponseExplore.md │ │ ├── IgtvBrowseFeedResponseFriendship_status.md │ │ ├── IgtvBrowseFeedResponseIgtv_first_frame.md │ │ ├── IgtvBrowseFeedResponseImage_versions2.md │ │ ├── IgtvBrowseFeedResponseItem.md │ │ ├── IgtvBrowseFeedResponseMedia_cropping_info.md │ │ ├── IgtvBrowseFeedResponseMy_channel.md │ │ ├── IgtvBrowseFeedResponseRootObject.md │ │ ├── IgtvBrowseFeedResponseSeen_state.md │ │ ├── IgtvBrowseFeedResponseThumbnails.md │ │ ├── IgtvBrowseFeedResponseUser.md │ │ ├── IgtvBrowseFeedResponseUser_dict.md │ │ ├── IgtvBrowseFeedResponseVideoVersionsItem.md │ │ ├── IgtvChannelFeedResponseAdditional_candidates.md │ │ ├── IgtvChannelFeedResponseBiography_with_entities.md │ │ ├── IgtvChannelFeedResponseCandidatesItem.md │ │ ├── IgtvChannelFeedResponseCaption.md │ │ ├── IgtvChannelFeedResponseFriendship_status.md │ │ ├── IgtvChannelFeedResponseIgtv_first_frame.md │ │ ├── IgtvChannelFeedResponseImage_versions2.md │ │ ├── IgtvChannelFeedResponseItemsItem.md │ │ ├── IgtvChannelFeedResponseMedia_cropping_info.md │ │ ├── IgtvChannelFeedResponsePreviewCommentsItem.md │ │ ├── IgtvChannelFeedResponseRootObject.md │ │ ├── IgtvChannelFeedResponseSeen_state.md │ │ ├── IgtvChannelFeedResponseThumbnails.md │ │ ├── IgtvChannelFeedResponseUser.md │ │ ├── IgtvChannelFeedResponseUser_dict.md │ │ ├── IgtvChannelFeedResponseVideoVersionsItem.md │ │ ├── IgtvSearchResponseBiography_with_entities.md │ │ ├── IgtvSearchResponseChannel.md │ │ ├── IgtvSearchResponseEntitiesItem.md │ │ ├── IgtvSearchResponseFriendship_status.md │ │ ├── IgtvSearchResponseHashtag.md │ │ ├── IgtvSearchResponseResultsItem.md │ │ ├── IgtvSearchResponseRootObject.md │ │ ├── IgtvSearchResponseSeen_state.md │ │ ├── IgtvSearchResponseUser.md │ │ ├── IgtvSearchResponseUser_dict.md │ │ ├── InsightsServiceAccountResponseAccount_actions_graph.md │ │ ├── InsightsServiceAccountResponseAccount_discovery_graph.md │ │ ├── InsightsServiceAccountResponseAccount_hashtags.md │ │ ├── InsightsServiceAccountResponseAccount_insights_unit.md │ │ ├── InsightsServiceAccountResponseAccount_summary_unit.md │ │ ├── InsightsServiceAccountResponseAll_followers_age_graph.md │ │ ├── InsightsServiceAccountResponseAymt_instagram_account_insights_channel.md │ │ ├── InsightsServiceAccountResponseBusiness_manager.md │ │ ├── InsightsServiceAccountResponseBusiness_profile.md │ │ ├── InsightsServiceAccountResponseData.md │ │ ├── InsightsServiceAccountResponseDataPointsItem.md │ │ ├── InsightsServiceAccountResponseDaysHourlyFollowersGraphsItem.md │ │ ├── InsightsServiceAccountResponseFollow_status.md │ │ ├── InsightsServiceAccountResponseFollowers_top_cities_graph.md │ │ ├── InsightsServiceAccountResponseFollowers_top_countries_graph.md │ │ ├── InsightsServiceAccountResponseFollowers_unit.md │ │ ├── InsightsServiceAccountResponseGender_graph.md │ │ ├── InsightsServiceAccountResponseGraph.md │ │ ├── InsightsServiceAccountResponseHashtags_impressions.md │ │ ├── InsightsServiceAccountResponseHashtags_reach.md │ │ ├── InsightsServiceAccountResponseMen_followers_age_graph.md │ │ ├── InsightsServiceAccountResponseMetric_graph.md │ │ ├── InsightsServiceAccountResponseNodesItem.md │ │ ├── InsightsServiceAccountResponseOrganic.md │ │ ├── InsightsServiceAccountResponseProfile_picture.md │ │ ├── InsightsServiceAccountResponsePromotions_unit.md │ │ ├── InsightsServiceAccountResponseRootObject.md │ │ ├── InsightsServiceAccountResponseStatus.md │ │ ├── InsightsServiceAccountResponseStories_unit.md │ │ ├── InsightsServiceAccountResponseSummary_promotions.md │ │ ├── InsightsServiceAccountResponseSummary_stories.md │ │ ├── InsightsServiceAccountResponseTop_posts.md │ │ ├── InsightsServiceAccountResponseTop_posts_unit.md │ │ ├── InsightsServiceAccountResponseTotal_count_graph.md │ │ ├── InsightsServiceAccountResponseUser.md │ │ ├── InsightsServiceAccountResponseWeek_daily_followers_graph.md │ │ ├── InsightsServiceAccountResponseWomen_followers_age_graph.md │ │ ├── InsightsServicePostResponseActions.md │ │ ├── InsightsServicePostResponseData.md │ │ ├── InsightsServicePostResponseFollow_status.md │ │ ├── InsightsServicePostResponseHashtags.md │ │ ├── InsightsServicePostResponseHashtags_impressions.md │ │ ├── InsightsServicePostResponseImage.md │ │ ├── InsightsServicePostResponseImpressions.md │ │ ├── InsightsServicePostResponseInline_insights_node.md │ │ ├── InsightsServicePostResponseInstagram_actor.md │ │ ├── InsightsServicePostResponseMedia.md │ │ ├── InsightsServicePostResponseMetrics.md │ │ ├── InsightsServicePostResponseNodesItem.md │ │ ├── InsightsServicePostResponseOrganic.md │ │ ├── InsightsServicePostResponsePost.md │ │ ├── InsightsServicePostResponseProfile_actions.md │ │ ├── InsightsServicePostResponseReach.md │ │ ├── InsightsServicePostResponseRootObject.md │ │ ├── InsightsServicePostResponseShare_count.md │ │ ├── InsightsServicePostResponseSurfaces.md │ │ ├── InsightsServicePostResponseTray.md │ │ ├── InsightsServiceStoryResponseData.md │ │ ├── InsightsServiceStoryResponseInline_insights_node.md │ │ ├── InsightsServiceStoryResponseInstagram_actor.md │ │ ├── InsightsServiceStoryResponseMedia.md │ │ ├── InsightsServiceStoryResponseRootObject.md │ │ ├── LikedFeedResponseCandidatesItem.md │ │ ├── LikedFeedResponseCaption.md │ │ ├── LikedFeedResponseFriendship_status.md │ │ ├── LikedFeedResponseImage_versions2.md │ │ ├── LikedFeedResponseInItem.md │ │ ├── LikedFeedResponseItemsItem.md │ │ ├── LikedFeedResponseLocation.md │ │ ├── LikedFeedResponsePreviewCommentsItem.md │ │ ├── LikedFeedResponseRootObject.md │ │ ├── LikedFeedResponseUser.md │ │ ├── LikedFeedResponseUsertags.md │ │ ├── ListReelMediaViewerFeedResponseBiography_with_entities.md │ │ ├── ListReelMediaViewerFeedResponseCandidatesItem.md │ │ ├── ListReelMediaViewerFeedResponseCharity.md │ │ ├── ListReelMediaViewerFeedResponseChat_sticker.md │ │ ├── ListReelMediaViewerFeedResponseConsumption_sheet_config.md │ │ ├── ListReelMediaViewerFeedResponseCreative_config.md │ │ ├── ListReelMediaViewerFeedResponseDonation_amount_config.md │ │ ├── ListReelMediaViewerFeedResponseDonations.md │ │ ├── ListReelMediaViewerFeedResponseFb_user_tags.md │ │ ├── ListReelMediaViewerFeedResponseFriendship_status.md │ │ ├── ListReelMediaViewerFeedResponseFundraiser_sticker.md │ │ ├── ListReelMediaViewerFeedResponseHashtag.md │ │ ├── ListReelMediaViewerFeedResponseImage_versions2.md │ │ ├── ListReelMediaViewerFeedResponseLocation.md │ │ ├── ListReelMediaViewerFeedResponseReelMentionsItem.md │ │ ├── ListReelMediaViewerFeedResponseRequester_usernames.md │ │ ├── ListReelMediaViewerFeedResponseRootObject.md │ │ ├── ListReelMediaViewerFeedResponseStoryChatRequestInfosItem.md │ │ ├── ListReelMediaViewerFeedResponseStoryChatsItem.md │ │ ├── ListReelMediaViewerFeedResponseStoryFundraiserDonationInfosItem.md │ │ ├── ListReelMediaViewerFeedResponseStoryFundraisersItem.md │ │ ├── ListReelMediaViewerFeedResponseStoryHashtagsItem.md │ │ ├── ListReelMediaViewerFeedResponseStoryLocationsItem.md │ │ ├── ListReelMediaViewerFeedResponseUpdated_media.md │ │ ├── ListReelMediaViewerFeedResponseUser.md │ │ ├── ListReelMediaViewerFeedResponseUsersItem.md │ │ ├── ListReelMediaViewerFeedResponseViewersItem.md │ │ ├── LiveAddPostLiveToIgtvResponseRootObject.md │ │ ├── LiveAddToPostBroadcast.md │ │ ├── LiveAddToPostBroadcastOwner.md │ │ ├── LiveAddToPostFriendshipstatus.md │ │ ├── LiveAddToPostResponse.md │ │ ├── LiveAddToPostUser.md │ │ ├── LiveCommentsResponseCommentsItem.md │ │ ├── LiveCommentsResponseRootObject.md │ │ ├── LiveCommentsResponseSystemCommentsItem.md │ │ ├── LiveCommentsResponseUser.md │ │ ├── LiveCreateBroadcastResponseRootObject.md │ │ ├── LiveFinalViewersResponseRootObject.md │ │ ├── LiveFinalViewersResponseUsersItem.md │ │ ├── LiveGetQuestionsResponseQuestionsItem.md │ │ ├── LiveGetQuestionsResponseRootObject.md │ │ ├── LiveGetQuestionsResponseUser.md │ │ ├── LiveHeartbeatViewerCountResponseRootObject.md │ │ ├── LiveInfoResponseBroadcast_owner.md │ │ ├── LiveInfoResponseFriendship_status.md │ │ ├── LiveInfoResponseRootObject.md │ │ ├── LiveJoinRequestCountsResponseRootObject.md │ │ ├── LiveJoinRequestCountsResponseUsersItem.md │ │ ├── LiveLikeCountResponseRootObject.md │ │ ├── LiveLikeResponseRootObject.md │ │ ├── LivePostLiveThumbnailsResponseRootObject.md │ │ ├── LiveStartBroadcastResponseRootObject.md │ │ ├── LiveSwitchCommentsResponseRootObject.md │ │ ├── LiveViewerListResponseRootObject.md │ │ ├── LiveViewerListResponseUsersItem.md │ │ ├── LocationFeedResponse.md │ │ ├── LocationFeedResponseCandidatesItem.md │ │ ├── LocationFeedResponseCaption.md │ │ ├── LocationFeedResponseCarouselMediaItem.md │ │ ├── LocationFeedResponseExplore_item_info.md │ │ ├── LocationFeedResponseFriendship_status.md │ │ ├── LocationFeedResponseImage_versions2.md │ │ ├── LocationFeedResponseInItem.md │ │ ├── LocationFeedResponseLayout_content.md │ │ ├── LocationFeedResponseLocation.md │ │ ├── LocationFeedResponseMedia.md │ │ ├── LocationFeedResponseMediasItem.md │ │ ├── LocationFeedResponsePreviewCommentsItem.md │ │ ├── LocationFeedResponseSectionsItem.md │ │ ├── LocationFeedResponseUser.md │ │ ├── LocationFeedResponseUsertags.md │ │ ├── LocationFeedResponseVideoVersionsItem.md │ │ ├── LocationRepositoryInfoResponseLocation.md │ │ ├── LocationRepositoryInfoResponseRootObject.md │ │ ├── LocationRepositorySearchResponseRootObject.md │ │ ├── LocationRepositorySearchResponseVenuesItem.md │ │ ├── LocationRepositoryStoryResponseCandidatesItem.md │ │ ├── LocationRepositoryStoryResponseHashtag.md │ │ ├── LocationRepositoryStoryResponseImage_versions2.md │ │ ├── LocationRepositoryStoryResponseItemsItem.md │ │ ├── LocationRepositoryStoryResponseLocation.md │ │ ├── LocationRepositoryStoryResponseLocation_dict.md │ │ ├── LocationRepositoryStoryResponseOwner.md │ │ ├── LocationRepositoryStoryResponseReelMentionsItem.md │ │ ├── LocationRepositoryStoryResponseRootObject.md │ │ ├── LocationRepositoryStoryResponseStory.md │ │ ├── LocationRepositoryStoryResponseStoryHashtagsItem.md │ │ ├── LocationRepositoryStoryResponseStoryLocationsItem.md │ │ ├── LocationRepositoryStoryResponseUser.md │ │ ├── LocationRepositoryStoryResponseVideoVersionsItem.md │ │ ├── LoginRequiredResponse.md │ │ ├── MediaCommentsFeedResponse.md │ │ ├── MediaCommentsFeedResponseCaption.md │ │ ├── MediaCommentsFeedResponseCommentsItem.md │ │ ├── MediaCommentsFeedResponseOtherPreviewUsersItem.md │ │ ├── MediaCommentsFeedResponsePreviewChildCommentsItem.md │ │ ├── MediaCommentsFeedResponsePreviewCommentsItem.md │ │ ├── MediaCommentsFeedResponseQuickResponseEmojisItem.md │ │ ├── MediaCommentsFeedResponseUser.md │ │ ├── MediaEditResponseRootObject.md │ │ ├── MediaEntityOembedResponse.md │ │ ├── MediaInfoResponseCandidatesItem.md │ │ ├── MediaInfoResponseCaption.md │ │ ├── MediaInfoResponseFriendship_status.md │ │ ├── MediaInfoResponseImage_versions2.md │ │ ├── MediaInfoResponseItemsItem.md │ │ ├── MediaInfoResponseRootObject.md │ │ ├── MediaInfoResponseUser.md │ │ ├── MediaInlineChildCommentsFeedResponseChildCommentsItem.md │ │ ├── MediaInlineChildCommentsFeedResponseParent_comment.md │ │ ├── MediaInlineChildCommentsFeedResponseRootObject.md │ │ ├── MediaInlineChildCommentsFeedResponseUser.md │ │ ├── MediaRepositoryBlockedResponse.md │ │ ├── MediaRepositoryCheckOffensiveCommentResponseRootObject.md │ │ ├── MediaRepositoryCommentResponse.md │ │ ├── MediaRepositoryCommentResponseComment.md │ │ ├── MediaRepositoryCommentResponseUser.md │ │ ├── MediaRepositoryConfigureResponseCandidatesItem.md │ │ ├── MediaRepositoryConfigureResponseFb_user_tags.md │ │ ├── MediaRepositoryConfigureResponseImage_versions2.md │ │ ├── MediaRepositoryConfigureResponseMedia.md │ │ ├── MediaRepositoryConfigureResponseRootObject.md │ │ ├── MediaRepositoryConfigureResponseUser.md │ │ ├── MediaRepositoryConfigureSidecarResponseCandidatesItem.md │ │ ├── MediaRepositoryConfigureSidecarResponseCaption.md │ │ ├── MediaRepositoryConfigureSidecarResponseCarouselMediaItem.md │ │ ├── MediaRepositoryConfigureSidecarResponseFb_user_tags.md │ │ ├── MediaRepositoryConfigureSidecarResponseImage_versions2.md │ │ ├── MediaRepositoryConfigureSidecarResponseInItem.md │ │ ├── MediaRepositoryConfigureSidecarResponseMedia.md │ │ ├── MediaRepositoryConfigureSidecarResponseRootObject.md │ │ ├── MediaRepositoryConfigureSidecarResponseUser.md │ │ ├── MediaRepositoryConfigureSidecarResponseUsertags.md │ │ ├── MediaRepositoryConfigureSidecarResponseVideoVersionsItem.md │ │ ├── MediaRepositoryConfigureVideoResponseCandidatesItem.md │ │ ├── MediaRepositoryConfigureVideoResponseFb_user_tags.md │ │ ├── MediaRepositoryConfigureVideoResponseImage_versions2.md │ │ ├── MediaRepositoryConfigureVideoResponseInItem.md │ │ ├── MediaRepositoryConfigureVideoResponseMedia.md │ │ ├── MediaRepositoryConfigureVideoResponseRootObject.md │ │ ├── MediaRepositoryConfigureVideoResponseUser.md │ │ ├── MediaRepositoryConfigureVideoResponseUsertags.md │ │ ├── MediaRepositoryLikersResponseRootObject.md │ │ ├── MediaRepositoryLikersResponseUsersItem.md │ │ ├── MediaUpdatedMediaResponseCandidatesItem.md │ │ ├── MediaUpdatedMediaResponseCaption.md │ │ ├── MediaUpdatedMediaResponseCreative_config.md │ │ ├── MediaUpdatedMediaResponseFriendship_status.md │ │ ├── MediaUpdatedMediaResponseImage_versions2.md │ │ ├── MediaUpdatedMediaResponsePoll_sticker.md │ │ ├── MediaUpdatedMediaResponseRootObject.md │ │ ├── MediaUpdatedMediaResponseStoryPollsItem.md │ │ ├── MediaUpdatedMediaResponseTalliesItem.md │ │ ├── MediaUpdatedMediaResponseUpdated_media.md │ │ ├── MediaUpdatedMediaResponseUser.md │ │ ├── MusicGenreFeedResponseItemsItem.md │ │ ├── MusicGenreFeedResponsePage_info.md │ │ ├── MusicGenreFeedResponseRootObject.md │ │ ├── MusicGenreFeedResponseTrack.md │ │ ├── MusicMoodFeedResponseItemsItem.md │ │ ├── MusicMoodFeedResponsePage_info.md │ │ ├── MusicMoodFeedResponseRootObject.md │ │ ├── MusicMoodFeedResponseTrack.md │ │ ├── MusicRepositoryGenresResponseGenre.md │ │ ├── MusicRepositoryGenresResponseItemsItem.md │ │ ├── MusicRepositoryGenresResponseRootObject.md │ │ ├── MusicRepositoryMoodsResponseItemsItem.md │ │ ├── MusicRepositoryMoodsResponseMood.md │ │ ├── MusicRepositoryMoodsResponseRootObject.md │ │ ├── MusicSearchFeedResponseItemsItem.md │ │ ├── MusicSearchFeedResponsePage_info.md │ │ ├── MusicSearchFeedResponseRootObject.md │ │ ├── MusicSearchFeedResponseTrack.md │ │ ├── MusicTrendingFeedResponseItemsItem.md │ │ ├── MusicTrendingFeedResponsePage_info.md │ │ ├── MusicTrendingFeedResponseRootObject.md │ │ ├── MusicTrendingFeedResponseTrack.md │ │ ├── NewsFeedResponseArgs.md │ │ ├── NewsFeedResponseCounts.md │ │ ├── NewsFeedResponseLinksItem.md │ │ ├── NewsFeedResponseMediaItem.md │ │ ├── NewsFeedResponseRootObject.md │ │ ├── NewsRepositoryInboxResponseAds_manager.md │ │ ├── NewsRepositoryInboxResponseArgs.md │ │ ├── NewsRepositoryInboxResponseAymf.md │ │ ├── NewsRepositoryInboxResponseBusiness_profile_reminder.md │ │ ├── NewsRepositoryInboxResponseCounts.md │ │ ├── NewsRepositoryInboxResponseHashtag_follow.md │ │ ├── NewsRepositoryInboxResponseItemsItem.md │ │ ├── NewsRepositoryInboxResponseLinksItem.md │ │ ├── NewsRepositoryInboxResponseMediaItem.md │ │ ├── NewsRepositoryInboxResponseNewStoriesItem.md │ │ ├── NewsRepositoryInboxResponseOldStoriesItem.md │ │ ├── NewsRepositoryInboxResponsePartition.md │ │ ├── NewsRepositoryInboxResponseRootObject.md │ │ ├── NewsRepositoryInboxResponseTime_bucket.md │ │ ├── NewsRepositoryInboxResponseUser.md │ │ ├── PendingFriendshipsFeedResponse.md │ │ ├── PostsInsightsFeedResponseActions.md │ │ ├── PostsInsightsFeedResponseBusiness_manager.md │ │ ├── PostsInsightsFeedResponseData.md │ │ ├── PostsInsightsFeedResponseEdgesItem.md │ │ ├── PostsInsightsFeedResponseImage.md │ │ ├── PostsInsightsFeedResponseInline_insights_node.md │ │ ├── PostsInsightsFeedResponseMetrics.md │ │ ├── PostsInsightsFeedResponseNode.md │ │ ├── PostsInsightsFeedResponsePage_info.md │ │ ├── PostsInsightsFeedResponseProfile_actions.md │ │ ├── PostsInsightsFeedResponseRootObject.md │ │ ├── PostsInsightsFeedResponseShare_count.md │ │ ├── PostsInsightsFeedResponseTop_posts.md │ │ ├── PostsInsightsFeedResponseTop_posts_unit.md │ │ ├── PostsInsightsFeedResponseTray.md │ │ ├── PostsInsightsFeedResponseUser.md │ │ ├── ReelsMediaFeedResponse.md │ │ ├── ReelsMediaFeedResponseCandidatesItem.md │ │ ├── ReelsMediaFeedResponseCountdown_sticker.md │ │ ├── ReelsMediaFeedResponseFriendshipStatus.md │ │ ├── ReelsMediaFeedResponseImageVersions2.md │ │ ├── ReelsMediaFeedResponseItem.md │ │ ├── ReelsMediaFeedResponseLinksItem.md │ │ ├── ReelsMediaFeedResponsePollSticker.md │ │ ├── ReelsMediaFeedResponseQuestionSticker.md │ │ ├── ReelsMediaFeedResponseQuizSticker.md │ │ ├── ReelsMediaFeedResponseReelMentionsItem.md │ │ ├── ReelsMediaFeedResponseReels.md │ │ ├── ReelsMediaFeedResponseRootObject.md │ │ ├── ReelsMediaFeedResponseSliderSticker.md │ │ ├── ReelsMediaFeedResponseStoryCountdownsItem.md │ │ ├── ReelsMediaFeedResponseStoryCtaItem.md │ │ ├── ReelsMediaFeedResponseStoryPollsItem.md │ │ ├── ReelsMediaFeedResponseStoryQuestionsItem.md │ │ ├── ReelsMediaFeedResponseStoryQuizsItem.md │ │ ├── ReelsMediaFeedResponseStorySlidersItem.md │ │ ├── ReelsMediaFeedResponseTalliesItem.md │ │ ├── ReelsMediaFeedResponseUser.md │ │ ├── ReelsMediaFeedResponseVideoVersionsItem.md │ │ ├── ReelsTrayFeedResponseAttribution.md │ │ ├── ReelsTrayFeedResponseBroadcast_owner.md │ │ ├── ReelsTrayFeedResponseBroadcastsItem.md │ │ ├── ReelsTrayFeedResponseCandidatesItem.md │ │ ├── ReelsTrayFeedResponseCreative_config.md │ │ ├── ReelsTrayFeedResponseFriendship_status.md │ │ ├── ReelsTrayFeedResponseImage_versions2.md │ │ ├── ReelsTrayFeedResponseItemsItem.md │ │ ├── ReelsTrayFeedResponseLocation.md │ │ ├── ReelsTrayFeedResponsePoll_sticker.md │ │ ├── ReelsTrayFeedResponseQuestion_sticker.md │ │ ├── ReelsTrayFeedResponseQuiz_sticker.md │ │ ├── ReelsTrayFeedResponseReelMentionsItem.md │ │ ├── ReelsTrayFeedResponseRootObject.md │ │ ├── ReelsTrayFeedResponseStoryLocationsItem.md │ │ ├── ReelsTrayFeedResponseStoryPollsItem.md │ │ ├── ReelsTrayFeedResponseStoryQuestionsItem.md │ │ ├── ReelsTrayFeedResponseStoryQuizsItem.md │ │ ├── ReelsTrayFeedResponseTalliesItem.md │ │ ├── ReelsTrayFeedResponseTrayItem.md │ │ ├── ReelsTrayFeedResponseUser.md │ │ ├── ReelsTrayFeedResponseVideoVersionsItem.md │ │ ├── RestrictActionRepositoryRestrictResponseFriendship_status.md │ │ ├── RestrictActionRepositoryRestrictResponseRootObject.md │ │ ├── RestrictActionRepositoryRestrictResponseUsersItem.md │ │ ├── SavedFeedResponseCandidatesItem.md │ │ ├── SavedFeedResponseCaption.md │ │ ├── SavedFeedResponseCarouselMediaItem.md │ │ ├── SavedFeedResponseFriendship_status.md │ │ ├── SavedFeedResponseImage_versions2.md │ │ ├── SavedFeedResponseInItem.md │ │ ├── SavedFeedResponseItemsItem.md │ │ ├── SavedFeedResponseLocation.md │ │ ├── SavedFeedResponseMain_image.md │ │ ├── SavedFeedResponseMedia.md │ │ ├── SavedFeedResponseMerchant.md │ │ ├── SavedFeedResponsePreviewCommentsItem.md │ │ ├── SavedFeedResponseProduct.md │ │ ├── SavedFeedResponseProduct_tags.md │ │ ├── SavedFeedResponseRootObject.md │ │ ├── SavedFeedResponseThumbnail_image.md │ │ ├── SavedFeedResponseUser.md │ │ ├── SavedFeedResponseUsertags.md │ │ ├── SavedFeedResponseVariantValuesItem.md │ │ ├── SavedFeedResponseVideoVersionsItem.md │ │ ├── SpamResponse.md │ │ ├── StatusResponse.md │ │ ├── StoriesInsightsFeedResponseBusiness_manager.md │ │ ├── StoriesInsightsFeedResponseData.md │ │ ├── StoriesInsightsFeedResponseEdgesItem.md │ │ ├── StoriesInsightsFeedResponseInline_insights_node.md │ │ ├── StoriesInsightsFeedResponseNode.md │ │ ├── StoriesInsightsFeedResponsePage_info.md │ │ ├── StoriesInsightsFeedResponseRootObject.md │ │ ├── StoriesInsightsFeedResponseStories.md │ │ ├── StoriesInsightsFeedResponseStories_unit.md │ │ ├── StoriesInsightsFeedResponseUser.md │ │ ├── StoryPollVotersFeedResponseFriendship_status.md │ │ ├── StoryPollVotersFeedResponseRootObject.md │ │ ├── StoryPollVotersFeedResponseUser.md │ │ ├── StoryPollVotersFeedResponseVoter_info.md │ │ ├── StoryPollVotersFeedResponseVotersItem.md │ │ ├── StoryQuestionResponsesFeedResponseResponder_info.md │ │ ├── StoryQuestionResponsesFeedResponseRespondersItem.md │ │ ├── StoryQuestionResponsesFeedResponseRootObject.md │ │ ├── StoryQuestionResponsesFeedResponseUser.md │ │ ├── StoryQuizParticipantsFeedResponseParticipant_info.md │ │ ├── StoryQuizParticipantsFeedResponseParticipantsItem.md │ │ ├── StoryQuizParticipantsFeedResponseRootObject.md │ │ ├── StoryQuizParticipantsFeedResponseUser.md │ │ ├── StorySliderVotersFeedResponseResponseFriendship_status.md │ │ ├── StorySliderVotersFeedResponseResponseRootObject.md │ │ ├── StorySliderVotersFeedResponseResponseUser.md │ │ ├── StorySliderVotersFeedResponseResponseVoter_info.md │ │ ├── StorySliderVotersFeedResponseResponseVotersItem.md │ │ ├── TagFeedResponse.md │ │ ├── TagFeedResponseAttribution.md │ │ ├── TagFeedResponseCandidatesItem.md │ │ ├── TagFeedResponseCaption.md │ │ ├── TagFeedResponseCarouselMediaItem.md │ │ ├── TagFeedResponseCreative_config.md │ │ ├── TagFeedResponseFriendship_status.md │ │ ├── TagFeedResponseHashtag.md │ │ ├── TagFeedResponseImage_versions2.md │ │ ├── TagFeedResponseInItem.md │ │ ├── TagFeedResponseItemsItem.md │ │ ├── TagFeedResponseLikersItem.md │ │ ├── TagFeedResponseLocation.md │ │ ├── TagFeedResponseOwner.md │ │ ├── TagFeedResponsePreviewCommentsItem.md │ │ ├── TagFeedResponseRankedItemsItem.md │ │ ├── TagFeedResponseReelMentionsItem.md │ │ ├── TagFeedResponseStory.md │ │ ├── TagFeedResponseStoryHashtagsItem.md │ │ ├── TagFeedResponseStoryLocationsItem.md │ │ ├── TagFeedResponseUser.md │ │ ├── TagFeedResponseUsertags.md │ │ ├── TagFeedResponseVideoVersionsItem.md │ │ ├── TagRepositorySearchResponseResultsItem.md │ │ ├── TagRepositorySearchResponseRootObject.md │ │ ├── TagsFeedResponse.md │ │ ├── TagsFeedResponseCandidatesItem.md │ │ ├── TagsFeedResponseCaption.md │ │ ├── TagsFeedResponseCarouselMediaItem.md │ │ ├── TagsFeedResponseExplore_item_info.md │ │ ├── TagsFeedResponseFriendship_status.md │ │ ├── TagsFeedResponseImage_versions2.md │ │ ├── TagsFeedResponseInItem.md │ │ ├── TagsFeedResponseLayout_content.md │ │ ├── TagsFeedResponseMedia.md │ │ ├── TagsFeedResponseMediasItem.md │ │ ├── TagsFeedResponsePreviewCommentsItem.md │ │ ├── TagsFeedResponseSectionsItem.md │ │ ├── TagsFeedResponseTags.md │ │ ├── TagsFeedResponseUser.md │ │ ├── TagsFeedResponseUsertags.md │ │ ├── TagsFeedResponseVideoVersionsItem.md │ │ ├── TimelineFeedResponse.md │ │ ├── TimelineFeedResponseAdMetadataItem.md │ │ ├── TimelineFeedResponseAndroidLinksItem.md │ │ ├── TimelineFeedResponseCandidatesItem.md │ │ ├── TimelineFeedResponseCaption.md │ │ ├── TimelineFeedResponseCarouselMediaItem.md │ │ ├── TimelineFeedResponseClientGapEnforcerMatrixItem.md │ │ ├── TimelineFeedResponseFacepileTopLikersItem.md │ │ ├── TimelineFeedResponseFeedItemsItem.md │ │ ├── TimelineFeedResponseFriendship_status.md │ │ ├── TimelineFeedResponseHeadline.md │ │ ├── TimelineFeedResponseHideReasonsV2Item.md │ │ ├── TimelineFeedResponseImage_versions2.md │ │ ├── TimelineFeedResponseInItem.md │ │ ├── TimelineFeedResponseInjected.md │ │ ├── TimelineFeedResponseLocation.md │ │ ├── TimelineFeedResponseMedia_or_ad.md │ │ ├── TimelineFeedResponsePagination_info.md │ │ ├── TimelineFeedResponsePreviewCommentsItem.md │ │ ├── TimelineFeedResponseStories_netego.md │ │ ├── TimelineFeedResponseUser.md │ │ ├── TimelineFeedResponseUsertags.md │ │ ├── TimelineFeedResponseVideoVersionsItem.md │ │ ├── TopicalExploreFeedResponseAdditional_candidates.md │ │ ├── TopicalExploreFeedResponseCandidatesItem.md │ │ ├── TopicalExploreFeedResponseCaption.md │ │ ├── TopicalExploreFeedResponseCarouselMediaItem.md │ │ ├── TopicalExploreFeedResponseChannel.md │ │ ├── TopicalExploreFeedResponseChannelsItem.md │ │ ├── TopicalExploreFeedResponseExplore.md │ │ ├── TopicalExploreFeedResponseExplore_item_info.md │ │ ├── TopicalExploreFeedResponseFillItemsItem.md │ │ ├── TopicalExploreFeedResponseFirst_frame.md │ │ ├── TopicalExploreFeedResponseFriendship_status.md │ │ ├── TopicalExploreFeedResponseIgtv.md │ │ ├── TopicalExploreFeedResponseIgtv_first_frame.md │ │ ├── TopicalExploreFeedResponseImage_versions2.md │ │ ├── TopicalExploreFeedResponseInItem.md │ │ ├── TopicalExploreFeedResponseInlineStyleRangesItem.md │ │ ├── TopicalExploreFeedResponseItemsItem.md │ │ ├── TopicalExploreFeedResponseLaunch_information.md │ │ ├── TopicalExploreFeedResponseLayout_content.md │ │ ├── TopicalExploreFeedResponseLocation.md │ │ ├── TopicalExploreFeedResponseMain_image.md │ │ ├── TopicalExploreFeedResponseMedia.md │ │ ├── TopicalExploreFeedResponseMedia_cropping_info.md │ │ ├── TopicalExploreFeedResponseMediasItem.md │ │ ├── TopicalExploreFeedResponseMerchant.md │ │ ├── TopicalExploreFeedResponseProduct.md │ │ ├── TopicalExploreFeedResponseProduct_tags.md │ │ ├── TopicalExploreFeedResponseRichTextDescriptionItem.md │ │ ├── TopicalExploreFeedResponseRootObject.md │ │ ├── TopicalExploreFeedResponseSectionalItemsItem.md │ │ ├── TopicalExploreFeedResponseSeen_state.md │ │ ├── TopicalExploreFeedResponseSharing_friction_info.md │ │ ├── TopicalExploreFeedResponseText_with_entities.md │ │ ├── TopicalExploreFeedResponseThumbnail_image.md │ │ ├── TopicalExploreFeedResponseThumbnails.md │ │ ├── TopicalExploreFeedResponseTv_guide.md │ │ ├── TopicalExploreFeedResponseTwo_by_two_item.md │ │ ├── TopicalExploreFeedResponseUser.md │ │ ├── TopicalExploreFeedResponseUsertags.md │ │ ├── TopicalExploreFeedResponseVideoVersionsItem.md │ │ ├── UploadRepositoryPhotoResponseRootObject.md │ │ ├── UploadRepositoryPhotoResponseXsharing_nonces.md │ │ ├── UploadRepositoryVideoResponseRootObject.md │ │ ├── UploadRepositoryVideoResponseXsharing_nonces.md │ │ ├── UserFeedResponse.md │ │ ├── UserFeedResponseCandidatesItem.md │ │ ├── UserFeedResponseCaption.md │ │ ├── UserFeedResponseCarouselMediaItem.md │ │ ├── UserFeedResponseFacepileTopLikersItem.md │ │ ├── UserFeedResponseFb_user_tags.md │ │ ├── UserFeedResponseImage_versions2.md │ │ ├── UserFeedResponseItemsItem.md │ │ ├── UserFeedResponsePreviewCommentsItem.md │ │ ├── UserFeedResponseUser.md │ │ ├── UserFeedResponseVideoVersionsItem.md │ │ ├── UserRepositoryInfoResponseBiography_with_entities.md │ │ ├── UserRepositoryInfoResponseHdProfilePicVersionsItem.md │ │ ├── UserRepositoryInfoResponseHd_profile_pic_url_info.md │ │ ├── UserRepositoryInfoResponseNametag.md │ │ ├── UserRepositoryInfoResponseRootObject.md │ │ ├── UserRepositoryInfoResponseUser.md │ │ ├── UserRepositorySearchResponseFriendship_status.md │ │ ├── UserRepositorySearchResponseRootObject.md │ │ ├── UserRepositorySearchResponseUsersItem.md │ │ ├── UserStoryFeedResponseCandidatesItem.md │ │ ├── UserStoryFeedResponseFriendship_status.md │ │ ├── UserStoryFeedResponseImage_versions2.md │ │ ├── UserStoryFeedResponseItemsItem.md │ │ ├── UserStoryFeedResponseLocation.md │ │ ├── UserStoryFeedResponseReel.md │ │ ├── UserStoryFeedResponseRootObject.md │ │ ├── UserStoryFeedResponseStoryLocationsItem.md │ │ ├── UserStoryFeedResponseUser.md │ │ ├── UserStoryFeedResponseVideoVersionsItem.md │ │ ├── UsertagsFeedResponseCandidatesItem.md │ │ ├── UsertagsFeedResponseCaption.md │ │ ├── UsertagsFeedResponseFriendship_status.md │ │ ├── UsertagsFeedResponseImage_versions2.md │ │ ├── UsertagsFeedResponseInItem.md │ │ ├── UsertagsFeedResponseItemsItem.md │ │ ├── UsertagsFeedResponseLocation.md │ │ ├── UsertagsFeedResponsePreviewCommentsItem.md │ │ ├── UsertagsFeedResponseRootObject.md │ │ ├── UsertagsFeedResponseUser.md │ │ └── UsertagsFeedResponseUsertags.md │ ├── sticker_builder │ │ └── PollStickerTallie.md │ └── types │ │ ├── AccountEditProfileOptions.md │ │ ├── AccountInsightsOptions.md │ │ ├── AccountTwoFactorLoginOptions.md │ │ ├── CreateHighlightsReelOptions.md │ │ ├── DirectThreadBroadcastPhotoOptions.md │ │ ├── DirectThreadBroadcastPhotoStoryOptions.md │ │ ├── DirectThreadBroadcastReelOptions.md │ │ ├── DirectThreadBroadcastStoryOptions.md │ │ ├── DirectThreadBroadcastVideoOptions.md │ │ ├── DirectThreadBroadcastVideoStoryOptions.md │ │ ├── DirectThreadBroadcastVoiceOptions.md │ │ ├── EditHighlightsReelOptions.md │ │ ├── GraphQLRequestOptions.md │ │ ├── IgtvWriteSeenStateOptions.md │ │ ├── LiveRtmpSettings.md │ │ ├── MediaConfigureOptions.md │ │ ├── MediaConfigureSidecarItem.md │ │ ├── MediaConfigureSidecarOptions.md │ │ ├── MediaConfigureSidecarVideoItem.md │ │ ├── MediaConfigureStoryBaseOptions.md │ │ ├── MediaConfigureStoryPhotoOptions.md │ │ ├── MediaConfigureStoryVideoOptions.md │ │ ├── MediaConfigureTimelineOptions.md │ │ ├── MediaConfigureTimelineVideoOptions.md │ │ ├── MediaConfigureToIgtvOptions.md │ │ ├── MediaConfigureVideoOptions.md │ │ ├── MediaLocation.md │ │ ├── PostingAlbumItem.md │ │ ├── PostingAlbumOptions.md │ │ ├── PostingAlbumPhotoItem.md │ │ ├── PostingAlbumVideoItem.md │ │ ├── PostingPhotoOptions.md │ │ ├── PostingStoryPhotoOptions.md │ │ ├── PostingStoryVideoOptions.md │ │ ├── PostingVideoOptions.md │ │ ├── PostsInsightsFeedOptions.md │ │ ├── StoryAttachedMedia.md │ │ ├── StoryChat.md │ │ ├── StoryCountdown.md │ │ ├── StoryCta.md │ │ ├── StoryHashtag.md │ │ ├── StoryLocation.md │ │ ├── StoryMention.md │ │ ├── StoryPoll.md │ │ ├── StoryPollTallie.md │ │ ├── StoryQuestion.md │ │ ├── StoryQuiz.md │ │ ├── StoryServiceSeenInputItems.md │ │ ├── StoryServiceSeenInputReels.md │ │ ├── StorySlider.md │ │ ├── StorySticker.md │ │ ├── TimelineFeedsOptions.md │ │ ├── UploadPhotoOptions.md │ │ ├── UploadRetryContext.md │ │ ├── UploadSegmentedVideoOptions.md │ │ ├── UploadVideoOptions.md │ │ ├── UploadVideoSegmentInitOptions.md │ │ ├── UploadVideoSegmentTransferOptions.md │ │ └── UserLookupOptions.md └── modules │ ├── entities.md │ ├── errors.md │ ├── feeds.md │ ├── index.md │ ├── repositories.md │ ├── responses.md │ ├── services.md │ ├── sticker_builder.md │ └── types.md ├── examples ├── 2fa-sms-login.example.ts ├── account-followers.feed.example.ts ├── checkpoint.example.ts ├── dm-thrad.broadast-media.example.ts ├── live.example.ts ├── session.example.ts ├── socks5-proxy.example.ts ├── unfollow-users.example.ts ├── upload-photo-from-web.example.ts ├── upload-photo.example.ts ├── upload-story.example.ts ├── upload-video.example.ts └── user-stories-watching.example.ts ├── package.json ├── src ├── core │ ├── client.ts │ ├── constants.ts │ ├── entity.factory.ts │ ├── entity.ts │ ├── feed.factory.ts │ ├── feed.ts │ ├── repository.ts │ ├── request.ts │ └── state.ts ├── decorators │ ├── enumerable.decorator.ts │ └── index.ts ├── entities │ ├── direct-thread.entity.ts │ ├── index.ts │ ├── live.entity.ts │ ├── media.entity.ts │ └── profile.entity.ts ├── errors │ ├── ig-action-spam.error.ts │ ├── ig-challenge-wrong-code.error.ts │ ├── ig-checkpoint.error.ts │ ├── ig-client.error.ts │ ├── ig-configure-video-error.ts │ ├── ig-cookie-not-found.error.ts │ ├── ig-exact-user-not-found-error.ts │ ├── ig-inactive-user.error.ts │ ├── ig-login-bad-password.error.ts │ ├── ig-login-invalid-user.error.ts │ ├── ig-login-required.error.ts │ ├── ig-login-two-factor-required.error.ts │ ├── ig-network.error.ts │ ├── ig-no-checkpoint.error.ts │ ├── ig-not-found.error.ts │ ├── ig-parse.error.ts │ ├── ig-private-user.error.ts │ ├── ig-requests-limit.error.ts │ ├── ig-response.error.ts │ ├── ig-sentry-block.error.ts │ ├── ig-signup-block.error.ts │ ├── ig-upload-video-error.ts │ ├── ig-user-has-logged-out.error.ts │ ├── ig-user-id-not-found.error.ts │ └── index.ts ├── feeds │ ├── account-followers.feed.ts │ ├── account-following.feed.ts │ ├── account-friendships-besties.feed.ts │ ├── account-friendships.feed.ts │ ├── blocked-users.feed.ts │ ├── direct-inbox.feed.ts │ ├── direct-pending.feed.ts │ ├── direct-thread.feed.ts │ ├── discover.feed.ts │ ├── igtv.browse.feed.ts │ ├── igtv.channel.feed.ts │ ├── index.ts │ ├── liked.feed.ts │ ├── list-reel-media-viewer.feed.ts │ ├── location.feed.ts │ ├── media-comments.feed.ts │ ├── media.inline-child-comments.feed.ts │ ├── media.sticker-responses.feed.ts │ ├── music-genre.feed.ts │ ├── music-mood.feed.ts │ ├── music-search.feed.ts │ ├── music-trending.feed.ts │ ├── news.feed.ts │ ├── posts-insights.feed.ts │ ├── reels-media.feed.ts │ ├── reels-tray.feed.ts │ ├── saved.feed.ts │ ├── stories-insights.feed.ts │ ├── tag.feed.ts │ ├── tags.feed.ts │ ├── timeline.feed.ts │ ├── topical-explore.feed.ts │ ├── user-story.feed.ts │ ├── user.feed.ts │ └── usertags.feed.ts ├── index.ts ├── repositories │ ├── README.md │ ├── account.repository.ts │ ├── address-book.repository.ts │ ├── ads.repository.ts │ ├── attribution.repository.ts │ ├── challenge.repository.ts │ ├── consent.repository.ts │ ├── creatives.repository.ts │ ├── direct-thread.repository.ts │ ├── direct.repository.ts │ ├── discover.repository.ts │ ├── fbsearch.repository.ts │ ├── friendship.repository.ts │ ├── highlights.repository.ts │ ├── igtv.repository.ts │ ├── launcher.repository.ts │ ├── linked-account.repository.ts │ ├── live.repository.ts │ ├── location-search.repository.ts │ ├── location.repository.ts │ ├── loom.repository.ts │ ├── media.repository.ts │ ├── music.repository.ts │ ├── news.repository.ts │ ├── qe.repository.ts │ ├── qp.repository.ts │ ├── restrict-action.repository.ts │ ├── status.repository.ts │ ├── tag.repository.ts │ ├── upload.repository.ts │ ├── user.repository.ts │ └── zr.repository.ts ├── responses │ ├── account-followers.feed.response.ts │ ├── account-following.feed.response.ts │ ├── account-friendships-besties.feed.response.ts │ ├── account-friendships.feed.response.ts │ ├── account.repository.current-user.response.ts │ ├── account.repository.login.error.response.ts │ ├── account.repository.login.response.ts │ ├── address-book.repository.link.response.ts │ ├── blocked-users.feed.response.ts │ ├── challenge.state.response.ts │ ├── checkpoint.response.ts │ ├── direct-inbox.feed.response.ts │ ├── direct-thread.feed.response.ts │ ├── direct-thread.repository.add-user.response.ts │ ├── direct-thread.repository.approve-participant-request.response.ts │ ├── direct-thread.repository.broadcast.response.ts │ ├── direct-thread.repository.get-by-participants.response.ts │ ├── direct-thread.repository.update-title.response.ts │ ├── direct.repository.create-group-thread.response.ts │ ├── direct.repository.get-presence.response.ts │ ├── direct.repository.ranked-recipients.response.ts │ ├── discover.feed.response.ts │ ├── discover.repository.chaining.response.ts │ ├── fbsearch.repository.places.response.ts │ ├── fbsearch.repository.topsearch-flat.response.ts │ ├── friendship.repository.besties.response.ts │ ├── friendship.repository.change.response.ts │ ├── friendship.repository.show.response.ts │ ├── highlights.repository.create-reel.response.ts │ ├── highlights.repository.edit-reel.response.ts │ ├── highlights.repository.highlights-tray.response.ts │ ├── igtv.browse.feed.response.ts │ ├── igtv.channel.feed.response.ts │ ├── igtv.search.response.ts │ ├── index.ts │ ├── insights.service.account.response.ts │ ├── insights.service.post.response.ts │ ├── insights.service.story.response.ts │ ├── liked.feed.response.ts │ ├── list-reel-media-viewer.feed.response.ts │ ├── live.add-post-live-to-igtv.response.ts │ ├── live.add-to-post.response.ts │ ├── live.comments.response.ts │ ├── live.create-broadcast.response.ts │ ├── live.final-viewers.response.ts │ ├── live.get-questions.response.ts │ ├── live.heartbeat-viewer-count.response.ts │ ├── live.info.response.ts │ ├── live.join-request-counts.response.ts │ ├── live.like-count.response.ts │ ├── live.like.response.ts │ ├── live.post-live-thumbnails.response.ts │ ├── live.start-broadcast.response.ts │ ├── live.switch-comments.response.ts │ ├── live.viewer-list.response.ts │ ├── location.feed.response.ts │ ├── location.repository.info.response.ts │ ├── location.repository.search.response.ts │ ├── location.repository.story.response.ts │ ├── login-required.response.ts │ ├── media-comments.feed.response.ts │ ├── media.entity.oembed.response.ts │ ├── media.inline-child-comments.feed.response.ts │ ├── media.repository.blocked.response.ts │ ├── media.repository.check-offensive-comment.response.ts │ ├── media.repository.comment.response.ts │ ├── media.repository.configure-sidecar.response.ts │ ├── media.repository.configure-video.response.ts │ ├── media.repository.configure.response.ts │ ├── media.repository.info.response.ts │ ├── media.repository.likers.response.ts │ ├── media.updated-media.response.ts │ ├── music-genre.feed.response.ts │ ├── music-mood.feed.response.ts │ ├── music-search.feed.response.ts │ ├── music-trending.feed.response.ts │ ├── music.repository.genres.response.ts │ ├── music.repository.lyrics.response.ts │ ├── music.repository.moods.response.ts │ ├── news.feed.response.ts │ ├── news.repository.inbox.response.ts │ ├── posts-insights.feed.response.ts │ ├── reels-media.feed.response.ts │ ├── reels-tray.feed.response.ts │ ├── restrict-action.repository.restrict.response.ts │ ├── saved.feed.response.ts │ ├── spam.response.ts │ ├── status.response.ts │ ├── stories-insights.feed.response.ts │ ├── story-poll-voters.feed.response.ts │ ├── story-question-responses.feed.response.ts │ ├── story-quiz-participants.feed.response.ts │ ├── story-slider-voters.feed.response.response.ts │ ├── tag.feed.response.ts │ ├── tag.repository.search.response.ts │ ├── tag.repository.section.response.ts │ ├── tags.feed.response.ts │ ├── timeline.feed.response.ts │ ├── topical-explore.feed.response.ts │ ├── upload.repository.photo.response.ts │ ├── upload.repository.video.response.ts │ ├── user-story.feed.response.ts │ ├── user.feed.response.ts │ ├── user.repository.info.response.ts │ ├── user.repository.search.response.ts │ └── usertags.feed.response.ts ├── samples │ ├── builds.json │ ├── devices.json │ └── supported-capabilities.json ├── services │ ├── insights.service.ts │ ├── publish.service.ts │ ├── search.service.ts │ ├── simulate.service.ts │ └── story.service.ts ├── sticker-builder │ ├── index.ts │ ├── sticker-builder.ts │ └── stickers │ │ ├── attachment.sticker.ts │ │ ├── chat.sticker.ts │ │ ├── countdown.sticker.ts │ │ ├── hashtag.sticker.ts │ │ ├── index.ts │ │ ├── insta-sticker.ts │ │ ├── location.sticker.ts │ │ ├── mention.sticker.ts │ │ ├── poll.sticker.ts │ │ ├── question.sticker.ts │ │ ├── quiz.sticker.ts │ │ └── slider.sticker.ts └── types │ ├── account.edit-profile.options.ts │ ├── account.two-factor-login.options.ts │ ├── common.types.ts │ ├── create-highlights-reel.options.ts │ ├── direct-thread.broadcast-media.options.ts │ ├── direct-thread.broadcast-reel.options.ts │ ├── direct-thread.broadcast.options.ts │ ├── edit-highlights-reel.options.ts │ ├── graphql-request.options.ts │ ├── igtv.write-seen-state.options.ts │ ├── index.ts │ ├── insights.options.ts │ ├── live.obs-settings.ts │ ├── media.configure-sidecar.options.ts │ ├── media.configure-story.options.ts │ ├── media.configure-to-igtv.options.ts │ ├── media.configure-video.options.ts │ ├── media.configure.options.ts │ ├── media.like.options.ts │ ├── posting.album.options.ts │ ├── posting.igtv.options.ts │ ├── posting.options.ts │ ├── posting.photo.options.ts │ ├── posting.video.options.ts │ ├── set-besties.input.ts │ ├── stories.types.ts │ ├── story-response.options.ts │ ├── timeline-feed.types.ts │ ├── upload.photo.options.ts │ ├── upload.video.options.ts │ └── user.lookup.options.ts ├── tools ├── doc-entries │ ├── entities.ts │ ├── errors.ts │ ├── feeds.ts │ ├── index.ts │ ├── repositories.ts │ ├── responses.ts │ ├── services.ts │ ├── sticker-builder.ts │ └── types.ts ├── images │ ├── original.jpg │ └── test.png └── response-to-interface.ts ├── tsconfig.build.json ├── tsconfig.docs.json ├── tsconfig.json ├── tslint.json ├── typedoc.json └── yarn.lock /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/.github/ISSUE_TEMPLATE/general_question.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | docs 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/.prettierrc -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/classes/entities/DirectThreadEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/entities/DirectThreadEntity.md -------------------------------------------------------------------------------- /docs/classes/entities/LiveEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/entities/LiveEntity.md -------------------------------------------------------------------------------- /docs/classes/entities/MediaEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/entities/MediaEntity.md -------------------------------------------------------------------------------- /docs/classes/entities/ProfileEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/entities/ProfileEntity.md -------------------------------------------------------------------------------- /docs/classes/errors/IgActionSpamError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgActionSpamError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgChallengeWrongCodeError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgChallengeWrongCodeError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgCheckpointError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgCheckpointError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgClientError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgClientError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgConfigureVideoError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgConfigureVideoError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgCookieNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgCookieNotFoundError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgExactUserNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgExactUserNotFoundError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgInactiveUserError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgInactiveUserError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgLoginBadPasswordError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgLoginBadPasswordError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgLoginInvalidUserError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgLoginInvalidUserError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgLoginRequiredError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgLoginRequiredError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgLoginTwoFactorRequiredError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgLoginTwoFactorRequiredError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgNetworkError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgNetworkError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgNoCheckpointError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgNoCheckpointError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgNotFoundError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgParseError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgParseError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgPrivateUserError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgPrivateUserError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgRequestsLimitError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgRequestsLimitError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgResponseError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgResponseError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgSentryBlockError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgSentryBlockError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgUploadVideoError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgUploadVideoError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgUserHasLoggedOutError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgUserHasLoggedOutError.md -------------------------------------------------------------------------------- /docs/classes/errors/IgUserIdNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/errors/IgUserIdNotFoundError.md -------------------------------------------------------------------------------- /docs/classes/feeds/AccountFollowersFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/AccountFollowersFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/AccountFollowingFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/AccountFollowingFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/BestiesFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/BestiesFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/BlockedUsersFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/BlockedUsersFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/DirectInboxFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/DirectInboxFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/DirectPendingInboxFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/DirectPendingInboxFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/DirectThreadFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/DirectThreadFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/DiscoverFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/DiscoverFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/IgtvBrowseFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/IgtvBrowseFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/IgtvChannelFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/IgtvChannelFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/LikedFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/LikedFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/LocationFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/LocationFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/MediaCommentsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/MediaCommentsFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/MusicGenreFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/MusicGenreFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/MusicMoodFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/MusicMoodFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/MusicSearchFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/MusicSearchFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/MusicTrendingFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/MusicTrendingFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/NewsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/NewsFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/PendingFriendshipsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/PendingFriendshipsFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/PostsInsightsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/PostsInsightsFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/ReelsMediaFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/ReelsMediaFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/ReelsTrayFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/ReelsTrayFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/SavedFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/SavedFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/StoriesInsightsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/StoriesInsightsFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/TagFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/TagFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/TagsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/TagsFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/TimelineFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/TimelineFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/TopicalExploreFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/TopicalExploreFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/UserFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/UserFeed.md -------------------------------------------------------------------------------- /docs/classes/feeds/UsertagsFeed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/feeds/UsertagsFeed.md -------------------------------------------------------------------------------- /docs/classes/index/Entity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/Entity.md -------------------------------------------------------------------------------- /docs/classes/index/EntityFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/EntityFactory.md -------------------------------------------------------------------------------- /docs/classes/index/Feed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/Feed.md -------------------------------------------------------------------------------- /docs/classes/index/FeedFactory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/FeedFactory.md -------------------------------------------------------------------------------- /docs/classes/index/IgApiClient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/IgApiClient.md -------------------------------------------------------------------------------- /docs/classes/index/Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/Request.md -------------------------------------------------------------------------------- /docs/classes/index/State.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/index/State.md -------------------------------------------------------------------------------- /docs/classes/repositories/AccountRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/AccountRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/AddressBookRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/AddressBookRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/AdsRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/AdsRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/AttributionRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/AttributionRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/ChallengeRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/ChallengeRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/ConsentRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/ConsentRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/CreativesRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/CreativesRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/DirectRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/DirectRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/DirectThreadRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/DirectThreadRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/DiscoverRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/DiscoverRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/FbsearchRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/FbsearchRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/FriendshipRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/FriendshipRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/HighlightsRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/HighlightsRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/IgtvRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/IgtvRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/LauncherRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/LauncherRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/LinkedAccountRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/LinkedAccountRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/LiveRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/LiveRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/LocationRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/LocationRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/LocationSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/LocationSearch.md -------------------------------------------------------------------------------- /docs/classes/repositories/LoomRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/LoomRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/MediaRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/MediaRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/MusicRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/MusicRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/NewsRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/NewsRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/QeRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/QeRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/QpRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/QpRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/RestrictActionRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/RestrictActionRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/StatusRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/StatusRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/TagRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/TagRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/UploadRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/UploadRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/UserRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/UserRepository.md -------------------------------------------------------------------------------- /docs/classes/repositories/ZrRepository.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/repositories/ZrRepository.md -------------------------------------------------------------------------------- /docs/classes/responses/AccountFollowersFeedResponseUsersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/responses/AccountFollowersFeedResponseUsersItem.md -------------------------------------------------------------------------------- /docs/classes/responses/AccountFollowingFeedResponseUsersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/responses/AccountFollowingFeedResponseUsersItem.md -------------------------------------------------------------------------------- /docs/classes/responses/BestiesFeedResponseUsersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/responses/BestiesFeedResponseUsersItem.md -------------------------------------------------------------------------------- /docs/classes/responses/DirectInboxFeedResponseThreadsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/responses/DirectInboxFeedResponseThreadsItem.md -------------------------------------------------------------------------------- /docs/classes/responses/DiscoverFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/responses/DiscoverFeedResponseUser.md -------------------------------------------------------------------------------- /docs/classes/responses/NewsFeedResponseStoriesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/responses/NewsFeedResponseStoriesItem.md -------------------------------------------------------------------------------- /docs/classes/services/InsightsService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/services/InsightsService.md -------------------------------------------------------------------------------- /docs/classes/services/PublishService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/services/PublishService.md -------------------------------------------------------------------------------- /docs/classes/services/SearchService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/services/SearchService.md -------------------------------------------------------------------------------- /docs/classes/services/SimulateService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/services/SimulateService.md -------------------------------------------------------------------------------- /docs/classes/services/StoryService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/services/StoryService.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/AttachmentSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/AttachmentSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/ChatSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/ChatSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/CountdownSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/CountdownSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/HashtagSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/HashtagSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/InstaSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/InstaSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/LocationSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/LocationSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/MentionSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/MentionSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/PollSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/PollSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/QuestionSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/QuestionSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/QuizSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/QuizSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/SliderSticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/SliderSticker.md -------------------------------------------------------------------------------- /docs/classes/sticker_builder/StickerBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/classes/sticker_builder/StickerBuilder.md -------------------------------------------------------------------------------- /docs/interfaces/responses/AccountFollowersFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/AccountFollowersFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/AccountFollowingFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/AccountFollowingFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/AccountRepositoryLoginErrorResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/AccountRepositoryLoginErrorResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/BestiesFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/BestiesFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/BlockedUsersFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/BlockedUsersFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ChallengeStateResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ChallengeStateResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/CheckpointResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/CheckpointResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/CheckpointResponseChallenge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/CheckpointResponseChallenge.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseInbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseInbox.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseInviter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseInviter.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseLink.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseLink.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseLinkContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseLinkContext.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponsePlaceholder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponsePlaceholder.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseProfile.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseReelShare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseReelShare.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectInboxFeedResponseUsersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectInboxFeedResponseUsersItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectThreadFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectThreadFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectThreadFeedResponse300687565.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectThreadFeedResponse300687565.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectThreadFeedResponseInviter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectThreadFeedResponseInviter.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectThreadFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectThreadFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DirectThreadFeedResponseThread.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DirectThreadFeedResponseThread.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DiscoverFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DiscoverFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DiscoverFeedResponseSuggested_users.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DiscoverFeedResponseSuggested_users.md -------------------------------------------------------------------------------- /docs/interfaces/responses/DiscoverFeedResponseSuggestionsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/DiscoverFeedResponseSuggestionsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseBadging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseBadging.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseChannelsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseChannelsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseComposer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseComposer.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseExplore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseExplore.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseMy_channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseMy_channel.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseSeen_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseSeen_state.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseThumbnails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseThumbnails.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvBrowseFeedResponseUser_dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvBrowseFeedResponseUser_dict.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseSeen_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseSeen_state.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseThumbnails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseThumbnails.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvChannelFeedResponseUser_dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvChannelFeedResponseUser_dict.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseChannel.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseEntitiesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseEntitiesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseFriendship_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseFriendship_status.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseHashtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseHashtag.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseResultsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseResultsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseSeen_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseSeen_state.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/IgtvSearchResponseUser_dict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/IgtvSearchResponseUser_dict.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServiceAccountResponseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServiceAccountResponseData.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServiceAccountResponseGraph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServiceAccountResponseGraph.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServiceAccountResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServiceAccountResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseActions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseActions.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseData.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseHashtags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseHashtags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseImage.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseMetrics.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseOrganic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseOrganic.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponsePost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponsePost.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseReach.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseReach.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseSurfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseSurfaces.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServicePostResponseTray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServicePostResponseTray.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServiceStoryResponseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServiceStoryResponseData.md -------------------------------------------------------------------------------- /docs/interfaces/responses/InsightsServiceStoryResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/InsightsServiceStoryResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseFriendship_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseFriendship_status.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LikedFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LikedFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ListReelMediaViewerFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ListReelMediaViewerFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveAddToPostBroadcast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveAddToPostBroadcast.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveAddToPostBroadcastOwner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveAddToPostBroadcastOwner.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveAddToPostFriendshipstatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveAddToPostFriendshipstatus.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveAddToPostResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveAddToPostResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveAddToPostUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveAddToPostUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveCommentsResponseCommentsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveCommentsResponseCommentsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveCommentsResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveCommentsResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveCommentsResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveCommentsResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveFinalViewersResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveFinalViewersResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveFinalViewersResponseUsersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveFinalViewersResponseUsersItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveGetQuestionsResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveGetQuestionsResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveGetQuestionsResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveGetQuestionsResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveInfoResponseBroadcast_owner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveInfoResponseBroadcast_owner.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveInfoResponseFriendship_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveInfoResponseFriendship_status.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveInfoResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveInfoResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveLikeCountResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveLikeCountResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveLikeResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveLikeResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveViewerListResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveViewerListResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LiveViewerListResponseUsersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LiveViewerListResponseUsersItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseLayout_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseLayout_content.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseMediasItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseMediasItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseSectionsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseSectionsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LocationRepositoryStoryResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LocationRepositoryStoryResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/LoginRequiredResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/LoginRequiredResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaCommentsFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaCommentsFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaCommentsFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaCommentsFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaCommentsFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaCommentsFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaEditResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaEditResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaEntityOembedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaEntityOembedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseFriendship_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseFriendship_status.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaInfoResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaInfoResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaRepositoryBlockedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaRepositoryBlockedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaRepositoryCommentResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaRepositoryCommentResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaRepositoryCommentResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaRepositoryCommentResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaUpdatedMediaResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaUpdatedMediaResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaUpdatedMediaResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaUpdatedMediaResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MediaUpdatedMediaResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MediaUpdatedMediaResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicGenreFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicGenreFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicGenreFeedResponsePage_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicGenreFeedResponsePage_info.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicGenreFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicGenreFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicGenreFeedResponseTrack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicGenreFeedResponseTrack.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicMoodFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicMoodFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicMoodFeedResponsePage_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicMoodFeedResponsePage_info.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicMoodFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicMoodFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicMoodFeedResponseTrack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicMoodFeedResponseTrack.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicRepositoryGenresResponseGenre.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicRepositoryGenresResponseGenre.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicRepositoryMoodsResponseMood.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicRepositoryMoodsResponseMood.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicSearchFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicSearchFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicSearchFeedResponsePage_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicSearchFeedResponsePage_info.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicSearchFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicSearchFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicSearchFeedResponseTrack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicSearchFeedResponseTrack.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicTrendingFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicTrendingFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/MusicTrendingFeedResponseTrack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/MusicTrendingFeedResponseTrack.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsFeedResponseArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsFeedResponseArgs.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsFeedResponseCounts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsFeedResponseCounts.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsFeedResponseLinksItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsFeedResponseLinksItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsFeedResponseMediaItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsFeedResponseMediaItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsRepositoryInboxResponseArgs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsRepositoryInboxResponseArgs.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsRepositoryInboxResponseAymf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsRepositoryInboxResponseAymf.md -------------------------------------------------------------------------------- /docs/interfaces/responses/NewsRepositoryInboxResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/NewsRepositoryInboxResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PendingFriendshipsFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PendingFriendshipsFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseActions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseActions.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseData.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseImage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseImage.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseMetrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseMetrics.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseNode.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseTray.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseTray.md -------------------------------------------------------------------------------- /docs/interfaces/responses/PostsInsightsFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/PostsInsightsFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsMediaFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsMediaFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsMediaFeedResponseItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsMediaFeedResponseItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsMediaFeedResponseLinksItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsMediaFeedResponseLinksItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsMediaFeedResponseReels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsMediaFeedResponseReels.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsMediaFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsMediaFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsMediaFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsMediaFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseAttribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseAttribution.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseTalliesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseTalliesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseTrayItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseTrayItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/ReelsTrayFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/ReelsTrayFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseMain_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseMain_image.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseMerchant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseMerchant.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseProduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseProduct.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseProduct_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseProduct_tags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseThumbnail_image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseThumbnail_image.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SavedFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SavedFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/SpamResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/SpamResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/StatusResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/StatusResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/StoriesInsightsFeedResponseData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/StoriesInsightsFeedResponseData.md -------------------------------------------------------------------------------- /docs/interfaces/responses/StoriesInsightsFeedResponseNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/StoriesInsightsFeedResponseNode.md -------------------------------------------------------------------------------- /docs/interfaces/responses/StoriesInsightsFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/StoriesInsightsFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/StoryPollVotersFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/StoryPollVotersFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseAttribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseAttribution.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseCarouselMediaItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseCarouselMediaItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseCreative_config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseCreative_config.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseFriendship_status.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseFriendship_status.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseHashtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseHashtag.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseLikersItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseLikersItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseOwner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseOwner.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseRankedItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseRankedItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseReelMentionsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseReelMentionsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseStory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseStory.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseStoryHashtagsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseStoryHashtagsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagFeedResponseVideoVersionsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagFeedResponseVideoVersionsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseLayout_content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseLayout_content.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseMediasItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseMediasItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseSectionsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseSectionsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseTags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseTags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TagsFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TagsFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseHeadline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseHeadline.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseInjected.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseInjected.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseMedia_or_ad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseMedia_or_ad.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TimelineFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TimelineFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TopicalExploreFeedResponseIgtv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TopicalExploreFeedResponseIgtv.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TopicalExploreFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TopicalExploreFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TopicalExploreFeedResponseMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TopicalExploreFeedResponseMedia.md -------------------------------------------------------------------------------- /docs/interfaces/responses/TopicalExploreFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/TopicalExploreFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponse.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponseCandidatesItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponseCandidatesItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponseFb_user_tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponseFb_user_tags.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponseImage_versions2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponseImage_versions2.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserRepositoryInfoResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserRepositoryInfoResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserStoryFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserStoryFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserStoryFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserStoryFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserStoryFeedResponseReel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserStoryFeedResponseReel.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserStoryFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserStoryFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UserStoryFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UserStoryFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseCaption.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseCaption.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseInItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseInItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseItemsItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseItemsItem.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseLocation.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseRootObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseRootObject.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseUser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseUser.md -------------------------------------------------------------------------------- /docs/interfaces/responses/UsertagsFeedResponseUsertags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/responses/UsertagsFeedResponseUsertags.md -------------------------------------------------------------------------------- /docs/interfaces/sticker_builder/PollStickerTallie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/sticker_builder/PollStickerTallie.md -------------------------------------------------------------------------------- /docs/interfaces/types/AccountEditProfileOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/AccountEditProfileOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/AccountInsightsOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/AccountInsightsOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/AccountTwoFactorLoginOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/AccountTwoFactorLoginOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/CreateHighlightsReelOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/CreateHighlightsReelOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/DirectThreadBroadcastPhotoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/DirectThreadBroadcastPhotoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/DirectThreadBroadcastReelOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/DirectThreadBroadcastReelOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/DirectThreadBroadcastStoryOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/DirectThreadBroadcastStoryOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/DirectThreadBroadcastVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/DirectThreadBroadcastVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/DirectThreadBroadcastVoiceOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/DirectThreadBroadcastVoiceOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/EditHighlightsReelOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/EditHighlightsReelOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/GraphQLRequestOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/GraphQLRequestOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/IgtvWriteSeenStateOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/IgtvWriteSeenStateOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/LiveRtmpSettings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/LiveRtmpSettings.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureSidecarItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureSidecarItem.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureSidecarOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureSidecarOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureSidecarVideoItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureSidecarVideoItem.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureStoryBaseOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureStoryBaseOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureStoryPhotoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureStoryPhotoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureStoryVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureStoryVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureTimelineOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureTimelineOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureTimelineVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureTimelineVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureToIgtvOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureToIgtvOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaConfigureVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaConfigureVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/MediaLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/MediaLocation.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingAlbumItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingAlbumItem.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingAlbumOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingAlbumOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingAlbumPhotoItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingAlbumPhotoItem.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingAlbumVideoItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingAlbumVideoItem.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingPhotoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingPhotoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingStoryPhotoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingStoryPhotoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingStoryVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingStoryVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostingVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostingVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/PostsInsightsFeedOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/PostsInsightsFeedOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryAttachedMedia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryAttachedMedia.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryChat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryChat.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryCountdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryCountdown.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryCta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryCta.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryHashtag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryHashtag.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryLocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryLocation.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryMention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryMention.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryPoll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryPoll.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryPollTallie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryPollTallie.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryQuestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryQuestion.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryQuiz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryQuiz.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryServiceSeenInputItems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryServiceSeenInputItems.md -------------------------------------------------------------------------------- /docs/interfaces/types/StoryServiceSeenInputReels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StoryServiceSeenInputReels.md -------------------------------------------------------------------------------- /docs/interfaces/types/StorySlider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StorySlider.md -------------------------------------------------------------------------------- /docs/interfaces/types/StorySticker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/StorySticker.md -------------------------------------------------------------------------------- /docs/interfaces/types/TimelineFeedsOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/TimelineFeedsOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/UploadPhotoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UploadPhotoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/UploadRetryContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UploadRetryContext.md -------------------------------------------------------------------------------- /docs/interfaces/types/UploadSegmentedVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UploadSegmentedVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/UploadVideoOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UploadVideoOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/UploadVideoSegmentInitOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UploadVideoSegmentInitOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/UploadVideoSegmentTransferOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UploadVideoSegmentTransferOptions.md -------------------------------------------------------------------------------- /docs/interfaces/types/UserLookupOptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/interfaces/types/UserLookupOptions.md -------------------------------------------------------------------------------- /docs/modules/entities.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/entities.md -------------------------------------------------------------------------------- /docs/modules/errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/errors.md -------------------------------------------------------------------------------- /docs/modules/feeds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/feeds.md -------------------------------------------------------------------------------- /docs/modules/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/index.md -------------------------------------------------------------------------------- /docs/modules/repositories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/repositories.md -------------------------------------------------------------------------------- /docs/modules/responses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/responses.md -------------------------------------------------------------------------------- /docs/modules/services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/services.md -------------------------------------------------------------------------------- /docs/modules/sticker_builder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/sticker_builder.md -------------------------------------------------------------------------------- /docs/modules/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/docs/modules/types.md -------------------------------------------------------------------------------- /examples/2fa-sms-login.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/2fa-sms-login.example.ts -------------------------------------------------------------------------------- /examples/account-followers.feed.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/account-followers.feed.example.ts -------------------------------------------------------------------------------- /examples/checkpoint.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/checkpoint.example.ts -------------------------------------------------------------------------------- /examples/dm-thrad.broadast-media.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/dm-thrad.broadast-media.example.ts -------------------------------------------------------------------------------- /examples/live.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/live.example.ts -------------------------------------------------------------------------------- /examples/session.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/session.example.ts -------------------------------------------------------------------------------- /examples/socks5-proxy.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/socks5-proxy.example.ts -------------------------------------------------------------------------------- /examples/unfollow-users.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/unfollow-users.example.ts -------------------------------------------------------------------------------- /examples/upload-photo-from-web.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/upload-photo-from-web.example.ts -------------------------------------------------------------------------------- /examples/upload-photo.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/upload-photo.example.ts -------------------------------------------------------------------------------- /examples/upload-story.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/upload-story.example.ts -------------------------------------------------------------------------------- /examples/upload-video.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/upload-video.example.ts -------------------------------------------------------------------------------- /examples/user-stories-watching.example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/examples/user-stories-watching.example.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/package.json -------------------------------------------------------------------------------- /src/core/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/client.ts -------------------------------------------------------------------------------- /src/core/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/constants.ts -------------------------------------------------------------------------------- /src/core/entity.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/entity.factory.ts -------------------------------------------------------------------------------- /src/core/entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/entity.ts -------------------------------------------------------------------------------- /src/core/feed.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/feed.factory.ts -------------------------------------------------------------------------------- /src/core/feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/feed.ts -------------------------------------------------------------------------------- /src/core/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/repository.ts -------------------------------------------------------------------------------- /src/core/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/request.ts -------------------------------------------------------------------------------- /src/core/state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/core/state.ts -------------------------------------------------------------------------------- /src/decorators/enumerable.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/decorators/enumerable.decorator.ts -------------------------------------------------------------------------------- /src/decorators/index.ts: -------------------------------------------------------------------------------- 1 | export * from './enumerable.decorator'; 2 | -------------------------------------------------------------------------------- /src/entities/direct-thread.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/entities/direct-thread.entity.ts -------------------------------------------------------------------------------- /src/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/entities/index.ts -------------------------------------------------------------------------------- /src/entities/live.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/entities/live.entity.ts -------------------------------------------------------------------------------- /src/entities/media.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/entities/media.entity.ts -------------------------------------------------------------------------------- /src/entities/profile.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/entities/profile.entity.ts -------------------------------------------------------------------------------- /src/errors/ig-action-spam.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-action-spam.error.ts -------------------------------------------------------------------------------- /src/errors/ig-challenge-wrong-code.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-challenge-wrong-code.error.ts -------------------------------------------------------------------------------- /src/errors/ig-checkpoint.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-checkpoint.error.ts -------------------------------------------------------------------------------- /src/errors/ig-client.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-client.error.ts -------------------------------------------------------------------------------- /src/errors/ig-configure-video-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-configure-video-error.ts -------------------------------------------------------------------------------- /src/errors/ig-cookie-not-found.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-cookie-not-found.error.ts -------------------------------------------------------------------------------- /src/errors/ig-exact-user-not-found-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-exact-user-not-found-error.ts -------------------------------------------------------------------------------- /src/errors/ig-inactive-user.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-inactive-user.error.ts -------------------------------------------------------------------------------- /src/errors/ig-login-bad-password.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-login-bad-password.error.ts -------------------------------------------------------------------------------- /src/errors/ig-login-invalid-user.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-login-invalid-user.error.ts -------------------------------------------------------------------------------- /src/errors/ig-login-required.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-login-required.error.ts -------------------------------------------------------------------------------- /src/errors/ig-login-two-factor-required.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-login-two-factor-required.error.ts -------------------------------------------------------------------------------- /src/errors/ig-network.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-network.error.ts -------------------------------------------------------------------------------- /src/errors/ig-no-checkpoint.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-no-checkpoint.error.ts -------------------------------------------------------------------------------- /src/errors/ig-not-found.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-not-found.error.ts -------------------------------------------------------------------------------- /src/errors/ig-parse.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-parse.error.ts -------------------------------------------------------------------------------- /src/errors/ig-private-user.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-private-user.error.ts -------------------------------------------------------------------------------- /src/errors/ig-requests-limit.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-requests-limit.error.ts -------------------------------------------------------------------------------- /src/errors/ig-response.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-response.error.ts -------------------------------------------------------------------------------- /src/errors/ig-sentry-block.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-sentry-block.error.ts -------------------------------------------------------------------------------- /src/errors/ig-signup-block.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-signup-block.error.ts -------------------------------------------------------------------------------- /src/errors/ig-upload-video-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-upload-video-error.ts -------------------------------------------------------------------------------- /src/errors/ig-user-has-logged-out.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-user-has-logged-out.error.ts -------------------------------------------------------------------------------- /src/errors/ig-user-id-not-found.error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/ig-user-id-not-found.error.ts -------------------------------------------------------------------------------- /src/errors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/errors/index.ts -------------------------------------------------------------------------------- /src/feeds/account-followers.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/account-followers.feed.ts -------------------------------------------------------------------------------- /src/feeds/account-following.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/account-following.feed.ts -------------------------------------------------------------------------------- /src/feeds/account-friendships-besties.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/account-friendships-besties.feed.ts -------------------------------------------------------------------------------- /src/feeds/account-friendships.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/account-friendships.feed.ts -------------------------------------------------------------------------------- /src/feeds/blocked-users.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/blocked-users.feed.ts -------------------------------------------------------------------------------- /src/feeds/direct-inbox.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/direct-inbox.feed.ts -------------------------------------------------------------------------------- /src/feeds/direct-pending.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/direct-pending.feed.ts -------------------------------------------------------------------------------- /src/feeds/direct-thread.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/direct-thread.feed.ts -------------------------------------------------------------------------------- /src/feeds/discover.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/discover.feed.ts -------------------------------------------------------------------------------- /src/feeds/igtv.browse.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/igtv.browse.feed.ts -------------------------------------------------------------------------------- /src/feeds/igtv.channel.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/igtv.channel.feed.ts -------------------------------------------------------------------------------- /src/feeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/index.ts -------------------------------------------------------------------------------- /src/feeds/liked.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/liked.feed.ts -------------------------------------------------------------------------------- /src/feeds/list-reel-media-viewer.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/list-reel-media-viewer.feed.ts -------------------------------------------------------------------------------- /src/feeds/location.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/location.feed.ts -------------------------------------------------------------------------------- /src/feeds/media-comments.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/media-comments.feed.ts -------------------------------------------------------------------------------- /src/feeds/media.inline-child-comments.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/media.inline-child-comments.feed.ts -------------------------------------------------------------------------------- /src/feeds/media.sticker-responses.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/media.sticker-responses.feed.ts -------------------------------------------------------------------------------- /src/feeds/music-genre.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/music-genre.feed.ts -------------------------------------------------------------------------------- /src/feeds/music-mood.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/music-mood.feed.ts -------------------------------------------------------------------------------- /src/feeds/music-search.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/music-search.feed.ts -------------------------------------------------------------------------------- /src/feeds/music-trending.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/music-trending.feed.ts -------------------------------------------------------------------------------- /src/feeds/news.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/news.feed.ts -------------------------------------------------------------------------------- /src/feeds/posts-insights.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/posts-insights.feed.ts -------------------------------------------------------------------------------- /src/feeds/reels-media.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/reels-media.feed.ts -------------------------------------------------------------------------------- /src/feeds/reels-tray.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/reels-tray.feed.ts -------------------------------------------------------------------------------- /src/feeds/saved.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/saved.feed.ts -------------------------------------------------------------------------------- /src/feeds/stories-insights.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/stories-insights.feed.ts -------------------------------------------------------------------------------- /src/feeds/tag.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/tag.feed.ts -------------------------------------------------------------------------------- /src/feeds/tags.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/tags.feed.ts -------------------------------------------------------------------------------- /src/feeds/timeline.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/timeline.feed.ts -------------------------------------------------------------------------------- /src/feeds/topical-explore.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/topical-explore.feed.ts -------------------------------------------------------------------------------- /src/feeds/user-story.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/user-story.feed.ts -------------------------------------------------------------------------------- /src/feeds/user.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/user.feed.ts -------------------------------------------------------------------------------- /src/feeds/usertags.feed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/feeds/usertags.feed.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/repositories/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/README.md -------------------------------------------------------------------------------- /src/repositories/account.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/account.repository.ts -------------------------------------------------------------------------------- /src/repositories/address-book.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/address-book.repository.ts -------------------------------------------------------------------------------- /src/repositories/ads.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/ads.repository.ts -------------------------------------------------------------------------------- /src/repositories/attribution.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/attribution.repository.ts -------------------------------------------------------------------------------- /src/repositories/challenge.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/challenge.repository.ts -------------------------------------------------------------------------------- /src/repositories/consent.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/consent.repository.ts -------------------------------------------------------------------------------- /src/repositories/creatives.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/creatives.repository.ts -------------------------------------------------------------------------------- /src/repositories/direct-thread.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/direct-thread.repository.ts -------------------------------------------------------------------------------- /src/repositories/direct.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/direct.repository.ts -------------------------------------------------------------------------------- /src/repositories/discover.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/discover.repository.ts -------------------------------------------------------------------------------- /src/repositories/fbsearch.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/fbsearch.repository.ts -------------------------------------------------------------------------------- /src/repositories/friendship.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/friendship.repository.ts -------------------------------------------------------------------------------- /src/repositories/highlights.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/highlights.repository.ts -------------------------------------------------------------------------------- /src/repositories/igtv.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/igtv.repository.ts -------------------------------------------------------------------------------- /src/repositories/launcher.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/launcher.repository.ts -------------------------------------------------------------------------------- /src/repositories/linked-account.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/linked-account.repository.ts -------------------------------------------------------------------------------- /src/repositories/live.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/live.repository.ts -------------------------------------------------------------------------------- /src/repositories/location-search.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/location-search.repository.ts -------------------------------------------------------------------------------- /src/repositories/location.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/location.repository.ts -------------------------------------------------------------------------------- /src/repositories/loom.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/loom.repository.ts -------------------------------------------------------------------------------- /src/repositories/media.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/media.repository.ts -------------------------------------------------------------------------------- /src/repositories/music.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/music.repository.ts -------------------------------------------------------------------------------- /src/repositories/news.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/news.repository.ts -------------------------------------------------------------------------------- /src/repositories/qe.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/qe.repository.ts -------------------------------------------------------------------------------- /src/repositories/qp.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/qp.repository.ts -------------------------------------------------------------------------------- /src/repositories/restrict-action.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/restrict-action.repository.ts -------------------------------------------------------------------------------- /src/repositories/status.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/status.repository.ts -------------------------------------------------------------------------------- /src/repositories/tag.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/tag.repository.ts -------------------------------------------------------------------------------- /src/repositories/upload.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/upload.repository.ts -------------------------------------------------------------------------------- /src/repositories/user.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/user.repository.ts -------------------------------------------------------------------------------- /src/repositories/zr.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/repositories/zr.repository.ts -------------------------------------------------------------------------------- /src/responses/account-followers.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account-followers.feed.response.ts -------------------------------------------------------------------------------- /src/responses/account-following.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account-following.feed.response.ts -------------------------------------------------------------------------------- /src/responses/account-friendships-besties.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account-friendships-besties.feed.response.ts -------------------------------------------------------------------------------- /src/responses/account-friendships.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account-friendships.feed.response.ts -------------------------------------------------------------------------------- /src/responses/account.repository.current-user.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account.repository.current-user.response.ts -------------------------------------------------------------------------------- /src/responses/account.repository.login.error.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account.repository.login.error.response.ts -------------------------------------------------------------------------------- /src/responses/account.repository.login.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/account.repository.login.response.ts -------------------------------------------------------------------------------- /src/responses/address-book.repository.link.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/address-book.repository.link.response.ts -------------------------------------------------------------------------------- /src/responses/blocked-users.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/blocked-users.feed.response.ts -------------------------------------------------------------------------------- /src/responses/challenge.state.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/challenge.state.response.ts -------------------------------------------------------------------------------- /src/responses/checkpoint.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/checkpoint.response.ts -------------------------------------------------------------------------------- /src/responses/direct-inbox.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/direct-inbox.feed.response.ts -------------------------------------------------------------------------------- /src/responses/direct-thread.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/direct-thread.feed.response.ts -------------------------------------------------------------------------------- /src/responses/direct-thread.repository.add-user.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/direct-thread.repository.add-user.response.ts -------------------------------------------------------------------------------- /src/responses/direct-thread.repository.broadcast.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/direct-thread.repository.broadcast.response.ts -------------------------------------------------------------------------------- /src/responses/direct.repository.get-presence.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/direct.repository.get-presence.response.ts -------------------------------------------------------------------------------- /src/responses/direct.repository.ranked-recipients.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/direct.repository.ranked-recipients.response.ts -------------------------------------------------------------------------------- /src/responses/discover.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/discover.feed.response.ts -------------------------------------------------------------------------------- /src/responses/discover.repository.chaining.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/discover.repository.chaining.response.ts -------------------------------------------------------------------------------- /src/responses/fbsearch.repository.places.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/fbsearch.repository.places.response.ts -------------------------------------------------------------------------------- /src/responses/fbsearch.repository.topsearch-flat.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/fbsearch.repository.topsearch-flat.response.ts -------------------------------------------------------------------------------- /src/responses/friendship.repository.besties.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/friendship.repository.besties.response.ts -------------------------------------------------------------------------------- /src/responses/friendship.repository.change.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/friendship.repository.change.response.ts -------------------------------------------------------------------------------- /src/responses/friendship.repository.show.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/friendship.repository.show.response.ts -------------------------------------------------------------------------------- /src/responses/highlights.repository.create-reel.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/highlights.repository.create-reel.response.ts -------------------------------------------------------------------------------- /src/responses/highlights.repository.edit-reel.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/highlights.repository.edit-reel.response.ts -------------------------------------------------------------------------------- /src/responses/igtv.browse.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/igtv.browse.feed.response.ts -------------------------------------------------------------------------------- /src/responses/igtv.channel.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/igtv.channel.feed.response.ts -------------------------------------------------------------------------------- /src/responses/igtv.search.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/igtv.search.response.ts -------------------------------------------------------------------------------- /src/responses/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/index.ts -------------------------------------------------------------------------------- /src/responses/insights.service.account.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/insights.service.account.response.ts -------------------------------------------------------------------------------- /src/responses/insights.service.post.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/insights.service.post.response.ts -------------------------------------------------------------------------------- /src/responses/insights.service.story.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/insights.service.story.response.ts -------------------------------------------------------------------------------- /src/responses/liked.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/liked.feed.response.ts -------------------------------------------------------------------------------- /src/responses/list-reel-media-viewer.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/list-reel-media-viewer.feed.response.ts -------------------------------------------------------------------------------- /src/responses/live.add-post-live-to-igtv.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.add-post-live-to-igtv.response.ts -------------------------------------------------------------------------------- /src/responses/live.add-to-post.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.add-to-post.response.ts -------------------------------------------------------------------------------- /src/responses/live.comments.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.comments.response.ts -------------------------------------------------------------------------------- /src/responses/live.create-broadcast.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.create-broadcast.response.ts -------------------------------------------------------------------------------- /src/responses/live.final-viewers.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.final-viewers.response.ts -------------------------------------------------------------------------------- /src/responses/live.get-questions.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.get-questions.response.ts -------------------------------------------------------------------------------- /src/responses/live.heartbeat-viewer-count.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.heartbeat-viewer-count.response.ts -------------------------------------------------------------------------------- /src/responses/live.info.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.info.response.ts -------------------------------------------------------------------------------- /src/responses/live.join-request-counts.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.join-request-counts.response.ts -------------------------------------------------------------------------------- /src/responses/live.like-count.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.like-count.response.ts -------------------------------------------------------------------------------- /src/responses/live.like.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.like.response.ts -------------------------------------------------------------------------------- /src/responses/live.post-live-thumbnails.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.post-live-thumbnails.response.ts -------------------------------------------------------------------------------- /src/responses/live.start-broadcast.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.start-broadcast.response.ts -------------------------------------------------------------------------------- /src/responses/live.switch-comments.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.switch-comments.response.ts -------------------------------------------------------------------------------- /src/responses/live.viewer-list.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/live.viewer-list.response.ts -------------------------------------------------------------------------------- /src/responses/location.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/location.feed.response.ts -------------------------------------------------------------------------------- /src/responses/location.repository.info.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/location.repository.info.response.ts -------------------------------------------------------------------------------- /src/responses/location.repository.search.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/location.repository.search.response.ts -------------------------------------------------------------------------------- /src/responses/location.repository.story.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/location.repository.story.response.ts -------------------------------------------------------------------------------- /src/responses/login-required.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/login-required.response.ts -------------------------------------------------------------------------------- /src/responses/media-comments.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media-comments.feed.response.ts -------------------------------------------------------------------------------- /src/responses/media.entity.oembed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.entity.oembed.response.ts -------------------------------------------------------------------------------- /src/responses/media.inline-child-comments.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.inline-child-comments.feed.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.blocked.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.blocked.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.comment.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.comment.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.configure-sidecar.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.configure-sidecar.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.configure-video.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.configure-video.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.configure.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.configure.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.info.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.info.response.ts -------------------------------------------------------------------------------- /src/responses/media.repository.likers.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.repository.likers.response.ts -------------------------------------------------------------------------------- /src/responses/media.updated-media.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/media.updated-media.response.ts -------------------------------------------------------------------------------- /src/responses/music-genre.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music-genre.feed.response.ts -------------------------------------------------------------------------------- /src/responses/music-mood.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music-mood.feed.response.ts -------------------------------------------------------------------------------- /src/responses/music-search.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music-search.feed.response.ts -------------------------------------------------------------------------------- /src/responses/music-trending.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music-trending.feed.response.ts -------------------------------------------------------------------------------- /src/responses/music.repository.genres.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music.repository.genres.response.ts -------------------------------------------------------------------------------- /src/responses/music.repository.lyrics.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music.repository.lyrics.response.ts -------------------------------------------------------------------------------- /src/responses/music.repository.moods.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/music.repository.moods.response.ts -------------------------------------------------------------------------------- /src/responses/news.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/news.feed.response.ts -------------------------------------------------------------------------------- /src/responses/news.repository.inbox.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/news.repository.inbox.response.ts -------------------------------------------------------------------------------- /src/responses/posts-insights.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/posts-insights.feed.response.ts -------------------------------------------------------------------------------- /src/responses/reels-media.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/reels-media.feed.response.ts -------------------------------------------------------------------------------- /src/responses/reels-tray.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/reels-tray.feed.response.ts -------------------------------------------------------------------------------- /src/responses/restrict-action.repository.restrict.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/restrict-action.repository.restrict.response.ts -------------------------------------------------------------------------------- /src/responses/saved.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/saved.feed.response.ts -------------------------------------------------------------------------------- /src/responses/spam.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/spam.response.ts -------------------------------------------------------------------------------- /src/responses/status.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/status.response.ts -------------------------------------------------------------------------------- /src/responses/stories-insights.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/stories-insights.feed.response.ts -------------------------------------------------------------------------------- /src/responses/story-poll-voters.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/story-poll-voters.feed.response.ts -------------------------------------------------------------------------------- /src/responses/story-question-responses.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/story-question-responses.feed.response.ts -------------------------------------------------------------------------------- /src/responses/story-quiz-participants.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/story-quiz-participants.feed.response.ts -------------------------------------------------------------------------------- /src/responses/story-slider-voters.feed.response.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/story-slider-voters.feed.response.response.ts -------------------------------------------------------------------------------- /src/responses/tag.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/tag.feed.response.ts -------------------------------------------------------------------------------- /src/responses/tag.repository.search.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/tag.repository.search.response.ts -------------------------------------------------------------------------------- /src/responses/tag.repository.section.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/tag.repository.section.response.ts -------------------------------------------------------------------------------- /src/responses/tags.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/tags.feed.response.ts -------------------------------------------------------------------------------- /src/responses/timeline.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/timeline.feed.response.ts -------------------------------------------------------------------------------- /src/responses/topical-explore.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/topical-explore.feed.response.ts -------------------------------------------------------------------------------- /src/responses/upload.repository.photo.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/upload.repository.photo.response.ts -------------------------------------------------------------------------------- /src/responses/upload.repository.video.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/upload.repository.video.response.ts -------------------------------------------------------------------------------- /src/responses/user-story.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/user-story.feed.response.ts -------------------------------------------------------------------------------- /src/responses/user.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/user.feed.response.ts -------------------------------------------------------------------------------- /src/responses/user.repository.info.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/user.repository.info.response.ts -------------------------------------------------------------------------------- /src/responses/user.repository.search.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/user.repository.search.response.ts -------------------------------------------------------------------------------- /src/responses/usertags.feed.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/responses/usertags.feed.response.ts -------------------------------------------------------------------------------- /src/samples/builds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/samples/builds.json -------------------------------------------------------------------------------- /src/samples/devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/samples/devices.json -------------------------------------------------------------------------------- /src/samples/supported-capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/samples/supported-capabilities.json -------------------------------------------------------------------------------- /src/services/insights.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/services/insights.service.ts -------------------------------------------------------------------------------- /src/services/publish.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/services/publish.service.ts -------------------------------------------------------------------------------- /src/services/search.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/services/search.service.ts -------------------------------------------------------------------------------- /src/services/simulate.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/services/simulate.service.ts -------------------------------------------------------------------------------- /src/services/story.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/services/story.service.ts -------------------------------------------------------------------------------- /src/sticker-builder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/index.ts -------------------------------------------------------------------------------- /src/sticker-builder/sticker-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/sticker-builder.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/attachment.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/attachment.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/chat.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/chat.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/countdown.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/countdown.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/hashtag.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/hashtag.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/index.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/insta-sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/insta-sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/location.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/location.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/mention.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/mention.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/poll.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/poll.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/question.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/question.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/quiz.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/quiz.sticker.ts -------------------------------------------------------------------------------- /src/sticker-builder/stickers/slider.sticker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/sticker-builder/stickers/slider.sticker.ts -------------------------------------------------------------------------------- /src/types/account.edit-profile.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/account.edit-profile.options.ts -------------------------------------------------------------------------------- /src/types/account.two-factor-login.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/account.two-factor-login.options.ts -------------------------------------------------------------------------------- /src/types/common.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/common.types.ts -------------------------------------------------------------------------------- /src/types/create-highlights-reel.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/create-highlights-reel.options.ts -------------------------------------------------------------------------------- /src/types/direct-thread.broadcast-media.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/direct-thread.broadcast-media.options.ts -------------------------------------------------------------------------------- /src/types/direct-thread.broadcast-reel.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/direct-thread.broadcast-reel.options.ts -------------------------------------------------------------------------------- /src/types/direct-thread.broadcast.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/direct-thread.broadcast.options.ts -------------------------------------------------------------------------------- /src/types/edit-highlights-reel.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/edit-highlights-reel.options.ts -------------------------------------------------------------------------------- /src/types/graphql-request.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/graphql-request.options.ts -------------------------------------------------------------------------------- /src/types/igtv.write-seen-state.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/igtv.write-seen-state.options.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/insights.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/insights.options.ts -------------------------------------------------------------------------------- /src/types/live.obs-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/live.obs-settings.ts -------------------------------------------------------------------------------- /src/types/media.configure-sidecar.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/media.configure-sidecar.options.ts -------------------------------------------------------------------------------- /src/types/media.configure-story.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/media.configure-story.options.ts -------------------------------------------------------------------------------- /src/types/media.configure-to-igtv.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/media.configure-to-igtv.options.ts -------------------------------------------------------------------------------- /src/types/media.configure-video.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/media.configure-video.options.ts -------------------------------------------------------------------------------- /src/types/media.configure.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/media.configure.options.ts -------------------------------------------------------------------------------- /src/types/media.like.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/media.like.options.ts -------------------------------------------------------------------------------- /src/types/posting.album.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/posting.album.options.ts -------------------------------------------------------------------------------- /src/types/posting.igtv.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/posting.igtv.options.ts -------------------------------------------------------------------------------- /src/types/posting.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/posting.options.ts -------------------------------------------------------------------------------- /src/types/posting.photo.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/posting.photo.options.ts -------------------------------------------------------------------------------- /src/types/posting.video.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/posting.video.options.ts -------------------------------------------------------------------------------- /src/types/set-besties.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/set-besties.input.ts -------------------------------------------------------------------------------- /src/types/stories.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/stories.types.ts -------------------------------------------------------------------------------- /src/types/story-response.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/story-response.options.ts -------------------------------------------------------------------------------- /src/types/timeline-feed.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/timeline-feed.types.ts -------------------------------------------------------------------------------- /src/types/upload.photo.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/upload.photo.options.ts -------------------------------------------------------------------------------- /src/types/upload.video.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/upload.video.options.ts -------------------------------------------------------------------------------- /src/types/user.lookup.options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/src/types/user.lookup.options.ts -------------------------------------------------------------------------------- /tools/doc-entries/entities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/entities.ts -------------------------------------------------------------------------------- /tools/doc-entries/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/errors.ts -------------------------------------------------------------------------------- /tools/doc-entries/feeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/feeds.ts -------------------------------------------------------------------------------- /tools/doc-entries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/index.ts -------------------------------------------------------------------------------- /tools/doc-entries/repositories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/repositories.ts -------------------------------------------------------------------------------- /tools/doc-entries/responses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/responses.ts -------------------------------------------------------------------------------- /tools/doc-entries/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/services.ts -------------------------------------------------------------------------------- /tools/doc-entries/sticker-builder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/sticker-builder.ts -------------------------------------------------------------------------------- /tools/doc-entries/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/doc-entries/types.ts -------------------------------------------------------------------------------- /tools/images/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/images/original.jpg -------------------------------------------------------------------------------- /tools/images/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/images/test.png -------------------------------------------------------------------------------- /tools/response-to-interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tools/response-to-interface.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.docs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tsconfig.docs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/tslint.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/typedoc.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nerixyz/instagram-private-api/HEAD/yarn.lock --------------------------------------------------------------------------------