This repository has no description
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 },
12 COSMIK: {
13 NAMESPACE: 'network.cosmik',
14 CARD: 'network.cosmik.card',
15 COLLECTION: 'network.cosmik.collection',
16 COLLECTION_LINK: 'network.cosmik.collectionLink',
17 COLLECTION_LINK_REMOVAL: 'network.cosmik.collectionLinkRemoval',
18 },
19} as const;