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: pull latest Bluesky lexicons

Mary ad6d90b9 28fa7667

+25 -4
+6
.changeset/spicy-plants-clean.md
··· 1 + --- 2 + '@atcute/bluesky': patch 3 + '@atcute/ozone': patch 4 + --- 5 + 6 + pull latest Bluesky lexicons
+1 -1
lexdocs/bluesky/README.md
··· 1 - https://github.com/bluesky-social/atproto/tree/1dae6c59abe0e5aa4a7b7d0cc1dfee88f458d4b9/lexicons/ 1 + https://github.com/bluesky-social/atproto/tree/f6d5a467e71fb54996754cce7747b1e98a34442b/lexicons/
+5
lexdocs/bluesky/app/bsky/unspecced/getPostThreadHiddenV2.json
··· 13 13 "type": "string", 14 14 "format": "at-uri", 15 15 "description": "Reference (AT-URI) to post record. This is the anchor post." 16 + }, 17 + "prioritizeFollowedUsers": { 18 + "type": "boolean", 19 + "description": "Whether to prioritize posts from followed users. It only has effect when the user is authenticated.", 20 + "default": false 16 21 } 17 22 } 18 23 },
+5 -1
lexdocs/bluesky/tools/ozone/moderation/defs.json
··· 94 94 "id": { "type": "integer" }, 95 95 "subject": { 96 96 "type": "union", 97 - "refs": ["com.atproto.admin.defs#repoRef", "com.atproto.repo.strongRef"] 97 + "refs": [ 98 + "com.atproto.admin.defs#repoRef", 99 + "com.atproto.repo.strongRef", 100 + "chat.bsky.convo.defs#messageRef" 101 + ] 98 102 }, 99 103 "hosting": { 100 104 "type": "union",
+1
lexdocs/bluesky/tools/ozone/verification/grantVerifications.json
··· 67 67 }, 68 68 "createdAt": { 69 69 "type": "string", 70 + "format": "datetime", 70 71 "description": "Timestamp for verification record. Defaults to current time when not specified." 71 72 } 72 73 }
+1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/unspecced/getPostThreadHiddenV2.ts
··· 6 6 const _mainSchema = /*#__PURE__*/ v.query('app.bsky.unspecced.getPostThreadHiddenV2', { 7 7 params: /*#__PURE__*/ v.object({ 8 8 anchor: /*#__PURE__*/ v.resourceUriString(), 9 + prioritizeFollowedUsers: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean(), false), 9 10 }), 10 11 output: { 11 12 type: 'lex',
+5 -1
packages/definitions/ozone/lib/lexicons/types/tools/ozone/moderation/defs.ts
··· 411 411 return subjectReviewStateSchema; 412 412 }, 413 413 get subject() { 414 - return /*#__PURE__*/ v.variant([ComAtprotoAdminDefs.repoRefSchema, ComAtprotoRepoStrongRef.mainSchema]); 414 + return /*#__PURE__*/ v.variant([ 415 + ChatBskyConvoDefs.messageRefSchema, 416 + ComAtprotoAdminDefs.repoRefSchema, 417 + ComAtprotoRepoStrongRef.mainSchema, 418 + ]); 415 419 }, 416 420 subjectBlobCids: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.array(/*#__PURE__*/ v.cidString())), 417 421 subjectRepoHandle: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()),
+1 -1
packages/definitions/ozone/lib/lexicons/types/tools/ozone/verification/grantVerifications.ts
··· 38 38 $type: /*#__PURE__*/ v.optional( 39 39 /*#__PURE__*/ v.literal('tools.ozone.verification.grantVerifications#verificationInput'), 40 40 ), 41 - createdAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.string()), 41 + createdAt: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.datetimeString()), 42 42 displayName: /*#__PURE__*/ v.string(), 43 43 handle: /*#__PURE__*/ v.handleString(), 44 44 subject: /*#__PURE__*/ v.didString(),