├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── actors.r ├── atrrr-package.R ├── auth.r ├── auto_app_bsky_actor.R ├── auto_app_bsky_feed.R ├── auto_app_bsky_graph.R ├── auto_app_bsky_labeler.R ├── auto_app_bsky_notification.R ├── auto_app_bsky_unspecced.R ├── auto_app_bsky_video.R ├── auto_chat_bsky_actor.R ├── auto_chat_bsky_convo.R ├── auto_chat_bsky_moderation.R ├── auto_com_atproto_admin.R ├── auto_com_atproto_identity.R ├── auto_com_atproto_label.R ├── auto_com_atproto_moderation.R ├── auto_com_atproto_repo.R ├── auto_com_atproto_server.R ├── auto_com_atproto_sync.R ├── auto_com_atproto_temp.R ├── auto_tools_ozone_communication.R ├── auto_tools_ozone_hosting.R ├── auto_tools_ozone_moderation.R ├── auto_tools_ozone_safelink.R ├── auto_tools_ozone_server.R ├── auto_tools_ozone_set.R ├── auto_tools_ozone_setting.R ├── auto_tools_ozone_signature.R ├── auto_tools_ozone_team.R ├── auto_tools_ozone_verification.R ├── chat.R ├── convert.r ├── data.R ├── feed.r ├── firehose.R ├── gen.r ├── graph.r ├── lexicons.R ├── lists.r ├── parse.r ├── skeet_shot.r ├── sysdata.rda └── utils.r ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── atrrr.Rproj ├── codecov.yml ├── cran-comments.md ├── data-raw ├── list_lexicons.R └── regexs.R ├── data └── list_lexicons.rda ├── inst ├── function.template └── lexicons │ ├── app │ └── bsky │ │ ├── actor │ │ ├── defs.json │ │ ├── getPreferences.json │ │ ├── getProfile.json │ │ ├── getProfiles.json │ │ ├── getSuggestions.json │ │ ├── profile.json │ │ ├── putPreferences.json │ │ ├── searchActors.json │ │ ├── searchActorsTypeahead.json │ │ └── status.json │ │ ├── embed │ │ ├── defs.json │ │ ├── external.json │ │ ├── images.json │ │ ├── record.json │ │ ├── recordWithMedia.json │ │ └── video.json │ │ ├── feed │ │ ├── defs.json │ │ ├── describeFeedGenerator.json │ │ ├── generator.json │ │ ├── getActorFeeds.json │ │ ├── getActorLikes.json │ │ ├── getAuthorFeed.json │ │ ├── getFeed.json │ │ ├── getFeedGenerator.json │ │ ├── getFeedGenerators.json │ │ ├── getFeedSkeleton.json │ │ ├── getLikes.json │ │ ├── getListFeed.json │ │ ├── getPostThread.json │ │ ├── getPosts.json │ │ ├── getQuotes.json │ │ ├── getRepostedBy.json │ │ ├── getSuggestedFeeds.json │ │ ├── getTimeline.json │ │ ├── like.json │ │ ├── post.json │ │ ├── postgate.json │ │ ├── repost.json │ │ ├── searchPosts.json │ │ ├── sendInteractions.json │ │ └── threadgate.json │ │ ├── graph │ │ ├── block.json │ │ ├── defs.json │ │ ├── follow.json │ │ ├── getActorStarterPacks.json │ │ ├── getBlocks.json │ │ ├── getFollowers.json │ │ ├── getFollows.json │ │ ├── getKnownFollowers.json │ │ ├── getList.json │ │ ├── getListBlocks.json │ │ ├── getListMutes.json │ │ ├── getLists.json │ │ ├── getMutes.json │ │ ├── getRelationships.json │ │ ├── getStarterPack.json │ │ ├── getStarterPacks.json │ │ ├── getSuggestedFollowsByActor.json │ │ ├── list.json │ │ ├── listblock.json │ │ ├── listitem.json │ │ ├── muteActor.json │ │ ├── muteActorList.json │ │ ├── muteThread.json │ │ ├── searchStarterPacks.json │ │ ├── starterpack.json │ │ ├── unmuteActor.json │ │ ├── unmuteActorList.json │ │ ├── unmuteThread.json │ │ └── verification.json │ │ ├── labeler │ │ ├── defs.json │ │ ├── getServices.json │ │ └── service.json │ │ ├── notification │ │ ├── declaration.json │ │ ├── defs.json │ │ ├── getPreferences.json │ │ ├── getUnreadCount.json │ │ ├── listActivitySubscriptions.json │ │ ├── listNotifications.json │ │ ├── putActivitySubscription.json │ │ ├── putPreferences.json │ │ ├── putPreferencesV2.json │ │ ├── registerPush.json │ │ └── updateSeen.json │ │ ├── richtext │ │ └── facet.json │ │ ├── unspecced │ │ ├── defs.json │ │ ├── getConfig.json │ │ ├── getPopularFeedGenerators.json │ │ ├── getPostThreadOtherV2.json │ │ ├── getPostThreadV2.json │ │ ├── getSuggestedFeeds.json │ │ ├── getSuggestedFeedsSkeleton.json │ │ ├── getSuggestedStarterPacks.json │ │ ├── getSuggestedStarterPacksSkeleton.json │ │ ├── getSuggestedUsers.json │ │ ├── getSuggestedUsersSkeleton.json │ │ ├── getSuggestionsSkeleton.json │ │ ├── getTaggedSuggestions.json │ │ ├── getTrendingTopics.json │ │ ├── getTrends.json │ │ ├── getTrendsSkeleton.json │ │ ├── searchActorsSkeleton.json │ │ ├── searchPostsSkeleton.json │ │ └── searchStarterPacksSkeleton.json │ │ └── video │ │ ├── defs.json │ │ ├── getJobStatus.json │ │ ├── getUploadLimits.json │ │ └── uploadVideo.json │ ├── chat │ └── bsky │ │ ├── actor │ │ ├── declaration.json │ │ ├── defs.json │ │ ├── deleteAccount.json │ │ └── exportAccountData.json │ │ ├── convo │ │ ├── acceptConvo.json │ │ ├── addReaction.json │ │ ├── defs.json │ │ ├── deleteMessageForSelf.json │ │ ├── getConvo.json │ │ ├── getConvoAvailability.json │ │ ├── getConvoForMembers.json │ │ ├── getLog.json │ │ ├── getMessages.json │ │ ├── leaveConvo.json │ │ ├── listConvos.json │ │ ├── muteConvo.json │ │ ├── removeReaction.json │ │ ├── sendMessage.json │ │ ├── sendMessageBatch.json │ │ ├── unmuteConvo.json │ │ ├── updateAllRead.json │ │ └── updateRead.json │ │ └── moderation │ │ ├── getActorMetadata.json │ │ ├── getMessageContext.json │ │ └── updateActorAccess.json │ ├── com │ └── atproto │ │ ├── admin │ │ ├── defs.json │ │ ├── deleteAccount.json │ │ ├── disableAccountInvites.json │ │ ├── disableInviteCodes.json │ │ ├── enableAccountInvites.json │ │ ├── getAccountInfo.json │ │ ├── getAccountInfos.json │ │ ├── getInviteCodes.json │ │ ├── getSubjectStatus.json │ │ ├── searchAccounts.json │ │ ├── sendEmail.json │ │ ├── updateAccountEmail.json │ │ ├── updateAccountHandle.json │ │ ├── updateAccountPassword.json │ │ ├── updateAccountSigningKey.json │ │ └── updateSubjectStatus.json │ │ ├── identity │ │ ├── defs.json │ │ ├── getRecommendedDidCredentials.json │ │ ├── refreshIdentity.json │ │ ├── requestPlcOperationSignature.json │ │ ├── resolveDid.json │ │ ├── resolveHandle.json │ │ ├── resolveIdentity.json │ │ ├── signPlcOperation.json │ │ ├── submitPlcOperation.json │ │ └── updateHandle.json │ │ ├── label │ │ ├── defs.json │ │ ├── queryLabels.json │ │ └── subscribeLabels.json │ │ ├── lexicon │ │ └── schema.json │ │ ├── moderation │ │ ├── createReport.json │ │ └── defs.json │ │ ├── repo │ │ ├── applyWrites.json │ │ ├── createRecord.json │ │ ├── defs.json │ │ ├── deleteRecord.json │ │ ├── describeRepo.json │ │ ├── getRecord.json │ │ ├── importRepo.json │ │ ├── listMissingBlobs.json │ │ ├── listRecords.json │ │ ├── putRecord.json │ │ ├── strongRef.json │ │ └── uploadBlob.json │ │ ├── server │ │ ├── activateAccount.json │ │ ├── checkAccountStatus.json │ │ ├── confirmEmail.json │ │ ├── createAccount.json │ │ ├── createAppPassword.json │ │ ├── createInviteCode.json │ │ ├── createInviteCodes.json │ │ ├── createSession.json │ │ ├── deactivateAccount.json │ │ ├── defs.json │ │ ├── deleteAccount.json │ │ ├── deleteSession.json │ │ ├── describeServer.json │ │ ├── getAccountInviteCodes.json │ │ ├── getServiceAuth.json │ │ ├── getSession.json │ │ ├── listAppPasswords.json │ │ ├── refreshSession.json │ │ ├── requestAccountDelete.json │ │ ├── requestEmailConfirmation.json │ │ ├── requestEmailUpdate.json │ │ ├── requestPasswordReset.json │ │ ├── reserveSigningKey.json │ │ ├── resetPassword.json │ │ ├── revokeAppPassword.json │ │ └── updateEmail.json │ │ ├── sync │ │ ├── defs.json │ │ ├── getBlob.json │ │ ├── getBlocks.json │ │ ├── getCheckout.json │ │ ├── getHead.json │ │ ├── getHostStatus.json │ │ ├── getLatestCommit.json │ │ ├── getRecord.json │ │ ├── getRepo.json │ │ ├── getRepoStatus.json │ │ ├── listBlobs.json │ │ ├── listHosts.json │ │ ├── listRepos.json │ │ ├── listReposByCollection.json │ │ ├── notifyOfUpdate.json │ │ ├── requestCrawl.json │ │ └── subscribeRepos.json │ │ └── temp │ │ ├── addReservedHandle.json │ │ ├── checkSignupQueue.json │ │ ├── fetchLabels.json │ │ └── requestPhoneVerification.json │ └── tools │ └── ozone │ ├── communication │ ├── createTemplate.json │ ├── defs.json │ ├── deleteTemplate.json │ ├── listTemplates.json │ └── updateTemplate.json │ ├── hosting │ └── getAccountHistory.json │ ├── moderation │ ├── defs.json │ ├── emitEvent.json │ ├── getEvent.json │ ├── getRecord.json │ ├── getRecords.json │ ├── getRepo.json │ ├── getReporterStats.json │ ├── getRepos.json │ ├── getSubjects.json │ ├── queryEvents.json │ ├── queryStatuses.json │ └── searchRepos.json │ ├── safelink │ ├── addRule.json │ ├── defs.json │ ├── queryEvents.json │ ├── queryRules.json │ ├── removeRule.json │ └── updateRule.json │ ├── server │ └── getConfig.json │ ├── set │ ├── addValues.json │ ├── defs.json │ ├── deleteSet.json │ ├── deleteValues.json │ ├── getValues.json │ ├── querySets.json │ └── upsertSet.json │ ├── setting │ ├── defs.json │ ├── listOptions.json │ ├── removeOptions.json │ └── upsertOption.json │ ├── signature │ ├── defs.json │ ├── findCorrelation.json │ ├── findRelatedAccounts.json │ └── searchAccounts.json │ ├── team │ ├── addMember.json │ ├── defs.json │ ├── deleteMember.json │ ├── listMembers.json │ └── updateMember.json │ └── verification │ ├── defs.json │ ├── grantVerifications.json │ ├── listVerifications.json │ └── revokeVerifications.json ├── lab.Rmd ├── man ├── atrrr-package.Rd ├── auth.Rd ├── convert_http_to_at.Rd ├── figures │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-stable.svg │ ├── lifecycle-superseded.svg │ └── logo.png ├── follow.Rd ├── get_actor_likes.Rd ├── get_feed.Rd ├── get_feed_likes.Rd ├── get_feeds_created_by.Rd ├── get_followers.Rd ├── get_likes.Rd ├── get_list.Rd ├── get_own_timeline.Rd ├── get_replies.Rd ├── get_skeets_authored_by.Rd ├── get_starter_pack.Rd ├── get_thread.Rd ├── get_user_info.Rd ├── like_skeet.Rd ├── list_chats.Rd ├── list_lexicons.Rd ├── post.Rd ├── post_thread.Rd ├── print.bsky_token.Rd ├── search_feed.Rd ├── search_post.Rd ├── search_user.Rd ├── skeet_shot.Rd └── stream_firehose.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── testthat.R └── testthat │ ├── recorded_responses │ ├── app.bsky.actor.getProfile_cf402.rds │ ├── app.bsky.actor.getProfile_f0833.rds │ ├── app.bsky.actor.getProfile_f20b3.rds │ ├── app.bsky.actor.getProfiles_01031.rds │ ├── app.bsky.actor.getProfiles_0f35e.rds │ ├── app.bsky.actor.getProfiles_3ed2a.rds │ ├── app.bsky.actor.searchActors_275e3.rds │ ├── app.bsky.actor.searchActors_5a4e3.rds │ ├── app.bsky.actor.searchActors_87617.rds │ ├── app.bsky.feed.getActorFeeds_925c2.rds │ ├── app.bsky.feed.getAuthorFeed_925c2.rds │ ├── app.bsky.feed.getFeed_0bf27.rds │ ├── app.bsky.feed.getLikes_26bda.rds │ ├── app.bsky.feed.getLikes_95deb.rds │ ├── app.bsky.feed.getListFeed_6a31b.rds │ ├── app.bsky.feed.getListFeed_dc533.rds │ ├── app.bsky.feed.getPostThread_72827.rds │ ├── app.bsky.feed.getPostThread_aa665.rds │ ├── app.bsky.feed.getRepostedBy_95deb.rds │ ├── app.bsky.feed.getTimeline_6340d.rds │ ├── app.bsky.feed.getTimeline_730cb.rds │ ├── app.bsky.feed.searchPosts_0e3ec.rds │ ├── app.bsky.feed.searchPosts_b1263.rds │ ├── app.bsky.feed.searchPosts_bb16d.rds │ ├── app.bsky.graph.getList_dc533.rds │ ├── app.bsky.graph.getStarterPack_90b35.rds │ ├── app.bsky.unspecced.getPopularFeedGenerators_8e00b.rds │ ├── com.atproto.identity.resolveHandle_50198.rds │ ├── com.atproto.identity.resolveHandle_c4567.rds │ └── com.atproto.identity.resolveHandle_c81f8.rds │ ├── setup-mock.R │ ├── test-actors.R │ ├── test-convert.R │ ├── test-feed.R │ ├── test-lists.R │ └── test-utils.R ├── update.r ├── update_lexicon-functions.qmd └── vignettes ├── .gitignore ├── Basic_Usage.Rmd ├── Basic_Usage.Rmd.orig ├── Feed_Analysis.Rmd ├── Feed_Analysis.Rmd.orig ├── Interactions.Rmd ├── Interactions.Rmd.orig ├── Networks.Rmd ├── Networks.Rmd.orig ├── README.md └── figures ├── app_password.png ├── password_popup.png ├── thread.png ├── unnamed-chunk-16-1.png ├── unnamed-chunk-3-1.png ├── unnamed-chunk-4-1.png └── unnamed-chunk-6-1.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: atrrr authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/actors.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/actors.r -------------------------------------------------------------------------------- /R/atrrr-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/atrrr-package.R -------------------------------------------------------------------------------- /R/auth.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auth.r -------------------------------------------------------------------------------- /R/auto_app_bsky_actor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_actor.R -------------------------------------------------------------------------------- /R/auto_app_bsky_feed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_feed.R -------------------------------------------------------------------------------- /R/auto_app_bsky_graph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_graph.R -------------------------------------------------------------------------------- /R/auto_app_bsky_labeler.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_labeler.R -------------------------------------------------------------------------------- /R/auto_app_bsky_notification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_notification.R -------------------------------------------------------------------------------- /R/auto_app_bsky_unspecced.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_unspecced.R -------------------------------------------------------------------------------- /R/auto_app_bsky_video.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_app_bsky_video.R -------------------------------------------------------------------------------- /R/auto_chat_bsky_actor.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_chat_bsky_actor.R -------------------------------------------------------------------------------- /R/auto_chat_bsky_convo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_chat_bsky_convo.R -------------------------------------------------------------------------------- /R/auto_chat_bsky_moderation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_chat_bsky_moderation.R -------------------------------------------------------------------------------- /R/auto_com_atproto_admin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_admin.R -------------------------------------------------------------------------------- /R/auto_com_atproto_identity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_identity.R -------------------------------------------------------------------------------- /R/auto_com_atproto_label.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_label.R -------------------------------------------------------------------------------- /R/auto_com_atproto_moderation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_moderation.R -------------------------------------------------------------------------------- /R/auto_com_atproto_repo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_repo.R -------------------------------------------------------------------------------- /R/auto_com_atproto_server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_server.R -------------------------------------------------------------------------------- /R/auto_com_atproto_sync.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_sync.R -------------------------------------------------------------------------------- /R/auto_com_atproto_temp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_com_atproto_temp.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_communication.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_communication.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_hosting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_hosting.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_moderation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_moderation.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_safelink.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_safelink.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_server.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_server.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_set.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_set.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_setting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_setting.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_signature.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_signature.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_team.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_team.R -------------------------------------------------------------------------------- /R/auto_tools_ozone_verification.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/auto_tools_ozone_verification.R -------------------------------------------------------------------------------- /R/chat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/chat.R -------------------------------------------------------------------------------- /R/convert.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/convert.r -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/data.R -------------------------------------------------------------------------------- /R/feed.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/feed.r -------------------------------------------------------------------------------- /R/firehose.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/firehose.R -------------------------------------------------------------------------------- /R/gen.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/gen.r -------------------------------------------------------------------------------- /R/graph.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/graph.r -------------------------------------------------------------------------------- /R/lexicons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/lexicons.R -------------------------------------------------------------------------------- /R/lists.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/lists.r -------------------------------------------------------------------------------- /R/parse.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/parse.r -------------------------------------------------------------------------------- /R/skeet_shot.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/skeet_shot.r -------------------------------------------------------------------------------- /R/sysdata.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/sysdata.rda -------------------------------------------------------------------------------- /R/utils.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/R/utils.r -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /atrrr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/atrrr.Rproj -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data-raw/list_lexicons.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/data-raw/list_lexicons.R -------------------------------------------------------------------------------- /data-raw/regexs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/data-raw/regexs.R -------------------------------------------------------------------------------- /data/list_lexicons.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/data/list_lexicons.rda -------------------------------------------------------------------------------- /inst/function.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/function.template -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/getPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/getPreferences.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/getProfile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/getProfile.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/getProfiles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/getProfiles.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/getSuggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/getSuggestions.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/profile.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/putPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/putPreferences.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/searchActors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/searchActors.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/searchActorsTypeahead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/searchActorsTypeahead.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/actor/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/actor/status.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/embed/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/embed/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/embed/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/embed/external.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/embed/images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/embed/images.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/embed/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/embed/record.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/embed/recordWithMedia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/embed/recordWithMedia.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/embed/video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/embed/video.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/describeFeedGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/describeFeedGenerator.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/generator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/generator.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getActorFeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getActorFeeds.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getActorLikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getActorLikes.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getAuthorFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getAuthorFeed.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getFeed.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getFeedGenerator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getFeedGenerator.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getFeedGenerators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getFeedGenerators.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getFeedSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getFeedSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getLikes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getLikes.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getListFeed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getListFeed.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getPostThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getPostThread.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getPosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getPosts.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getQuotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getQuotes.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getRepostedBy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getRepostedBy.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getSuggestedFeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getSuggestedFeeds.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/getTimeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/getTimeline.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/like.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/post.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/postgate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/postgate.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/repost.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/repost.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/searchPosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/searchPosts.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/sendInteractions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/sendInteractions.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/feed/threadgate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/feed/threadgate.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/block.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/block.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/follow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/follow.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getActorStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getActorStarterPacks.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getBlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getBlocks.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getFollowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getFollowers.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getFollows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getFollows.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getKnownFollowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getKnownFollowers.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getList.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getListBlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getListBlocks.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getListMutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getListMutes.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getLists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getLists.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getMutes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getMutes.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getRelationships.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getRelationships.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getStarterPack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getStarterPack.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getStarterPacks.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/getSuggestedFollowsByActor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/getSuggestedFollowsByActor.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/list.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/listblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/listblock.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/listitem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/listitem.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/muteActor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/muteActor.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/muteActorList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/muteActorList.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/muteThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/muteThread.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/searchStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/searchStarterPacks.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/starterpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/starterpack.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/unmuteActor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/unmuteActor.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/unmuteActorList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/unmuteActorList.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/unmuteThread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/unmuteThread.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/graph/verification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/graph/verification.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/labeler/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/labeler/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/labeler/getServices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/labeler/getServices.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/labeler/service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/labeler/service.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/declaration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/declaration.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/getPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/getPreferences.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/getUnreadCount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/getUnreadCount.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/listActivitySubscriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/listActivitySubscriptions.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/listNotifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/listNotifications.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/putActivitySubscription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/putActivitySubscription.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/putPreferences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/putPreferences.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/putPreferencesV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/putPreferencesV2.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/registerPush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/registerPush.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/notification/updateSeen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/notification/updateSeen.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/richtext/facet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/richtext/facet.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getConfig.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getPopularFeedGenerators.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getPopularFeedGenerators.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getPostThreadOtherV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getPostThreadOtherV2.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getPostThreadV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getPostThreadV2.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestedFeeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestedFeeds.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestedFeedsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestedFeedsSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestedStarterPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestedStarterPacks.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestedUsers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestedUsers.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestedUsersSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestedUsersSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getSuggestionsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getSuggestionsSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getTaggedSuggestions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getTaggedSuggestions.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getTrendingTopics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getTrendingTopics.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getTrends.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getTrends.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/getTrendsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/getTrendsSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/searchActorsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/searchActorsSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/searchPostsSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/searchPostsSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/unspecced/searchStarterPacksSkeleton.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/unspecced/searchStarterPacksSkeleton.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/video/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/video/defs.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/video/getJobStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/video/getJobStatus.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/video/getUploadLimits.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/video/getUploadLimits.json -------------------------------------------------------------------------------- /inst/lexicons/app/bsky/video/uploadVideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/app/bsky/video/uploadVideo.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/actor/declaration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/actor/declaration.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/actor/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/actor/defs.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/actor/deleteAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/actor/deleteAccount.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/actor/exportAccountData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/actor/exportAccountData.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/acceptConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/acceptConvo.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/addReaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/addReaction.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/defs.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/deleteMessageForSelf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/deleteMessageForSelf.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/getConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/getConvo.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/getConvoAvailability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/getConvoAvailability.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/getConvoForMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/getConvoForMembers.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/getLog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/getLog.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/getMessages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/getMessages.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/leaveConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/leaveConvo.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/listConvos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/listConvos.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/muteConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/muteConvo.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/removeReaction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/removeReaction.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/sendMessage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/sendMessage.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/sendMessageBatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/sendMessageBatch.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/unmuteConvo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/unmuteConvo.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/updateAllRead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/updateAllRead.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/convo/updateRead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/convo/updateRead.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/moderation/getActorMetadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/moderation/getActorMetadata.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/moderation/getMessageContext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/moderation/getMessageContext.json -------------------------------------------------------------------------------- /inst/lexicons/chat/bsky/moderation/updateActorAccess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/chat/bsky/moderation/updateActorAccess.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/deleteAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/deleteAccount.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/disableAccountInvites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/disableAccountInvites.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/disableInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/disableInviteCodes.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/enableAccountInvites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/enableAccountInvites.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/getAccountInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/getAccountInfo.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/getAccountInfos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/getAccountInfos.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/getInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/getInviteCodes.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/getSubjectStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/getSubjectStatus.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/searchAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/searchAccounts.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/sendEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/sendEmail.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/updateAccountEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/updateAccountEmail.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/updateAccountHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/updateAccountHandle.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/updateAccountPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/updateAccountPassword.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/updateAccountSigningKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/updateAccountSigningKey.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/admin/updateSubjectStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/admin/updateSubjectStatus.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/getRecommendedDidCredentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/getRecommendedDidCredentials.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/refreshIdentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/refreshIdentity.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/requestPlcOperationSignature.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/requestPlcOperationSignature.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/resolveDid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/resolveDid.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/resolveHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/resolveHandle.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/resolveIdentity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/resolveIdentity.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/signPlcOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/signPlcOperation.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/submitPlcOperation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/submitPlcOperation.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/identity/updateHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/identity/updateHandle.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/label/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/label/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/label/queryLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/label/queryLabels.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/label/subscribeLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/label/subscribeLabels.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/lexicon/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/lexicon/schema.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/moderation/createReport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/moderation/createReport.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/moderation/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/moderation/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/applyWrites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/applyWrites.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/createRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/createRecord.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/deleteRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/deleteRecord.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/describeRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/describeRepo.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/getRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/getRecord.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/importRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/importRepo.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/listMissingBlobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/listMissingBlobs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/listRecords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/listRecords.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/putRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/putRecord.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/strongRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/strongRef.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/repo/uploadBlob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/repo/uploadBlob.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/activateAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/activateAccount.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/checkAccountStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/checkAccountStatus.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/confirmEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/confirmEmail.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/createAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/createAccount.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/createAppPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/createAppPassword.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/createInviteCode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/createInviteCode.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/createInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/createInviteCodes.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/createSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/createSession.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/deactivateAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/deactivateAccount.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/deleteAccount.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/deleteAccount.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/deleteSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/deleteSession.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/describeServer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/describeServer.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/getAccountInviteCodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/getAccountInviteCodes.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/getServiceAuth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/getServiceAuth.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/getSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/getSession.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/listAppPasswords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/listAppPasswords.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/refreshSession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/refreshSession.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/requestAccountDelete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/requestAccountDelete.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/requestEmailConfirmation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/requestEmailConfirmation.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/requestEmailUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/requestEmailUpdate.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/requestPasswordReset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/requestPasswordReset.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/reserveSigningKey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/reserveSigningKey.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/resetPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/resetPassword.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/revokeAppPassword.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/revokeAppPassword.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/server/updateEmail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/server/updateEmail.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/defs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getBlob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getBlob.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getBlocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getBlocks.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getCheckout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getCheckout.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getHead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getHead.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getHostStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getHostStatus.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getLatestCommit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getLatestCommit.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getRecord.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getRepo.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/getRepoStatus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/getRepoStatus.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/listBlobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/listBlobs.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/listHosts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/listHosts.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/listRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/listRepos.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/listReposByCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/listReposByCollection.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/notifyOfUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/notifyOfUpdate.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/requestCrawl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/requestCrawl.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/sync/subscribeRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/sync/subscribeRepos.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/temp/addReservedHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/temp/addReservedHandle.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/temp/checkSignupQueue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/temp/checkSignupQueue.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/temp/fetchLabels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/temp/fetchLabels.json -------------------------------------------------------------------------------- /inst/lexicons/com/atproto/temp/requestPhoneVerification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/com/atproto/temp/requestPhoneVerification.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/communication/createTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/communication/createTemplate.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/communication/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/communication/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/communication/deleteTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/communication/deleteTemplate.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/communication/listTemplates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/communication/listTemplates.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/communication/updateTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/communication/updateTemplate.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/hosting/getAccountHistory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/hosting/getAccountHistory.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/emitEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/emitEvent.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getEvent.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getRecord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getRecord.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getRecords.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getRecords.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getRepo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getRepo.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getReporterStats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getReporterStats.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getRepos.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/getSubjects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/getSubjects.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/queryEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/queryEvents.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/queryStatuses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/queryStatuses.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/moderation/searchRepos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/moderation/searchRepos.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/safelink/addRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/safelink/addRule.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/safelink/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/safelink/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/safelink/queryEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/safelink/queryEvents.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/safelink/queryRules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/safelink/queryRules.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/safelink/removeRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/safelink/removeRule.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/safelink/updateRule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/safelink/updateRule.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/server/getConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/server/getConfig.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/addValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/addValues.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/deleteSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/deleteSet.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/deleteValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/deleteValues.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/getValues.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/getValues.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/querySets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/querySets.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/set/upsertSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/set/upsertSet.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/setting/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/setting/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/setting/listOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/setting/listOptions.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/setting/removeOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/setting/removeOptions.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/setting/upsertOption.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/setting/upsertOption.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/signature/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/signature/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/signature/findCorrelation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/signature/findCorrelation.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/signature/findRelatedAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/signature/findRelatedAccounts.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/signature/searchAccounts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/signature/searchAccounts.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/team/addMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/team/addMember.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/team/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/team/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/team/deleteMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/team/deleteMember.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/team/listMembers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/team/listMembers.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/team/updateMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/team/updateMember.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/verification/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/verification/defs.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/verification/grantVerifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/verification/grantVerifications.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/verification/listVerifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/verification/listVerifications.json -------------------------------------------------------------------------------- /inst/lexicons/tools/ozone/verification/revokeVerifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/inst/lexicons/tools/ozone/verification/revokeVerifications.json -------------------------------------------------------------------------------- /lab.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/lab.Rmd -------------------------------------------------------------------------------- /man/atrrr-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/atrrr-package.Rd -------------------------------------------------------------------------------- /man/auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/auth.Rd -------------------------------------------------------------------------------- /man/convert_http_to_at.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/convert_http_to_at.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-experimental.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/figures/lifecycle-experimental.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/follow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/follow.Rd -------------------------------------------------------------------------------- /man/get_actor_likes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_actor_likes.Rd -------------------------------------------------------------------------------- /man/get_feed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_feed.Rd -------------------------------------------------------------------------------- /man/get_feed_likes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_feed_likes.Rd -------------------------------------------------------------------------------- /man/get_feeds_created_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_feeds_created_by.Rd -------------------------------------------------------------------------------- /man/get_followers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_followers.Rd -------------------------------------------------------------------------------- /man/get_likes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_likes.Rd -------------------------------------------------------------------------------- /man/get_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_list.Rd -------------------------------------------------------------------------------- /man/get_own_timeline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_own_timeline.Rd -------------------------------------------------------------------------------- /man/get_replies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_replies.Rd -------------------------------------------------------------------------------- /man/get_skeets_authored_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_skeets_authored_by.Rd -------------------------------------------------------------------------------- /man/get_starter_pack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_starter_pack.Rd -------------------------------------------------------------------------------- /man/get_thread.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_thread.Rd -------------------------------------------------------------------------------- /man/get_user_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/get_user_info.Rd -------------------------------------------------------------------------------- /man/like_skeet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/like_skeet.Rd -------------------------------------------------------------------------------- /man/list_chats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/list_chats.Rd -------------------------------------------------------------------------------- /man/list_lexicons.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/list_lexicons.Rd -------------------------------------------------------------------------------- /man/post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/post.Rd -------------------------------------------------------------------------------- /man/post_thread.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/post_thread.Rd -------------------------------------------------------------------------------- /man/print.bsky_token.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/print.bsky_token.Rd -------------------------------------------------------------------------------- /man/search_feed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/search_feed.Rd -------------------------------------------------------------------------------- /man/search_post.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/search_post.Rd -------------------------------------------------------------------------------- /man/search_user.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/search_user.Rd -------------------------------------------------------------------------------- /man/skeet_shot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/skeet_shot.Rd -------------------------------------------------------------------------------- /man/stream_firehose.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/man/stream_firehose.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.getProfile_cf402.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.getProfile_cf402.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.getProfile_f0833.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.getProfile_f0833.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.getProfile_f20b3.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.getProfile_f20b3.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.getProfiles_01031.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.getProfiles_01031.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.getProfiles_0f35e.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.getProfiles_0f35e.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.getProfiles_3ed2a.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.getProfiles_3ed2a.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.searchActors_275e3.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.searchActors_275e3.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.searchActors_5a4e3.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.searchActors_5a4e3.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.actor.searchActors_87617.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.actor.searchActors_87617.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getActorFeeds_925c2.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getActorFeeds_925c2.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getAuthorFeed_925c2.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getAuthorFeed_925c2.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getFeed_0bf27.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getFeed_0bf27.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getLikes_26bda.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getLikes_26bda.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getLikes_95deb.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getLikes_95deb.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getListFeed_6a31b.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getListFeed_6a31b.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getListFeed_dc533.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getListFeed_dc533.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getPostThread_72827.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getPostThread_72827.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getPostThread_aa665.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getPostThread_aa665.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getRepostedBy_95deb.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getRepostedBy_95deb.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getTimeline_6340d.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getTimeline_6340d.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.getTimeline_730cb.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.getTimeline_730cb.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.searchPosts_0e3ec.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.searchPosts_0e3ec.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.searchPosts_b1263.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.searchPosts_b1263.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.feed.searchPosts_bb16d.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.feed.searchPosts_bb16d.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.graph.getList_dc533.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.graph.getList_dc533.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.graph.getStarterPack_90b35.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.graph.getStarterPack_90b35.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/app.bsky.unspecced.getPopularFeedGenerators_8e00b.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/app.bsky.unspecced.getPopularFeedGenerators_8e00b.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/com.atproto.identity.resolveHandle_50198.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/com.atproto.identity.resolveHandle_50198.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/com.atproto.identity.resolveHandle_c4567.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/com.atproto.identity.resolveHandle_c4567.rds -------------------------------------------------------------------------------- /tests/testthat/recorded_responses/com.atproto.identity.resolveHandle_c81f8.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/recorded_responses/com.atproto.identity.resolveHandle_c81f8.rds -------------------------------------------------------------------------------- /tests/testthat/setup-mock.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/setup-mock.R -------------------------------------------------------------------------------- /tests/testthat/test-actors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/test-actors.R -------------------------------------------------------------------------------- /tests/testthat/test-convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/test-convert.R -------------------------------------------------------------------------------- /tests/testthat/test-feed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/test-feed.R -------------------------------------------------------------------------------- /tests/testthat/test-lists.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/test-lists.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /update.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/update.r -------------------------------------------------------------------------------- /update_lexicon-functions.qmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/update_lexicon-functions.qmd -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/Basic_Usage.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Basic_Usage.Rmd -------------------------------------------------------------------------------- /vignettes/Basic_Usage.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Basic_Usage.Rmd.orig -------------------------------------------------------------------------------- /vignettes/Feed_Analysis.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Feed_Analysis.Rmd -------------------------------------------------------------------------------- /vignettes/Feed_Analysis.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Feed_Analysis.Rmd.orig -------------------------------------------------------------------------------- /vignettes/Interactions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Interactions.Rmd -------------------------------------------------------------------------------- /vignettes/Interactions.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Interactions.Rmd.orig -------------------------------------------------------------------------------- /vignettes/Networks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Networks.Rmd -------------------------------------------------------------------------------- /vignettes/Networks.Rmd.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/Networks.Rmd.orig -------------------------------------------------------------------------------- /vignettes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/README.md -------------------------------------------------------------------------------- /vignettes/figures/app_password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/app_password.png -------------------------------------------------------------------------------- /vignettes/figures/password_popup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/password_popup.png -------------------------------------------------------------------------------- /vignettes/figures/thread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/thread.png -------------------------------------------------------------------------------- /vignettes/figures/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /vignettes/figures/unnamed-chunk-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/unnamed-chunk-3-1.png -------------------------------------------------------------------------------- /vignettes/figures/unnamed-chunk-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/unnamed-chunk-4-1.png -------------------------------------------------------------------------------- /vignettes/figures/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JBGruber/atrrr/HEAD/vignettes/figures/unnamed-chunk-6-1.png --------------------------------------------------------------------------------