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 c7dbefe5 0df19eb3

+57 -7
+5
.changeset/humble-spoons-say.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: 137065b333b8c9b97e6b3b2ac6147c7509a1ae42 6 + - commit: c9004b4d98c513e49604f6b95d42dd2bf28ee5ce
+4
packages/definitions/bluesky/lexicons/app/bsky/actor/getSuggestions.json
··· 37 37 }, 38 38 "recId": { 39 39 "type": "integer", 40 + "description": "DEPRECATED: use recIdStr instead." 41 + }, 42 + "recIdStr": { 43 + "type": "string", 40 44 "description": "Snowflake for this recommendation, use when submitting recommendation events." 41 45 } 42 46 }
+4
packages/definitions/bluesky/lexicons/app/bsky/unspecced/getOnboardingSuggestedUsersSkeleton.json
··· 40 40 }, 41 41 "recId": { 42 42 "type": "string", 43 + "description": "DEPRECATED: use recIdStr instead." 44 + }, 45 + "recIdStr": { 46 + "type": "string", 43 47 "description": "Snowflake for this recommendation, use when submitting recommendation events." 44 48 } 45 49 }
+4
packages/definitions/bluesky/lexicons/app/bsky/unspecced/getSuggestedOnboardingUsers.json
··· 35 35 }, 36 36 "recId": { 37 37 "type": "string", 38 + "description": "DEPRECATED: use recIdStr instead." 39 + }, 40 + "recIdStr": { 41 + "type": "string", 38 42 "description": "Snowflake for this recommendation, use when submitting recommendation events." 39 43 } 40 44 }
+4
packages/definitions/bluesky/lexicons/app/bsky/unspecced/getSuggestedUsers.json
··· 35 35 }, 36 36 "recId": { 37 37 "type": "string", 38 + "description": "DEPRECATED: use recIdStr instead." 39 + }, 40 + "recIdStr": { 41 + "type": "string", 38 42 "description": "Snowflake for this recommendation, use when submitting recommendation events." 39 43 } 40 44 }
+4
packages/definitions/bluesky/lexicons/app/bsky/unspecced/getSuggestedUsersSkeleton.json
··· 40 40 }, 41 41 "recId": { 42 42 "type": "string", 43 + "description": "DEPRECATED: use recIdStr instead." 44 + }, 45 + "recIdStr": { 46 + "type": "string", 43 47 "description": "Snowflake for this recommendation, use when submitting recommendation events." 44 48 } 45 49 }
+1 -1
packages/definitions/bluesky/lexicons/chat/bsky/authFullChatClient.json
··· 17 17 "inheritAud": true, 18 18 "lxm": [ 19 19 "chat.bsky.actor.deleteAccount", 20 + "chat.bsky.actor.exportAccountData", 20 21 "chat.bsky.convo.acceptConvo", 21 22 "chat.bsky.convo.addReaction", 22 23 "chat.bsky.convo.deleteMessageForSelf", 23 - "chat.bsky.convo.exportAccountData", 24 24 "chat.bsky.convo.getConvo", 25 25 "chat.bsky.convo.getConvoAvailability", 26 26 "chat.bsky.convo.getConvoForMembers",
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/actor/getSuggestions.ts
··· 25 25 }, 26 26 cursor: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 27 27 /** 28 + * DEPRECATED: use recIdStr instead. 29 + * @deprecated 30 + */ 31 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()), 32 + /** 28 33 * Snowflake for this recommendation, use when submitting recommendation events. 29 34 */ 30 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.integer()), 35 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 31 36 }), 32 37 }, 33 38 });
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getOnboardingSuggestedUsersSkeleton.ts
··· 27 27 schema: /*#__PURE__*/ v.object({ 28 28 dids: /*#__PURE__*/ v.array(/*#__PURE__*/ v.didString()), 29 29 /** 30 + * DEPRECATED: use recIdStr instead. 31 + * @deprecated 32 + */ 33 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 34 + /** 30 35 * Snowflake for this recommendation, use when submitting recommendation events. 31 36 */ 32 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 37 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 33 38 }), 34 39 }, 35 40 });
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getSuggestedOnboardingUsers.ts
··· 27 27 return /*#__PURE__*/ v.array(AppBskyActorDefs.profileViewSchema); 28 28 }, 29 29 /** 30 + * DEPRECATED: use recIdStr instead. 31 + * @deprecated 32 + */ 33 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 34 + /** 30 35 * Snowflake for this recommendation, use when submitting recommendation events. 31 36 */ 32 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 37 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 33 38 }), 34 39 }, 35 40 });
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getSuggestedUsers.ts
··· 27 27 return /*#__PURE__*/ v.array(AppBskyActorDefs.profileViewSchema); 28 28 }, 29 29 /** 30 + * DEPRECATED: use recIdStr instead. 31 + * @deprecated 32 + */ 33 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 34 + /** 30 35 * Snowflake for this recommendation, use when submitting recommendation events. 31 36 */ 32 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 37 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 33 38 }), 34 39 }, 35 40 });
+6 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getSuggestedUsersSkeleton.ts
··· 27 27 schema: /*#__PURE__*/ v.object({ 28 28 dids: /*#__PURE__*/ v.array(/*#__PURE__*/ v.didString()), 29 29 /** 30 + * DEPRECATED: use recIdStr instead. 31 + * @deprecated 32 + */ 33 + recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 34 + /** 30 35 * Snowflake for this recommendation, use when submitting recommendation events. 31 36 */ 32 - recId: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 37 + recIdStr: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 33 38 }), 34 39 }, 35 40 });