this repo has no description
0
fork

Configure Feed

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

Credits

alice 3c9a5035 778ded41

+2
+2
index.ts
··· 21 21 password: process.env.BSKY_PASSWORD!, 22 22 }); 23 23 24 + // source: https://github.com/bluesky-social/atproto/blob/efb1cac2bfc8ccb77c0f4910ad9f3de7370fbebb/packages/bsky/tests/_util.ts#L314 24 25 const paginateAll = async <T extends { cursor?: string }>( 25 26 fn: (cursor?: string) => Promise<T>, 26 27 limit = Infinity, ··· 35 36 return results; 36 37 }; 37 38 39 + // source: https://github.com/bluesky-social/atproto/blob/efb1cac2bfc8ccb77c0f4910ad9f3de7370fbebb/packages/bsky/tests/views/author-feed.test.ts#L94 38 40 const paginator = async (cursor?: string) => { 39 41 const res = await agent.getAuthorFeed({ 40 42 actor: agent.session!.did,