a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

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

chore(bluesky): pull latest Bluesky lexicons

Mary 3bf9240b 812b68e6

+11 -1
+5
.changeset/bright-carpets-sort.md
··· 1 + --- 2 + '@atcute/bluesky': patch 3 + --- 4 + 5 + pull latest Bluesky lexicons
+1 -1
packages/definitions/bluesky/lexicons/README.md
··· 3 3 this directory contains lexicon documents pulled from the following sources: 4 4 5 5 - https://github.com/bluesky-social/atproto.git 6 - - commit: 2335075a206ace4ecbd695fabac27a5f26e7a5e8 6 + - commit: 137065b333b8c9b97e6b3b2ac6147c7509a1ae42
+4
packages/definitions/bluesky/lexicons/app/bsky/feed/sendInteractions.json
··· 11 11 "type": "object", 12 12 "required": ["interactions"], 13 13 "properties": { 14 + "feed": { 15 + "type": "string", 16 + "format": "at-uri" 17 + }, 14 18 "interactions": { 15 19 "type": "array", 16 20 "items": {
+1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/feed/sendInteractions.ts
··· 9 9 input: { 10 10 type: 'lex', 11 11 schema: /*#__PURE__*/ v.object({ 12 + feed: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.resourceUriString()), 12 13 get interactions() { 13 14 return /*#__PURE__*/ v.array(AppBskyFeedDefs.interactionSchema); 14 15 },