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 1f35101f 3b3dd256

+13 -1
+5
.changeset/bright-tables-draw.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: e1d5e63314f5dad324486157e7c65e4fd04eab1c 6 + - commit: 84eb5ed95d145870a85ea380df3edf6c591c6310
+4
packages/definitions/bluesky/lexicons/app/bsky/actor/defs.json
··· 252 252 "allowIncoming": { 253 253 "type": "string", 254 254 "knownValues": ["all", "none", "following"] 255 + }, 256 + "allowGroupInvites": { 257 + "type": "string", 258 + "knownValues": ["all", "none", "following"] 255 259 } 256 260 } 257 261 },
+3
packages/definitions/bluesky/lib/lexicons/types/app/bsky/actor/defs.ts
··· 315 315 }); 316 316 const _profileAssociatedChatSchema = /*#__PURE__*/ v.object({ 317 317 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('app.bsky.actor.defs#profileAssociatedChat')), 318 + allowGroupInvites: /*#__PURE__*/ v.optional( 319 + /*#__PURE__*/ v.string<'all' | 'following' | 'none' | (string & {})>(), 320 + ), 318 321 allowIncoming: /*#__PURE__*/ v.string<'all' | 'following' | 'none' | (string & {})>(), 319 322 }); 320 323 const _profileAssociatedGermSchema = /*#__PURE__*/ v.object({