├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── README.md ├── api ├── .gitignore ├── README.md ├── package.json ├── src │ ├── bluemoji-client.ts │ ├── client │ │ ├── index.ts │ │ ├── lexicons.ts │ │ ├── types │ │ │ ├── app │ │ │ │ └── bsky │ │ │ │ │ ├── actor │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── getPreferences.ts │ │ │ │ │ ├── getProfile.ts │ │ │ │ │ ├── getProfiles.ts │ │ │ │ │ ├── getSuggestions.ts │ │ │ │ │ ├── profile.ts │ │ │ │ │ ├── putPreferences.ts │ │ │ │ │ ├── searchActors.ts │ │ │ │ │ └── searchActorsTypeahead.ts │ │ │ │ │ ├── embed │ │ │ │ │ ├── external.ts │ │ │ │ │ ├── images.ts │ │ │ │ │ ├── record.ts │ │ │ │ │ └── recordWithMedia.ts │ │ │ │ │ ├── feed │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── describeFeedGenerator.ts │ │ │ │ │ ├── generator.ts │ │ │ │ │ ├── getActorFeeds.ts │ │ │ │ │ ├── getActorLikes.ts │ │ │ │ │ ├── getAuthorFeed.ts │ │ │ │ │ ├── getFeed.ts │ │ │ │ │ ├── getFeedGenerator.ts │ │ │ │ │ ├── getFeedGenerators.ts │ │ │ │ │ ├── getFeedSkeleton.ts │ │ │ │ │ ├── getLikes.ts │ │ │ │ │ ├── getListFeed.ts │ │ │ │ │ ├── getPostThread.ts │ │ │ │ │ ├── getPosts.ts │ │ │ │ │ ├── getRepostedBy.ts │ │ │ │ │ ├── getSuggestedFeeds.ts │ │ │ │ │ ├── getTimeline.ts │ │ │ │ │ ├── like.ts │ │ │ │ │ ├── post.ts │ │ │ │ │ ├── repost.ts │ │ │ │ │ ├── searchPosts.ts │ │ │ │ │ ├── sendInteractions.ts │ │ │ │ │ └── threadgate.ts │ │ │ │ │ ├── graph │ │ │ │ │ ├── block.ts │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── follow.ts │ │ │ │ │ ├── getActorStarterPacks.ts │ │ │ │ │ ├── getBlocks.ts │ │ │ │ │ ├── getFollowers.ts │ │ │ │ │ ├── getFollows.ts │ │ │ │ │ ├── getKnownFollowers.ts │ │ │ │ │ ├── getList.ts │ │ │ │ │ ├── getListBlocks.ts │ │ │ │ │ ├── getListMutes.ts │ │ │ │ │ ├── getLists.ts │ │ │ │ │ ├── getMutes.ts │ │ │ │ │ ├── getRelationships.ts │ │ │ │ │ ├── getStarterPack.ts │ │ │ │ │ ├── getStarterPacks.ts │ │ │ │ │ ├── getSuggestedFollowsByActor.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── listblock.ts │ │ │ │ │ ├── listitem.ts │ │ │ │ │ ├── muteActor.ts │ │ │ │ │ ├── muteActorList.ts │ │ │ │ │ ├── muteThread.ts │ │ │ │ │ ├── starterpack.ts │ │ │ │ │ ├── unmuteActor.ts │ │ │ │ │ ├── unmuteActorList.ts │ │ │ │ │ └── unmuteThread.ts │ │ │ │ │ ├── labeler │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── getServices.ts │ │ │ │ │ └── service.ts │ │ │ │ │ ├── notification │ │ │ │ │ ├── getUnreadCount.ts │ │ │ │ │ ├── listNotifications.ts │ │ │ │ │ ├── putPreferences.ts │ │ │ │ │ ├── registerPush.ts │ │ │ │ │ └── updateSeen.ts │ │ │ │ │ ├── richtext │ │ │ │ │ └── facet.ts │ │ │ │ │ └── unspecced │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── getPopularFeedGenerators.ts │ │ │ │ │ ├── getSuggestionsSkeleton.ts │ │ │ │ │ ├── getTaggedSuggestions.ts │ │ │ │ │ ├── searchActorsSkeleton.ts │ │ │ │ │ └── searchPostsSkeleton.ts │ │ │ ├── blue │ │ │ │ └── moji │ │ │ │ │ ├── collection │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── getItem.ts │ │ │ │ │ ├── item.ts │ │ │ │ │ ├── listCollection.ts │ │ │ │ │ ├── putItem.ts │ │ │ │ │ └── saveToCollection.ts │ │ │ │ │ ├── packs │ │ │ │ │ ├── defs.ts │ │ │ │ │ ├── getActorPacks.ts │ │ │ │ │ ├── getPack.ts │ │ │ │ │ ├── getPacks.ts │ │ │ │ │ ├── pack.ts │ │ │ │ │ └── packitem.ts │ │ │ │ │ └── richtext │ │ │ │ │ └── facet.ts │ │ │ └── com │ │ │ │ └── atproto │ │ │ │ ├── admin │ │ │ │ ├── defs.ts │ │ │ │ ├── deleteAccount.ts │ │ │ │ ├── disableAccountInvites.ts │ │ │ │ ├── disableInviteCodes.ts │ │ │ │ ├── enableAccountInvites.ts │ │ │ │ ├── getAccountInfo.ts │ │ │ │ ├── getAccountInfos.ts │ │ │ │ ├── getInviteCodes.ts │ │ │ │ ├── getSubjectStatus.ts │ │ │ │ ├── searchAccounts.ts │ │ │ │ ├── sendEmail.ts │ │ │ │ ├── updateAccountEmail.ts │ │ │ │ ├── updateAccountHandle.ts │ │ │ │ ├── updateAccountPassword.ts │ │ │ │ └── updateSubjectStatus.ts │ │ │ │ ├── identity │ │ │ │ ├── getRecommendedDidCredentials.ts │ │ │ │ ├── requestPlcOperationSignature.ts │ │ │ │ ├── resolveHandle.ts │ │ │ │ ├── signPlcOperation.ts │ │ │ │ ├── submitPlcOperation.ts │ │ │ │ └── updateHandle.ts │ │ │ │ ├── label │ │ │ │ ├── defs.ts │ │ │ │ ├── queryLabels.ts │ │ │ │ └── subscribeLabels.ts │ │ │ │ ├── moderation │ │ │ │ ├── createReport.ts │ │ │ │ └── defs.ts │ │ │ │ ├── repo │ │ │ │ ├── applyWrites.ts │ │ │ │ ├── createRecord.ts │ │ │ │ ├── deleteRecord.ts │ │ │ │ ├── describeRepo.ts │ │ │ │ ├── getRecord.ts │ │ │ │ ├── importRepo.ts │ │ │ │ ├── listMissingBlobs.ts │ │ │ │ ├── listRecords.ts │ │ │ │ ├── putRecord.ts │ │ │ │ ├── strongRef.ts │ │ │ │ └── uploadBlob.ts │ │ │ │ ├── server │ │ │ │ ├── activateAccount.ts │ │ │ │ ├── checkAccountStatus.ts │ │ │ │ ├── confirmEmail.ts │ │ │ │ ├── createAccount.ts │ │ │ │ ├── createAppPassword.ts │ │ │ │ ├── createInviteCode.ts │ │ │ │ ├── createInviteCodes.ts │ │ │ │ ├── createSession.ts │ │ │ │ ├── deactivateAccount.ts │ │ │ │ ├── defs.ts │ │ │ │ ├── deleteAccount.ts │ │ │ │ ├── deleteSession.ts │ │ │ │ ├── describeServer.ts │ │ │ │ ├── getAccountInviteCodes.ts │ │ │ │ ├── getServiceAuth.ts │ │ │ │ ├── getSession.ts │ │ │ │ ├── listAppPasswords.ts │ │ │ │ ├── refreshSession.ts │ │ │ │ ├── requestAccountDelete.ts │ │ │ │ ├── requestEmailConfirmation.ts │ │ │ │ ├── requestEmailUpdate.ts │ │ │ │ ├── requestPasswordReset.ts │ │ │ │ ├── reserveSigningKey.ts │ │ │ │ ├── resetPassword.ts │ │ │ │ ├── revokeAppPassword.ts │ │ │ │ └── updateEmail.ts │ │ │ │ ├── sync │ │ │ │ ├── getBlob.ts │ │ │ │ ├── getBlocks.ts │ │ │ │ ├── getCheckout.ts │ │ │ │ ├── getHead.ts │ │ │ │ ├── getLatestCommit.ts │ │ │ │ ├── getRecord.ts │ │ │ │ ├── getRepo.ts │ │ │ │ ├── getRepoStatus.ts │ │ │ │ ├── listBlobs.ts │ │ │ │ ├── listRepos.ts │ │ │ │ ├── notifyOfUpdate.ts │ │ │ │ ├── requestCrawl.ts │ │ │ │ └── subscribeRepos.ts │ │ │ │ └── temp │ │ │ │ ├── checkSignupQueue.ts │ │ │ │ ├── fetchLabels.ts │ │ │ │ └── requestPhoneVerification.ts │ │ └── util.ts │ ├── components │ │ ├── react-native │ │ │ └── RichTextBluemoji.tsx │ │ ├── react │ │ │ └── index.tsx │ │ └── webcomponent │ │ │ └── webcomponent.ts │ ├── facet │ │ ├── BluemojiRichText.test.ts │ │ ├── BluemojiRichText.ts │ │ ├── detect-facets.ts │ │ ├── index.ts │ │ └── register.ts │ ├── index.ts │ ├── render │ │ ├── index.ts │ │ └── renderers │ │ │ ├── apng.ts │ │ │ ├── blob.ts │ │ │ └── lottie.ts │ └── util │ │ ├── resizePngToUintArray.ts │ │ └── uploadBluemoji.ts ├── tsconfig.build.json ├── tsconfig.json ├── tsconfig.test.json └── vite.config.js ├── eslint.config.mjs ├── package.json ├── rfcs ├── 0000-template.md ├── 0001-bluemoji.md └── 0002-sharing.md ├── schema ├── README.md └── blue.moji │ ├── collection │ ├── defs.json │ ├── getItem.json │ ├── item.json │ ├── listCollection.json │ ├── putItem.json │ └── saveToCollection.json │ ├── packs │ ├── defs.json │ ├── getActorPacks.json │ ├── getPack.json │ ├── getPacks.json │ ├── pack.json │ └── packitem.json │ └── richtext │ └── facet.json └── server ├── Dockerfile ├── README.md ├── compose.yaml ├── index.html ├── lexicon ├── index.ts ├── lexicons.ts ├── types │ ├── app │ │ └── bsky │ │ │ ├── actor │ │ │ ├── defs.ts │ │ │ ├── getPreferences.ts │ │ │ ├── getProfile.ts │ │ │ ├── getProfiles.ts │ │ │ ├── getSuggestions.ts │ │ │ ├── profile.ts │ │ │ ├── putPreferences.ts │ │ │ ├── searchActors.ts │ │ │ └── searchActorsTypeahead.ts │ │ │ ├── embed │ │ │ ├── external.ts │ │ │ ├── images.ts │ │ │ ├── record.ts │ │ │ └── recordWithMedia.ts │ │ │ ├── feed │ │ │ ├── defs.ts │ │ │ ├── describeFeedGenerator.ts │ │ │ ├── generator.ts │ │ │ ├── getActorFeeds.ts │ │ │ ├── getActorLikes.ts │ │ │ ├── getAuthorFeed.ts │ │ │ ├── getFeed.ts │ │ │ ├── getFeedGenerator.ts │ │ │ ├── getFeedGenerators.ts │ │ │ ├── getFeedSkeleton.ts │ │ │ ├── getLikes.ts │ │ │ ├── getListFeed.ts │ │ │ ├── getPostThread.ts │ │ │ ├── getPosts.ts │ │ │ ├── getRepostedBy.ts │ │ │ ├── getSuggestedFeeds.ts │ │ │ ├── getTimeline.ts │ │ │ ├── like.ts │ │ │ ├── post.ts │ │ │ ├── repost.ts │ │ │ ├── searchPosts.ts │ │ │ ├── sendInteractions.ts │ │ │ └── threadgate.ts │ │ │ ├── graph │ │ │ ├── block.ts │ │ │ ├── defs.ts │ │ │ ├── follow.ts │ │ │ ├── getActorStarterPacks.ts │ │ │ ├── getBlocks.ts │ │ │ ├── getFollowers.ts │ │ │ ├── getFollows.ts │ │ │ ├── getKnownFollowers.ts │ │ │ ├── getList.ts │ │ │ ├── getListBlocks.ts │ │ │ ├── getListMutes.ts │ │ │ ├── getLists.ts │ │ │ ├── getMutes.ts │ │ │ ├── getRelationships.ts │ │ │ ├── getStarterPack.ts │ │ │ ├── getStarterPacks.ts │ │ │ ├── getSuggestedFollowsByActor.ts │ │ │ ├── list.ts │ │ │ ├── listblock.ts │ │ │ ├── listitem.ts │ │ │ ├── muteActor.ts │ │ │ ├── muteActorList.ts │ │ │ ├── muteThread.ts │ │ │ ├── starterpack.ts │ │ │ ├── unmuteActor.ts │ │ │ ├── unmuteActorList.ts │ │ │ └── unmuteThread.ts │ │ │ ├── labeler │ │ │ ├── defs.ts │ │ │ ├── getServices.ts │ │ │ └── service.ts │ │ │ ├── notification │ │ │ ├── getUnreadCount.ts │ │ │ ├── listNotifications.ts │ │ │ ├── putPreferences.ts │ │ │ ├── registerPush.ts │ │ │ └── updateSeen.ts │ │ │ ├── richtext │ │ │ └── facet.ts │ │ │ └── unspecced │ │ │ ├── defs.ts │ │ │ ├── getPopularFeedGenerators.ts │ │ │ ├── getSuggestionsSkeleton.ts │ │ │ ├── getTaggedSuggestions.ts │ │ │ ├── searchActorsSkeleton.ts │ │ │ └── searchPostsSkeleton.ts │ ├── blue │ │ └── moji │ │ │ ├── collection │ │ │ ├── defs.ts │ │ │ ├── getItem.ts │ │ │ ├── item.ts │ │ │ ├── listCollection.ts │ │ │ ├── putItem.ts │ │ │ └── saveToCollection.ts │ │ │ ├── packs │ │ │ ├── defs.ts │ │ │ ├── getActorPacks.ts │ │ │ ├── getPack.ts │ │ │ ├── getPacks.ts │ │ │ ├── pack.ts │ │ │ └── packitem.ts │ │ │ └── richtext │ │ │ └── facet.ts │ └── com │ │ └── atproto │ │ ├── admin │ │ ├── defs.ts │ │ ├── deleteAccount.ts │ │ ├── disableAccountInvites.ts │ │ ├── disableInviteCodes.ts │ │ ├── enableAccountInvites.ts │ │ ├── getAccountInfo.ts │ │ ├── getAccountInfos.ts │ │ ├── getInviteCodes.ts │ │ ├── getSubjectStatus.ts │ │ ├── searchAccounts.ts │ │ ├── sendEmail.ts │ │ ├── updateAccountEmail.ts │ │ ├── updateAccountHandle.ts │ │ ├── updateAccountPassword.ts │ │ └── updateSubjectStatus.ts │ │ ├── identity │ │ ├── getRecommendedDidCredentials.ts │ │ ├── requestPlcOperationSignature.ts │ │ ├── resolveHandle.ts │ │ ├── signPlcOperation.ts │ │ ├── submitPlcOperation.ts │ │ └── updateHandle.ts │ │ ├── label │ │ ├── defs.ts │ │ ├── queryLabels.ts │ │ └── subscribeLabels.ts │ │ ├── moderation │ │ ├── createReport.ts │ │ └── defs.ts │ │ ├── repo │ │ ├── applyWrites.ts │ │ ├── createRecord.ts │ │ ├── deleteRecord.ts │ │ ├── describeRepo.ts │ │ ├── getRecord.ts │ │ ├── importRepo.ts │ │ ├── listMissingBlobs.ts │ │ ├── listRecords.ts │ │ ├── putRecord.ts │ │ ├── strongRef.ts │ │ └── uploadBlob.ts │ │ ├── server │ │ ├── activateAccount.ts │ │ ├── checkAccountStatus.ts │ │ ├── confirmEmail.ts │ │ ├── createAccount.ts │ │ ├── createAppPassword.ts │ │ ├── createInviteCode.ts │ │ ├── createInviteCodes.ts │ │ ├── createSession.ts │ │ ├── deactivateAccount.ts │ │ ├── defs.ts │ │ ├── deleteAccount.ts │ │ ├── deleteSession.ts │ │ ├── describeServer.ts │ │ ├── getAccountInviteCodes.ts │ │ ├── getServiceAuth.ts │ │ ├── getSession.ts │ │ ├── listAppPasswords.ts │ │ ├── refreshSession.ts │ │ ├── requestAccountDelete.ts │ │ ├── requestEmailConfirmation.ts │ │ ├── requestEmailUpdate.ts │ │ ├── requestPasswordReset.ts │ │ ├── reserveSigningKey.ts │ │ ├── resetPassword.ts │ │ ├── revokeAppPassword.ts │ │ └── updateEmail.ts │ │ ├── sync │ │ ├── getBlob.ts │ │ ├── getBlocks.ts │ │ ├── getCheckout.ts │ │ ├── getHead.ts │ │ ├── getLatestCommit.ts │ │ ├── getRecord.ts │ │ ├── getRepo.ts │ │ ├── getRepoStatus.ts │ │ ├── listBlobs.ts │ │ ├── listRepos.ts │ │ ├── notifyOfUpdate.ts │ │ ├── requestCrawl.ts │ │ └── subscribeRepos.ts │ │ └── temp │ │ ├── checkSignupQueue.ts │ │ ├── fetchLabels.ts │ │ └── requestPhoneVerification.ts └── util.ts ├── lib ├── actions │ ├── createImagePost.ts │ └── index.ts ├── agent.ts ├── app │ ├── App.tsx │ ├── context.tsx │ ├── entry-client.tsx │ ├── entry-server.tsx │ ├── index.scss │ ├── ncurses │ │ ├── ContentBox.tsx │ │ ├── InputBox.tsx │ │ ├── MenuBox.tsx │ │ ├── MsgBox.tsx │ │ ├── index.html │ │ └── src │ │ │ └── sass │ │ │ ├── _mixins.scss │ │ │ ├── _reset.scss │ │ │ ├── _variables.scss │ │ │ └── ncurses.scss │ └── routes │ │ ├── browse-packs.tsx │ │ ├── collection.tsx │ │ ├── index.tsx │ │ ├── login.tsx │ │ ├── make-pack.tsx │ │ ├── upload.tsx │ │ └── workshop.tsx ├── auth.ts ├── config.ts ├── db │ ├── index.ts │ ├── migrations.ts │ └── schema.ts ├── error.ts ├── feeds │ ├── emoji.ts │ └── index.ts ├── firehose.ts ├── index.ts ├── logger.ts ├── routes │ ├── blob.ts │ ├── collection.ts │ ├── describe-generator.ts │ ├── feed-generation.ts │ ├── health.ts │ ├── lottie.ts │ ├── oauth.ts │ ├── packs.ts │ ├── render.ts │ └── upload-bluemoji.ts ├── server.ts ├── subscription.ts ├── vite.ts └── well-known.ts ├── package.json ├── scripts └── generate-keys.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/README.md -------------------------------------------------------------------------------- /api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/.gitignore -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/README.md -------------------------------------------------------------------------------- /api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/package.json -------------------------------------------------------------------------------- /api/src/bluemoji-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/bluemoji-client.ts -------------------------------------------------------------------------------- /api/src/client/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/index.ts -------------------------------------------------------------------------------- /api/src/client/lexicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/lexicons.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/getPreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/getPreferences.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/getProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/getProfile.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/getProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/getProfiles.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/getSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/getSuggestions.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/profile.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/putPreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/putPreferences.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/searchActors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/searchActors.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/actor/searchActorsTypeahead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/actor/searchActorsTypeahead.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/embed/external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/embed/external.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/embed/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/embed/images.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/embed/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/embed/record.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/embed/recordWithMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/embed/recordWithMedia.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/describeFeedGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/describeFeedGenerator.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/generator.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getActorFeeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getActorFeeds.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getActorLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getActorLikes.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getAuthorFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getAuthorFeed.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getFeed.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getFeedGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getFeedGenerator.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getFeedGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getFeedGenerators.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getFeedSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getFeedSkeleton.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getLikes.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getListFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getListFeed.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getPostThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getPostThread.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getPosts.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getRepostedBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getRepostedBy.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getSuggestedFeeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getSuggestedFeeds.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/getTimeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/getTimeline.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/like.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/post.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/repost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/repost.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/searchPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/searchPosts.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/sendInteractions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/sendInteractions.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/feed/threadgate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/feed/threadgate.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/block.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/follow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/follow.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getActorStarterPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getActorStarterPacks.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getBlocks.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getFollowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getFollowers.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getFollows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getFollows.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getKnownFollowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getKnownFollowers.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getList.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getListBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getListBlocks.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getListMutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getListMutes.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getLists.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getMutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getMutes.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getRelationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getRelationships.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getStarterPack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getStarterPack.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getStarterPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getStarterPacks.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/getSuggestedFollowsByActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/getSuggestedFollowsByActor.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/list.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/listblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/listblock.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/listitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/listitem.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/muteActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/muteActor.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/muteActorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/muteActorList.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/muteThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/muteThread.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/starterpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/starterpack.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/unmuteActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/unmuteActor.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/unmuteActorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/unmuteActorList.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/graph/unmuteThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/graph/unmuteThread.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/labeler/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/labeler/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/labeler/getServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/labeler/getServices.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/labeler/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/labeler/service.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/notification/getUnreadCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/notification/getUnreadCount.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/notification/listNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/notification/listNotifications.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/notification/putPreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/notification/putPreferences.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/notification/registerPush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/notification/registerPush.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/notification/updateSeen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/notification/updateSeen.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/richtext/facet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/richtext/facet.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/unspecced/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/unspecced/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/unspecced/getPopularFeedGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/unspecced/getPopularFeedGenerators.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/unspecced/getSuggestionsSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/unspecced/getSuggestionsSkeleton.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/unspecced/getTaggedSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/unspecced/getTaggedSuggestions.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/unspecced/searchActorsSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/unspecced/searchActorsSkeleton.ts -------------------------------------------------------------------------------- /api/src/client/types/app/bsky/unspecced/searchPostsSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/app/bsky/unspecced/searchPostsSkeleton.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/collection/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/collection/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/collection/getItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/collection/getItem.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/collection/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/collection/item.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/collection/listCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/collection/listCollection.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/collection/putItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/collection/putItem.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/collection/saveToCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/collection/saveToCollection.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/packs/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/packs/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/packs/getActorPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/packs/getActorPacks.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/packs/getPack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/packs/getPack.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/packs/getPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/packs/getPacks.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/packs/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/packs/pack.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/packs/packitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/packs/packitem.ts -------------------------------------------------------------------------------- /api/src/client/types/blue/moji/richtext/facet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/blue/moji/richtext/facet.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/deleteAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/deleteAccount.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/disableAccountInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/disableAccountInvites.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/disableInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/disableInviteCodes.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/enableAccountInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/enableAccountInvites.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/getAccountInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/getAccountInfo.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/getAccountInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/getAccountInfos.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/getInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/getInviteCodes.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/getSubjectStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/getSubjectStatus.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/searchAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/searchAccounts.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/sendEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/sendEmail.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/updateAccountEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/updateAccountEmail.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/updateAccountHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/updateAccountHandle.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/updateAccountPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/updateAccountPassword.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/admin/updateSubjectStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/admin/updateSubjectStatus.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/identity/getRecommendedDidCredentials.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/identity/requestPlcOperationSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/identity/requestPlcOperationSignature.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/identity/resolveHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/identity/resolveHandle.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/identity/signPlcOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/identity/signPlcOperation.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/identity/submitPlcOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/identity/submitPlcOperation.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/identity/updateHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/identity/updateHandle.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/label/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/label/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/label/queryLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/label/queryLabels.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/label/subscribeLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/label/subscribeLabels.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/moderation/createReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/moderation/createReport.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/moderation/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/moderation/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/applyWrites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/applyWrites.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/createRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/createRecord.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/deleteRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/deleteRecord.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/describeRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/describeRepo.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/getRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/getRecord.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/importRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/importRepo.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/listMissingBlobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/listMissingBlobs.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/listRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/listRecords.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/putRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/putRecord.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/strongRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/strongRef.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/repo/uploadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/repo/uploadBlob.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/activateAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/activateAccount.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/checkAccountStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/checkAccountStatus.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/confirmEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/confirmEmail.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/createAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/createAccount.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/createAppPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/createAppPassword.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/createInviteCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/createInviteCode.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/createInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/createInviteCodes.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/createSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/createSession.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/deactivateAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/deactivateAccount.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/defs.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/deleteAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/deleteAccount.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/deleteSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/deleteSession.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/describeServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/describeServer.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/getAccountInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/getAccountInviteCodes.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/getServiceAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/getServiceAuth.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/getSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/getSession.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/listAppPasswords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/listAppPasswords.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/refreshSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/refreshSession.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/requestAccountDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/requestAccountDelete.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/requestEmailConfirmation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/requestEmailConfirmation.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/requestEmailUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/requestEmailUpdate.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/requestPasswordReset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/requestPasswordReset.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/reserveSigningKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/reserveSigningKey.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/resetPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/resetPassword.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/revokeAppPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/revokeAppPassword.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/server/updateEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/server/updateEmail.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getBlob.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getBlocks.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getCheckout.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getHead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getHead.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getLatestCommit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getLatestCommit.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getRecord.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getRepo.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/getRepoStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/getRepoStatus.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/listBlobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/listBlobs.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/listRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/listRepos.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/notifyOfUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/notifyOfUpdate.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/requestCrawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/requestCrawl.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/sync/subscribeRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/sync/subscribeRepos.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/temp/checkSignupQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/temp/checkSignupQueue.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/temp/fetchLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/temp/fetchLabels.ts -------------------------------------------------------------------------------- /api/src/client/types/com/atproto/temp/requestPhoneVerification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/types/com/atproto/temp/requestPhoneVerification.ts -------------------------------------------------------------------------------- /api/src/client/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/client/util.ts -------------------------------------------------------------------------------- /api/src/components/react-native/RichTextBluemoji.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/components/react-native/RichTextBluemoji.tsx -------------------------------------------------------------------------------- /api/src/components/react/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/components/react/index.tsx -------------------------------------------------------------------------------- /api/src/components/webcomponent/webcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/components/webcomponent/webcomponent.ts -------------------------------------------------------------------------------- /api/src/facet/BluemojiRichText.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/facet/BluemojiRichText.test.ts -------------------------------------------------------------------------------- /api/src/facet/BluemojiRichText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/facet/BluemojiRichText.ts -------------------------------------------------------------------------------- /api/src/facet/detect-facets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/facet/detect-facets.ts -------------------------------------------------------------------------------- /api/src/facet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/facet/index.ts -------------------------------------------------------------------------------- /api/src/facet/register.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/facet/register.ts -------------------------------------------------------------------------------- /api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/index.ts -------------------------------------------------------------------------------- /api/src/render/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/render/index.ts -------------------------------------------------------------------------------- /api/src/render/renderers/apng.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/render/renderers/apng.ts -------------------------------------------------------------------------------- /api/src/render/renderers/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/render/renderers/blob.ts -------------------------------------------------------------------------------- /api/src/render/renderers/lottie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/render/renderers/lottie.ts -------------------------------------------------------------------------------- /api/src/util/resizePngToUintArray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/util/resizePngToUintArray.ts -------------------------------------------------------------------------------- /api/src/util/uploadBluemoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/src/util/uploadBluemoji.ts -------------------------------------------------------------------------------- /api/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/tsconfig.build.json -------------------------------------------------------------------------------- /api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/tsconfig.json -------------------------------------------------------------------------------- /api/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/tsconfig.test.json -------------------------------------------------------------------------------- /api/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/api/vite.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/package.json -------------------------------------------------------------------------------- /rfcs/0000-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/rfcs/0000-template.md -------------------------------------------------------------------------------- /rfcs/0001-bluemoji.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/rfcs/0001-bluemoji.md -------------------------------------------------------------------------------- /rfcs/0002-sharing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/rfcs/0002-sharing.md -------------------------------------------------------------------------------- /schema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/README.md -------------------------------------------------------------------------------- /schema/blue.moji/collection/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/collection/defs.json -------------------------------------------------------------------------------- /schema/blue.moji/collection/getItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/collection/getItem.json -------------------------------------------------------------------------------- /schema/blue.moji/collection/item.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/collection/item.json -------------------------------------------------------------------------------- /schema/blue.moji/collection/listCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/collection/listCollection.json -------------------------------------------------------------------------------- /schema/blue.moji/collection/putItem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/collection/putItem.json -------------------------------------------------------------------------------- /schema/blue.moji/collection/saveToCollection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/collection/saveToCollection.json -------------------------------------------------------------------------------- /schema/blue.moji/packs/defs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/packs/defs.json -------------------------------------------------------------------------------- /schema/blue.moji/packs/getActorPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/packs/getActorPacks.json -------------------------------------------------------------------------------- /schema/blue.moji/packs/getPack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/packs/getPack.json -------------------------------------------------------------------------------- /schema/blue.moji/packs/getPacks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/packs/getPacks.json -------------------------------------------------------------------------------- /schema/blue.moji/packs/pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/packs/pack.json -------------------------------------------------------------------------------- /schema/blue.moji/packs/packitem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/packs/packitem.json -------------------------------------------------------------------------------- /schema/blue.moji/richtext/facet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/schema/blue.moji/richtext/facet.json -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/README.md -------------------------------------------------------------------------------- /server/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/compose.yaml -------------------------------------------------------------------------------- /server/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/index.html -------------------------------------------------------------------------------- /server/lexicon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/index.ts -------------------------------------------------------------------------------- /server/lexicon/lexicons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/lexicons.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/getPreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/getPreferences.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/getProfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/getProfile.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/getProfiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/getProfiles.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/getSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/getSuggestions.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/profile.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/putPreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/putPreferences.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/searchActors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/searchActors.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/actor/searchActorsTypeahead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/actor/searchActorsTypeahead.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/embed/external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/embed/external.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/embed/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/embed/images.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/embed/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/embed/record.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/embed/recordWithMedia.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/embed/recordWithMedia.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/describeFeedGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/describeFeedGenerator.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/generator.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getActorFeeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getActorFeeds.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getActorLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getActorLikes.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getAuthorFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getAuthorFeed.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getFeed.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getFeedGenerator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getFeedGenerator.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getFeedGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getFeedGenerators.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getFeedSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getFeedSkeleton.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getLikes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getLikes.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getListFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getListFeed.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getPostThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getPostThread.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getPosts.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getRepostedBy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getRepostedBy.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getSuggestedFeeds.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getSuggestedFeeds.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/getTimeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/getTimeline.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/like.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/like.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/post.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/repost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/repost.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/searchPosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/searchPosts.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/sendInteractions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/sendInteractions.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/feed/threadgate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/feed/threadgate.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/block.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/block.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/follow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/follow.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getActorStarterPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getActorStarterPacks.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getBlocks.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getFollowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getFollowers.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getFollows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getFollows.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getKnownFollowers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getKnownFollowers.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getList.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getListBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getListBlocks.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getListMutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getListMutes.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getLists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getLists.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getMutes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getMutes.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getRelationships.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getRelationships.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getStarterPack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getStarterPack.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getStarterPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getStarterPacks.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/getSuggestedFollowsByActor.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/list.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/listblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/listblock.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/listitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/listitem.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/muteActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/muteActor.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/muteActorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/muteActorList.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/muteThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/muteThread.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/starterpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/starterpack.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/unmuteActor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/unmuteActor.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/unmuteActorList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/unmuteActorList.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/graph/unmuteThread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/graph/unmuteThread.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/labeler/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/labeler/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/labeler/getServices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/labeler/getServices.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/labeler/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/labeler/service.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/notification/getUnreadCount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/notification/getUnreadCount.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/notification/listNotifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/notification/listNotifications.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/notification/putPreferences.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/notification/putPreferences.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/notification/registerPush.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/notification/registerPush.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/notification/updateSeen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/notification/updateSeen.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/richtext/facet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/richtext/facet.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/unspecced/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/unspecced/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/unspecced/getPopularFeedGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/unspecced/getPopularFeedGenerators.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/unspecced/getSuggestionsSkeleton.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/unspecced/getTaggedSuggestions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/unspecced/getTaggedSuggestions.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/unspecced/searchActorsSkeleton.ts -------------------------------------------------------------------------------- /server/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/app/bsky/unspecced/searchPostsSkeleton.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/collection/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/collection/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/collection/getItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/collection/getItem.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/collection/item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/collection/item.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/collection/listCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/collection/listCollection.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/collection/putItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/collection/putItem.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/collection/saveToCollection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/collection/saveToCollection.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/packs/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/packs/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/packs/getActorPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/packs/getActorPacks.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/packs/getPack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/packs/getPack.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/packs/getPacks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/packs/getPacks.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/packs/pack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/packs/pack.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/packs/packitem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/packs/packitem.ts -------------------------------------------------------------------------------- /server/lexicon/types/blue/moji/richtext/facet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/blue/moji/richtext/facet.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/deleteAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/deleteAccount.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/disableAccountInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/disableAccountInvites.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/disableInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/disableInviteCodes.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/enableAccountInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/enableAccountInvites.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/getAccountInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/getAccountInfo.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/getAccountInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/getAccountInfos.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/getInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/getInviteCodes.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/getSubjectStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/getSubjectStatus.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/searchAccounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/searchAccounts.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/sendEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/sendEmail.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/updateAccountEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/updateAccountEmail.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/updateAccountHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/updateAccountHandle.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/updateAccountPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/updateAccountPassword.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/admin/updateSubjectStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/admin/updateSubjectStatus.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/identity/getRecommendedDidCredentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/identity/getRecommendedDidCredentials.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/identity/requestPlcOperationSignature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/identity/requestPlcOperationSignature.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/identity/resolveHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/identity/resolveHandle.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/identity/signPlcOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/identity/signPlcOperation.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/identity/submitPlcOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/identity/submitPlcOperation.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/identity/updateHandle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/identity/updateHandle.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/label/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/label/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/label/queryLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/label/queryLabels.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/label/subscribeLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/label/subscribeLabels.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/moderation/createReport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/moderation/createReport.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/moderation/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/moderation/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/applyWrites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/applyWrites.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/createRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/createRecord.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/deleteRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/deleteRecord.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/describeRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/describeRepo.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/getRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/getRecord.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/importRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/importRepo.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/listMissingBlobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/listMissingBlobs.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/listRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/listRecords.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/putRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/putRecord.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/strongRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/strongRef.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/repo/uploadBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/repo/uploadBlob.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/activateAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/activateAccount.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/checkAccountStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/checkAccountStatus.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/confirmEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/confirmEmail.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/createAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/createAccount.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/createAppPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/createAppPassword.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/createInviteCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/createInviteCode.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/createInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/createInviteCodes.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/createSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/createSession.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/deactivateAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/deactivateAccount.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/defs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/defs.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/deleteAccount.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/deleteAccount.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/deleteSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/deleteSession.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/describeServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/describeServer.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/getAccountInviteCodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/getAccountInviteCodes.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/getServiceAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/getServiceAuth.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/getSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/getSession.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/listAppPasswords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/listAppPasswords.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/refreshSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/refreshSession.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/requestAccountDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/requestAccountDelete.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/requestEmailConfirmation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/requestEmailConfirmation.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/requestEmailUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/requestEmailUpdate.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/requestPasswordReset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/requestPasswordReset.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/reserveSigningKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/reserveSigningKey.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/resetPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/resetPassword.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/revokeAppPassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/revokeAppPassword.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/server/updateEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/server/updateEmail.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getBlob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getBlob.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getBlocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getBlocks.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getCheckout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getCheckout.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getHead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getHead.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getLatestCommit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getLatestCommit.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getRecord.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getRepo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getRepo.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/getRepoStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/getRepoStatus.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/listBlobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/listBlobs.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/listRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/listRepos.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/notifyOfUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/notifyOfUpdate.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/requestCrawl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/requestCrawl.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/sync/subscribeRepos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/sync/subscribeRepos.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/temp/checkSignupQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/temp/checkSignupQueue.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/temp/fetchLabels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/temp/fetchLabels.ts -------------------------------------------------------------------------------- /server/lexicon/types/com/atproto/temp/requestPhoneVerification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/types/com/atproto/temp/requestPhoneVerification.ts -------------------------------------------------------------------------------- /server/lexicon/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lexicon/util.ts -------------------------------------------------------------------------------- /server/lib/actions/createImagePost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/actions/createImagePost.ts -------------------------------------------------------------------------------- /server/lib/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/actions/index.ts -------------------------------------------------------------------------------- /server/lib/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/agent.ts -------------------------------------------------------------------------------- /server/lib/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/App.tsx -------------------------------------------------------------------------------- /server/lib/app/context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/context.tsx -------------------------------------------------------------------------------- /server/lib/app/entry-client.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/entry-client.tsx -------------------------------------------------------------------------------- /server/lib/app/entry-server.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/entry-server.tsx -------------------------------------------------------------------------------- /server/lib/app/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/index.scss -------------------------------------------------------------------------------- /server/lib/app/ncurses/ContentBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/ContentBox.tsx -------------------------------------------------------------------------------- /server/lib/app/ncurses/InputBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/InputBox.tsx -------------------------------------------------------------------------------- /server/lib/app/ncurses/MenuBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/MenuBox.tsx -------------------------------------------------------------------------------- /server/lib/app/ncurses/MsgBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/MsgBox.tsx -------------------------------------------------------------------------------- /server/lib/app/ncurses/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/index.html -------------------------------------------------------------------------------- /server/lib/app/ncurses/src/sass/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/src/sass/_mixins.scss -------------------------------------------------------------------------------- /server/lib/app/ncurses/src/sass/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/src/sass/_reset.scss -------------------------------------------------------------------------------- /server/lib/app/ncurses/src/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/src/sass/_variables.scss -------------------------------------------------------------------------------- /server/lib/app/ncurses/src/sass/ncurses.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/ncurses/src/sass/ncurses.scss -------------------------------------------------------------------------------- /server/lib/app/routes/browse-packs.tsx: -------------------------------------------------------------------------------- 1 | export const BrowsePacks = () => null; 2 | -------------------------------------------------------------------------------- /server/lib/app/routes/collection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/routes/collection.tsx -------------------------------------------------------------------------------- /server/lib/app/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/routes/index.tsx -------------------------------------------------------------------------------- /server/lib/app/routes/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/routes/login.tsx -------------------------------------------------------------------------------- /server/lib/app/routes/make-pack.tsx: -------------------------------------------------------------------------------- 1 | export const MakePack = () => null; 2 | -------------------------------------------------------------------------------- /server/lib/app/routes/upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/app/routes/upload.tsx -------------------------------------------------------------------------------- /server/lib/app/routes/workshop.tsx: -------------------------------------------------------------------------------- 1 | export const Workshop = () => null; 2 | -------------------------------------------------------------------------------- /server/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/auth.ts -------------------------------------------------------------------------------- /server/lib/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/config.ts -------------------------------------------------------------------------------- /server/lib/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/db/index.ts -------------------------------------------------------------------------------- /server/lib/db/migrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/db/migrations.ts -------------------------------------------------------------------------------- /server/lib/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/db/schema.ts -------------------------------------------------------------------------------- /server/lib/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/error.ts -------------------------------------------------------------------------------- /server/lib/feeds/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/feeds/emoji.ts -------------------------------------------------------------------------------- /server/lib/feeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/feeds/index.ts -------------------------------------------------------------------------------- /server/lib/firehose.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/firehose.ts -------------------------------------------------------------------------------- /server/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/index.ts -------------------------------------------------------------------------------- /server/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/logger.ts -------------------------------------------------------------------------------- /server/lib/routes/blob.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/blob.ts -------------------------------------------------------------------------------- /server/lib/routes/collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/collection.ts -------------------------------------------------------------------------------- /server/lib/routes/describe-generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/describe-generator.ts -------------------------------------------------------------------------------- /server/lib/routes/feed-generation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/feed-generation.ts -------------------------------------------------------------------------------- /server/lib/routes/health.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/health.ts -------------------------------------------------------------------------------- /server/lib/routes/lottie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/lottie.ts -------------------------------------------------------------------------------- /server/lib/routes/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/oauth.ts -------------------------------------------------------------------------------- /server/lib/routes/packs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/packs.ts -------------------------------------------------------------------------------- /server/lib/routes/render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/render.ts -------------------------------------------------------------------------------- /server/lib/routes/upload-bluemoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/routes/upload-bluemoji.ts -------------------------------------------------------------------------------- /server/lib/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/server.ts -------------------------------------------------------------------------------- /server/lib/subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/subscription.ts -------------------------------------------------------------------------------- /server/lib/vite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/vite.ts -------------------------------------------------------------------------------- /server/lib/well-known.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/lib/well-known.ts -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/package.json -------------------------------------------------------------------------------- /server/scripts/generate-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/scripts/generate-keys.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/tsconfig.node.json -------------------------------------------------------------------------------- /server/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aendra-rininsland/bluemoji/HEAD/server/vite.config.ts --------------------------------------------------------------------------------