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 9e6b3f65 feac8d98

+21 -4
+5
.changeset/dull-suns-beam.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: 3b9af1bdb622607467d39407d10d57f67c5e1687 6 + - commit: d8801e2a17fe7062b7aa674475b384ead7518a17
+7
packages/definitions/bluesky/lexicons/app/bsky/actor/defs.json
··· 825 825 "description": "An optional embed associated with the status.", 826 826 "refs": ["app.bsky.embed.external#view"] 827 827 }, 828 + "labels": { 829 + "type": "array", 830 + "items": { 831 + "type": "ref", 832 + "ref": "com.atproto.label.defs#label" 833 + } 834 + }, 828 835 "expiresAt": { 829 836 "type": "string", 830 837 "description": "The date when this status will expire. The application might choose to no longer return the status after expiration.",
+2 -1
packages/definitions/bluesky/lexicons/app/bsky/embed/images.json
··· 23 23 "properties": { 24 24 "image": { 25 25 "type": "blob", 26 + "description": "The raw image file. May be up to 2 MB, formerly limited to 1 MB.", 26 27 "accept": ["image/*"], 27 - "maxSize": 1000000 28 + "maxSize": 2000000 28 29 }, 29 30 "alt": { 30 31 "type": "string",
+3
packages/definitions/bluesky/lib/lexicons/types/app/bsky/actor/defs.ts
··· 506 506 * True if the user's go-live access has been disabled by a moderator, false otherwise. 507 507 */ 508 508 isDisabled: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.boolean()), 509 + get labels() { 510 + return /*#__PURE__*/ v.optional(/*#__PURE__*/ v.array(ComAtprotoLabelDefs.labelSchema)); 511 + }, 509 512 record: /*#__PURE__*/ v.unknown(), 510 513 /** 511 514 * The status for the account.
+2 -1
packages/definitions/bluesky/lib/lexicons/types/app/bsky/embed/images.ts
··· 13 13 return /*#__PURE__*/ v.optional(AppBskyEmbedDefs.aspectRatioSchema); 14 14 }, 15 15 /** 16 + * The raw image file. May be up to 2 MB, formerly limited to 1 MB. 16 17 * @accept image/* 17 - * @maxSize 1000000 18 + * @maxSize 2000000 18 19 */ 19 20 image: /*#__PURE__*/ v.blob(), 20 21 });
+1 -1
packages/definitions/bluesky/lib/limits.ts
··· 57 57 export const embedImages = { 58 58 images: { maxItems: 4 }, 59 59 image: { 60 - image: { maxSize: 1_000_000 }, 60 + image: { maxSize: 2_000_000 }, 61 61 }, 62 62 } as const; 63 63