forked from
pds.ls/pdsls
atmosphere explorer
1import {
2 AppBskyActorProfile,
3 AppBskyActorStatus,
4 AppBskyFeedGenerator,
5 AppBskyFeedLike,
6 AppBskyFeedPost,
7 AppBskyFeedPostgate,
8 AppBskyFeedRepost,
9 AppBskyFeedThreadgate,
10 AppBskyGraphBlock,
11 AppBskyGraphFollow,
12 AppBskyGraphList,
13 AppBskyGraphListblock,
14 AppBskyGraphListitem,
15 AppBskyGraphStarterpack,
16 AppBskyGraphVerification,
17 AppBskyLabelerService,
18 ChatBskyActorDeclaration,
19} from "@atcute/bluesky";
20
21export const lexicons: Record<string, any> = {
22 // Bluesky
23 "app.bsky.actor.profile": AppBskyActorProfile.mainSchema,
24 "app.bsky.actor.status": AppBskyActorStatus.mainSchema,
25 "app.bsky.feed.generator": AppBskyFeedGenerator.mainSchema,
26 "app.bsky.feed.like": AppBskyFeedLike.mainSchema,
27 "app.bsky.feed.post": AppBskyFeedPost.mainSchema,
28 "app.bsky.feed.postgate": AppBskyFeedPostgate.mainSchema,
29 "app.bsky.feed.repost": AppBskyFeedRepost.mainSchema,
30 "app.bsky.feed.threadgate": AppBskyFeedThreadgate.mainSchema,
31 "app.bsky.graph.block": AppBskyGraphBlock.mainSchema,
32 "app.bsky.graph.follow": AppBskyGraphFollow.mainSchema,
33 "app.bsky.graph.list": AppBskyGraphList.mainSchema,
34 "app.bsky.graph.listblock": AppBskyGraphListblock.mainSchema,
35 "app.bsky.graph.listitem": AppBskyGraphListitem.mainSchema,
36 "app.bsky.graph.starterpack": AppBskyGraphStarterpack.mainSchema,
37 "app.bsky.graph.verification": AppBskyGraphVerification.mainSchema,
38 "app.bsky.labeler.service": AppBskyLabelerService.mainSchema,
39 "chat.bsky.actor.declaration": ChatBskyActorDeclaration.mainSchema,
40};