This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / src / shared / constants / atproto.ts
665 B 22 lines
1/** 2 * AT Protocol NSID constants 3 * Namespaced identifiers for AT Protocol collections 4 */ 5export const ATPROTO_NSID = { 6 MARGIN: { 7 NAMESPACE: 'at.margin', 8 BOOKMARK: 'at.margin.bookmark', 9 COLLECTION: 'at.margin.collection', 10 COLLECTION_ITEM: 'at.margin.collectionItem', 11 NOTE: 'at.margin.note', 12 }, 13 COSMIK: { 14 NAMESPACE: 'network.cosmik', 15 CARD: 'network.cosmik.card', 16 COLLECTION: 'network.cosmik.collection', 17 COLLECTION_LINK: 'network.cosmik.collectionLink', 18 COLLECTION_LINK_REMOVAL: 'network.cosmik.collectionLinkRemoval', 19 FOLLOW: 'network.cosmik.follow', 20 CONNECTION: 'network.cosmik.connection', 21 }, 22} as const;