a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
99
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(atproto): pull latest Bluesky lexicons

Mary 4b99ff87 d75f712b

+10 -11
+5
.changeset/many-dogs-learn.md
··· 1 + --- 2 + '@atcute/atproto': patch 3 + --- 4 + 5 + pull latest atproto lexicons
+1 -1
packages/definitions/atproto/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: c4b967ff70a1033b0b9a2889ffb3dcb19f3f9c40 6 + - commit: 3b9af1bdb622607467d39407d10d57f67c5e1687
+2 -5
packages/definitions/atproto/lexicons/com/atproto/label/defs.json
··· 146 146 "type": "string", 147 147 "knownValues": [ 148 148 "!hide", 149 - "!no-promote", 150 149 "!warn", 151 150 "!no-unauthenticated", 152 - "dmca-violation", 153 - "doxxing", 154 151 "porn", 155 152 "sexual", 156 153 "nudity", 157 - "nsfl", 158 - "gore" 154 + "graphic-media", 155 + "bot" 159 156 ] 160 157 } 161 158 }
+2 -5
packages/definitions/atproto/lib/lexicons/types/com/atproto/label/defs.ts
··· 43 43 }); 44 44 const _labelValueSchema = /*#__PURE__*/ v.string< 45 45 | '!hide' 46 - | '!no-promote' 47 46 | '!no-unauthenticated' 48 47 | '!warn' 49 - | 'dmca-violation' 50 - | 'doxxing' 51 - | 'gore' 52 - | 'nsfl' 48 + | 'bot' 49 + | 'graphic-media' 53 50 | 'nudity' 54 51 | 'porn' 55 52 | 'sexual'