a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky

chore: pull latest Bluesky lexicons

mary.my.id 01fe46ea 5383f0c2

verified
+12 -7
+5
.changeset/flat-poems-stand.md
··· 1 + --- 2 + '@atcute/bluesky': patch 3 + --- 4 + 5 + pull latest Bluesky lexicons
+1 -1
lexdocs/bluesky/README.md
··· 1 - https://github.com/bluesky-social/atproto/tree/a48671e730681f692a88053e8f137bd9e2aed5f1/lexicons/ 1 + https://github.com/bluesky-social/atproto/tree/97ef116571909c95713017bcd7b621c8afbc90ef/lexicons/
+4 -4
lexdocs/bluesky/app/bsky/notification/defs.json
··· 8 8 }, 9 9 "chatPreference": { 10 10 "type": "object", 11 - "required": ["filter", "push"], 11 + "required": ["include", "push"], 12 12 "properties": { 13 - "filter": { "type": "string", "knownValues": ["all", "accepted"] }, 13 + "include": { "type": "string", "knownValues": ["all", "accepted"] }, 14 14 "push": { "type": "boolean" } 15 15 } 16 16 }, 17 17 "filterablePreference": { 18 18 "type": "object", 19 - "required": ["filter", "list", "push"], 19 + "required": ["include", "list", "push"], 20 20 "properties": { 21 - "filter": { "type": "string", "knownValues": ["all", "follows"] }, 21 + "include": { "type": "string", "knownValues": ["all", "follows"] }, 22 22 "list": { "type": "boolean" }, 23 23 "push": { "type": "boolean" } 24 24 }
+2 -2
packages/definitions/bluesky/lib/lexicons/types/app/bsky/notification/defs.ts
··· 3 3 4 4 const _chatPreferenceSchema = /*#__PURE__*/ v.object({ 5 5 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('app.bsky.notification.defs#chatPreference')), 6 - filter: /*#__PURE__*/ v.string<'accepted' | 'all' | (string & {})>(), 6 + include: /*#__PURE__*/ v.string<'accepted' | 'all' | (string & {})>(), 7 7 push: /*#__PURE__*/ v.boolean(), 8 8 }); 9 9 const _filterablePreferenceSchema = /*#__PURE__*/ v.object({ 10 10 $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('app.bsky.notification.defs#filterablePreference')), 11 - filter: /*#__PURE__*/ v.string<'all' | 'follows' | (string & {})>(), 11 + include: /*#__PURE__*/ v.string<'all' | 'follows' | (string & {})>(), 12 12 list: /*#__PURE__*/ v.boolean(), 13 13 push: /*#__PURE__*/ v.boolean(), 14 14 });